mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
0bc1eeaf37
* Deprecating Rinkeby, setting default debug network to Goerli * Deprecating Ropsten and Kovan * Conflict fix * Remove unused localization, test fixes * Add migration for moving used deprecated testnets to custom networks * Fix migrator test * Add more unit tests * Migration updates provider type to rpc if deprecated network is selected * Migration fully and correctly updates the provider if selected network is a deprecated testnet * Continue to show deprecation warning on each of rinkeby, ropsten and kovan * Add rpcUrl deprecation message to loading screen * Removing mayBeFauceting prop Co-authored-by: Dan Miller <danjm.com@gmail.com>
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
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 };
|