pub struct InitializeV2 {
Show 15 fields pub candy_machine: Pubkey, pub authority_pda: Pubkey, pub authority: Pubkey, pub payer: Pubkey, pub rule_set: Option<Pubkey>, pub collection_metadata: Pubkey, pub collection_mint: Pubkey, pub collection_master_edition: Pubkey, pub collection_update_authority: Pubkey, pub collection_delegate_record: Pubkey, pub token_metadata_program: Pubkey, pub system_program: Pubkey, pub sysvar_instructions: Pubkey, pub authorization_rules_program: Option<Pubkey>, pub authorization_rules: Option<Pubkey>,
}
Expand description

Generated client accounts for InitializeV2.

Fields§

§candy_machine: Pubkey

Candy Machine account. The account space must be allocated to allow accounts larger than 10kb.

§authority_pda: Pubkey

Authority PDA used to verify minted NFTs to the collection.

§authority: Pubkey

Candy Machine authority. This is the address that controls the upate of the candy machine.

§payer: Pubkey

Payer of the transaction.

§rule_set: Option<Pubkey>

Authorization rule set to be used by minted NFTs.

§collection_metadata: Pubkey

Metadata account of the collection.

§collection_mint: Pubkey

Mint account of the collection.

§collection_master_edition: Pubkey

Master Edition account of the collection.

§collection_update_authority: Pubkey

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_delegate_record: Pubkey

Metadata delegate record. The delegate is used to verify NFTs.

§token_metadata_program: Pubkey

Token Metadata program.

§system_program: Pubkey

System program.

§sysvar_instructions: Pubkey

Instructions sysvar account.

§authorization_rules_program: Option<Pubkey>

Token Authorization Rules program.

§authorization_rules: Option<Pubkey>

Token Authorization rules account for the collection metadata (if any).

Trait Implementations§

source§

impl BorshSerialize for InitializeV2where Pubkey: BorshSerialize, Option<Pubkey>: BorshSerialize,

source§

fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), Error>

§

fn try_to_vec(&self) -> Result<Vec<u8, Global>, Error>

Serialize this instance into a vector of bytes.
source§

impl ToAccountMetas for InitializeV2

source§

fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta>

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§

Blanket Implementations§

§

impl<T> AbiExample for T

§

default fn example() -> T

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V