Coda by Ian Macalinao
    Preparing search index...
    interface GovernPluginAccounts {
        governor: BaseDecoder<Governor> & { fixedSize: number } & BaseEncoder<
            GovernorArgs,
        > & { fixedSize: number } & SelfFetchFunctions<GovernorArgs, Governor>;
        proposal: Codec<ProposalArgs, Proposal> & SelfFetchFunctions<
            ProposalArgs,
            Proposal,
        >;
        proposalMeta: Codec<ProposalMetaArgs, ProposalMeta> & SelfFetchFunctions<
            ProposalMetaArgs,
            ProposalMeta,
        >;
        vote: BaseDecoder<Vote> & { fixedSize: number } & BaseEncoder<VoteArgs> & {
            fixedSize: number;
        } & SelfFetchFunctions<VoteArgs, Vote>;
    }
    Index

    Properties

    governor: BaseDecoder<Governor> & { fixedSize: number } & BaseEncoder<
        GovernorArgs,
    > & { fixedSize: number } & SelfFetchFunctions<GovernorArgs, Governor>

    Type Declaration

    • ReadonlyfixedSize: number

      The fixed size of the encoded value in bytes.

    • ReadonlyfixedSize: number

      The fixed size of the encoded value in bytes.

    proposal: Codec<ProposalArgs, Proposal> & SelfFetchFunctions<
        ProposalArgs,
        Proposal,
    >
    proposalMeta: Codec<ProposalMetaArgs, ProposalMeta> & SelfFetchFunctions<
        ProposalMetaArgs,
        ProposalMeta,
    >
    vote: BaseDecoder<Vote> & { fixedSize: number } & BaseEncoder<VoteArgs> & {
        fixedSize: number;
    } & SelfFetchFunctions<VoteArgs, Vote>

    Type Declaration

    • ReadonlyfixedSize: number

      The fixed size of the encoded value in bytes.

    • ReadonlyfixedSize: number

      The fixed size of the encoded value in bytes.