Coda by Ian Macalinao
    Preparing search index...

    Interface CastVoteInput<TAccountLocker, TAccountEscrow, TAccountVoteDelegate, TAccountProposal, TAccountVote, TAccountGovernor, TAccountGovernProgram>

    interface CastVoteInput<
        TAccountLocker extends string = string,
        TAccountEscrow extends string = string,
        TAccountVoteDelegate extends string = string,
        TAccountProposal extends string = string,
        TAccountVote extends string = string,
        TAccountGovernor extends string = string,
        TAccountGovernProgram extends string = string,
    > {
        escrow: Address<TAccountEscrow>;
        governor: Address<TAccountGovernor>;
        governProgram: Address<TAccountGovernProgram>;
        locker: Address<TAccountLocker>;
        proposal: Address<TAccountProposal>;
        side: number;
        vote: Address<TAccountVote>;
        voteDelegate: TransactionSigner<TAccountVoteDelegate>;
    }

    Type Parameters

    • TAccountLocker extends string = string
    • TAccountEscrow extends string = string
    • TAccountVoteDelegate extends string = string
    • TAccountProposal extends string = string
    • TAccountVote extends string = string
    • TAccountGovernor extends string = string
    • TAccountGovernProgram extends string = string
    Index

    Properties

    escrow: Address<TAccountEscrow>
    governor: Address<TAccountGovernor>
    governProgram: Address<TAccountGovernProgram>
    locker: Address<TAccountLocker>
    proposal: Address<TAccountProposal>
    side: number
    vote: Address<TAccountVote>
    voteDelegate: TransactionSigner<TAccountVoteDelegate>