Coda by Ian Macalinao
    Preparing search index...

    Type Alias SetVoteDelegateInstruction<TProgram, TAccountEscrow, TAccountEscrowOwner, TRemainingAccounts>

    SetVoteDelegateInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountEscrow extends string
                ? WritableAccount<TAccountEscrow>
                : TAccountEscrow,
            TAccountEscrowOwner extends string
                ? ReadonlySignerAccount<TAccountEscrowOwner> & AccountSignerMeta<
                    TAccountEscrowOwner,
                >
                : TAccountEscrowOwner,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof LOCKED_VOTER_PROGRAM_ADDRESS
    • TAccountEscrow extends string | AccountMeta = string
    • TAccountEscrowOwner extends string | AccountMeta = string
    • TRemainingAccounts extends readonly AccountMeta[] = []