Type alias UpdateLaunchPoolDepositV1InstructionAccounts

UpdateLaunchPoolDepositV1InstructionAccounts: {
    backendSigner?: Signer;
    bucket?: PublicKey | Pda;
    depositPda: PublicKey | Pda;
    feeWallet?: PublicKey | Pda;
    genesisAccount?: PublicKey | Pda;
    mint: PublicKey | Pda;
    payer?: Signer;
    penaltyWallet?: PublicKey | Pda;
    recipient?: Signer;
    systemProgram?: PublicKey | Pda;
    tokenProgram?: PublicKey | Pda;
}

Type declaration

  • Optional backendSigner?: Signer

    Backend authorisation signer

  • Optional bucket?: PublicKey | Pda

    The address of the bucket

  • depositPda: PublicKey | Pda

    The PDA to track the user's deposit

  • Optional feeWallet?: PublicKey | Pda

    The wallet where fees are sent

  • Optional genesisAccount?: PublicKey | Pda

    The address of the genesis account

  • mint: PublicKey | Pda

    The address of the mint

  • Optional payer?: Signer

    The account paying for the storage fees

  • Optional penaltyWallet?: PublicKey | Pda

    Creator-controlled wallet that receives dynamic penalty fees (optional, defaults to fee_wallet)

  • Optional recipient?: Signer

    The recipient of the tokens

  • Optional systemProgram?: PublicKey | Pda

    The system program

  • Optional tokenProgram?: PublicKey | Pda

    The SPL Token program

Generated using TypeDoc