pub fn burn_edition_nft(
    program_id: Pubkey,
    metadata: Pubkey,
    owner: Pubkey,
    print_edition_mint: Pubkey,
    master_edition_mint: Pubkey,
    print_edition_token: Pubkey,
    master_edition_token: Pubkey,
    master_edition: Pubkey,
    print_edition: Pubkey,
    edition_marker: Pubkey,
    spl_token: Pubkey
) -> Instruction
Expand description

Burn Edition NFT

Burn an Edition NFT, closing its token, metadata and edition accounts, and reducing the Master Edition supply.

Accounts:

  1. [writable] Print NFT Metadata Account
  2. [writable, signer] Owner of Print NFT
  3. [writable] Mint of Print Edition NFT
  4. [writable] Mint of Master Edition NFT
  5. [writable] Print Edition Token Account
  6. [writable] Master Edition Token Account
  7. [writable] Master Edition PDA Account
  8. [writable] Print Edition PDA Account
  9. [writable] Edition Marker PDA Account
  10. [] SPL Token program.