public Task <BigInteger> SellPricesQueryAsync(ushort returnValue1, ushort returnValue2, byte returnValue3, string returnValue4, BlockParameter blockParameter = null)
        {
            var sellPricesFunction = new SellPricesFunction();

            sellPricesFunction.ReturnValue1 = returnValue1;
            sellPricesFunction.ReturnValue2 = returnValue2;
            sellPricesFunction.ReturnValue3 = returnValue3;
            sellPricesFunction.ReturnValue4 = returnValue4;

            return(ContractHandler.QueryAsync <SellPricesFunction, BigInteger>(sellPricesFunction, blockParameter));
        }
 public Task <BigInteger> SellPricesQueryAsync(SellPricesFunction sellPricesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <SellPricesFunction, BigInteger>(sellPricesFunction, blockParameter));
 }