1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Update INFURA_NETWORKS in NC tests to ostensibly use dec #'s (#19316)

This is a tiny change in order to make the NetworkController tests
between core and this repo more consistent and easier to compare.
This commit is contained in:
Elliot Winkler 2023-05-31 11:51:46 -06:00 committed by GitHub
parent 206e4537d1
commit 1fc4b39dc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,19 +86,19 @@ const BLOCK: Block = POST_1559_BLOCK;
const INFURA_NETWORKS = [
{
networkType: NETWORK_TYPES.MAINNET,
chainId: '0x1' as const,
chainId: toHex(1),
ticker: 'ETH',
blockExplorerUrl: 'https://etherscan.io',
},
{
networkType: NETWORK_TYPES.GOERLI,
chainId: '0x5' as const,
chainId: toHex(5),
ticker: 'GoerliETH',
blockExplorerUrl: 'https://goerli.etherscan.io',
},
{
networkType: NETWORK_TYPES.SEPOLIA,
chainId: '0xaa36a7' as const,
chainId: toHex(11155111),
ticker: 'SepoliaETH',
blockExplorerUrl: 'https://sepolia.etherscan.io',
},