cURL
curl --request GET \ --url https://api.example.com/v1/metadata/chains \ --header 'X-Access-Key: <x-access-key>' \ --header 'X-Signature: <x-signature>' \ --header 'X-Timestamp: <x-timestamp>'
{ "chains": [ {} ] }
Get supported blockchain networks
mainnet
testnet
evm
solana
bitcoin
curl -X GET "https://api.axonvault.io/v1/metadata/chains?network=mainnet" \ -H "X-Access-Key: ak_live_abc123" \ -H "X-Signature: sha256=..." \ -H "X-Timestamp: 2024-01-15T10:30:00Z"
{ "chains": [ { "chainId": "eip155:1", "name": "Ethereum Mainnet", "ecosystem": "evm", "network": "mainnet", "nativeCurrency": { "name": "Ether", "symbol": "ETH", "decimals": 18 }, "rpcUrls": ["https://eth.axonvault.io"], "blockExplorerUrl": "https://etherscan.io", "coinType": 60, "enabled": true }, { "chainId": "eip155:8453", "name": "Base", "ecosystem": "evm", "network": "mainnet", "nativeCurrency": { "name": "Ether", "symbol": "ETH", "decimals": 18 }, "rpcUrls": ["https://base.axonvault.io"], "blockExplorerUrl": "https://basescan.org", "coinType": 60, "enabled": true }, { "chainId": "solana:mainnet", "name": "Solana Mainnet", "ecosystem": "solana", "network": "mainnet", "nativeCurrency": { "name": "Solana", "symbol": "SOL", "decimals": 9 }, "rpcUrls": ["https://solana.axonvault.io"], "blockExplorerUrl": "https://solscan.io", "coinType": 501, "enabled": true } ] }
eip155:1
solana:mainnet