pub struct MintWrapper {
pub base: Pubkey,
pub bump: u8,
pub hard_cap: u64,
pub admin: Pubkey,
pub pending_admin: Pubkey,
pub token_mint: Pubkey,
pub num_minters: u64,
pub total_allowance: u64,
pub total_minted: u64,
}Expand description
Mint wrapper
ⓘ
seeds = [
b"MintWrapper",
base.key().to_bytes().as_ref(),
&[bump]
],Fields§
§base: PubkeyBase account.
bump: u8Bump for allowing the proxy mint authority to sign.
hard_cap: u64Maximum number of tokens that can be issued.
admin: PubkeyAdmin account.
pending_admin: PubkeyNext admin account.
token_mint: PubkeyMint of the token.
num_minters: u64Number of Minters.
total_allowance: u64Total allowance outstanding.
total_minted: u64Total amount of tokens minted through the MintWrapper.
Implementations§
Source§impl MintWrapper
impl MintWrapper
Sourcepub const LEN: usize = 161usize
pub const LEN: usize = 161usize
Number of bytes that a MintWrapper struct takes up.
Trait Implementations§
Source§impl AccountDeserialize for MintWrapper
impl AccountDeserialize for MintWrapper
Source§fn try_deserialize(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize(buf: &mut &[u8]) -> Result<Self>
Deserializes previously initialized account data. Should fail for all
uninitialized accounts, where the bytes are zeroed. Implementations
should be unique to a particular account type so that one can never
successfully deserialize the data of one account type into another.
For example, if the SPL token program were to implement this trait,
it should be impossible to deserialize a
Mint account into a token
Account.Source§fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
Deserializes account data without checking the account discriminator.
This should only be used on account initialization, when the bytes of
the account are zeroed.
Source§impl AccountSerialize for MintWrapper
impl AccountSerialize for MintWrapper
Source§impl BorshDeserialize for MintWrapper
impl BorshDeserialize for MintWrapper
Source§impl BorshSerialize for MintWrapper
impl BorshSerialize for MintWrapper
Source§impl Clone for MintWrapper
impl Clone for MintWrapper
Source§fn clone(&self) -> MintWrapper
fn clone(&self) -> MintWrapper
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MintWrapper
impl Debug for MintWrapper
Source§impl Default for MintWrapper
impl Default for MintWrapper
Source§fn default() -> MintWrapper
fn default() -> MintWrapper
Returns the “default value” for a type. Read more
Source§impl Discriminator for MintWrapper
impl Discriminator for MintWrapper
fn discriminator() -> [u8; 8]
impl Copy for MintWrapper
Auto Trait Implementations§
impl Freeze for MintWrapper
impl RefUnwindSafe for MintWrapper
impl Send for MintWrapper
impl Sync for MintWrapper
impl Unpin for MintWrapper
impl UnwindSafe for MintWrapper
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more