This repository was archived by the owner on Feb 26, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed
packages/source-fetcher/lib Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const networkNamesById: { [id: number]: string } = {
25
25
43113 : "fuji-avalanche" ,
26
26
11111 : "wagmi-avalanche" ,
27
27
53935 : "dfk-avalanche" ,
28
+ 432201 : "dexalot-avalanche" ,
28
29
335 : "testnet-dfk-avalance" ,
29
30
40 : "telos" ,
30
31
41 : "testnet-telos" ,
@@ -64,7 +65,12 @@ export const networkNamesById: { [id: number]: string } = {
64
65
534 : "candle" ,
65
66
192837465 : "gather" ,
66
67
486217935 : "devnet-gather" ,
67
- 356256156 : "testnet-gather"
68
+ 356256156 : "testnet-gather" ,
69
+ 246 : "energyweb" ,
70
+ 73799 : "volta-energyweb" ,
71
+ 71402 : "godwoken" , //not presently supported by either fetcher, but...
72
+ 71401 : "testnet-godwoken"
73
+ //I'm not including crystaleum as it has network ID different from chain ID
68
74
} ;
69
75
70
76
export const networksByName : Types . SupportedNetworks = Object . fromEntries (
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher
36
36
37
37
private static readonly supportedNetworks = new Set ( [
38
38
"mainnet" ,
39
- "ropsten" ,
40
- "kovan" ,
39
+ "ropsten" , //can no longer verify but can still fetch existing
40
+ "kovan" , //can no longer verify but can still fetch existing
41
41
"rinkeby" ,
42
42
"goerli" ,
43
43
"kovan" ,
@@ -61,6 +61,7 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher
61
61
"wagmi-avalanche" ,
62
62
"dfk-avalanche" ,
63
63
"testnet-dfk-avalanche" ,
64
+ "dexalot-avalanche" ,
64
65
"telos" ,
65
66
"testnet-telos" ,
66
67
"ubiq" ,
@@ -89,7 +90,12 @@ const SourcifyFetcher: FetcherConstructor = class SourcifyFetcher
89
90
"candle" ,
90
91
"gather" ,
91
92
"devnet-gather" ,
92
- "testnet-gather"
93
+ "testnet-gather" ,
94
+ "energyweb" ,
95
+ "volta-energyweb" ,
96
+ //sourcify does *not* support godwoken mainnet...?
97
+ "testnet-godwoken"
98
+ //I'm excluding crystaleum as it has network ID different from chain ID
93
99
] ) ;
94
100
95
101
constructor ( networkId : number ) {
You can’t perform that action at this time.
0 commit comments