Skip to content

Commit

Permalink
chore: rm goerli
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyg0 committed Aug 1, 2024
1 parent 22bcf30 commit cb73198
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/data/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ const sepolia: Chain = {
rpcUrl: "https://rpc.ankr.com/eth_sepolia",
explorerUrl: "https://sepolia.etherscan.io",
};
const goerli: Chain = {
id: 5,
name: "Ethereum Goerli Testnet",
network: "goerli",
rpcUrl: "https://rpc.ankr.com/eth_goerli",
explorerUrl: "https://goerli.etherscan.io",
};

export type L2Chain = Chain & { l1Chain?: Chain; blockExplorerApiUrl?: string; verificationApiUrl?: string };
export const l2Chains: L2Chain[] = [
Expand All @@ -48,16 +41,6 @@ export const l2Chains: L2Chain[] = [
verificationApiUrl: "https://zksync2-mainnet-explorer.zksync.io",
l1Chain: mainnet,
},
{
// deprecated network
id: 280,
name: "ZKsync Goerli Testnet",
network: "zksync-goerli",
rpcUrl: "https://testnet.era.zksync.dev",
explorerUrl: "https://goerli.explorer.zksync.io",
verificationApiUrl: "https://zksync2-testnet-explorer.zksync.dev",
l1Chain: goerli,
},
{
id: 260,
name: "In-memory local node",
Expand Down

0 comments on commit cb73198

Please sign in to comment.