public Task<BigInteger> BalancesQueryAsync(string returnValue1, BlockParameter blockParameter = null)
 {
     var balancesFunction = new BalancesFunction();
         balancesFunction.ReturnValue1 = returnValue1;
     
     return ContractHandler.QueryAsync<BalancesFunction, BigInteger>(balancesFunction, blockParameter);
 }
        public Task <BigInteger> BalancesQueryAsync(string address, BlockParameter blockParameter = null)
        {
            var balancesFunction = new BalancesFunction();

            balancesFunction.Address = address;

            return(ContractHandler.QueryAsync <BalancesFunction, BigInteger>(balancesFunction, blockParameter));
        }
Example #3
0
 public Task <BigInteger> BalancesQueryAsync(BalancesFunction balancesFunction,
                                             BlockParameter blockParameter       = null,
                                             CancellationToken cancellationToken = default(CancellationToken))
 {
     return(ContractHandler.QueryAsync <BalancesFunction, BigInteger>(balancesFunction,
                                                                      blockParameter,
                                                                      cancellationToken));
 }
Example #4
0
        public Task <BigInteger> BalancesQueryAsync(string address,
                                                    BlockParameter blockParameter       = null,
                                                    CancellationToken cancellationToken = default(CancellationToken))
        {
            var balancesFunction = new BalancesFunction();

            balancesFunction.Address = address;

            return(ContractHandler.QueryAsync <BalancesFunction, BigInteger>(balancesFunction,
                                                                             blockParameter,
                                                                             cancellationToken));
        }
 public Task <BigInteger> BalancesQueryAsync(BalancesFunction balancesFunction,
                                             BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <BalancesFunction, BigInteger>(balancesFunction, blockParameter));
 }