Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Update sourcify networks for sourcify 2.4.0 #6141

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion packages/source-fetcher/lib/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,18 @@ export const networkNamesById: { [id: number]: string } = {
25925: "testnet-bitkub",
7777777: "zora",
570: "rollux",
57000: "tanenbaum-rollux"
57000: "tanenbaum-rollux",
6119: "uptn",
2222: "kava",
2221: "testnet-kava",
314: "filecoin",
32769: "zilliqa",
33101: "testnet-zilliqa",
111111: "siberium", //not presently supported by either fetcher, but...
111000: "testnet-siberium"
//I'm not including crystaleum as it has network ID different from chain ID
//not including kekchain for the same reason
//not including ethereum classic for same reason
};

export const networksByName: Types.SupportedNetworks = Object.fromEntries(
Expand Down
9 changes: 8 additions & 1 deletion packages/source-fetcher/lib/sourcify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,14 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher
"testnet-bitkub",
"zora",
"rollux",
"tanenbaum-rollux"
"tanenbaum-rollux",
"uptn",
"kava",
"testnet-kava",
"filecoin",
"zilliqa",
"testnet-zilliqa",
"testnet-siberium"
//I'm excluding crystaleum as it has network ID different from chain ID
//excluding kekchain for the same reason
]);
Expand Down