public Task <ProposalVotesOutputDTO> ProposalVotesQueryAsync(BigInteger proposalId, BlockParameter blockParameter = null) { var proposalVotesFunction = new ProposalVotesFunction(); proposalVotesFunction.ProposalId = proposalId; return(ContractHandler.QueryDeserializingToObjectAsync <ProposalVotesFunction, ProposalVotesOutputDTO>(proposalVotesFunction, blockParameter)); }
public Task <ProposalVotesOutputDTO> ProposalVotesQueryAsync(ProposalVotesFunction proposalVotesFunction, BlockParameter blockParameter = null) { return(ContractHandler.QueryDeserializingToObjectAsync <ProposalVotesFunction, ProposalVotesOutputDTO>(proposalVotesFunction, blockParameter)); }