From 3ba9b879ae85de0337f8a656619c797ea2997833 Mon Sep 17 00:00:00 2001 From: Harry Altman Date: Thu, 16 Feb 2023 00:11:48 -0500 Subject: [PATCH] Update Sourcify chains for February 2023 --- packages/source-fetcher/lib/networks.ts | 6 +++++- packages/source-fetcher/lib/sourcify.ts | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/source-fetcher/lib/networks.ts b/packages/source-fetcher/lib/networks.ts index ceb37f18593..1f473e819a3 100644 --- a/packages/source-fetcher/lib/networks.ts +++ b/packages/source-fetcher/lib/networks.ts @@ -90,7 +90,11 @@ export const networkNamesById: { [id: number]: string } = { 42262: "emerald-oasis", 42261: "testnet-emerald-oasis", 23294: "sapphire-oasis", //not presently supported by either fetcher, but... - 23295: "testnet-sapphire-oasis" + 23295: "testnet-sapphire-oasis", + 14: "flare", + 19: "songbird-flare", + 2048: "stratos", //not presently supported by either fetcher, but... + 2047: "testnet-stratos" //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 3a9ae4b74cd..eae1f3ae105 100644 --- a/packages/source-fetcher/lib/sourcify.ts +++ b/packages/source-fetcher/lib/sourcify.ts @@ -117,7 +117,11 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher "emerald-oasis", "testnet-emerald-oasis", //sourcify does *not* support oasis sapphire mainnet? - "testnet-sapphire-oasis" + "testnet-sapphire-oasis", + "flare", + "songbird-flare", + //sourcify does *not* support stratos mainnet? + "testnet-stratos" //I'm excluding crystaleum as it has network ID different from chain ID //excluding kekchain for the same reason ]);