/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; /** * @category Instructions * @category BurnNft * @category generated */ export declare const burnNftStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _burnNft_ instruction * * @property [_writable_] project * @property [_writable_] burner * @property [_writable_] nftMint * @property [_writable_] nftTokenAccount * @property [_writable_] nftMetadata * @property [_writable_] nftEdition * @property [_writable_] nftTokenRecord (optional) * @property [_writable_] masterEditionMint (optional) * @property [_writable_] masterEditionTokenAccount (optional) * @property [_writable_] masterEdition (optional) * @property [_writable_] editionMarker (optional) * @property [_writable_] collectionMetadata (optional) * @property [] currency * @property [_writable_] currencyMint * @property [_writable_] tokenAccount * @property [_writable_] holderAccount * @property [_writable_] vault * @property [_writable_, **signer**] owner * @property [_writable_, **signer**] payer * @property [] instructionsSysvar * @property [] metadataProgram * @property [] currencyManagerProgram * @property [] hiveControl * @category Instructions * @category BurnNft * @category generated */ export type BurnNftInstructionAccounts = { project: web3.PublicKey; burner: web3.PublicKey; nftMint: web3.PublicKey; nftTokenAccount: web3.PublicKey; nftMetadata: web3.PublicKey; nftEdition: web3.PublicKey; nftTokenRecord?: web3.PublicKey; masterEditionMint?: web3.PublicKey; masterEditionTokenAccount?: web3.PublicKey; masterEdition?: web3.PublicKey; editionMarker?: web3.PublicKey; collectionMetadata?: web3.PublicKey; currency: web3.PublicKey; currencyMint: web3.PublicKey; tokenAccount: web3.PublicKey; holderAccount: web3.PublicKey; vault: web3.PublicKey; owner: web3.PublicKey; payer: web3.PublicKey; instructionsSysvar: web3.PublicKey; metadataProgram: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hiveControl: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const burnNftInstructionDiscriminator: number[]; /** * Creates a _BurnNft_ instruction. * * Optional accounts that are not provided will be omitted from the accounts * array passed with the instruction. * An optional account that is set cannot follow an optional account that is unset. * Otherwise an Error is raised. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category BurnNft * @category generated */ export declare function createBurnNftInstruction(accounts: BurnNftInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=burnNft.d.ts.map