Skip to main content

Metadata Schemas

L1 Metadata Schema

{
// ID of Avalanche L1 (mandatory). You can copy from snowpeer.io/l1s
"id": "",
// Name of the l1
"name": "",
// Brief description of the l1
"description": "",
// URL or path to the l1's logo
"logo": "",
// Primary branding color in hex format
"primaryColor": "",
// Primary category of the network
"mainCategory": "",
// Additional categories
"categories": [""],
// Is this a permissionless L1 (can anyone run a validator)? Select true if yes, false if not.
"permissionless": true,
// Is this a private L1 (not open to the public)? Select true if yes, false if not.
"private": false,
// Blockchains on this L1.
// You can leave this field empty; our researchers will complete it for you.
"chains": [
{
"id": "", // Blockchain ID for the chain
"name": "", // Name of the chain
"description": "", // Description of the chain
"evmId": "", // EVM identifier
"vmID": "",
"vmName": "", // Virtual Machine name
"explorerUrl": "", // URL to the chain explorer
"rpcUrl": "", // URL for RPC endpoint
"rpcUrls": [
{
"name": "", // Name of the RPC endpoint
"url": "", // URL for the RPC endpoint
"provider": "" // Provider of the RPC endpoint
}
],
"assets": [
{
"name": "", // Asset name
"symbol": "", // Asset symbol
"type": "GAS | GOVERNANCE | ETC.", // Asset type
"denomination": "", // Denomination details
"cap": "FIXED | UNLIMITED", // Supply cap type
"description": "", // Description of the asset
"logo": "", // URL to the asset logo
"pricingDataProvider": [
{
"name": "CoinGecko", // Pricing provider
"id": "" // Provider-specific identifier
},
{
"name": "CoinMarketCap", // Alternative provider
"id": ""
}
]
}
]
}
],
"links": {
"website": "", // Official website URL
"whitepaper": "", // Whitepaper URL
"explorers": [
"" // List of block explorer URLs
],
"forum": "", // Community forum link
"git": "", // Git repository link
"docs": "", // Documentation link
"socials": [
{
"name": "", // Social media platform
"url": "" // URL to profile
}
]
},
"team": [
{
"name": "", // Team member's name
"role": "", // Role within the team
"socials": [
{
"name": "", // Social media platform
"url": "" // URL to profile
}
]
}
]
}

Provider Metadata Schema

{
// Unique ID for the provider. Name of the provider in lowercase, replacing spaces with hyphens.
"id": "ash",
// Name of the provider
"name": "",
// Website URL for the provider
"website": "",
// Description of the provider
"description": "",
// Logo URL for the provider
"logo": "",
// Associated L1s
"associatedL1s": [
{
// ID of the associated L1
"id": "",
// Name of the associated L1
"name": ""
}
]
}