public Task <BigInteger> GetBalanceOfThisQueryAsync(string tokenAddress, BlockParameter blockParameter = null)
        {
            var getBalanceOfThisFunction = new GetBalanceOfThisFunction();

            getBalanceOfThisFunction.TokenAddress = tokenAddress;

            return(ContractHandler.QueryAsync <GetBalanceOfThisFunction, BigInteger>(getBalanceOfThisFunction, blockParameter));
        }
 public Task <BigInteger> GetBalanceOfThisQueryAsync(GetBalanceOfThisFunction getBalanceOfThisFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetBalanceOfThisFunction, BigInteger>(getBalanceOfThisFunction, blockParameter));
 }