Coda by Ian Macalinao
    Preparing search index...

    Type Alias UpdateMaxVoteWeightInstruction<TProgram, TAccountRegistrar, TAccountMaxVoteWeightRecord, TRemainingAccounts>

    UpdateMaxVoteWeightInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountRegistrar extends string
                ? ReadonlyAccount<TAccountRegistrar>
                : TAccountRegistrar,
            TAccountMaxVoteWeightRecord extends string
                ? ReadonlyAccount<TAccountMaxVoteWeightRecord>
                : TAccountMaxVoteWeightRecord,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof VOTER_STAKE_REGISTRY_PROGRAM_ADDRESS
    • TAccountRegistrar extends string | AccountMeta = string
    • TAccountMaxVoteWeightRecord extends string | AccountMeta = string
    • TRemainingAccounts extends readonly AccountMeta[] = []