v1/chains/ REST API Endpoint - GoldRush Wallet API
Parameters
This method does not accept any parameters
Returns
data
object
The main response object containing blockchain status and metadata
updated_at
string
The timestamp when the data was last updated.
items
array
An array of network details.
name
string
The name of the blockchain network.
chain_id
string
The unique identifier for the blockchain network.
is_testnet
boolean
Indicates if the network is a testnet.
db_schema_name
string
The name of the database schema used for this network.
label
string
The label of the network.
category_label
string
The category label of the network.
logo_url
string
The URL of the network's logo.
black_logo_url
string
The URL of the network's black-themed logo.
white_logo_url
string
The URL of the network's white-themed logo.
color_theme
object
Details of the color theme associated with the network.
red
integer
The red component of the color theme (0-255).
green
integer
The green component of the color theme (0-255).
blue
integer
The blue component of the color theme (0-255).
alpha
integer
The alpha transparency value of the color theme (0-255).
hex
string
The hex code of the color theme.
css_rgb
string
The CSS RGB representation of the color theme.
is_appchain
boolean
Indicates if the network is an appchain.
appchain_of
object
Details about the parent network if this network is an appchain.
pagination
object
The pagination details for the response
has_more
boolean
The flag indicating if there are more pages of data
page_number
integer
The current page number
page_size
integer
The number of items per page
total_count
integer
The total number of items (nullable)
error
boolean
Indicates whether there was an error in the response
error_message
string
The error message, if any
error_code
string
The error code, if any
Request
curl --location 'https://api.covalenthq.com/v1/chains/' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer YOUR_API_KEY'
const myHeaders = new Headers(); myHeaders.append("Content-Type", "application/json"); myHeaders.append("Authorization", "Bearer YOUR_API_KEY"); const requestOptions = { method: "GET", headers: myHeaders, redirect: "follow" }; fetch("https://api.covalenthq.com/v1/chains/", requestOptions) .then((response) => response.text()) .then((result) => console.log(result)) .catch((error) => console.error(error));
import requests import json url = "https://api.covalenthq.com/v1/chains/" payload = {} headers = { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_API_KEY' } response = requests.request("GET", url, headers=headers, data=payload) print(response.text)
require "uri" require "json" require "net/http" url = URI("https://api.covalenthq.com/v1/chains/") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Get.new(url) request["Content-Type"] = "application/json" request["Authorization"] = "Bearer YOUR_API_KEY" response = https.request(request) puts response.read_body
Response
{ "data": { "updated_at": "2025-04-29T21:41:54.852522425Z", "items": [ { "name": "eth-mainnet", "chain_id": "1", "is_testnet": false, "db_schema_name": "chain_eth_mainnet", "label": "Ethereum Mainnet", "category_label": "Ethereum", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": { "red": 94, "green": 121, "blue": 138, "alpha": 255, "hex": "#5E798A", "css_rgb": "rgb(94 121 138)" }, "is_appchain": false, "appchain_of": null }, { "name": "eth-sepolia", "chain_id": "11155111", "is_testnet": true, "db_schema_name": "chain_eth_sepolia", "label": "Ethereum Sepolia Testnet", "category_label": "Ethereum", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "eth-holesky", "chain_id": "17000", "is_testnet": true, "db_schema_name": "chain_eth_holesky", "label": "Ethereum Holesky Testnet", "category_label": "Ethereum", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "matic-mainnet", "chain_id": "137", "is_testnet": false, "db_schema_name": "chain_matic_mainnet", "label": "Polygon Mainnet", "category_label": "Polygon", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1677870347-property-1-polygon-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677870457-property-1-polygon-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677870452-property-1-polygon-colour.png", "color_theme": { "red": 130, "green": 71, "blue": 229, "alpha": 255, "hex": "#8247E5", "css_rgb": "rgb(130 71 229)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-mainnet", "chain_id": "43114", "is_testnet": false, "db_schema_name": "chain_avalanche_mainnet", "label": "Avalanche C-Chain Mainnet", "category_label": "Avalanche", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1686152918-avalanche-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686152986-avalanche-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686152997-avalanche-colour.png", "color_theme": { "red": 232, "green": 65, "blue": 66, "alpha": 255, "hex": "#E84142", "css_rgb": "rgb(232 65 66)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-testnet", "chain_id": "43113", "is_testnet": true, "db_schema_name": "chain_avalanche_testnet", "label": "Avalanche Fuji Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1686152918-avalanche-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686152986-avalanche-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686152997-avalanche-colour.png", "color_theme": { "red": 232, "green": 65, "blue": 66, "alpha": 255, "hex": "#E84142", "css_rgb": "rgb(232 65 66)" }, "is_appchain": false, "appchain_of": null }, { "name": "bsc-mainnet", "chain_id": "56", "is_testnet": false, "db_schema_name": "chain_bsc_mainnet", "label": "BNB Smart Chain", "category_label": "BNB", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1670003808-binance-smart-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670003836-biance-smart-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670003837-biance-smart-chain-colour.png", "color_theme": { "red": 241, "green": 185, "blue": 10, "alpha": 255, "hex": "#F1B90A", "css_rgb": "rgb(241 185 10)" }, "is_appchain": false, "appchain_of": null }, { "name": "bsc-testnet", "chain_id": "97", "is_testnet": true, "db_schema_name": "chain_bsc_testnet", "label": "BNB Smart Chain Testnet", "category_label": "BNB", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670003808-binance-smart-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670003836-biance-smart-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670003837-biance-smart-chain-colour.png", "color_theme": { "red": 241, "green": 185, "blue": 10, "alpha": 255, "hex": "#F1B90A", "css_rgb": "rgb(241 185 10)" }, "is_appchain": false, "appchain_of": null }, { "name": "moonbeam-mainnet", "chain_id": "1284", "is_testnet": false, "db_schema_name": "chain_moonbeam_mainnet", "label": "Moonbeam Mainnet", "category_label": "Moonbeam", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669924204-moonbeam.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669924233-moonbeam.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669924256-moonbeam-1.png", "color_theme": { "red": 84, "green": 203, "blue": 200, "alpha": 255, "hex": "#54CBC8", "css_rgb": "rgb(84 203 200)" }, "is_appchain": false, "appchain_of": null }, { "name": "moonbeam-moonbase-alpha", "chain_id": "1287", "is_testnet": true, "db_schema_name": "chain_moonbeam_moonbase_alpha", "label": "Moonbeam Moonbase Alpha", "category_label": "Moonbeam", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669924204-moonbeam.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669924233-moonbeam.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669924256-moonbeam-1.png", "color_theme": { "red": 84, "green": 203, "blue": 200, "alpha": 255, "hex": "#54CBC8", "css_rgb": "rgb(84 203 200)" }, "is_appchain": false, "appchain_of": null }, { "name": "moonbeam-moonriver", "chain_id": "1285", "is_testnet": false, "db_schema_name": "chain_moonbeam_moonriver", "label": "Moonbeam Moonriver", "category_label": "Moonbeam", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669924101-moonriver.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669924133-moonriver.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669924155-moonriver-1.png", "color_theme": { "red": 255, "green": 184, "blue": 0, "alpha": 255, "hex": "#FFB800", "css_rgb": "rgb(255 184 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "arbitrum-mainnet", "chain_id": "42161", "is_testnet": false, "db_schema_name": "chain_arbitrum_mainnet", "label": "Arbitrum Mainnet", "category_label": "Arbitrum", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1686072650-arbitrum-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669925049-arbitrum-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669925028-arbitrum.png", "color_theme": { "red": 150, "green": 207, "blue": 243, "alpha": 255, "hex": "#96CFF3", "css_rgb": "rgb(150 207 243)" }, "is_appchain": false, "appchain_of": null }, { "name": "arbitrum-nova-mainnet", "chain_id": "42170", "is_testnet": false, "db_schema_name": "chain_arbitrum_nova_mainnet", "label": "Arbitrum Nova Mainnet", "category_label": "Arbitrum", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1675883705-property-1-nova-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1675883711-property-1-nova-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1675883708-property-1-nova-colour.png", "color_theme": { "red": 245, "green": 128, "blue": 39, "alpha": 255, "hex": "#F58027", "css_rgb": "rgb(245 128 39)" }, "is_appchain": false, "appchain_of": null }, { "name": "arbitrum-sepolia", "chain_id": "421614", "is_testnet": true, "db_schema_name": "chain_arbitrum_sepolia", "label": "Arbitrum Sepolia Testnet", "category_label": "Arbitrum", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1686072650-arbitrum-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669925049-arbitrum-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669925028-arbitrum.png", "color_theme": { "red": 32, "green": 49, "blue": 71, "alpha": 255, "hex": "#203147", "css_rgb": "rgb(32 49 71)" }, "is_appchain": false, "appchain_of": null }, { "name": "fantom-mainnet", "chain_id": "250", "is_testnet": false, "db_schema_name": "chain_fantom_mainnet", "label": "Fantom Opera", "category_label": "Fantom", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669925386-fantom.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669925336-fantom.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669925359-fantom-1.png", "color_theme": { "red": 25, "green": 105, "blue": 255, "alpha": 255, "hex": "#1969FF", "css_rgb": "rgb(25 105 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "fantom-testnet", "chain_id": "4002", "is_testnet": true, "db_schema_name": "chain_fantom_testnet", "label": "Fantom Testnet", "category_label": "Fantom", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669925386-fantom.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669925336-fantom.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669925359-fantom-1.png", "color_theme": { "red": 29, "green": 107, "blue": 255, "alpha": 255, "hex": "#1D6BFF", "css_rgb": "rgb(29 107 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "palm-mainnet", "chain_id": "11297108109", "is_testnet": false, "db_schema_name": "chain_palm_mainnet", "label": "Palm Mainnet", "category_label": "Palm", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1669930692-palm.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669930756-palm-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669930724-palm.png", "color_theme": { "red": 128, "green": 71, "blue": 140, "alpha": 255, "hex": "#80478C", "css_rgb": "rgb(128 71 140)" }, "is_appchain": false, "appchain_of": null }, { "name": "palm-testnet", "chain_id": "11297108099", "is_testnet": true, "db_schema_name": "chain_palm_testnet", "label": "Palm Testnet", "category_label": "Palm", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669930692-palm.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669930756-palm-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669930724-palm.png", "color_theme": { "red": 82, "green": 43, "blue": 112, "alpha": 255, "hex": "#522B70", "css_rgb": "rgb(82 43 112)" }, "is_appchain": false, "appchain_of": null }, { "name": "btc-mainnet", "chain_id": "20090103", "is_testnet": false, "db_schema_name": "dataset_bitcoin_mainnet", "label": "Btc Mainnet", "category_label": "Bitcoin", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1674516372-property-1-bitcoin-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1674516385-property-1-bitcoin-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1674516379-property-1-bitcoin-colour.png", "color_theme": { "red": 255, "green": 187, "blue": 0, "alpha": 255, "hex": "#FFBB00", "css_rgb": "rgb(255 187 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "solana-mainnet", "chain_id": "1399811149", "is_testnet": false, "db_schema_name": "chain_solana_mainnet", "label": "Solana Mainnet", "category_label": "Solana", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1670614895-solana-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670614903-solana-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670614899-solana-colour.png", "color_theme": { "red": 167, "green": 91, "blue": 232, "alpha": 255, "hex": "#A75BE8", "css_rgb": "rgb(167 91 232)" }, "is_appchain": false, "appchain_of": null }, { "name": "axie-mainnet", "chain_id": "2020", "is_testnet": false, "db_schema_name": "chain_axie_mainnet", "label": "Axie Mainnet", "category_label": "Axie", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1669931671-axie.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669931714-ronin-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669931693-ronin.png", "color_theme": { "red": 56, "green": 139, "blue": 232, "alpha": 255, "hex": "#388BE8", "css_rgb": "rgb(56 139 232)" }, "is_appchain": false, "appchain_of": null }, { "name": "optimism-mainnet", "chain_id": "10", "is_testnet": false, "db_schema_name": "chain_optimism_mainnet", "label": "Optimism Mainnet", "category_label": "Optimism", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1670347457-optimism-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670347467-optimisim-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670347461-optimisim-colour.png", "color_theme": { "red": 255, "green": 4, "blue": 33, "alpha": 255, "hex": "#FF0421", "css_rgb": "rgb(255 4 33)" }, "is_appchain": false, "appchain_of": null }, { "name": "optimism-sepolia", "chain_id": "11155420", "is_testnet": true, "db_schema_name": "chain_optimism_sepolia", "label": "Optimism Sepolia Testnet", "category_label": "Optimism", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670347457-optimism-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670347467-optimisim-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670347461-optimisim-colour.png", "color_theme": { "red": 255, "green": 4, "blue": 32, "alpha": 255, "hex": "#FF0420", "css_rgb": "rgb(255 4 32)" }, "is_appchain": false, "appchain_of": null }, { "name": "cronos-zkevm-testnet", "chain_id": "282", "is_testnet": true, "db_schema_name": "chain_cronos_zkevm_testnet", "label": "Cronos Zkevm Testnet", "category_label": "Mode", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1710187386-cronos-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1710187381-cronos-zkevm-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1710187389-cronos-zkevm-colour.png", "color_theme": { "red": 2, "green": 44, "blue": 112, "alpha": 255, "hex": "#022C70", "css_rgb": "rgb(2 44 112)" }, "is_appchain": false, "appchain_of": null }, { "name": "cronos-zkevm-mainnet", "chain_id": "388", "is_testnet": false, "db_schema_name": "chain_cronos_zkevm_mainnet", "label": "Cronos Zkevm Mainnet", "category_label": "Cronos", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1710187386-cronos-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1710187381-cronos-zkevm-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1710187389-cronos-zkevm-colour.png", "color_theme": { "red": 2, "green": 44, "blue": 112, "alpha": 255, "hex": "#022C70", "css_rgb": "rgb(2 44 112)" }, "is_appchain": false, "appchain_of": null }, { "name": "aurora-mainnet", "chain_id": "1313161554", "is_testnet": false, "db_schema_name": "chain_aurora_mainnet", "label": "Aurora Mainnet", "category_label": "Aurora", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669933298-aurora.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669933692-aurora-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669933689-aurora-colour.png", "color_theme": { "red": 1, "green": 239, "blue": 61, "alpha": 255, "hex": "#01EF3D", "css_rgb": "rgb(1 239 61)" }, "is_appchain": false, "appchain_of": null }, { "name": "aurora-testnet", "chain_id": "1313161555", "is_testnet": true, "db_schema_name": "chain_aurora_testnet", "label": "Aurora Testnet", "category_label": "Aurora", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669933298-aurora.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669933692-aurora-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669933689-aurora-colour.png", "color_theme": { "red": 1, "green": 239, "blue": 61, "alpha": 255, "hex": "#01EF3D", "css_rgb": "rgb(1 239 61)" }, "is_appchain": false, "appchain_of": null }, { "name": "emerald-paratime-mainnet", "chain_id": "42262", "is_testnet": false, "db_schema_name": "chain_emerald_paratime_mainnet", "label": "Oasis Emerald ParaTime Mainnet", "category_label": "Oasis", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669933877-oasis.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669933853-oasis-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669933835-oasis.png", "color_theme": { "red": 0, "green": 146, "blue": 246, "alpha": 255, "hex": "#0092F6", "css_rgb": "rgb(0 146 246)" }, "is_appchain": false, "appchain_of": null }, { "name": "defi-kingdoms-mainnet", "chain_id": "53935", "is_testnet": false, "db_schema_name": "chain_defi_kingdoms_mainnet", "label": "DeFi Kingdoms Mainnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670009063-defi-kingdoms-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670009081-defi-kingdoms-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670009079-defi-kingdoms-colour.png", "color_theme": { "red": 42, "green": 176, "blue": 88, "alpha": 255, "hex": "#2AB058", "css_rgb": "rgb(42 176 88)" }, "is_appchain": true, "appchain_of": { "name": "avalanche-mainnet", "chain_id": "43114", "is_testnet": false, "db_schema_name": "chain_avalanche_mainnet", "label": "Avalanche C-Chain Mainnet", "category_label": "Avalanche", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1686152918-avalanche-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686152986-avalanche-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686152997-avalanche-colour.png", "color_theme": { "red": 232, "green": 65, "blue": 66, "alpha": 255, "hex": "#E84142", "css_rgb": "rgb(232 65 66)" }, "is_appchain": false, "appchain_of": null } }, { "name": "defi-kingdoms-testnet", "chain_id": "335", "is_testnet": true, "db_schema_name": "chain_defi_kingdoms_testnet", "label": "DeFi Kingdoms Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670009063-defi-kingdoms-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670009081-defi-kingdoms-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670009079-defi-kingdoms-colour.png", "color_theme": { "red": 42, "green": 176, "blue": 88, "alpha": 255, "hex": "#2AB058", "css_rgb": "rgb(42 176 88)" }, "is_appchain": true, "appchain_of": null }, { "name": "boba-mainnet", "chain_id": "288", "is_testnet": false, "db_schema_name": "chain_boba_mainnet", "label": "Boba Mainnet", "category_label": "Boba", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1697057870-boba-ethereum-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1697057872-boba-ethereum-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1697057863-boba-ethereum-colour.png", "color_theme": { "red": 204, "green": 255, "blue": 0, "alpha": 255, "hex": "#CCFF00", "css_rgb": "rgb(204 255 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "boba-bnb-mainnet", "chain_id": "56288", "is_testnet": false, "db_schema_name": "chain_boba_bnb_mainnet", "label": "Boba BNB Mainnet", "category_label": "Boba", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1697057939-boba-bnb-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1697057941-boba-bnb-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1697057932-boba-bnb-colour.png", "color_theme": { "red": 204, "green": 254, "blue": 0, "alpha": 255, "hex": "#CCFE00", "css_rgb": "rgb(204 254 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "boba-bnb-testnet", "chain_id": "9728", "is_testnet": true, "db_schema_name": "chain_boba_bnb_testnet", "label": "Boba BNB Testnet", "category_label": "Boba", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1697057939-boba-bnb-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1697057941-boba-bnb-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1697057932-boba-bnb-colour.png", "color_theme": { "red": 204, "green": 254, "blue": 0, "alpha": 255, "hex": "#CCFE00", "css_rgb": "rgb(204 254 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "scroll-sepolia-testnet", "chain_id": "534351", "is_testnet": true, "db_schema_name": "chain_scroll_sepolia_testnet", "label": "Scroll Sepolia Testnet", "category_label": "Scroll", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1697057853-scroll-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1697057846-scroll-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1697057840-scroll-colour.png", "color_theme": { "red": 229, "green": 209, "blue": 184, "alpha": 255, "hex": "#E5D1B8", "css_rgb": "rgb(229 209 184)" }, "is_appchain": false, "appchain_of": null }, { "name": "metis-mainnet", "chain_id": "1088", "is_testnet": false, "db_schema_name": "chain_metis_mainnet", "label": "Metis Mainnet", "category_label": "Metis", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670612985-metis-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670612991-metis-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670612987-metis-colour.png", "color_theme": { "red": 0, "green": 218, "blue": 205, "alpha": 255, "hex": "#00DACD", "css_rgb": "rgb(0 218 205)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-dexalot-mainnet", "chain_id": "432204", "is_testnet": false, "db_schema_name": "chain_avalanche_dexalot_mainnet", "label": "Avalanche Dexalot Mainnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670526211-dexalot-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670953443-dexalot-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670526215-dexalot-colour.png", "color_theme": { "red": 229, "green": 23, "blue": 126, "alpha": 255, "hex": "#E5177E", "css_rgb": "rgb(229 23 126)" }, "is_appchain": true, "appchain_of": { "name": "avalanche-mainnet", "chain_id": "43114", "is_testnet": false, "db_schema_name": "chain_avalanche_mainnet", "label": "Avalanche C-Chain Mainnet", "category_label": "Avalanche", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1686152918-avalanche-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686152986-avalanche-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686152997-avalanche-colour.png", "color_theme": { "red": 232, "green": 65, "blue": 66, "alpha": 255, "hex": "#E84142", "css_rgb": "rgb(232 65 66)" }, "is_appchain": false, "appchain_of": null } }, { "name": "avalanche-dexalot-testnet", "chain_id": "432201", "is_testnet": true, "db_schema_name": "chain_avalanche_dexalot_testnet", "label": "Avalanche Dexalot Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1670526211-dexalot-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1670953443-dexalot-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1670526215-dexalot-colour.png", "color_theme": { "red": 229, "green": 25, "blue": 128, "alpha": 255, "hex": "#E51980", "css_rgb": "rgb(229 25 128)" }, "is_appchain": true, "appchain_of": null }, { "name": "avalanche-shrapnel-mainnet", "chain_id": "2044", "is_testnet": false, "db_schema_name": "chain_avalanche_shrapnel_mainnet", "label": "Avalanche Sharapnel Mainnet", "category_label": "AVALANCHE", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1688578579-shrapnel-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1688578587-shrapnel-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1688578581-shrapnel-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-numbers", "chain_id": "10507", "is_testnet": false, "db_schema_name": "chain_avalanche_numbers", "label": "Avalanche Numbers", "category_label": "AVALANCHE", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1690300594-numbers-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1690300604-numbers-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1690300599-numbers-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-xanachain", "chain_id": "8888", "is_testnet": false, "db_schema_name": "chain_avalanche_xanachain", "label": "Avalanche Xanachain", "category_label": "AVALANCHE", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1690301832-xana-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1690301589-xana-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1690301835-xana-colour.png", "color_theme": { "red": 255, "green": 0, "blue": 226, "alpha": 255, "hex": "#FF00E2", "css_rgb": "rgb(255 0 226)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-step-network", "chain_id": "1234", "is_testnet": false, "db_schema_name": "chain_avalanche_step_network", "label": "Avalanche Step Network", "category_label": "AVALANCHE", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1690301281-step-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1690301292-step-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1690301285-step-colour.png", "color_theme": { "red": 242, "green": 206, "blue": 37, "alpha": 255, "hex": "#F2CE25", "css_rgb": "rgb(242 206 37)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-shrapnel-testnet", "chain_id": "2038", "is_testnet": true, "db_schema_name": "chain_avalanche_shrapnel_testnet", "label": "Avalanche Sharapnel Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1688578579-shrapnel-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1688578587-shrapnel-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1688578581-shrapnel-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-beam-testnet", "chain_id": "13337", "is_testnet": true, "db_schema_name": "chain_avalanche_beam_testnet", "label": "Avalanche Beam Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692206023-beam-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692206029-beam-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692206015-beam-colour.png", "color_theme": { "red": 241, "green": 230, "blue": 105, "alpha": 255, "hex": "#F1E669", "css_rgb": "rgb(241 230 105)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-blitz-testnet", "chain_id": "1343", "is_testnet": true, "db_schema_name": "chain_avalanche_blitz_testnet", "label": "Avalanche Blitz Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692141777-blitz-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692141772-blitz-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692141795-blitz-colour.png", "color_theme": { "red": 236, "green": 16, "blue": 59, "alpha": 255, "hex": "#EC103B", "css_rgb": "rgb(236 16 59)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-uptn", "chain_id": "6119", "is_testnet": false, "db_schema_name": "chain_avalanche_uptn", "label": "Avalanche Uptn", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692725306-uptn-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692725339-uptn-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692725289-uptn-colour.png", "color_theme": { "red": 95, "green": 70, "blue": 255, "alpha": 255, "hex": "#5F46FF", "css_rgb": "rgb(95 70 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-beam-mainnet", "chain_id": "4337", "is_testnet": false, "db_schema_name": "chain_avalanche_beam_mainnet", "label": "Avalanche Beam Mainnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692206023-beam-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692206029-beam-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692206015-beam-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-mirai-testnet", "chain_id": "2195", "is_testnet": true, "db_schema_name": "chain_avalanche_mirai_testnet", "label": "Avalanche Mirai Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1696970616-mirai-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1696970610-mirai-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1696970657-mirai-colour.png", "color_theme": { "red": 246, "green": 149, "blue": 32, "alpha": 255, "hex": "#F69520", "css_rgb": "rgb(246 149 32)" }, "is_appchain": false, "appchain_of": null }, { "name": "berachain-mainnet", "chain_id": "80094", "is_testnet": false, "db_schema_name": "chain_berachain_mainnet", "label": "Berachain Mainnet", "category_label": "Bera", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721060184-berachain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721060186-berachain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721060175-berachain-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "unichain-mainnet", "chain_id": "130", "is_testnet": false, "db_schema_name": "chain_unichain_mainnet", "label": "Unichain Mainnet", "category_label": "Unichain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": null, "is_appchain": false, "appchain_of": null }, { "name": "canto-mainnet", "chain_id": "7700", "is_testnet": false, "db_schema_name": "chain_canto_mainnet", "label": "Canto Mainnet", "category_label": "Canto", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1675984804-property-1-canto-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1675984811-property-1-canto-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1675984808-property-1-canto-colour.png", "color_theme": { "red": 14, "green": 255, "blue": 154, "alpha": 255, "hex": "#0EFF9A", "css_rgb": "rgb(14 255 154)" }, "is_appchain": false, "appchain_of": null }, { "name": "flarenetworks-flare-mainnet", "chain_id": "14", "is_testnet": false, "db_schema_name": "chain_flarenetworks_flare_mainnet", "label": "FlareNetworks Flare Mainnet", "category_label": "FlareNetworks", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1676567740-property-1-flare-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1676567747-property-1-flare-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1676567743-property-1-flare-colour.png", "color_theme": { "red": 221, "green": 0, "blue": 85, "alpha": 255, "hex": "#DD0055", "css_rgb": "rgb(221 0 85)" }, "is_appchain": false, "appchain_of": null }, { "name": "flarenetworks-flare-testnet", "chain_id": "114", "is_testnet": true, "db_schema_name": "chain_flarenetworks_flare_testnet", "label": "FlareNetworks Flare Testnet", "category_label": "FlareNetworks", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1676567740-property-1-flare-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1676567747-property-1-flare-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1676567743-property-1-flare-colour.png", "color_theme": { "red": 227, "green": 12, "blue": 110, "alpha": 255, "hex": "#E30C6E", "css_rgb": "rgb(227 12 110)" }, "is_appchain": false, "appchain_of": null }, { "name": "linea-mainnet", "chain_id": "59144", "is_testnet": false, "db_schema_name": "chain_linea_mainnet", "label": "Linea Mainnet", "category_label": "LINEA", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1679953835-property-1-linea-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1679953847-property-1-linea-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1679953850-property-1-linea-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "polygon-zkevm-mainnet", "chain_id": "1101", "is_testnet": false, "db_schema_name": "chain_polygon_zkevm_mainnet", "label": "Polygon ZkEVM Mainnet", "category_label": "Polygon", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1677870347-property-1-polygon-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677870364-property-1-polygon-zkevm-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677870356-polygon-zkevm-colour.png", "color_theme": { "red": 132, "green": 25, "blue": 254, "alpha": 255, "hex": "#8419FE", "css_rgb": "rgb(132 25 254)" }, "is_appchain": false, "appchain_of": null }, { "name": "linea-goerli-testnet", "chain_id": "59140", "is_testnet": true, "db_schema_name": "chain_linea_goerli_testnet", "label": "Linea Goerli Testnet", "category_label": "Linea", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1679953835-property-1-linea-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1679953847-property-1-linea-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1679953850-property-1-linea-colour.png", "color_theme": { "red": 98, "green": 223, "blue": 255, "alpha": 255, "hex": "#62DFFF", "css_rgb": "rgb(98 223 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "linea-sepolia-testnet", "chain_id": "59141", "is_testnet": true, "db_schema_name": "chain_linea_sepolia_testnet", "label": "Linea Sepolia Testnet", "category_label": "LINEA", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1679953835-property-1-linea-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1679953847-property-1-linea-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1679953850-property-1-linea-colour.png", "color_theme": { "red": 98, "green": 223, "blue": 255, "alpha": 255, "hex": "#62DFFF", "css_rgb": "rgb(98 223 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "polygon-zkevm-testnet", "chain_id": "1422", "is_testnet": true, "db_schema_name": "chain_polygon_zkevm_testnet", "label": "Polygon ZkEVM Testnet", "category_label": "Polygon", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1677870347-property-1-polygon-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677870364-property-1-polygon-zkevm-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677870356-polygon-zkevm-colour.png", "color_theme": { "red": 130, "green": 60, "blue": 255, "alpha": 255, "hex": "#823CFF", "css_rgb": "rgb(130 60 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "polygon-amoy-testnet", "chain_id": "80002", "is_testnet": true, "db_schema_name": "chain_polygon_amoy_testnet", "label": "Polygon Amoy Testnet", "category_label": "Polygon", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1677870347-property-1-polygon-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677870457-property-1-polygon-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677870452-property-1-polygon-colour.png", "color_theme": { "red": 130, "green": 60, "blue": 255, "alpha": 255, "hex": "#823CFF", "css_rgb": "rgb(130 60 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "mantle-mainnet", "chain_id": "5000", "is_testnet": false, "db_schema_name": "chain_mantle_mainnet", "label": "Mantle Mainnet", "category_label": "MANTLE", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1677538585-property-1-mantle-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677538591-property-1-mantle-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677538588-mantle-colour.png", "color_theme": { "red": 37, "green": 152, "blue": 53, "alpha": 255, "hex": "#259835", "css_rgb": "rgb(37 152 53)" }, "is_appchain": false, "appchain_of": null }, { "name": "mantle-sepolia-testnet", "chain_id": "5003", "is_testnet": true, "db_schema_name": "chain_mantle_sepolia_testnet", "label": "Mantle Sepolia Testnet", "category_label": "Mantle", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": null, "is_appchain": false, "appchain_of": null }, { "name": "polygon-zkevm-cardona-testnet", "chain_id": "2442", "is_testnet": true, "db_schema_name": "chain_polygon_zkevm_cardona_testnet", "label": "Polygon zkEVM Cardona Testnet", "category_label": "Polygon", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1677870347-property-1-polygon-zkevm-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677870364-property-1-polygon-zkevm-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677870356-polygon-zkevm-colour.png", "color_theme": { "red": 132, "green": 25, "blue": 254, "alpha": 255, "hex": "#8419FE", "css_rgb": "rgb(132 25 254)" }, "is_appchain": false, "appchain_of": null }, { "name": "base-mainnet", "chain_id": "8453", "is_testnet": false, "db_schema_name": "chain_base_mainnet", "label": "Base Mainnet", "category_label": "Coinbase", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1677538323-property-1-base-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677538328-property-1-base-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677538326-base-colour.png", "color_theme": { "red": 15, "green": 91, "blue": 228, "alpha": 255, "hex": "#0F5BE4", "css_rgb": "rgb(15 91 228)" }, "is_appchain": false, "appchain_of": null }, { "name": "base-sepolia-testnet", "chain_id": "84532", "is_testnet": true, "db_schema_name": "chain_base_sepolia_testnet", "label": "Base Sepolia Testnet", "category_label": "Base", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1677538323-property-1-base-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1677538328-property-1-base-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1677538326-base-colour.png", "color_theme": { "red": 54, "green": 115, "blue": 245, "alpha": 255, "hex": "#3673F5", "css_rgb": "rgb(54 115 245)" }, "is_appchain": false, "appchain_of": null }, { "name": "oasis-sapphire-mainnet", "chain_id": "23294", "is_testnet": false, "db_schema_name": "chain_oasis_sapphire_mainnet", "label": "Oasis Sapphire Mainnet", "category_label": "Oasis", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1669933877-oasis.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669933853-oasis-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669933835-oasis.png", "color_theme": { "red": 16, "green": 142, "blue": 208, "alpha": 255, "hex": "#108ED0", "css_rgb": "rgb(16 142 208)" }, "is_appchain": false, "appchain_of": null }, { "name": "syndr-testnet", "chain_id": "412346", "is_testnet": true, "db_schema_name": "chain_syndr_testnet", "label": "Syndr Testnet", "category_label": "Arbitrum Orbit", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1705942030-syndr-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1705942018-syndr-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1705942023-syndr-colour.png", "color_theme": { "red": 75, "green": 38, "blue": 249, "alpha": 255, "hex": "#4B26F9", "css_rgb": "rgb(75 38 249)" }, "is_appchain": false, "appchain_of": null }, { "name": "oasis-sapphire-testnet", "chain_id": "23295", "is_testnet": true, "db_schema_name": "chain_oasis_sapphire_testnet", "label": "Oasis Sapphire Testnet", "category_label": "Oasis", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1669933877-oasis.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669933853-oasis-1.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669933835-oasis.png", "color_theme": { "red": 32, "green": 140, "blue": 207, "alpha": 255, "hex": "#208CCF", "css_rgb": "rgb(32 140 207)" }, "is_appchain": false, "appchain_of": null }, { "name": "celo-mainnet", "chain_id": "42220", "is_testnet": false, "db_schema_name": "chain_celo_mainnet", "label": "Celo Mainnet", "category_label": null, "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1705948628-celo-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1705948630-celo-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1705948621-celo-colour.png", "color_theme": { "red": 252, "green": 255, "blue": 83, "alpha": 255, "hex": "#FCFF53", "css_rgb": "rgb(252 255 83)" }, "is_appchain": false, "appchain_of": null }, { "name": "x1-mainnet", "chain_id": "196", "is_testnet": false, "db_schema_name": "chain_x1_mainnet", "label": "X1", "category_label": null, "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1713476248-x-layer-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1713476250-x-layer-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1713476241-x-layer-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "horizen-eon-mainnet", "chain_id": "7332", "is_testnet": false, "db_schema_name": "chain_horizen_eon_mainnet", "label": "Horizen EON Mainnet", "category_label": "HORIZEN", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1681157624-property-1-horizen-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1681157629-property-1-horizen-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1681157627-property-1-horizen-colour.png", "color_theme": { "red": 10, "green": 198, "blue": 239, "alpha": 255, "hex": "#0AC6EF", "css_rgb": "rgb(10 198 239)" }, "is_appchain": false, "appchain_of": null }, { "name": "horizen-gobi-testnet", "chain_id": "1663", "is_testnet": true, "db_schema_name": "chain_horizen_gobi_testnet", "label": "Horizen Gobi Testnet", "category_label": "Horizen", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1681157624-property-1-horizen-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1681157629-property-1-horizen-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1681157627-property-1-horizen-colour.png", "color_theme": { "red": 84, "green": 245, "blue": 225, "alpha": 255, "hex": "#54F5E1", "css_rgb": "rgb(84 245 225)" }, "is_appchain": false, "appchain_of": null }, { "name": "fraxtal-mainnet", "chain_id": "252", "is_testnet": false, "db_schema_name": "chain_fraxtal_mainnet", "label": "Fraxtal Mainnet", "category_label": "Fraxtal", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721236645-fraxtal-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721236648-fraxtal-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721236636-fraxtal-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "apechain-testnet", "chain_id": "1798", "is_testnet": true, "db_schema_name": "chain_apechain_testnet", "label": "Apechain Testnet", "category_label": "Apechain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721237126-apechain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721237129-apechain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721237118-apechain-colour.png", "color_theme": { "red": 1, "green": 84, "blue": 250, "alpha": 255, "hex": "#0154FA", "css_rgb": "rgb(1 84 250)" }, "is_appchain": false, "appchain_of": null }, { "name": "berachain-testnet", "chain_id": "80084", "is_testnet": true, "db_schema_name": "chain_berachain_testnet", "label": "Berachain Testnet", "category_label": "Berachain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721060184-berachain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721060186-berachain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721060175-berachain-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "redstone-mainnet", "chain_id": "690", "is_testnet": false, "db_schema_name": "chain_redstone_mainnet", "label": "Redstone Mainnet", "category_label": "Redstone", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721059591-redstone-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721060361-redstone-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721059584-redstone-colour.png", "color_theme": { "red": 243, "green": 66, "blue": 66, "alpha": 255, "hex": "#F34242", "css_rgb": "rgb(243 66 66)" }, "is_appchain": false, "appchain_of": null }, { "name": "sei-mainnet", "chain_id": "1329", "is_testnet": false, "db_schema_name": "chain_sei_mainnet", "label": "Sei Mainnet", "category_label": null, "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1719366713-sei-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1719366715-sei-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1719366706-sei-colour.png", "color_theme": { "red": 158, "green": 30, "blue": 26, "alpha": 255, "hex": "#9E1E1A", "css_rgb": "rgb(158 30 26)" }, "is_appchain": false, "appchain_of": null }, { "name": "apechain-mainnet", "chain_id": "33139", "is_testnet": false, "db_schema_name": "chain_apechain_mainnet", "label": "Apechain Mainnet", "category_label": "Apechain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1721237126-apechain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1721237129-apechain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1721237118-apechain-colour.png", "color_theme": { "red": 1, "green": 84, "blue": 250, "alpha": 255, "hex": "#0154FA", "css_rgb": "rgb(1 84 250)" }, "is_appchain": false, "appchain_of": null }, { "name": "unichain-sepolia-testnet", "chain_id": "1301", "is_testnet": true, "db_schema_name": "chain_unichain_sepolia_testnet", "label": "Unichain Sepolia Testnet", "category_label": "Unichain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1729276538-unichain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1729276359-unichain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1729276359-unichain-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "world-mainnet", "chain_id": "480", "is_testnet": false, "db_schema_name": "chain_world_mainnet", "label": "World Mainnet", "category_label": "World", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1731090239-world-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1731090239-world-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1731090239-world-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "world-sepolia-testnet", "chain_id": "4801", "is_testnet": true, "db_schema_name": "chain_world_sepolia_testnet", "label": "World Sepolia Testnet", "category_label": "World", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1731090239-world-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1731090239-world-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1731090239-world-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "lens-sepolia-testnet", "chain_id": "37111", "is_testnet": true, "db_schema_name": "chain_lens_sepolia_testnet", "label": "Lens Sepolia Testnet", "category_label": "Lens", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1732061231-lens-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1732061231-lens-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1732061231-lens-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "ink-sepolia-testnet", "chain_id": "763373", "is_testnet": true, "db_schema_name": "chain_ink_sepolia_testnet", "label": "Ink Sepolia Testnet", "category_label": "Ink", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "ink-mainnet", "chain_id": "57073", "is_testnet": false, "db_schema_name": "chain_ink_mainnet", "label": "Ink Mainnet", "category_label": "Ink", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1732899594-ink-colour.png", "color_theme": { "red": 2, "green": 2, "blue": 2, "alpha": 255, "hex": "#020202", "css_rgb": "rgb(2 2 2)" }, "is_appchain": false, "appchain_of": null }, { "name": "lens-mainnet", "chain_id": "232", "is_testnet": false, "db_schema_name": "chain_lens_mainnet", "label": "Lens Mainnet", "category_label": "Lens", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1669653891-eth.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1669619544-ethereum.png", "white_logo_url": "https://www.datocms-assets.com/86369/1669619533-ethereum.png", "color_theme": null, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-meld-testnet", "chain_id": "222000222", "is_testnet": true, "db_schema_name": "chain_avalanche_meld_testnet", "label": "Avalanche Meld Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1686612449-property-1-meld-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686612459-property-1-meld-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686612454-property-1-meld-colour.png", "color_theme": { "red": 254, "green": 37, "blue": 79, "alpha": 255, "hex": "#FE254F", "css_rgb": "rgb(254 37 79)" }, "is_appchain": false, "appchain_of": null }, { "name": "avalanche-meld-mainnet", "chain_id": "333000333", "is_testnet": false, "db_schema_name": "chain_avalanche_meld_mainnet", "label": "Avalanche Meld Mainnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1686612449-property-1-meld-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686612459-property-1-meld-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686612454-property-1-meld-colour.png", "color_theme": { "red": 217, "green": 22, "blue": 76, "alpha": 255, "hex": "#D9164C", "css_rgb": "rgb(217 22 76)" }, "is_appchain": false, "appchain_of": null }, { "name": "gunzilla-testnet", "chain_id": "49321", "is_testnet": true, "db_schema_name": "chain_gunzilla_testnet", "label": "Gunzilla Testnet", "category_label": "Avalanche", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1686687108-property-1-gunzilla-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1686687143-property-1-gunzilla-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1686687141-property-1-gunzilla-colour.png", "color_theme": { "red": 181, "green": 255, "blue": 16, "alpha": 255, "hex": "#B5FF10", "css_rgb": "rgb(181 255 16)" }, "is_appchain": false, "appchain_of": null }, { "name": "zora-mainnet", "chain_id": "7777777", "is_testnet": false, "db_schema_name": "chain_zora_mainnet", "label": "Zora Mainnet", "category_label": "ZORA", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1687802329-zora-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1687802340-zora-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1687802336-zora-colour.png", "color_theme": { "red": 157, "green": 177, "blue": 236, "alpha": 255, "hex": "#9DB1EC", "css_rgb": "rgb(157 177 236)" }, "is_appchain": false, "appchain_of": null }, { "name": "zora-sepolia-testnet", "chain_id": "999999999", "is_testnet": true, "db_schema_name": "chain_zora_sepolia_testnet", "label": "Zora Sepolia Testnet", "category_label": "ZORA", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1687802329-zora-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1687802340-zora-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1687802336-zora-colour.png", "color_theme": { "red": 255, "green": 255, "blue": 255, "alpha": 255, "hex": "#FFFFFF", "css_rgb": "rgb(255 255 255)" }, "is_appchain": false, "appchain_of": null }, { "name": "zksync-mainnet", "chain_id": "324", "is_testnet": false, "db_schema_name": "chain_zksync_mainnet", "label": "Zksync Era Mainnet", "category_label": "Zksync", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1691631490-zksync-era-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1691631503-zksync-era-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1691631514-zksync-era-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "zksync-sepolia-testnet", "chain_id": "300", "is_testnet": true, "db_schema_name": "chain_zksync_sepolia_testnet", "label": "Zksync Sepolia Testnet", "category_label": "Zksync", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1691631490-zksync-era-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1691631503-zksync-era-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1691631514-zksync-era-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "bnb-opbnb-testnet", "chain_id": "5611", "is_testnet": true, "db_schema_name": "chain_bnb_opbnb_testnet", "label": "Bnb Opbnb Testnet", "category_label": "BNB", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692813949-opbnb-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692813952-opbnb-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692813943-opbnb-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "bnb-opbnb-mainnet", "chain_id": "204", "is_testnet": false, "db_schema_name": "chain_bnb_opbnb_mainnet", "label": "Bnb Opbnb Mainnet", "category_label": "BNB", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692813949-opbnb-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692813952-opbnb-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692813943-opbnb-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "zetachain-testnet", "chain_id": "7001", "is_testnet": true, "db_schema_name": "chain_zetachain_testnet", "label": "ZetaChain Athens-3 Testnet", "category_label": "Zetachain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1693503842-zetachain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1693331958-zetachain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1693331953-zetachain-colour.png", "color_theme": { "red": 0, "green": 87, "blue": 64, "alpha": 255, "hex": "#005740", "css_rgb": "rgb(0 87 64)" }, "is_appchain": false, "appchain_of": null }, { "name": "zetachain-mainnet", "chain_id": "7000", "is_testnet": false, "db_schema_name": "chain_zetachain_mainnet", "label": "ZetaChain Mainnet", "category_label": "Zetachain", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1693503842-zetachain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1693331958-zetachain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1693331953-zetachain-colour.png", "color_theme": { "red": 0, "green": 75, "blue": 57, "alpha": 255, "hex": "#004B39", "css_rgb": "rgb(0 75 57)" }, "is_appchain": false, "appchain_of": null }, { "name": "kinto-testnet", "chain_id": "42888", "is_testnet": true, "db_schema_name": "chain_kinto_testnet", "label": "Kinto Testnet", "category_label": "Kinto", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1692727261-kinto-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1692727255-kinto-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1692727284-kinto-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "rollux-mainnet", "chain_id": "570", "is_testnet": false, "db_schema_name": "chain_rollux_mainnet", "label": "Rollux Mainnet", "category_label": "Rollux", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1695328153-rollux-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1695328155-rollux-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1695328146-rollux-colour.png", "color_theme": { "red": 218, "green": 239, "blue": 136, "alpha": 255, "hex": "#DAEF88", "css_rgb": "rgb(218 239 136)" }, "is_appchain": false, "appchain_of": null }, { "name": "gnosis-mainnet", "chain_id": "100", "is_testnet": false, "db_schema_name": "chain_gnosis_mainnet", "label": "Gnosis Mainnet", "category_label": "Gnosis", "priority_label": "Foundational", "logo_url": "https://www.datocms-assets.com/86369/1695328167-gnosis-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1695328138-gnosis-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1695328162-gnosis-chain-colour.png", "color_theme": { "red": 62, "green": 104, "blue": 87, "alpha": 255, "hex": "#3E6857", "css_rgb": "rgb(62 104 87)" }, "is_appchain": false, "appchain_of": null }, { "name": "gnosis-testnet", "chain_id": "10200", "is_testnet": true, "db_schema_name": "chain_gnosis_testnet", "label": "Gnosis Testnet", "category_label": "Gnosis", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1695328167-gnosis-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1695328138-gnosis-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1695328162-gnosis-chain-colour.png", "color_theme": { "red": 62, "green": 104, "blue": 87, "alpha": 255, "hex": "#3E6857", "css_rgb": "rgb(62 104 87)" }, "is_appchain": false, "appchain_of": null }, { "name": "viction-mainnet", "chain_id": "88", "is_testnet": false, "db_schema_name": "chain_tomochain_mainnet", "label": "Viction Mainnet", "category_label": "Viction", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1698867827-viction-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1698867829-viction-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1698867819-viction-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "viction-testnet", "chain_id": "89", "is_testnet": true, "db_schema_name": "chain_tomochain_testnet", "label": "Viction Testnet", "category_label": "Viction", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1698867827-viction-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1698867829-viction-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1698867819-viction-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "taiko-hekla-testnet", "chain_id": "167009", "is_testnet": true, "db_schema_name": "chain_taiko_hekla_testnet", "label": "Taiko Hekla Testnet", "category_label": "Taiko", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1695749616-taiko-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1695749621-taiko-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1695749551-taiko-colour.png", "color_theme": { "red": 232, "green": 24, "blue": 153, "alpha": 255, "hex": "#E81899", "css_rgb": "rgb(232 24 153)" }, "is_appchain": false, "appchain_of": null }, { "name": "taiko-mainnet", "chain_id": "167000", "is_testnet": false, "db_schema_name": "chain_taiko_mainnet", "label": "Taiko Mainnet", "category_label": "Taiko", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1695749616-taiko-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1695749621-taiko-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1695749551-taiko-colour.png", "color_theme": { "red": 232, "green": 24, "blue": 153, "alpha": 255, "hex": "#E81899", "css_rgb": "rgb(232 24 153)" }, "is_appchain": false, "appchain_of": null }, { "name": "merlin-mainnet", "chain_id": "4200", "is_testnet": false, "db_schema_name": "chain_merlin_mainnet", "label": "Merlin Mainnet", "category_label": "Merlin", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1708710672-merlin-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1708710675-merlin-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1708710679-merlin-chain-colour.png", "color_theme": { "red": 54, "green": 46, "blue": 205, "alpha": 255, "hex": "#362ECD", "css_rgb": "rgb(54 46 205)" }, "is_appchain": false, "appchain_of": null }, { "name": "merlin-testnet", "chain_id": "686868", "is_testnet": true, "db_schema_name": "chain_merlin_testnet", "label": "Merlin Testnet", "category_label": "Merlin", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1708710672-merlin-chain-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1708710675-merlin-chain-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1708710679-merlin-chain-colour.png", "color_theme": { "red": 54, "green": 46, "blue": 205, "alpha": 255, "hex": "#362ECD", "css_rgb": "rgb(54 46 205)" }, "is_appchain": false, "appchain_of": null }, { "name": "movement-mevm-testnet", "chain_id": "336", "is_testnet": true, "db_schema_name": "chain_movement_mevm_testnet", "label": "Movement Mevm Testnet", "category_label": "Merlin", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1708459462-movement-labs-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1708459454-movement-labs-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1708459445-movement-labs-colour.png", "color_theme": { "red": 0, "green": 0, "blue": 0, "alpha": 255, "hex": "#000000", "css_rgb": "rgb(0 0 0)" }, "is_appchain": false, "appchain_of": null }, { "name": "blast-mainnet", "chain_id": "81457", "is_testnet": false, "db_schema_name": "chain_blast_mainnet", "label": "Blast Mainnet", "category_label": "Blast", "priority_label": "Community", "logo_url": "https://www.datocms-assets.com/86369/1710534544-blast-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1710534546-blast-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1710534536-blast-colour.png", "color_theme": { "red": 252, "green": 252, "blue": 5, "alpha": 255, "hex": "#FCFC05", "css_rgb": "rgb(252 252 5)" }, "is_appchain": false, "appchain_of": null }, { "name": "scroll-mainnet", "chain_id": "534352", "is_testnet": false, "db_schema_name": "chain_scroll_mainnet", "label": "Scroll Mainnet", "category_label": "Scroll", "priority_label": "Frontier", "logo_url": "https://www.datocms-assets.com/86369/1697057853-scroll-icon-white.svg", "black_logo_url": "https://www.datocms-assets.com/86369/1697057846-scroll-white.png", "white_logo_url": "https://www.datocms-assets.com/86369/1697057840-scroll-colour.png", "color_theme": { "red": 235, "green": 194, "blue": 174, "alpha": 255, "hex": "#EBC2AE", "css_rgb": "rgb(235 194 174)" }, "is_appchain": false, "appchain_of": null } ], "pagination": null }, "error": false, "error_message": null, "error_code": null }
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free