Type alias WithdrawVaultV2InstructionAccounts

WithdrawVaultV2InstructionAccounts: {
    associatedTokenProgram?: PublicKey | Pda;
    backendSigner?: Signer;
    baseMint: PublicKey | Pda;
    bucket: PublicKey | Pda;
    bucketQuoteTokenAccount?: PublicKey | Pda;
    depositPda?: PublicKey | Pda;
    feeQuoteTokenAccount?: PublicKey | Pda;
    genesisAccount: PublicKey | Pda;
    payer?: Signer;
    quoteMint?: PublicKey | Pda;
    quoteTokenProgram?: PublicKey | Pda;
    systemProgram?: PublicKey | Pda;
    withdrawer?: Signer;
    withdrawerQuoteTokenAccount?: PublicKey | Pda;
}

Type declaration

  • Optional associatedTokenProgram?: PublicKey | Pda

    The Associated Token program

  • Optional backendSigner?: Signer

    Backend authorization signer

  • baseMint: PublicKey | Pda

    The mint account of the base token

  • bucket: PublicKey | Pda

    The address of the vault bucket

  • Optional bucketQuoteTokenAccount?: PublicKey | Pda

    The bucket's quote token account

  • Optional depositPda?: PublicKey | Pda

    The deposit PDA account

  • Optional feeQuoteTokenAccount?: PublicKey | Pda

    The fee wallet's quote token account

  • genesisAccount: PublicKey | Pda

    The address of the genesis account

  • Optional payer?: Signer

    The account paying for ATA creation and receiving rent from closed deposit PDA

  • Optional quoteMint?: PublicKey | Pda

    The mint account of the quote token

  • Optional quoteTokenProgram?: PublicKey | Pda

    The SPL Token program for the quote token

  • Optional systemProgram?: PublicKey | Pda

    The system program

  • Optional withdrawer?: Signer

    The withdrawer's wallet (defaults to payer if not provided)

  • Optional withdrawerQuoteTokenAccount?: PublicKey | Pda

    The withdrawer's quote token account

Generated using TypeDoc