import { getRpcUrl, TEST_NETWORK_TICKER_MAP, CURRENCY_SYMBOLS, CHAIN_IDS, NETWORK_TYPES, } from '../../../../shared/constants/network'; const defaultNetworksData = [ { labelKey: NETWORK_TYPES.MAINNET, iconColor: '#29B6AF', providerType: NETWORK_TYPES.MAINNET, rpcUrl: getRpcUrl({ network: NETWORK_TYPES.MAINNET, excludeProjectId: true, }), chainId: CHAIN_IDS.MAINNET, ticker: CURRENCY_SYMBOLS.ETH, blockExplorerUrl: 'https://etherscan.io', }, { labelKey: NETWORK_TYPES.GOERLI, iconColor: '#3099f2', providerType: NETWORK_TYPES.GOERLI, rpcUrl: getRpcUrl({ network: NETWORK_TYPES.GOERLI, excludeProjectId: true, }), chainId: CHAIN_IDS.GOERLI, ticker: TEST_NETWORK_TICKER_MAP[NETWORK_TYPES.GOERLI], blockExplorerUrl: 'https://goerli.etherscan.io', }, { labelKey: NETWORK_TYPES.SEPOLIA, iconColor: '#CFB5F0', providerType: NETWORK_TYPES.SEPOLIA, rpcUrl: getRpcUrl({ network: NETWORK_TYPES.SEPOLIA, excludeProjectId: true, }), chainId: CHAIN_IDS.SEPOLIA, ticker: TEST_NETWORK_TICKER_MAP[NETWORK_TYPES.SEPOLIA], blockExplorerUrl: 'https://sepolia.etherscan.io', }, ]; export { defaultNetworksData };