Struct sugar_cli::common::nft_accounts::Initialize
source · pub struct Initialize {
pub candy_machine: Pubkey,
pub authority_pda: Pubkey,
pub authority: Pubkey,
pub payer: Pubkey,
pub collection_metadata: Pubkey,
pub collection_mint: Pubkey,
pub collection_master_edition: Pubkey,
pub collection_update_authority: Pubkey,
pub collection_authority_record: Pubkey,
pub token_metadata_program: Pubkey,
pub system_program: Pubkey,
}Expand description
Generated client accounts for Initialize.
Fields§
§candy_machine: PubkeyCandy Machine account. The account space must be allocated to allow accounts larger than 10kb.
Authority PDA used to verify minted NFTs to the collection.
Candy Machine authority. This is the address that controls the upate of the candy machine.
payer: PubkeyPayer of the transaction.
collection_metadata: PubkeyMetadata account of the collection.
collection_mint: PubkeyMint account of the collection.
collection_master_edition: PubkeyMaster Edition account of the collection.
Update authority of the collection. This needs to be a signer so the candy machine can approve a delegate to verify minted NFTs to the collection.
Collection authority record. The delegate is used to verify NFTs.
token_metadata_program: PubkeyToken Metadata program.
system_program: PubkeySystem program.
Trait Implementations§
source§impl BorshSerialize for Initializewhere
Pubkey: BorshSerialize,
impl BorshSerialize for Initializewhere Pubkey: BorshSerialize,
source§impl ToAccountMetas for Initialize
impl ToAccountMetas for Initialize
source§fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta, Global>
fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta, Global>
is_signer is given as an optional override for the signer meta field.
This covers the edge case when a program-derived-address needs to relay
a transaction from a client to another program but sign the transaction
before the relay. The client cannot mark the field as a signer, and so
we have to override the is_signer meta field given by the client.Auto Trait Implementations§
impl RefUnwindSafe for Initialize
impl Send for Initialize
impl Sync for Initialize
impl Unpin for Initialize
impl UnwindSafe for Initialize
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more