Coda by Ian Macalinao
    Preparing search index...

    Type Alias NewEscrowInstruction<TProgram, TAccountLocker, TAccountEscrow, TAccountEscrowOwner, TAccountPayer, TAccountSystemProgram, TRemainingAccounts>

    NewEscrowInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountLocker extends string
                ? ReadonlyAccount<TAccountLocker>
                : TAccountLocker,
            TAccountEscrow extends string
                ? WritableAccount<TAccountEscrow>
                : TAccountEscrow,
            TAccountEscrowOwner extends string
                ? ReadonlyAccount<TAccountEscrowOwner>
                : TAccountEscrowOwner,
            TAccountPayer extends string
                ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<
                    TAccountPayer,
                >
                : TAccountPayer,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof LOCKED_VOTER_PROGRAM_ADDRESS
    • TAccountLocker extends string | AccountMeta = string
    • TAccountEscrow extends string | AccountMeta = string
    • TAccountEscrowOwner extends string | AccountMeta = string
    • TAccountPayer extends string | AccountMeta = string
    • TAccountSystemProgram extends string | AccountMeta = "11111111111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta[] = []