/** * 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'; import { BurnCNftArgs } from '../types/BurnCNftArgs'; /** * @category Instructions * @category BurnCnft * @category generated */ export type BurnCnftInstructionArgs = { args: BurnCNftArgs; }; /** * @category Instructions * @category BurnCnft * @category generated */ export declare const burnCnftStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _burnCnft_ instruction * * @property [_writable_] project * @property [_writable_] burner * @property [_writable_] treeAuthority * @property [_writable_] merkleTree * @property [_writable_] merkleRoot * @property [] currency * @property [] dataHash * @property [_writable_] currencyMint * @property [_writable_] holderAccount * @property [_writable_] tokenAccount * @property [_writable_] vault * @property [_writable_, **signer**] owner * @property [_writable_, **signer**] payer * @property [] instructionsSysvar * @property [] currencyManagerProgram * @property [] hiveControl * @property [] logWrapper * @property [] compressionProgram * @property [] bubblegumProgram * @category Instructions * @category BurnCnft * @category generated */ export type BurnCnftInstructionAccounts = { project: web3.PublicKey; burner: web3.PublicKey; treeAuthority: web3.PublicKey; merkleTree: web3.PublicKey; merkleRoot: web3.PublicKey; currency: web3.PublicKey; dataHash: web3.PublicKey; currencyMint: web3.PublicKey; holderAccount: web3.PublicKey; tokenAccount: web3.PublicKey; vault: web3.PublicKey; owner: web3.PublicKey; payer: web3.PublicKey; instructionsSysvar: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hiveControl: web3.PublicKey; logWrapper: web3.PublicKey; compressionProgram: web3.PublicKey; tokenProgram?: web3.PublicKey; bubblegumProgram: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const burnCnftInstructionDiscriminator: number[]; /** * Creates a _BurnCnft_ instruction. * * @param accounts that will be accessed while the instruction is processed * @param args to provide as instruction data to the program * * @category Instructions * @category BurnCnft * @category generated */ export declare function createBurnCnftInstruction(accounts: BurnCnftInstructionAccounts, args: BurnCnftInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=burnCnft.d.ts.map