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

fix: update linea testnet rpc url (#19294)

Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
Co-authored-by: Dan J Miller <danjm.com@gmail.com>
This commit is contained in:
Victorien Gauch 2023-06-09 19:01:02 +02:00 committed by Dan J Miller
parent 6beeef5065
commit 6c3b284814

View File

@ -193,7 +193,7 @@ export const MAINNET_RPC_URL = getRpcUrl({
}); });
export const GOERLI_RPC_URL = getRpcUrl({ network: NETWORK_TYPES.GOERLI }); export const GOERLI_RPC_URL = getRpcUrl({ network: NETWORK_TYPES.GOERLI });
export const SEPOLIA_RPC_URL = getRpcUrl({ network: NETWORK_TYPES.SEPOLIA }); export const SEPOLIA_RPC_URL = getRpcUrl({ network: NETWORK_TYPES.SEPOLIA });
export const LINEA_TESTNET_RPC_URL = 'https://rpc.goerli.linea.build'; export const LINEA_TESTNET_RPC_URL = `https://linea-goerli.infura.io/v3/${infuraProjectId}`;
export const LOCALHOST_RPC_URL = 'http://localhost:8545'; export const LOCALHOST_RPC_URL = 'http://localhost:8545';
/** /**