/** * 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 { MintNewEditionFromMasterEditionViaTokenArgs } from '../types/MintNewEditionFromMasterEditionViaTokenArgs'; /** * @category Instructions * @category MintNewEditionFromMasterEditionViaVaultProxy * @category generated */ export type MintNewEditionFromMasterEditionViaVaultProxyInstructionArgs = { mintNewEditionFromMasterEditionViaTokenArgs: MintNewEditionFromMasterEditionViaTokenArgs; }; /** * @category Instructions * @category MintNewEditionFromMasterEditionViaVaultProxy * @category generated */ export declare const MintNewEditionFromMasterEditionViaVaultProxyStruct: beet.BeetArgsStruct; /** * Accounts required by the _MintNewEditionFromMasterEditionViaVaultProxy_ instruction * * @property [_writable_] newMetadata New Metadata key (pda of ['metadata', program id, mint id]) * @property [_writable_] newEdition New Edition (pda of ['metadata', program id, mint id, 'edition']) * @property [_writable_] masterEdition Master Record Edition V2 (pda of ['metadata', program id, master metadata mint id, 'edition'] * @property [_writable_] newMint Mint of new token - THIS WILL TRANSFER AUTHORITY AWAY FROM THIS KEY * @property [_writable_] editionMarkPda Edition pda to mark creation - will be checked for pre-existence. (pda of ['metadata', program id, master metadata mint id, 'edition', edition_number]) where edition_number is NOT the edition number you pass in args but actually edition_number = floor(edition/EDITION_MARKER_BIT_SIZE). * @property [**signer**] newMintAuthority Mint authority of new mint * @property [_writable_, **signer**] payer payer * @property [**signer**] vaultAuthority Vault authority * @property [] safetyDepositStore Safety deposit token store account * @property [] safetyDepositBox Safety deposit box * @property [] vault Vault * @property [] newMetadataUpdateAuthority Update authority info for new metadata * @property [] metadata Master record metadata account * @property [] tokenVaultProgram Token vault program * @category Instructions * @category MintNewEditionFromMasterEditionViaVaultProxy * @category generated */ export type MintNewEditionFromMasterEditionViaVaultProxyInstructionAccounts = { newMetadata: web3.PublicKey; newEdition: web3.PublicKey; masterEdition: web3.PublicKey; newMint: web3.PublicKey; editionMarkPda: web3.PublicKey; newMintAuthority: web3.PublicKey; payer: web3.PublicKey; vaultAuthority: web3.PublicKey; safetyDepositStore: web3.PublicKey; safetyDepositBox: web3.PublicKey; vault: web3.PublicKey; newMetadataUpdateAuthority: web3.PublicKey; metadata: web3.PublicKey; tokenProgram?: web3.PublicKey; tokenVaultProgram: web3.PublicKey; systemProgram?: web3.PublicKey; rent?: web3.PublicKey; }; export declare const mintNewEditionFromMasterEditionViaVaultProxyInstructionDiscriminator = 13; /** * Creates a _MintNewEditionFromMasterEditionViaVaultProxy_ 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 * @param args to provide as instruction data to the program * * @category Instructions * @category MintNewEditionFromMasterEditionViaVaultProxy * @category generated */ export declare function createMintNewEditionFromMasterEditionViaVaultProxyInstruction(accounts: MintNewEditionFromMasterEditionViaVaultProxyInstructionAccounts, args: MintNewEditionFromMasterEditionViaVaultProxyInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=MintNewEditionFromMasterEditionViaVaultProxy.d.ts.map