pub struct PrintV1 {Show 18 fields
pub edition_metadata: Pubkey,
pub edition: Pubkey,
pub edition_mint: (Pubkey, bool),
pub edition_token_account_owner: Pubkey,
pub edition_token_account: Pubkey,
pub edition_mint_authority: Pubkey,
pub edition_token_record: Option<Pubkey>,
pub master_edition: Pubkey,
pub edition_marker_pda: Pubkey,
pub payer: Pubkey,
pub master_token_account_owner: Pubkey,
pub master_token_account: Pubkey,
pub master_metadata: Pubkey,
pub update_authority: Pubkey,
pub spl_token_program: Pubkey,
pub spl_ata_program: Pubkey,
pub sysvar_instructions: Pubkey,
pub system_program: Pubkey,
}Expand description
Accounts.
Fields§
§edition_metadata: PubkeyNew Metadata key (pda of [‘metadata’, program id, mint id])
edition: PubkeyNew Edition (pda of [‘metadata’, program id, mint id, ‘edition’])
edition_mint: (Pubkey, bool)Mint of new token - THIS WILL TRANSFER AUTHORITY AWAY FROM THIS KEY
edition_token_account_owner: PubkeyOwner of the token account of new token
edition_token_account: PubkeyToken account of new token
Mint authority of new mint
edition_token_record: Option<Pubkey>Token record account
master_edition: PubkeyMaster Record Edition V2 (pda of [‘metadata’, program id, master metadata mint id, ‘edition’])
edition_marker_pda: PubkeyEdition 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).
payer: Pubkeypayer
master_token_account_owner: Pubkeyowner of token account containing master token
master_token_account: Pubkeytoken account containing token from master metadata mint
master_metadata: PubkeyMaster record metadata account
The update authority of the master edition.
spl_token_program: PubkeyToken program
spl_ata_program: PubkeySPL Associated Token Account program
sysvar_instructions: PubkeyInstructions sysvar account
system_program: PubkeySystem program