Type alias ClaimAuctionTokensV1InstructionAccounts

ClaimAuctionTokensV1InstructionAccounts: {
    associatedTokenProgram?: PublicKey | Pda;
    backendSigner?: Signer;
    bid: PublicKey | Pda;
    bidder?: PublicKey | Pda;
    bidderTokenAccount?: PublicKey | Pda;
    bucket?: PublicKey | Pda;
    bucketTokenAccount?: PublicKey | Pda;
    genesisAccount?: PublicKey | Pda;
    mint: PublicKey | Pda;
    payer?: Signer;
    systemProgram?: PublicKey | Pda;
    tokenProgram?: PublicKey | Pda;
}

Type declaration

  • Optional associatedTokenProgram?: PublicKey | Pda

    The Associated Token program

  • Optional backendSigner?: Signer

    Backend authorisation signer

  • bid: PublicKey | Pda

    The address of the auction bid PDA

  • Optional bidder?: PublicKey | Pda

    Overrides payer as recipient (bidder)

  • Optional bidderTokenAccount?: PublicKey | Pda

    The token account for receiving tokens

  • Optional bucket?: PublicKey | Pda

    The address of the auction bucket

  • Optional bucketTokenAccount?: PublicKey | Pda

    The token account owned by the bucket

  • Optional genesisAccount?: PublicKey | Pda

    The address of the genesis account

  • mint: PublicKey | Pda

    The address of the mint account

  • Optional payer?: Signer

    The default token recipient (bidder), also pays for ATA creation if needed

  • Optional systemProgram?: PublicKey | Pda

    The system program

  • Optional tokenProgram?: PublicKey | Pda

    The SPL Token program

Generated using TypeDoc