pub struct TokenMetadata {
    pub update_authority: OptionalNonZeroPubkey,
    pub mint: Pubkey,
    pub name: String,
    pub symbol: String,
    pub uri: String,
    pub additional_metadata: Vec<(String, String)>,
}
Expand description

Data struct for all token-metadata, stored in a TLV entry

The type and length parts must be handled by the TLV library, and not stored as part of this struct.

Fields§

§update_authority: OptionalNonZeroPubkey

The authority that can sign to update the metadata

§mint: Pubkey

The associated mint, used to counter spoofing to be sure that metadata belongs to a particular mint

§name: String

The longer name of the token

§symbol: String

The shortened symbol for the token

§uri: String

The URI pointing to richer metadata

§additional_metadata: Vec<(String, String)>

Any additional metadata about the token as key-value pairs. The program must avoid storing the same key twice.

Implementations§

source§

impl TokenMetadata

source

pub fn tlv_size_of(&self) -> Result<usize, ProgramError>

Gives the total size of this struct as a TLV entry in an account

source

pub fn update(&mut self, field: Field, value: String)

Updates a field in the metadata struct

source

pub fn set_key_value(&mut self, new_key: String, new_value: String)

Sets a key-value pair in the additional metadata

If the key is already present, overwrites the existing entry. Otherwise, adds it to the end.

source

pub fn remove_key(&mut self, key: &str) -> bool

Removes the key-value pair given by the provided key. Returns true if the key was found.

source

pub fn get_slice( data: &[u8], start: Option<u64>, end: Option<u64> ) -> Option<&[u8]>

Get the slice corresponding to the given start and end range

Trait Implementations§

source§

impl BorshDeserialize for TokenMetadatawhere OptionalNonZeroPubkey: BorshDeserialize, Pubkey: BorshDeserialize, String: BorshDeserialize, Vec<(String, String)>: BorshDeserialize,

source§

fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>

source§

fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>

Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes.
source§

fn try_from_slice(v: &[u8]) -> Result<Self, Error>

Deserialize this instance from a slice of bytes.
source§

fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where R: Read,

source§

impl BorshSchema for TokenMetadatawhere OptionalNonZeroPubkey: BorshSchema, Pubkey: BorshSchema, String: BorshSchema, Vec<(String, String)>: BorshSchema,

source§

fn declaration() -> Declaration

Get the name of the type without brackets.
source§

fn add_definitions_recursively( definitions: &mut HashMap<Declaration, Definition> )

Recursively, using DFS, add type definitions required for this type. For primitive types this is an empty map. Type definition explains how to serialize/deserialize a type.
source§

fn add_definition( declaration: String, definition: Definition, definitions: &mut HashMap<String, Definition, RandomState> )

Helper method to add a single type definition to the map.
source§

fn schema_container() -> BorshSchemaContainer

source§

impl BorshSerialize for TokenMetadatawhere OptionalNonZeroPubkey: BorshSerialize, Pubkey: BorshSerialize, String: BorshSerialize, Vec<(String, String)>: BorshSerialize,

source§

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

source§

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

Serialize this instance into a vector of bytes.
source§

impl Clone for TokenMetadata

source§

fn clone(&self) -> TokenMetadata

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TokenMetadata

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for TokenMetadata

source§

fn default() -> TokenMetadata

Returns the “default value” for a type. Read more
source§

impl PartialEq<TokenMetadata> for TokenMetadata

source§

fn eq(&self, other: &TokenMetadata) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl SplDiscriminate for TokenMetadata

source§

const SPL_DISCRIMINATOR: ArrayDiscriminator = _

Please use this discriminator in your program when matching

source§

const SPL_DISCRIMINATOR_SLICE: &'static [u8] = Self::SPL_DISCRIMINATOR.as_slice()

The 8-byte discriminator as a slice (&[u8])
source§

impl VariableLenPack for TokenMetadata

source§

fn pack_into_slice(&self, dst: &mut [u8]) -> Result<(), ProgramError>

Writes the serialized form of the instance into the given slice
source§

fn unpack_from_slice(src: &[u8]) -> Result<Self, ProgramError>

Deserializes the type from the given slice
source§

fn get_packed_len(&self) -> Result<usize, ProgramError>

Gets the packed length for a given instance of the type
source§

fn pack(&self, dst: &mut [u8]) -> Result<(), ProgramError>

Safely write the contents to the type into the given slice
source§

impl StructuralPartialEq for TokenMetadata

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
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.
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