public Task <BigInteger> StakeFirstEpochQueryAsync(string returnValue1, string returnValue2, BlockParameter blockParameter = null)
        {
            var stakeFirstEpochFunction = new StakeFirstEpochFunction();

            stakeFirstEpochFunction.ReturnValue1 = returnValue1;
            stakeFirstEpochFunction.ReturnValue2 = returnValue2;

            return(ContractHandler.QueryAsync <StakeFirstEpochFunction, BigInteger>(stakeFirstEpochFunction, blockParameter));
        }
 public Task <BigInteger> StakeFirstEpochQueryAsync(StakeFirstEpochFunction stakeFirstEpochFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <StakeFirstEpochFunction, BigInteger>(stakeFirstEpochFunction, blockParameter));
 }