You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
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 };
|
|
|