public Task <List <BigInteger> > BalanceOfBatchQueryAsync(List <string> accounts, List <BigInteger> ids, BlockParameter blockParameter = null)
        {
            var balanceOfBatchFunction = new BalanceOfBatchFunction();

            balanceOfBatchFunction.Accounts = accounts;
            balanceOfBatchFunction.Ids      = ids;

            return(ContractHandler.QueryAsync <BalanceOfBatchFunction, List <BigInteger> >(balanceOfBatchFunction, blockParameter));
        }
 public Task <List <BigInteger> > BalanceOfBatchQueryAsync(BalanceOfBatchFunction balanceOfBatchFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <BalanceOfBatchFunction, List <BigInteger> >(balanceOfBatchFunction, blockParameter));
 }