NftBurnMintArgs: {
    mint: PublicKey<string>;
    requiredCollection: PublicKey<string>;
    tokenAccount?: undefined | PublicKey<string>;
    tokenStandard: TokenStandard;
}

Type declaration

  • mint: PublicKey<string>

    The mint address of the NFT to burn. This must be part of the required collection and must belong to the payer.

  • requiredCollection: PublicKey<string>
  • Optional tokenAccount?: undefined | PublicKey<string>

    The token account linking the NFT with its owner.

    Default Value

    Defaults to the associated token address using the mint address of the NFT and the payer's address.

  • tokenStandard: TokenStandard

    The token standard of the NFT to burn.

Generated using TypeDoc