public Task <AllowedTxTypesOutputDTO> AllowedTxTypesQueryAsync(string sender, string to, BigInteger returnValue3, BigInteger gasPrice, byte[] data, BlockParameter blockParameter = null) { var allowedTxTypesFunction = new AllowedTxTypesFunction(); allowedTxTypesFunction.Sender = sender; allowedTxTypesFunction.To = to; allowedTxTypesFunction.ReturnValue3 = returnValue3; allowedTxTypesFunction.GasPrice = gasPrice; allowedTxTypesFunction.Data = data; return(ContractHandler.QueryDeserializingToObjectAsync <AllowedTxTypesFunction, AllowedTxTypesOutputDTO>(allowedTxTypesFunction, blockParameter)); }
public Task <AllowedTxTypesOutputDTO> AllowedTxTypesQueryAsync(AllowedTxTypesFunction allowedTxTypesFunction, BlockParameter blockParameter = null) { return(ContractHandler.QueryDeserializingToObjectAsync <AllowedTxTypesFunction, AllowedTxTypesOutputDTO>(allowedTxTypesFunction, blockParameter)); }