Networks
Networks represent specific blockchain networks within a chain (e.g., Ethereum Mainnet, Sepolia Testnet). Each network has a native currency and can have additional token currencies.
Network Model
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique network identifier |
name | string | Network name |
network_id | integer | Chain-specific network identifier (e.g., 1 for Ethereum Mainnet) |
chain_id | string (UUID) | Parent chain ID |
native_currency | string | Native currency symbol (e.g., ETH) |
native_currency_decimals | integer | Decimal places for the native currency |
status | integer | Network status: 1 = Active, 2 = Passive |
created_at | string (ISO 8601) | Creation timestamp |
updated_at | string (ISO 8601) | Last update timestamp |
deleted_at | string (ISO 8601) | null | Soft deletion timestamp |
Endpoints
All network endpoints are nested under chains.
| Method | Path | Description |
|---|---|---|
| GET | /v1/chains/{chain_id}/networks | List networks by chain |
| GET | /v1/chains/{chain_id}/networks/{network_id} | Get network by ID |