Chains

Chains represent the supported blockchain networks that Pareto interacts with. These include the networks where vaults are deployed, where user interactions occur, and where transactions are tracked.

Structure

Each chain object includes:

  • _id (string) — Unique identifier for the chain

  • name (string) — Human-readable name of the blockchain (e.g., "Ethereum")

  • chainId (string) — Network ID used internally by Pareto

  • nativeToken (string) — Symbol of the native currency (e.g., ETH, MATIC)

  • explorerUrl (string) — Block explorer base URL for linking transactions or accounts

  • icon (string) — Optional icon URL

  • createdAt, updatedAt (string) — ISO timestamps (UTC Unix time)

Endpoints

List all chains

get
Responses
chevron-right
200

A list of chains

application/json
totalCountintegerOptional
get
/chains
200

A list of chains

Get chain by ID

get
Path parameters
chainIdstringRequired
Responses
chevron-right
200

Chain details

application/json
_idstringOptional
namestringOptional
hexstringOptional
blocksPerYearnumberOptional
tokenSymbolstringOptional
chainIDnumberOptional
colorstringOptional
isDisabledbooleanOptional
createdAtstring · date-timeOptional
createdBystringOptional
updatedAtstring · date-timeOptional
updatedBystringOptional
get
/chains/{chainId}
200

Chain details

Last updated