/** * 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 ConvertMasterEditionV1ToV2 * @category generated */ export declare const ConvertMasterEditionV1ToV2Struct: beet.BeetArgsStruct<{ instructionDiscriminator: number; }>; /** * Accounts required by the _ConvertMasterEditionV1ToV2_ instruction * * @property [_writable_] masterEdition Master Record Edition V1 (pda of ['metadata', program id, master metadata mint id, 'edition']) * @property [_writable_] oneTimeAuth One time authorization mint * @property [_writable_] printingMint Printing mint * @category Instructions * @category ConvertMasterEditionV1ToV2 * @category generated */ export type ConvertMasterEditionV1ToV2InstructionAccounts = { masterEdition: web3.PublicKey; oneTimeAuth: web3.PublicKey; printingMint: web3.PublicKey; }; export declare const convertMasterEditionV1ToV2InstructionDiscriminator = 12; /** * Creates a _ConvertMasterEditionV1ToV2_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category ConvertMasterEditionV1ToV2 * @category generated */ export declare function createConvertMasterEditionV1ToV2Instruction(accounts: ConvertMasterEditionV1ToV2InstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=ConvertMasterEditionV1ToV2.d.ts.map