Coda by Ian Macalinao
    Preparing search index...

    Type Alias GovernPluginAccounts

    type GovernPluginAccounts = {
        governor: ReturnType<typeof getGovernorCodec> & SelfFetchFunctions<
            GovernorArgs,
            Governor,
        >;
        proposal: ReturnType<typeof getProposalCodec> & SelfFetchFunctions<
            ProposalArgs,
            Proposal,
        >;
        proposalMeta: ReturnType<typeof getProposalMetaCodec> & SelfFetchFunctions<
            ProposalMetaArgs,
            ProposalMeta,
        >;
        vote: ReturnType<typeof getVoteCodec> & SelfFetchFunctions<VoteArgs, Vote>;
    }
    Index
    governor: ReturnType<typeof getGovernorCodec> & SelfFetchFunctions<
        GovernorArgs,
        Governor,
    >
    proposal: ReturnType<typeof getProposalCodec> & SelfFetchFunctions<
        ProposalArgs,
        Proposal,
    >
    proposalMeta: ReturnType<typeof getProposalMetaCodec> & SelfFetchFunctions<
        ProposalMetaArgs,
        ProposalMeta,
    >
    vote: ReturnType<typeof getVoteCodec> & SelfFetchFunctions<VoteArgs, Vote>