public Task <BigInteger> StakeAmountTotalQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var stakeAmountTotalFunction = new StakeAmountTotalFunction();

            stakeAmountTotalFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <StakeAmountTotalFunction, BigInteger>(stakeAmountTotalFunction, blockParameter));
        }
 public Task <BigInteger> StakeAmountTotalQueryAsync(StakeAmountTotalFunction stakeAmountTotalFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <StakeAmountTotalFunction, BigInteger>(stakeAmountTotalFunction, blockParameter));
 }