pub struct GetMetadataMultiResponseValue {Show 20 fields
pub address: String,
pub chain: String,
pub coingecko_coin_id: Option<String>,
pub decimals: String,
pub description: Option<String>,
pub dev_last_token_created_at: Option<String>,
pub dev_total_tokens: Option<String>,
pub extra: Option<TokenExtra>,
pub image_url: Option<String>,
pub metadata_address: Option<String>,
pub name: String,
pub social_medias: Option<TokenSocialMedias>,
pub symbol: String,
pub token_created_at: Option<i64>,
pub token_created_block_height: Option<String>,
pub token_created_slot: Option<String>,
pub token_created_tx_signature: Option<String>,
pub token_creators: Vec<TokenCreator>,
pub updated_at: Option<String>,
pub uri: Option<String>,
}Expand description
Token metadata
JSON schema
{
"description": "Token metadata",
"type": "object",
"required": [
"address",
"chain",
"decimals",
"name",
"symbol"
],
"properties": {
"address": {
"description": "Token contract address",
"examples": [
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
],
"type": "string"
},
"chain": {
"description": "Blockchain network identifier",
"examples": [
"sol"
],
"type": "string"
},
"coingeckoCoinId": {
"description": "CoinGecko coin identifier",
"examples": [
"usd-coin"
],
"type": "string"
},
"decimals": {
"description": "Number of decimal places",
"examples": [
"9"
],
"type": "string"
},
"description": {
"description": "Token description",
"examples": [
"USDC is a stablecoin pegged to the US dollar"
],
"type": "string"
},
"devLastTokenCreatedAt": {
"description": "Timestamp of developer last token creation",
"examples": [
"2025-12-03T09:23:34.000Z"
],
"type": "string"
},
"devTotalTokens": {
"description": "Total number of tokens created by the developer",
"examples": [
"163"
],
"type": "string"
},
"extra": {
"$ref": "#/components/schemas/TokenExtra"
},
"imageUrl": {
"description": "Token logo image URL",
"examples": [
"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png"
],
"type": "string"
},
"metadataAddress": {
"description": "On-chain metadata account address",
"examples": [
"metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s"
],
"type": "string"
},
"name": {
"description": "Token display name",
"examples": [
"USD Coin"
],
"type": "string"
},
"socialMedias": {
"$ref": "#/components/schemas/TokenSocialMedias"
},
"symbol": {
"description": "Token ticker symbol",
"examples": [
"USDC"
],
"type": "string"
},
"tokenCreatedAt": {
"description": "Token creation timestamp (milliseconds)",
"examples": [
1710417600000
],
"type": "integer",
"format": "int64"
},
"tokenCreatedBlockHeight": {
"description": "Block height when token was created",
"examples": [
"220000000"
],
"type": "string"
},
"tokenCreatedSlot": {
"description": "Slot number when token was created",
"examples": [
"230000000"
],
"type": "string"
},
"tokenCreatedTxSignature": {
"description": "Transaction signature of token creation",
"examples": [
"5dJ1BxPiFT7w7aBdkxNy2jopGZnZoLwRwS8e9GkEXrVz..."
],
"type": "string"
},
"tokenCreators": {
"description": "List of token creators",
"type": "array",
"items": {
"$ref": "#/components/schemas/TokenCreator"
}
},
"updatedAt": {
"description": "Last updated timestamp",
"examples": [
"2026-02-09T08:05:12.345Z"
],
"type": "string"
},
"uri": {
"description": "Token metadata URI",
"examples": [
"https://arweave.net/abc123"
],
"type": "string"
}
}
}Fields§
§address: StringToken contract address
chain: StringBlockchain network identifier
coingecko_coin_id: Option<String>CoinGecko coin identifier
decimals: StringNumber of decimal places
description: Option<String>Token description
dev_last_token_created_at: Option<String>Timestamp of developer last token creation
dev_total_tokens: Option<String>Total number of tokens created by the developer
extra: Option<TokenExtra>§image_url: Option<String>Token logo image URL
metadata_address: Option<String>On-chain metadata account address
name: StringToken display name
symbol: StringToken ticker symbol
token_created_at: Option<i64>Token creation timestamp (milliseconds)
token_created_block_height: Option<String>Block height when token was created
token_created_slot: Option<String>Slot number when token was created
token_created_tx_signature: Option<String>Transaction signature of token creation
token_creators: Vec<TokenCreator>List of token creators
updated_at: Option<String>Last updated timestamp
uri: Option<String>Token metadata URI
Implementations§
Trait Implementations§
Source§impl Clone for GetMetadataMultiResponseValue
impl Clone for GetMetadataMultiResponseValue
Source§fn clone(&self) -> GetMetadataMultiResponseValue
fn clone(&self) -> GetMetadataMultiResponseValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for GetMetadataMultiResponseValue
impl<'de> Deserialize<'de> for GetMetadataMultiResponseValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
impl From<&GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
Source§fn from(value: &GetMetadataMultiResponseValue) -> Self
fn from(value: &GetMetadataMultiResponseValue) -> Self
Converts to this type from the input type.
Source§impl From<GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
impl From<GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
Source§fn from(value: GetMetadataMultiResponseValue) -> Self
fn from(value: GetMetadataMultiResponseValue) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
impl TryFrom<GetMetadataMultiResponseValue> for GetMetadataMultiResponseValue
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetMetadataMultiResponseValue,
) -> Result<Self, ConversionError>
fn try_from( value: GetMetadataMultiResponseValue, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetMetadataMultiResponseValue
impl RefUnwindSafe for GetMetadataMultiResponseValue
impl Send for GetMetadataMultiResponseValue
impl Sync for GetMetadataMultiResponseValue
impl Unpin for GetMetadataMultiResponseValue
impl UnsafeUnpin for GetMetadataMultiResponseValue
impl UnwindSafe for GetMetadataMultiResponseValue
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