/** * 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 { BurnSplArgs } from '../types/BurnSplArgs'; /** * @category Instructions * @category BurnSpl * @category generated */ export type BurnSplInstructionArgs = { args: BurnSplArgs; }; /** * @category Instructions * @category BurnSpl * @category generated */ export declare const burnSplStruct: beet.BeetArgsStruct; /** * Accounts required by the _burnSpl_ instruction * * @property [] project * @property [] aritst * @property [_writable_] burner * @property [] tokenMint * @property [_writable_] mintTokenAccount * @property [] currency * @property [_writable_] currencyMint * @property [_writable_] tokenAccount * @property [_writable_] holderAccount * @property [_writable_] vault * @property [**signer**] payer * @property [] instructionsSysvar * @property [] currencyManagerProgram * @property [] hiveControl * @category Instructions * @category BurnSpl * @category generated */ export type BurnSplInstructionAccounts = { project: web3.PublicKey; aritst: web3.PublicKey; burner: web3.PublicKey; tokenMint: web3.PublicKey; mintTokenAccount: web3.PublicKey; currency: web3.PublicKey; currencyMint: web3.PublicKey; tokenAccount: web3.PublicKey; holderAccount: web3.PublicKey; vault: web3.PublicKey; payer: web3.PublicKey; instructionsSysvar: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hiveControl: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const burnSplInstructionDiscriminator: number[]; /** * Creates a _BurnSpl_ 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 BurnSpl * @category generated */ export declare function createBurnSplInstruction(accounts: BurnSplInstructionAccounts, args: BurnSplInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=burnSpl.d.ts.map