QueryProposalsRequest is the request type for the Query/Proposals RPC method.

interface QueryProposalsRequestAmino {
    depositor?: string;
    pagination?: PageRequestAmino;
    proposal_status?: ProposalStatus;
    voter?: string;
}

Properties

depositor?: string

depositor defines the deposit addresses from the proposals.

pagination?: PageRequestAmino

pagination defines an optional pagination for the request.

proposal_status?: ProposalStatus

proposal_status defines the status of the proposals.

voter?: string

voter defines the voter address for the proposals.