Returns
[NetworkConfig!]!
List of network configuration objects (union of per-network types). See NetworkConfig.
Arguments
[Int!]
Optional list of network IDs to filter (e.g. [1]). Omit to return all supported networks.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get detailed network configuration (EVM, Solana, etc.): explorer, base token, default pair, stable coins.
query GetNetworkConfigs {
getNetworkConfigs(networkIds: [1, 42161, 1399811149]) {
... on EvmNetworkConfig {
networkId
name
explorer {
name
url
}
}
... on SolanaNetworkConfig {
networkId
name
explorer {
name
url
}
}
}
}