Coda by Ian Macalinao
    Preparing search index...

    Interface ExitInput<TAccountLocker, TAccountEscrow, TAccountEscrowOwner, TAccountEscrowTokens, TAccountDestinationTokens, TAccountPayer, TAccountTokenProgram>

    interface ExitInput<
        TAccountLocker extends string = string,
        TAccountEscrow extends string = string,
        TAccountEscrowOwner extends string = string,
        TAccountEscrowTokens extends string = string,
        TAccountDestinationTokens extends string = string,
        TAccountPayer extends string = string,
        TAccountTokenProgram extends string = string,
    > {
        destinationTokens: Address<TAccountDestinationTokens>;
        escrow: Address<TAccountEscrow>;
        escrowOwner: TransactionSigner<TAccountEscrowOwner>;
        escrowTokens: Address<TAccountEscrowTokens>;
        locker: Address<TAccountLocker>;
        payer: TransactionSigner<TAccountPayer>;
        tokenProgram?: Address<TAccountTokenProgram>;
    }

    Type Parameters

    • TAccountLocker extends string = string
    • TAccountEscrow extends string = string
    • TAccountEscrowOwner extends string = string
    • TAccountEscrowTokens extends string = string
    • TAccountDestinationTokens extends string = string
    • TAccountPayer extends string = string
    • TAccountTokenProgram extends string = string
    Index

    Properties

    destinationTokens: Address<TAccountDestinationTokens>
    escrow: Address<TAccountEscrow>
    escrowOwner: TransactionSigner<TAccountEscrowOwner>
    escrowTokens: Address<TAccountEscrowTokens>
    locker: Address<TAccountLocker>
    payer: TransactionSigner<TAccountPayer>
    tokenProgram?: Address<TAccountTokenProgram>