Skip to main content
evm
EvmNetworkConfig
EVM-compatible chains (Ethereum, Base, Arbitrum, etc.). See EvmNetworkConfig.
solana
SolanaNetworkConfig
Solana network configuration. See SolanaNetworkConfig.
sui
SuiNetworkConfig
Sui network configuration. See SuiNetworkConfig.
aptos
AptosNetworkConfig
Aptos network configuration. See AptosNetworkConfig.
starknet
StarknetNetworkConfig
Starknet network configuration. See StarknetNetworkConfig.
Use fragments in your query to request fields from a specific member:
getNetworkConfigs(networkIds: [1]) {
  ... on EvmNetworkConfig {
    networkId
    name
    explorer { name url }
  }
  ... on SolanaNetworkConfig {
    networkId
    name
    explorer { name url }
  }
}