Skip to content

List supported networks (live, optional paused)

GET
/v1/wallet/networks
curl --request GET \
--url 'https://api.parasta.io/v1/wallet/networks?include=paused' \
--header 'Authorization: Bearer <token>'
include
string
Allowed values: paused

OK

Media type application/json
object
networks
Array<object>
object
networkId
required
string
name
string
family
required

Virtual-machine family. Drives client-side address encoding (0x hex for EVM, base58 for Solana) and signing scheme (secp256k1+keccak vs ed25519).

string
Allowed values: evm solana
caip2
required

CAIP-2 chain identifier — the canonical chain reference. EVM: eip155:{chainId} (e.g. eip155:1, eip155:137). Solana: solana:{genesisHashPrefix} (e.g. solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp). Clients that need an integer EVM chainId can parse it from the eip155: namespace; non-EVM families do not expose one.

string
role
string
Allowed values: primary secondary
rpcUrl
string
explorerUrl
string
nativeCurrency
object
symbol
string
decimals
integer
status
string
Allowed values: live paused
Examples
Example evmAndSolana

Ethereum mainnet (EVM, primary) and Solana mainnet (non-EVM, secondary)

{
"networks": [
{
"networkId": "ethereum-mainnet",
"name": "Ethereum Mainnet",
"family": "evm",
"caip2": "eip155:1",
"role": "primary",
"rpcUrl": "https://eth-mainnet.parasta.io/v1",
"explorerUrl": "https://etherscan.io",
"nativeCurrency": {
"symbol": "ETH",
"decimals": 18
},
"status": "live"
},
{
"networkId": "solana-mainnet",
"name": "Solana Mainnet",
"family": "solana",
"caip2": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"role": "secondary",
"rpcUrl": "https://solana-mainnet.parasta.io",
"explorerUrl": "https://explorer.solana.com",
"nativeCurrency": {
"symbol": "SOL",
"decimals": 9
},
"status": "live"
}
]
}

Please contact your representative. 담당자에게 문의해주세요.