Coda by Ian Macalinao
    Preparing search index...

    Interface LockWithWhitelistEntryInput<TAccountLocker, TAccountEscrow, TAccountEscrowTokens, TAccountEscrowOwner, TAccountSourceTokens, TAccountTokenProgram, TAccountInstructionsSysvar, TAccountWhitelistEntry>

    interface LockWithWhitelistEntryInput<
        TAccountLocker extends string = string,
        TAccountEscrow extends string = string,
        TAccountEscrowTokens extends string = string,
        TAccountEscrowOwner extends string = string,
        TAccountSourceTokens extends string = string,
        TAccountTokenProgram extends string = string,
        TAccountInstructionsSysvar extends string = string,
        TAccountWhitelistEntry extends string = string,
    > {
        amount: number | bigint;
        duration: number | bigint;
        escrow: Address<TAccountEscrow>;
        escrowOwner: TransactionSigner<TAccountEscrowOwner>;
        escrowTokens: Address<TAccountEscrowTokens>;
        instructionsSysvar?: Address<TAccountInstructionsSysvar>;
        locker: Address<TAccountLocker>;
        sourceTokens: Address<TAccountSourceTokens>;
        tokenProgram?: Address<TAccountTokenProgram>;
        whitelistEntry: Address<TAccountWhitelistEntry>;
    }

    Type Parameters

    • TAccountLocker extends string = string
    • TAccountEscrow extends string = string
    • TAccountEscrowTokens extends string = string
    • TAccountEscrowOwner extends string = string
    • TAccountSourceTokens extends string = string
    • TAccountTokenProgram extends string = string
    • TAccountInstructionsSysvar extends string = string
    • TAccountWhitelistEntry extends string = string
    Index

    Properties

    amount: number | bigint
    duration: number | bigint
    escrow: Address<TAccountEscrow>
    escrowOwner: TransactionSigner<TAccountEscrowOwner>
    escrowTokens: Address<TAccountEscrowTokens>
    instructionsSysvar?: Address<TAccountInstructionsSysvar>
    locker: Address<TAccountLocker>
    sourceTokens: Address<TAccountSourceTokens>
    tokenProgram?: Address<TAccountTokenProgram>
    whitelistEntry: Address<TAccountWhitelistEntry>