Type alias RefundLaunchPoolV2InstructionAccounts

RefundLaunchPoolV2InstructionAccounts: {
    associatedTokenProgram?: PublicKey | Pda;
    backendSigner?: Signer;
    baseMint: PublicKey | Pda;
    baseTokenProgram?: PublicKey | Pda;
    bucket: PublicKey | Pda;
    bucketQuoteTokenAccount?: PublicKey | Pda;
    depositPda?: PublicKey | Pda;
    genesisAccount: PublicKey | Pda;
    payer?: Signer;
    quoteMint?: PublicKey | Pda;
    quoteTokenProgram?: PublicKey | Pda;
    recipient?: PublicKey | Pda | Signer;
    recipientBaseTokenAccount?: PublicKey | Pda;
    recipientQuoteTokenAccount?: PublicKey | Pda;
    systemProgram?: PublicKey | Pda;
}

Type declaration

  • Optional associatedTokenProgram?: PublicKey | Pda

    The Associated Token program

  • Optional backendSigner?: Signer

    Backend authorisation signer

  • baseMint: PublicKey | Pda

    The address of the base token mint

  • Optional baseTokenProgram?: PublicKey | Pda

    The SPL Token program for the base token

  • bucket: PublicKey | Pda

    The address of the bucket

  • Optional bucketQuoteTokenAccount?: PublicKey | Pda

    The token account owned by the bucket for the quote token

  • Optional depositPda?: PublicKey | Pda

    The PDA tracking the user's deposit

  • genesisAccount: PublicKey | Pda

    The address of the genesis account

  • Optional payer?: Signer

    The account paying for the transaction fees

  • Optional quoteMint?: PublicKey | Pda

    The mint account of the quote token

  • Optional quoteTokenProgram?: PublicKey | Pda

    The SPL Token program for the quote token

  • Optional recipient?: PublicKey | Pda | Signer

    The recipient of the refund (depositor). If signed, base token account will be closed.

  • Optional recipientBaseTokenAccount?: PublicKey | Pda

    The base token account owned by the recipient (closed if recipient signs and account is empty)

  • Optional recipientQuoteTokenAccount?: PublicKey | Pda

    The quote token account owned by the recipient

  • Optional systemProgram?: PublicKey | Pda

    The system program

Generated using TypeDoc