@@ -19,27 +19,27 @@ public interface IAccountProvider {
1919 @ NotNull Balance balance (String address ) throws ApiException ;
2020
2121 /**
22- * Maximum 20 address for batch request
22+ * Maximum 20 address for single batch request
2323 * If address > 20, then there will be more than 1 request performed
2424 */
2525 @ NotNull List <Balance > balances (List <String > addresses ) throws ApiException ;
2626
2727 /** All txs */
2828 @ NotNull List <Tx > txs (String address ) throws ApiException ;
29- @ NotNull List <Tx > txs (String address , long startBlock );
30- @ NotNull List <Tx > txs (String address , long startBlock , long endBlock );
29+ @ NotNull List <Tx > txs (String address , long startBlock ) throws ApiException ;
30+ @ NotNull List <Tx > txs (String address , long startBlock , long endBlock ) throws ApiException ;
3131
3232 /** All internal txs */
33- @ NotNull List <TxInternal > txsInternal (String address );
34- @ NotNull List <TxInternal > txsInternal (String address , long startBlock );
35- @ NotNull List <TxInternal > txsInternal (String address , long startBlock , long endBlock );
33+ @ NotNull List <TxInternal > txsInternal (String address ) throws ApiException ;
34+ @ NotNull List <TxInternal > txsInternal (String address , long startBlock ) throws ApiException ;
35+ @ NotNull List <TxInternal > txsInternal (String address , long startBlock , long endBlock ) throws ApiException ;
3636 @ NotNull List <TxInternal > txsInternalByHash (String txhash );
3737
3838 /** All token txs */
39- @ NotNull List <TxToken > txsToken (String address );
40- @ NotNull List <TxToken > txsToken (String address , long startBlock );
41- @ NotNull List <TxToken > txsToken (String address , long startBlock , long endBlock );
39+ @ NotNull List <TxToken > txsToken (String address ) throws ApiException ;
40+ @ NotNull List <TxToken > txsToken (String address , long startBlock ) throws ApiException ;
41+ @ NotNull List <TxToken > txsToken (String address , long startBlock , long endBlock ) throws ApiException ;
4242
4343 /** All blocks mined by address */
44- @ NotNull List <Block > minedBlocks (String address );
44+ @ NotNull List <Block > minedBlocks (String address ) throws ApiException ;
4545}
0 commit comments