Coda by Ian Macalinao
    Preparing search index...

    Interface NewEscrowInput<TAccountLocker, TAccountEscrow, TAccountEscrowOwner, TAccountPayer, TAccountSystemProgram>

    interface NewEscrowInput<
        TAccountLocker extends string = string,
        TAccountEscrow extends string = string,
        TAccountEscrowOwner extends string = string,
        TAccountPayer extends string = string,
        TAccountSystemProgram extends string = string,
    > {
        bump: number;
        escrow: Address<TAccountEscrow>;
        escrowOwner: Address<TAccountEscrowOwner>;
        locker: Address<TAccountLocker>;
        payer: TransactionSigner<TAccountPayer>;
        systemProgram?: Address<TAccountSystemProgram>;
    }

    Type Parameters

    • TAccountLocker extends string = string
    • TAccountEscrow extends string = string
    • TAccountEscrowOwner extends string = string
    • TAccountPayer extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    bump: number
    escrow: Address<TAccountEscrow>
    escrowOwner: Address<TAccountEscrowOwner>
    locker: Address<TAccountLocker>
    payer: TransactionSigner<TAccountPayer>
    systemProgram?: Address<TAccountSystemProgram>