public Task <MarketEntriesOutputDTO> MarketEntriesQueryAsync(BigInteger returnValue1, BlockParameter blockParameter = null)
        {
            var marketEntriesFunction = new MarketEntriesFunction();

            marketEntriesFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryDeserializingToObjectAsync <MarketEntriesFunction, MarketEntriesOutputDTO>(marketEntriesFunction, blockParameter));
        }
 public Task <MarketEntriesOutputDTO> MarketEntriesQueryAsync(MarketEntriesFunction marketEntriesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <MarketEntriesFunction, MarketEntriesOutputDTO>(marketEntriesFunction, blockParameter));
 }