From c54971f0adf274f95c3d1ba126dc2c88d17b551e Mon Sep 17 00:00:00 2001 From: Harry Altman Date: Thu, 22 Jun 2023 12:42:11 -0400 Subject: [PATCH] Add zora network to Sourcify fetcher --- packages/source-fetcher/lib/networks.ts | 3 ++- packages/source-fetcher/lib/sourcify.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/source-fetcher/lib/networks.ts b/packages/source-fetcher/lib/networks.ts index 94d4cca4567..20bbe64bc61 100644 --- a/packages/source-fetcher/lib/networks.ts +++ b/packages/source-fetcher/lib/networks.ts @@ -112,7 +112,8 @@ export const networkNamesById: { [id: number]: string } = { //taiko doesn't seem to have a mainnet yet 167005: "alpha3-taiko", 96: "bitkub", - 25925: "testnet-bitkub" + 25925: "testnet-bitkub", + 7777777: "zora" //I'm not including crystaleum as it has network ID different from chain ID //not including kekchain for the same reason }; diff --git a/packages/source-fetcher/lib/sourcify.ts b/packages/source-fetcher/lib/sourcify.ts index 9284d375740..5278ca8bf2c 100644 --- a/packages/source-fetcher/lib/sourcify.ts +++ b/packages/source-fetcher/lib/sourcify.ts @@ -137,7 +137,8 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher "elysium", "alpha3-taiko", "bitkub", - "testnet-bitkub" + "testnet-bitkub", + "zora" //I'm excluding crystaleum as it has network ID different from chain ID //excluding kekchain for the same reason ]);