@subwallet/chain-list 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle-subwallet-chain-list.js +5198 -401
- package/cjs/packageInfo.js +1 -1
- package/data/ChainAsset.json +1605 -1
- package/data/ChainInfo.json +3127 -81
- package/migrate/add-decimals.js +3837 -0
- package/migrate/convert-change-list.js +3005 -0
- package/migrate/generate-native-tokens.js +3866 -0
- package/package.json +4 -1
- package/packageInfo.js +1 -1
|
@@ -0,0 +1,3005 @@
|
|
|
1
|
+
// Convert chain list
|
|
2
|
+
|
|
3
|
+
const ContractType = {
|
|
4
|
+
wasm: 'wasm',
|
|
5
|
+
evm: 'evm'
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const inputMap = {
|
|
9
|
+
polkadot: {
|
|
10
|
+
key: 'polkadot',
|
|
11
|
+
chain: 'Polkadot Relay Chain',
|
|
12
|
+
genesisHash: '0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3',
|
|
13
|
+
icon: 'polkadot',
|
|
14
|
+
ss58Format: 0,
|
|
15
|
+
providers: {
|
|
16
|
+
Parity: 'wss://rpc.polkadot.io',
|
|
17
|
+
OnFinality: 'wss://polkadot.api.onfinality.io/public-ws',
|
|
18
|
+
// 'Geometry Labs': 'wss://polkadot.geometry.io/websockets', // https://github.com/polkadot-js/apps/pull/6746
|
|
19
|
+
Dwellir: 'wss://polkadot-rpc.dwellir.com',
|
|
20
|
+
'light client': 'light://substrate-connect/polkadot',
|
|
21
|
+
RadiumBlock: 'wss://polkadot.public.curie.radiumblock.io/ws',
|
|
22
|
+
'1RPC': 'wss://1rpc.io/dot',
|
|
23
|
+
Pinknode: 'wss://public-rpc.pinknode.io/polkadot', // https://github.com/polkadot-js/apps/issues/5721
|
|
24
|
+
Dotters: 'wss://rpc.dotters.network/polkadot',
|
|
25
|
+
'Dwellir Tunisia': 'wss://polkadot-rpc-tn.dwellir.com'
|
|
26
|
+
},
|
|
27
|
+
active: true,
|
|
28
|
+
currentProvider: 'Parity',
|
|
29
|
+
currentProviderMode: 'ws',
|
|
30
|
+
groups: ['RELAY_CHAIN'],
|
|
31
|
+
nativeToken: 'DOT',
|
|
32
|
+
decimals: 10,
|
|
33
|
+
coinGeckoKey: 'polkadot',
|
|
34
|
+
supportBonding: true,
|
|
35
|
+
getStakingOnChain: true
|
|
36
|
+
},
|
|
37
|
+
kusama: {
|
|
38
|
+
key: 'kusama',
|
|
39
|
+
chain: 'Kusama Relay Chain',
|
|
40
|
+
genesisHash: '0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe',
|
|
41
|
+
icon: 'polkadot',
|
|
42
|
+
ss58Format: 2,
|
|
43
|
+
providers: {
|
|
44
|
+
Parity: 'wss://kusama-rpc.polkadot.io',
|
|
45
|
+
OnFinality: 'wss://kusama.api.onfinality.io/public-ws',
|
|
46
|
+
// 'Geometry Labs': 'wss://kusama.geometry.io/websockets', // https://github.com/polkadot-js/apps/pull/6746
|
|
47
|
+
Dwellir: 'wss://kusama-rpc.dwellir.com',
|
|
48
|
+
'light client': 'light://substrate-connect/kusama',
|
|
49
|
+
Pinknode: 'wss://public-rpc.pinknode.io/kusama',
|
|
50
|
+
RadiumBlock: 'wss://kusama.public.curie.radiumblock.xyz/ws',
|
|
51
|
+
'1RPC': 'wss://1rpc.io/ksm',
|
|
52
|
+
DottersNet: 'wss://rpc.dotters.network/kusama',
|
|
53
|
+
'Dwellir Tunisia': 'wss://kusama-rpc-tn.dwellir.com'
|
|
54
|
+
},
|
|
55
|
+
active: true,
|
|
56
|
+
currentProvider: 'Parity',
|
|
57
|
+
currentProviderMode: 'ws',
|
|
58
|
+
groups: ['RELAY_CHAIN'],
|
|
59
|
+
nativeToken: 'KSM',
|
|
60
|
+
decimals: 12,
|
|
61
|
+
coinGeckoKey: 'kusama',
|
|
62
|
+
supportBonding: true,
|
|
63
|
+
getStakingOnChain: true
|
|
64
|
+
},
|
|
65
|
+
westend: {
|
|
66
|
+
key: 'westend',
|
|
67
|
+
chain: 'Westend Relay Chain',
|
|
68
|
+
genesisHash: '0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e',
|
|
69
|
+
icon: 'polkadot',
|
|
70
|
+
ss58Format: 42,
|
|
71
|
+
providers: {
|
|
72
|
+
Parity: 'wss://westend-rpc.polkadot.io',
|
|
73
|
+
Pinknode: 'wss://rpc.pinknode.io/westend/explorer',
|
|
74
|
+
Dwellir: 'wss://westend-rpc.dwellir.com',
|
|
75
|
+
'light client': 'light://substrate-connect/westend',
|
|
76
|
+
DottersNet: 'wss://rpc.dotters.network/westend',
|
|
77
|
+
'Dwellir Tunisia': 'wss://westend-rpc-tn.dwellir.com'
|
|
78
|
+
},
|
|
79
|
+
active: false,
|
|
80
|
+
currentProvider: 'Parity',
|
|
81
|
+
currentProviderMode: 'ws',
|
|
82
|
+
groups: ['RELAY_CHAIN', 'TEST_NET'],
|
|
83
|
+
nativeToken: 'WND',
|
|
84
|
+
decimals: 12,
|
|
85
|
+
supportBonding: true,
|
|
86
|
+
getStakingOnChain: true
|
|
87
|
+
},
|
|
88
|
+
rococo: {
|
|
89
|
+
key: 'rococo',
|
|
90
|
+
chain: 'Rococo Relay Chain',
|
|
91
|
+
genesisHash: '0x6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e',
|
|
92
|
+
icon: 'polkadot',
|
|
93
|
+
ss58Format: 42,
|
|
94
|
+
providers: {
|
|
95
|
+
Parity: 'wss://rococo-rpc.polkadot.io',
|
|
96
|
+
OnFinality: 'wss://rococo.api.onfinality.io/public-ws', // After reset, node misses host functions
|
|
97
|
+
Pinknode: 'wss://rpc.pinknode.io/rococo/explorer', // After reset, syncs to old chain
|
|
98
|
+
'Ares Protocol': 'wss://rococo.aresprotocol.com', // https://github.com/polkadot-js/apps/issues/5767
|
|
99
|
+
'light client': 'light://substrate-connect/rococo'
|
|
100
|
+
},
|
|
101
|
+
active: false,
|
|
102
|
+
currentProvider: 'Parity',
|
|
103
|
+
currentProviderMode: 'ws',
|
|
104
|
+
groups: ['RELAY_CHAIN', 'TEST_NET'],
|
|
105
|
+
nativeToken: 'ROC',
|
|
106
|
+
decimals: 12
|
|
107
|
+
},
|
|
108
|
+
statemint: {
|
|
109
|
+
key: 'statemint',
|
|
110
|
+
chain: 'Statemint',
|
|
111
|
+
genesisHash: '0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f',
|
|
112
|
+
icon: 'polkadot',
|
|
113
|
+
ss58Format: 0,
|
|
114
|
+
providers: {
|
|
115
|
+
Parity: 'wss://statemint-rpc.polkadot.io',
|
|
116
|
+
OnFinality: 'wss://statemint.api.onfinality.io/public-ws',
|
|
117
|
+
Dwellir: 'wss://statemint-rpc.dwellir.com',
|
|
118
|
+
PinkNode: 'wss://public-rpc.pinknode.io/statemint',
|
|
119
|
+
RadiumBlock: 'wss://statemint.public.curie.radiumblock.xyz/ws',
|
|
120
|
+
'Dwellir Tunisia': 'wss://statemint-rpc-tn.dwellir.com'
|
|
121
|
+
},
|
|
122
|
+
active: false,
|
|
123
|
+
currentProvider: 'Parity',
|
|
124
|
+
currentProviderMode: 'ws',
|
|
125
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
126
|
+
paraId: 1000,
|
|
127
|
+
nativeToken: 'DOT',
|
|
128
|
+
decimals: 10,
|
|
129
|
+
coinGeckoKey: 'polkadot'
|
|
130
|
+
},
|
|
131
|
+
pioneer: {
|
|
132
|
+
key: 'pioneer',
|
|
133
|
+
chain: 'Pioneer Network',
|
|
134
|
+
genesisHash: '0xf22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3',
|
|
135
|
+
ss58Format: 268,
|
|
136
|
+
providers: {
|
|
137
|
+
OnFinality: 'wss://pioneer.api.onfinality.io/public-ws'
|
|
138
|
+
},
|
|
139
|
+
active: false,
|
|
140
|
+
currentProviderMode: 'ws',
|
|
141
|
+
currentProvider: 'OnFinality',
|
|
142
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
143
|
+
paraId: 2096,
|
|
144
|
+
nativeToken: 'NEER',
|
|
145
|
+
crowdloanUrl: 'https://ksmcrowdloan.bit.country/',
|
|
146
|
+
decimals: 18,
|
|
147
|
+
coinGeckoKey: 'metaverse-network-pioneer'
|
|
148
|
+
},
|
|
149
|
+
ethereum: {
|
|
150
|
+
key: 'ethereum',
|
|
151
|
+
chain: 'Ethereum Mainnet',
|
|
152
|
+
genesisHash: '0xb60d7bdd334cd3768d43f14a05c7fe7e886ba5bcb77e1064530052fed1a3f145',
|
|
153
|
+
ss58Format: 0,
|
|
154
|
+
providers: {
|
|
155
|
+
Cloudflare: 'https://cloudflare-eth.com',
|
|
156
|
+
BlastApi: 'https://eth-mainnet.public.blastapi.io',
|
|
157
|
+
Infura: 'https://mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8'
|
|
158
|
+
},
|
|
159
|
+
active: false,
|
|
160
|
+
currentProviderMode: 'http',
|
|
161
|
+
currentProvider: 'Infura',
|
|
162
|
+
groups: ['MAIN_NET'],
|
|
163
|
+
isEthereum: true,
|
|
164
|
+
nativeToken: 'ETH',
|
|
165
|
+
decimals: 18,
|
|
166
|
+
coinGeckoKey: 'ethereum',
|
|
167
|
+
evmChainId: 1,
|
|
168
|
+
supportBonding: false,
|
|
169
|
+
getStakingOnChain: false,
|
|
170
|
+
abiExplorer: 'https://etherscan.io',
|
|
171
|
+
supportSmartContract: [ContractType.evm]
|
|
172
|
+
},
|
|
173
|
+
ethereum_goerli: {
|
|
174
|
+
key: 'ethereum_goerli',
|
|
175
|
+
chain: 'Ethereum Testnet (Goerli)',
|
|
176
|
+
genesisHash: '0x2c8974e8936649eb65786299a1129fb6a47c5e703705489be96ea715496096c5',
|
|
177
|
+
ss58Format: 0,
|
|
178
|
+
providers: {
|
|
179
|
+
Infura: 'https://goerli.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8',
|
|
180
|
+
Optimism: 'https://goerli.optimism.io'
|
|
181
|
+
},
|
|
182
|
+
active: false,
|
|
183
|
+
currentProviderMode: 'http',
|
|
184
|
+
currentProvider: 'Infura',
|
|
185
|
+
groups: ['TEST_NET'],
|
|
186
|
+
isEthereum: true,
|
|
187
|
+
nativeToken: 'GoerliETH',
|
|
188
|
+
decimals: 18,
|
|
189
|
+
coinGeckoKey: 'ethereum_goerli',
|
|
190
|
+
evmChainId: 1,
|
|
191
|
+
supportBonding: false,
|
|
192
|
+
getStakingOnChain: false,
|
|
193
|
+
abiExplorer: 'https://goerli.etherscan.io',
|
|
194
|
+
supportSmartContract: [ContractType.evm]
|
|
195
|
+
},
|
|
196
|
+
binance: {
|
|
197
|
+
key: 'binance',
|
|
198
|
+
chain: 'Binance Smart Chain',
|
|
199
|
+
genesisHash: '0x59bba357145ca539dcd1ac957abc1ec5833319ddcae7f5e8b5da0c36624784b2',
|
|
200
|
+
ss58Format: 0,
|
|
201
|
+
providers: {
|
|
202
|
+
Binance: 'https://bsc-dataseed.binance.org/',
|
|
203
|
+
Defibit: 'https://bsc-dataseed1.defibit.io/',
|
|
204
|
+
Ninicoin: 'https://bsc-dataseed1.ninicoin.io/',
|
|
205
|
+
Nodereal: 'https://bsc.nodereal.io/'
|
|
206
|
+
},
|
|
207
|
+
active: false,
|
|
208
|
+
currentProviderMode: 'http',
|
|
209
|
+
currentProvider: 'Binance',
|
|
210
|
+
groups: ['MAIN_NET'],
|
|
211
|
+
isEthereum: true,
|
|
212
|
+
nativeToken: 'BNB',
|
|
213
|
+
decimals: 18,
|
|
214
|
+
coinGeckoKey: 'binancecoin',
|
|
215
|
+
evmChainId: 56,
|
|
216
|
+
supportBonding: false,
|
|
217
|
+
getStakingOnChain: false,
|
|
218
|
+
abiExplorer: 'https://bscscan.com',
|
|
219
|
+
supportSmartContract: [ContractType.evm]
|
|
220
|
+
},
|
|
221
|
+
binance_test: {
|
|
222
|
+
key: 'binance_test',
|
|
223
|
+
chain: 'Binance Smart Chain (Testnet)',
|
|
224
|
+
genesisHash: '0xdd00fd71b568b8a2571a276129bc122ec640095f16c01d851c45a64e9a0731f1',
|
|
225
|
+
ss58Format: 0,
|
|
226
|
+
providers: {
|
|
227
|
+
Binance: 'https://data-seed-prebsc-1-s1.binance.org:8545/',
|
|
228
|
+
Binance2: 'https://data-seed-prebsc-2-s1.binance.org:8545/'
|
|
229
|
+
},
|
|
230
|
+
active: false,
|
|
231
|
+
currentProviderMode: 'http',
|
|
232
|
+
currentProvider: 'Binance',
|
|
233
|
+
groups: ['TEST_NET'],
|
|
234
|
+
isEthereum: true,
|
|
235
|
+
nativeToken: 'BNB',
|
|
236
|
+
decimals: 18,
|
|
237
|
+
evmChainId: 97,
|
|
238
|
+
supportBonding: false,
|
|
239
|
+
getStakingOnChain: false,
|
|
240
|
+
abiExplorer: 'https://testnet.bscscan.com',
|
|
241
|
+
supportSmartContract: [ContractType.evm]
|
|
242
|
+
},
|
|
243
|
+
moonbeam: {
|
|
244
|
+
key: 'moonbeam',
|
|
245
|
+
chain: 'Moonbeam',
|
|
246
|
+
genesisHash: '0xfe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d',
|
|
247
|
+
ss58Format: 1284,
|
|
248
|
+
providers: {
|
|
249
|
+
'Moonbeam Foundation': 'wss://wss.api.moonbeam.network',
|
|
250
|
+
OnFinality: 'wss://moonbeam.api.onfinality.io/public-ws',
|
|
251
|
+
Dwellir: 'wss://moonbeam-rpc.dwellir.com',
|
|
252
|
+
'1rpc': 'wss://1rpc.io/glmr',
|
|
253
|
+
PinkNode: 'wss://public-rpc.pinknode.io/moonbeam',
|
|
254
|
+
Blast: 'wss://moonbeam.public.blastapi.io',
|
|
255
|
+
UnitedBloc: 'wss://moonbeam.unitedbloc.com:3001'
|
|
256
|
+
},
|
|
257
|
+
active: false,
|
|
258
|
+
currentProviderMode: 'ws',
|
|
259
|
+
currentProvider: 'Moonbeam Foundation',
|
|
260
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
261
|
+
paraId: 2004,
|
|
262
|
+
isEthereum: true,
|
|
263
|
+
nativeToken: 'GLMR',
|
|
264
|
+
crowdloanUrl: 'https://moonbeam.foundation/moonbeam-crowdloan/',
|
|
265
|
+
decimals: 18,
|
|
266
|
+
coinGeckoKey: 'moonbeam',
|
|
267
|
+
evmChainId: 1284,
|
|
268
|
+
supportBonding: true,
|
|
269
|
+
getStakingOnChain: true,
|
|
270
|
+
abiExplorer: 'https://api-moonbeam.moonscan.io/api?module=contract&action=getabi',
|
|
271
|
+
supportSmartContract: [ContractType.evm]
|
|
272
|
+
},
|
|
273
|
+
astar: {
|
|
274
|
+
key: 'astar',
|
|
275
|
+
chain: 'Astar',
|
|
276
|
+
genesisHash: '0x9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6',
|
|
277
|
+
ss58Format: 5,
|
|
278
|
+
providers: {
|
|
279
|
+
OnFinality: 'wss://astar.api.onfinality.io/public-ws',
|
|
280
|
+
Dwellir: 'wss://astar-rpc.dwellir.com',
|
|
281
|
+
Astar: 'wss://rpc.astar.network',
|
|
282
|
+
PinkNode: 'wss://public-rpc.pinknode.io/astar',
|
|
283
|
+
Blast: 'wss://astar.public.blastapi.io',
|
|
284
|
+
'1rpc': 'wss://1rpc.io/astr',
|
|
285
|
+
'light client': 'light://substrate-connect/polkadot/astar',
|
|
286
|
+
RadiumBlock: 'wss://astar.public.curie.radiumblock.co/ws'
|
|
287
|
+
},
|
|
288
|
+
active: false,
|
|
289
|
+
currentProviderMode: 'ws',
|
|
290
|
+
currentProvider: 'Astar',
|
|
291
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
292
|
+
paraId: 2006,
|
|
293
|
+
nativeToken: 'ASTR',
|
|
294
|
+
crowdloanUrl: 'https://crowdloan.astar.network/#/',
|
|
295
|
+
decimals: 18,
|
|
296
|
+
getStakingOnChain: true,
|
|
297
|
+
supportBonding: true,
|
|
298
|
+
coinGeckoKey: 'astar',
|
|
299
|
+
supportSmartContract: [ContractType.wasm]
|
|
300
|
+
},
|
|
301
|
+
astarEvm: {
|
|
302
|
+
key: 'astarEvm',
|
|
303
|
+
chain: 'Astar - EVM',
|
|
304
|
+
genesisHash: '0x9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6_evm',
|
|
305
|
+
ss58Format: 5,
|
|
306
|
+
providers: {
|
|
307
|
+
OnFinality: 'wss://astar.api.onfinality.io/public-ws',
|
|
308
|
+
Dwellir: 'wss://astar-rpc.dwellir.com',
|
|
309
|
+
Astar: 'wss://rpc.astar.network',
|
|
310
|
+
PinkNode: 'wss://public-rpc.pinknode.io/astar',
|
|
311
|
+
Blast: 'wss://astar.public.blastapi.io',
|
|
312
|
+
'1rpc': 'wss://1rpc.io/astr'
|
|
313
|
+
},
|
|
314
|
+
isEthereum: true,
|
|
315
|
+
active: false,
|
|
316
|
+
currentProviderMode: 'ws',
|
|
317
|
+
currentProvider: 'Dwellir',
|
|
318
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
319
|
+
nativeToken: 'ASTR',
|
|
320
|
+
crowdloanUrl: 'https://crowdloan.astar.network/#/',
|
|
321
|
+
decimals: 18,
|
|
322
|
+
coinGeckoKey: 'astar',
|
|
323
|
+
evmChainId: 592,
|
|
324
|
+
paraId: 2006,
|
|
325
|
+
supportSmartContract: [ContractType.evm]
|
|
326
|
+
},
|
|
327
|
+
acala: {
|
|
328
|
+
key: 'acala',
|
|
329
|
+
chain: 'Acala',
|
|
330
|
+
genesisHash: '0xfc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c',
|
|
331
|
+
ss58Format: 10,
|
|
332
|
+
providers: {
|
|
333
|
+
'Acala Foundation 0': 'wss://acala-rpc-0.aca-api.network',
|
|
334
|
+
'Acala Foundation 1': 'wss://acala-rpc-1.aca-api.network',
|
|
335
|
+
'Acala Foundation 2': 'wss://acala-rpc-2.aca-api.network/ws',
|
|
336
|
+
'Acala Foundation 3': 'wss://acala-rpc-3.aca-api.network/ws',
|
|
337
|
+
'Polkawallet 0': 'wss://acala.polkawallet.io',
|
|
338
|
+
OnFinality: 'wss://acala-polkadot.api.onfinality.io/public-ws',
|
|
339
|
+
Dwellir: 'wss://acala-rpc.dwellir.com'
|
|
340
|
+
},
|
|
341
|
+
active: false,
|
|
342
|
+
currentProviderMode: 'ws',
|
|
343
|
+
currentProvider: 'Acala Foundation 0',
|
|
344
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
345
|
+
paraId: 2000,
|
|
346
|
+
nativeToken: 'ACA',
|
|
347
|
+
crowdloanUrl: 'https://distribution.acala.network/',
|
|
348
|
+
decimals: 12,
|
|
349
|
+
coinGeckoKey: 'acala'
|
|
350
|
+
},
|
|
351
|
+
parallel: {
|
|
352
|
+
key: 'parallel',
|
|
353
|
+
chain: 'Parallel',
|
|
354
|
+
genesisHash: '0xe61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97',
|
|
355
|
+
ss58Format: 172,
|
|
356
|
+
providers: {
|
|
357
|
+
OnFinality: 'wss://parallel.api.onfinality.io/public-ws',
|
|
358
|
+
Parallel: 'wss://rpc.parallel.fi'
|
|
359
|
+
},
|
|
360
|
+
active: false,
|
|
361
|
+
currentProviderMode: 'ws',
|
|
362
|
+
currentProvider: 'Parallel',
|
|
363
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
364
|
+
paraId: 2012,
|
|
365
|
+
nativeToken: 'PARA',
|
|
366
|
+
crowdloanUrl: 'https://crowdloan.parallel.fi/#/auction/contribute/polkadot/2012',
|
|
367
|
+
decimals: 12
|
|
368
|
+
},
|
|
369
|
+
clover: {
|
|
370
|
+
key: 'clover',
|
|
371
|
+
chain: 'Clover',
|
|
372
|
+
genesisHash: '0x5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267',
|
|
373
|
+
ss58Format: 128,
|
|
374
|
+
providers: {
|
|
375
|
+
Clover: 'wss://rpc-para.clover.finance',
|
|
376
|
+
OnFinality: 'wss://clover.api.onfinality.io/public-ws'
|
|
377
|
+
},
|
|
378
|
+
active: false,
|
|
379
|
+
currentProviderMode: 'ws',
|
|
380
|
+
currentProvider: 'Clover',
|
|
381
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
382
|
+
paraId: 2002,
|
|
383
|
+
nativeToken: 'CLV',
|
|
384
|
+
crowdloanUrl: 'https://lucky.clover.finance/?type=support',
|
|
385
|
+
decimals: 18,
|
|
386
|
+
coinGeckoKey: 'clover-finance'
|
|
387
|
+
},
|
|
388
|
+
cloverEvm: {
|
|
389
|
+
key: 'cloverEvm',
|
|
390
|
+
chain: 'Clover - EVM',
|
|
391
|
+
genesisHash: '0x5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267_1',
|
|
392
|
+
ss58Format: 128,
|
|
393
|
+
providers: {
|
|
394
|
+
Clover: 'wss://rpc-para.clover.finance',
|
|
395
|
+
OnFinality: 'wss://clover.api.onfinality.io/public-ws'
|
|
396
|
+
},
|
|
397
|
+
active: false,
|
|
398
|
+
isEthereum: true,
|
|
399
|
+
currentProviderMode: 'ws',
|
|
400
|
+
currentProvider: 'Clover',
|
|
401
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
402
|
+
evmChainId: 1024,
|
|
403
|
+
nativeToken: 'CLV',
|
|
404
|
+
crowdloanUrl: 'https://lucky.clover.finance/?type=support',
|
|
405
|
+
decimals: 18,
|
|
406
|
+
coinGeckoKey: 'clover-finance',
|
|
407
|
+
supportSmartContract: [ContractType.evm]
|
|
408
|
+
},
|
|
409
|
+
hydradx_main: {
|
|
410
|
+
key: 'hydradx_main',
|
|
411
|
+
chain: 'HydraDX',
|
|
412
|
+
genesisHash: '0xafdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d',
|
|
413
|
+
ss58Format: 63,
|
|
414
|
+
providers: {
|
|
415
|
+
'Galactic Council': 'wss://rpc.hydradx.cloud',
|
|
416
|
+
Dwellir: 'wss://hydradx-rpc.dwellir.com'
|
|
417
|
+
},
|
|
418
|
+
active: false,
|
|
419
|
+
currentProviderMode: 'ws',
|
|
420
|
+
currentProvider: 'Galactic Council',
|
|
421
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
422
|
+
paraId: 2034,
|
|
423
|
+
nativeToken: 'HDX',
|
|
424
|
+
crowdloanUrl: 'https://loan.hydradx.io/',
|
|
425
|
+
decimals: 12
|
|
426
|
+
},
|
|
427
|
+
edgeware: {
|
|
428
|
+
key: 'edgeware',
|
|
429
|
+
chain: 'Edgeware',
|
|
430
|
+
genesisHash: '0x742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b',
|
|
431
|
+
ss58Format: 7,
|
|
432
|
+
providers: {
|
|
433
|
+
JelliedOwl: 'wss://edgeware.jelliedowl.net',
|
|
434
|
+
'Commonwealth Labs': 'wss://mainnet2.edgewa.re',
|
|
435
|
+
Dwellir: 'wss://edgeware-rpc.dwellir.com'
|
|
436
|
+
},
|
|
437
|
+
active: false,
|
|
438
|
+
currentProviderMode: 'ws',
|
|
439
|
+
currentProvider: 'JelliedOwl',
|
|
440
|
+
groups: ['MAIN_NET'],
|
|
441
|
+
nativeToken: 'EDG',
|
|
442
|
+
decimals: 18,
|
|
443
|
+
coinGeckoKey: 'edgeware'
|
|
444
|
+
},
|
|
445
|
+
centrifuge: {
|
|
446
|
+
key: 'centrifuge',
|
|
447
|
+
chain: 'Centrifuge',
|
|
448
|
+
genesisHash: '0xb3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82',
|
|
449
|
+
ss58Format: 36,
|
|
450
|
+
providers: {
|
|
451
|
+
Centrifuge: 'wss://fullnode.parachain.centrifuge.io',
|
|
452
|
+
OnFinality: 'wss://centrifuge-parachain.api.onfinality.io/public-ws'
|
|
453
|
+
},
|
|
454
|
+
active: false,
|
|
455
|
+
currentProviderMode: 'ws',
|
|
456
|
+
currentProvider: 'Centrifuge',
|
|
457
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
458
|
+
paraId: 2031,
|
|
459
|
+
nativeToken: 'CFG',
|
|
460
|
+
crowdloanUrl: 'https://centrifuge.io/parachain/crowdloan/',
|
|
461
|
+
decimals: 18,
|
|
462
|
+
coinGeckoKey: 'centrifuge'
|
|
463
|
+
},
|
|
464
|
+
interlay: {
|
|
465
|
+
key: 'interlay',
|
|
466
|
+
chain: 'Interlay',
|
|
467
|
+
genesisHash: '0xed86d448b84db333cdbe07362ddc79530343b907bd88712557c024d7a94296bb',
|
|
468
|
+
ss58Format: 42,
|
|
469
|
+
providers: {
|
|
470
|
+
'Kintsugi Labs': 'wss://api.interlay.io/parachain',
|
|
471
|
+
OnFinality: 'wss://interlay.api.onfinality.io/public-ws'
|
|
472
|
+
},
|
|
473
|
+
active: false,
|
|
474
|
+
currentProviderMode: 'ws',
|
|
475
|
+
currentProvider: 'Kintsugi Labs',
|
|
476
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
477
|
+
paraId: 2032,
|
|
478
|
+
nativeToken: 'INTR',
|
|
479
|
+
crowdloanUrl: 'https://crowdloan.interlay.io/',
|
|
480
|
+
decimals: 10,
|
|
481
|
+
coinGeckoKey: 'interlay'
|
|
482
|
+
},
|
|
483
|
+
equilibrium_parachain: {
|
|
484
|
+
key: 'equilibrium_parachain',
|
|
485
|
+
chain: 'Equilibrium Parachain',
|
|
486
|
+
genesisHash: '0x89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907',
|
|
487
|
+
ss58Format: 68,
|
|
488
|
+
providers: {
|
|
489
|
+
Equilibrium: 'wss://node.pol.equilibrium.io',
|
|
490
|
+
Dwellir: 'wss://equilibrium-rpc.dwellir.com'
|
|
491
|
+
},
|
|
492
|
+
active: false,
|
|
493
|
+
currentProviderMode: 'ws',
|
|
494
|
+
currentProvider: 'Equilibrium',
|
|
495
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
496
|
+
paraId: 2011,
|
|
497
|
+
nativeToken: 'EQ',
|
|
498
|
+
crowdloanUrl: 'https://equilibrium.io/en/crowdloan#bid',
|
|
499
|
+
decimals: 10,
|
|
500
|
+
blockExplorer: 'https://equilibrium.subscan.io',
|
|
501
|
+
coinGeckoKey: 'equilibrium-token'
|
|
502
|
+
},
|
|
503
|
+
nodle: {
|
|
504
|
+
key: 'nodle',
|
|
505
|
+
chain: 'Nodle',
|
|
506
|
+
genesisHash: '0xa3d114c2b8d0627c1aa9b134eafcf7d05ca561fdc19fb388bb9457f81809fb23',
|
|
507
|
+
ss58Format: 37,
|
|
508
|
+
providers: {
|
|
509
|
+
OnFinality: 'wss://nodle-parachain.api.onfinality.io/public-ws',
|
|
510
|
+
Dwellir: 'wss://eden-rpc.dwellir.com',
|
|
511
|
+
PinkNode: 'wss://public-rpc.pinknode.io/nodle'
|
|
512
|
+
},
|
|
513
|
+
active: false,
|
|
514
|
+
currentProviderMode: 'ws',
|
|
515
|
+
currentProvider: 'Dwellir',
|
|
516
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
517
|
+
paraId: 2026,
|
|
518
|
+
nativeToken: 'NODL',
|
|
519
|
+
crowdloanUrl: 'https://parachain.nodle.com/',
|
|
520
|
+
decimals: 11,
|
|
521
|
+
coinGeckoKey: 'nodle-network',
|
|
522
|
+
abiExplorer: 'https://nodle.subscan.io'
|
|
523
|
+
},
|
|
524
|
+
darwinia: {
|
|
525
|
+
key: 'darwinia',
|
|
526
|
+
chain: 'Darwinia',
|
|
527
|
+
genesisHash: '0x729cb8f2cf428adcf81fe69610edda32c5711b2ff17de747e8604a3587021db8',
|
|
528
|
+
ss58Format: 18,
|
|
529
|
+
providers: {
|
|
530
|
+
'Darwinia Network': 'wss://rpc.darwinia.network',
|
|
531
|
+
Darwinia: 'wss://darwinia-rpc.dwellir.com'
|
|
532
|
+
},
|
|
533
|
+
active: false,
|
|
534
|
+
currentProviderMode: 'ws',
|
|
535
|
+
currentProvider: 'Darwinia',
|
|
536
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
537
|
+
paraId: 2003,
|
|
538
|
+
nativeToken: 'RING',
|
|
539
|
+
crowdloanUrl: 'https://darwinia.network/plo_contribute',
|
|
540
|
+
decimals: 9,
|
|
541
|
+
coinGeckoKey: 'darwinia-network-native-token'
|
|
542
|
+
},
|
|
543
|
+
sora_ksm: {
|
|
544
|
+
key: 'sora_ksm',
|
|
545
|
+
chain: 'SORA Kusama',
|
|
546
|
+
genesisHash: '0x6d8d9f145c2177fa83512492cdd80a71e29f22473f4a8943a6292149ac319fb9',
|
|
547
|
+
ss58Format: 420,
|
|
548
|
+
providers: {
|
|
549
|
+
Soramitsu: 'wss://ws.parachain-collator-1.c1.sora2.soramitsu.co.jp'
|
|
550
|
+
},
|
|
551
|
+
active: false,
|
|
552
|
+
currentProviderMode: 'ws',
|
|
553
|
+
currentProvider: 'Soramitsu',
|
|
554
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
555
|
+
nativeToken: 'Unit',
|
|
556
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
557
|
+
decimals: 12,
|
|
558
|
+
paraId: 2011
|
|
559
|
+
},
|
|
560
|
+
odyssey: {
|
|
561
|
+
key: 'odyssey',
|
|
562
|
+
chain: 'Ares Odyssey',
|
|
563
|
+
genesisHash: '0x0f3665e2e57fb38fd638145b69e567fb05bbadfd457624f90f15e5dbb31320bb',
|
|
564
|
+
ss58Format: 34,
|
|
565
|
+
providers: {
|
|
566
|
+
AresProtocol: 'wss://odyssey.aresprotocol.io'
|
|
567
|
+
},
|
|
568
|
+
active: false,
|
|
569
|
+
currentProviderMode: 'ws',
|
|
570
|
+
currentProvider: 'AresProtocol',
|
|
571
|
+
groups: ['MAIN_NET'],
|
|
572
|
+
nativeToken: 'ARES',
|
|
573
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
574
|
+
decimals: 12
|
|
575
|
+
},
|
|
576
|
+
polkadex: {
|
|
577
|
+
key: 'polkadex',
|
|
578
|
+
chain: 'Polkadex',
|
|
579
|
+
genesisHash: '0x3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c',
|
|
580
|
+
ss58Format: 88,
|
|
581
|
+
providers: {
|
|
582
|
+
'Polkadex Team': 'wss://mainnet.polkadex.trade/',
|
|
583
|
+
OnFinality: 'wss://polkadex.api.onfinality.io/public-ws'
|
|
584
|
+
},
|
|
585
|
+
active: false,
|
|
586
|
+
currentProviderMode: 'ws',
|
|
587
|
+
currentProvider: 'Polkadex Team',
|
|
588
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
589
|
+
paraId: 2040,
|
|
590
|
+
nativeToken: 'PDEX',
|
|
591
|
+
coinGeckoKey: 'polkadex',
|
|
592
|
+
crowdloanUrl: 'https://www.polkadex.trade/crowdloans',
|
|
593
|
+
decimals: 12,
|
|
594
|
+
getStakingOnChain: true,
|
|
595
|
+
supportBonding: true
|
|
596
|
+
},
|
|
597
|
+
polkadexTest: {
|
|
598
|
+
key: 'polkadexTest',
|
|
599
|
+
chain: 'Polkadex - Testnet',
|
|
600
|
+
genesisHash: '0xd0024e7110db2a8b35d6599e64e82d3eb30070200a423398319efb6b4d596427',
|
|
601
|
+
ss58Format: 88,
|
|
602
|
+
providers: {
|
|
603
|
+
'Polkadex Team': 'wss://blockchain.polkadex.trade'
|
|
604
|
+
},
|
|
605
|
+
active: false,
|
|
606
|
+
currentProviderMode: 'ws',
|
|
607
|
+
currentProvider: 'Polkadex Team',
|
|
608
|
+
groups: ['TEST_NET'],
|
|
609
|
+
nativeToken: 'Unit',
|
|
610
|
+
crowdloanUrl: 'https://www.polkadex.trade/crowdloans',
|
|
611
|
+
decimals: 12,
|
|
612
|
+
getStakingOnChain: true,
|
|
613
|
+
supportBonding: true
|
|
614
|
+
},
|
|
615
|
+
aleph: {
|
|
616
|
+
key: 'aleph',
|
|
617
|
+
chain: 'Aleph Zero',
|
|
618
|
+
genesisHash: '0x70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e',
|
|
619
|
+
ss58Format: 42,
|
|
620
|
+
providers: {
|
|
621
|
+
'Aleph Zero Foundation': 'wss://ws.azero.dev'
|
|
622
|
+
},
|
|
623
|
+
active: false,
|
|
624
|
+
currentProviderMode: 'ws',
|
|
625
|
+
currentProvider: 'Aleph Zero Foundation',
|
|
626
|
+
groups: ['MAIN_NET'],
|
|
627
|
+
nativeToken: 'AZERO',
|
|
628
|
+
crowdloanUrl: 'https://contribute.alephzero.org/',
|
|
629
|
+
decimals: 12,
|
|
630
|
+
coinGeckoKey: 'aleph-zero',
|
|
631
|
+
getStakingOnChain: true,
|
|
632
|
+
supportBonding: true
|
|
633
|
+
},
|
|
634
|
+
rmrk: {
|
|
635
|
+
key: 'rmrk',
|
|
636
|
+
chain: 'RMRK Devnet',
|
|
637
|
+
genesisHash: '0x6c7ae90ef70a31fe9f0f2329007ff4b4c4fe62fe71cd2b753ee37c1aa1070fef',
|
|
638
|
+
icon: 'polkadot',
|
|
639
|
+
ss58Format: 0,
|
|
640
|
+
providers: {
|
|
641
|
+
rmrk: 'wss://staging.node.rmrk.app'
|
|
642
|
+
},
|
|
643
|
+
active: false,
|
|
644
|
+
currentProvider: 'rmrk',
|
|
645
|
+
currentProviderMode: 'ws',
|
|
646
|
+
nativeToken: 'UNIT',
|
|
647
|
+
groups: ['TEST_NET'],
|
|
648
|
+
decimals: 12,
|
|
649
|
+
coinGeckoKey: 'rmrk'
|
|
650
|
+
},
|
|
651
|
+
dolphin: {
|
|
652
|
+
key: 'dolphin',
|
|
653
|
+
chain: 'Dolphin Testnet',
|
|
654
|
+
active: false,
|
|
655
|
+
genesisHash: '0x79372c8ed25b51c0d3c1f085becb264c93f1ecbc71dcf387fdb5c294fd823a08',
|
|
656
|
+
ss58Format: 78,
|
|
657
|
+
providers: {
|
|
658
|
+
dolphin: 'wss://ws.rococo.dolphin.engineering'
|
|
659
|
+
},
|
|
660
|
+
currentProvider: 'dolphin',
|
|
661
|
+
currentProviderMode: 'ws',
|
|
662
|
+
groups: ['TEST_NET'],
|
|
663
|
+
nativeToken: 'DOL',
|
|
664
|
+
decimals: 18
|
|
665
|
+
},
|
|
666
|
+
alephTest: {
|
|
667
|
+
key: 'alephTest',
|
|
668
|
+
chain: 'Aleph Zero Testnet',
|
|
669
|
+
genesisHash: '0x05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5',
|
|
670
|
+
ss58Format: 42,
|
|
671
|
+
providers: {
|
|
672
|
+
'Aleph Zero Foundation': 'wss://ws.test.azero.dev',
|
|
673
|
+
Dwellir: 'wss://aleph-zero-testnet-rpc.dwellir.com'
|
|
674
|
+
},
|
|
675
|
+
active: false,
|
|
676
|
+
currentProviderMode: 'ws',
|
|
677
|
+
currentProvider: 'Aleph Zero Foundation',
|
|
678
|
+
groups: ['TEST_NET'],
|
|
679
|
+
nativeToken: 'TZERO',
|
|
680
|
+
decimals: 12,
|
|
681
|
+
getStakingOnChain: true,
|
|
682
|
+
supportBonding: true,
|
|
683
|
+
supportSmartContract: [ContractType.wasm]
|
|
684
|
+
},
|
|
685
|
+
opal: {
|
|
686
|
+
key: 'opal',
|
|
687
|
+
chain: 'OPAL by UNIQUE',
|
|
688
|
+
genesisHash: '0x3fa374fbc8d0a9077356aefe327c88f447ce7f1fda905b1d4b4a2680a7b5cefa',
|
|
689
|
+
ss58Format: 42,
|
|
690
|
+
providers: {
|
|
691
|
+
Unique: 'wss://ws-opal.unique.network',
|
|
692
|
+
Europe: 'wss://eu-ws-opal.unique.network',
|
|
693
|
+
NA: 'wss://us-ws-opal.unique.network',
|
|
694
|
+
Asia: 'wss://asia-ws-opal.unique.network'
|
|
695
|
+
},
|
|
696
|
+
active: false,
|
|
697
|
+
currentProviderMode: 'ws',
|
|
698
|
+
currentProvider: 'Unique',
|
|
699
|
+
groups: ['TEST_NET'],
|
|
700
|
+
nativeToken: 'OPL',
|
|
701
|
+
decimals: 18
|
|
702
|
+
},
|
|
703
|
+
moonbase: {
|
|
704
|
+
key: 'moonbase',
|
|
705
|
+
chain: 'Moonbase Alpha',
|
|
706
|
+
genesisHash: '0x91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527',
|
|
707
|
+
ss58Format: 1287,
|
|
708
|
+
providers: {
|
|
709
|
+
'Moonbeam Foundation': 'wss://wss.api.moonbase.moonbeam.network',
|
|
710
|
+
OnFinality: 'wss://moonbeam-alpha.api.onfinality.io/public-ws',
|
|
711
|
+
Blast: 'wss://moonbase-alpha.public.blastapi.io'
|
|
712
|
+
// Pinknode: 'wss://rpc.pinknode.io/alphanet/explorer' // https://github.com/polkadot-js/apps/issues/7058
|
|
713
|
+
},
|
|
714
|
+
active: false,
|
|
715
|
+
currentProviderMode: 'ws',
|
|
716
|
+
currentProvider: 'Moonbeam Foundation',
|
|
717
|
+
groups: ['TEST_NET'],
|
|
718
|
+
nativeToken: 'DEV',
|
|
719
|
+
isEthereum: true,
|
|
720
|
+
abiExplorer: 'https://api-moonbase.moonscan.io/api?module=contract&action=getabi',
|
|
721
|
+
decimals: 18,
|
|
722
|
+
evmChainId: 1287,
|
|
723
|
+
supportBonding: true,
|
|
724
|
+
getStakingOnChain: true,
|
|
725
|
+
paraId: 1000,
|
|
726
|
+
supportSmartContract: [ContractType.evm]
|
|
727
|
+
},
|
|
728
|
+
efinity: {
|
|
729
|
+
key: 'efinity',
|
|
730
|
+
chain: 'Efinity',
|
|
731
|
+
genesisHash: '0x335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f',
|
|
732
|
+
ss58Format: 1110,
|
|
733
|
+
providers: {
|
|
734
|
+
Efinity: 'wss://rpc.efinity.io',
|
|
735
|
+
Dwellir: 'wss://efinity-rpc.dwellir.com'
|
|
736
|
+
},
|
|
737
|
+
active: false,
|
|
738
|
+
currentProviderMode: 'ws',
|
|
739
|
+
currentProvider: 'Efinity',
|
|
740
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
741
|
+
paraId: 2021,
|
|
742
|
+
nativeToken: 'EFI',
|
|
743
|
+
crowdloanUrl: 'https://enjin.io/efinity-crowdloan',
|
|
744
|
+
decimals: 10,
|
|
745
|
+
coinGeckoKey: 'efinity'
|
|
746
|
+
},
|
|
747
|
+
composableFinance: {
|
|
748
|
+
key: 'composableFinance',
|
|
749
|
+
chain: 'Composable Finance',
|
|
750
|
+
genesisHash: '0xdaab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d',
|
|
751
|
+
ss58Format: 49,
|
|
752
|
+
providers: {
|
|
753
|
+
Composable: 'wss://rpc.composable.finance'
|
|
754
|
+
},
|
|
755
|
+
active: false,
|
|
756
|
+
currentProviderMode: 'ws',
|
|
757
|
+
currentProvider: 'Composable',
|
|
758
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
759
|
+
paraId: 2019,
|
|
760
|
+
nativeToken: 'LAYR',
|
|
761
|
+
crowdloanUrl: 'https://crowdloan.composable.finance/',
|
|
762
|
+
decimals: 12
|
|
763
|
+
},
|
|
764
|
+
phala: {
|
|
765
|
+
key: 'phala',
|
|
766
|
+
chain: 'Phala Network',
|
|
767
|
+
genesisHash: '0x1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736',
|
|
768
|
+
ss58Format: 30,
|
|
769
|
+
providers: {
|
|
770
|
+
Phala: 'wss://api.phala.network/ws',
|
|
771
|
+
OnFinality: 'wss://phala.api.onfinality.io/public-ws'
|
|
772
|
+
},
|
|
773
|
+
active: false,
|
|
774
|
+
currentProviderMode: 'ws',
|
|
775
|
+
currentProvider: 'Phala',
|
|
776
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
777
|
+
paraId: 2035,
|
|
778
|
+
nativeToken: 'PHA',
|
|
779
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
780
|
+
decimals: 10,
|
|
781
|
+
coinGeckoKey: 'pha'
|
|
782
|
+
},
|
|
783
|
+
crust: {
|
|
784
|
+
key: 'crust',
|
|
785
|
+
chain: 'Crust Network',
|
|
786
|
+
genesisHash: '0x8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c',
|
|
787
|
+
ss58Format: 66,
|
|
788
|
+
providers: {
|
|
789
|
+
'Crust Network': 'wss://rpc.crust.network',
|
|
790
|
+
OnFinality: 'wss://crust.api.onfinality.io/public-ws'
|
|
791
|
+
},
|
|
792
|
+
active: false,
|
|
793
|
+
currentProviderMode: 'ws',
|
|
794
|
+
currentProvider: 'Crust Network',
|
|
795
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
796
|
+
paraId: 2008,
|
|
797
|
+
nativeToken: 'CRU',
|
|
798
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
799
|
+
decimals: 12,
|
|
800
|
+
coinGeckoKey: 'crust-network'
|
|
801
|
+
},
|
|
802
|
+
// coinversation: {
|
|
803
|
+
// key: 'coinversation',
|
|
804
|
+
// chain: 'Coinversation',
|
|
805
|
+
// genesisHash: 'UNKNOWN',
|
|
806
|
+
// ss58Format: -1,
|
|
807
|
+
// providers: {
|
|
808
|
+
// Coinversation: 'wss://rpc.coinversation.io/'
|
|
809
|
+
// },
|
|
810
|
+
// active: false,
|
|
811
|
+
// currentProviderMode: 'ws',
|
|
812
|
+
// currentProvider: 'Coinversation',
|
|
813
|
+
// groups: ['POLKADOT_PARACHAIN'],
|
|
814
|
+
// paraId: 2027,
|
|
815
|
+
// nativeToken: 'CTO',
|
|
816
|
+
// crowdloanUrl: 'https://www.coinversation.io/joinus',
|
|
817
|
+
// decimals: 10,
|
|
818
|
+
// coinGeckoKey: 'coinversation'
|
|
819
|
+
// },
|
|
820
|
+
statemine: {
|
|
821
|
+
key: 'statemine',
|
|
822
|
+
chain: 'Statemine',
|
|
823
|
+
genesisHash: '0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a',
|
|
824
|
+
icon: 'polkadot',
|
|
825
|
+
ss58Format: 2,
|
|
826
|
+
providers: {
|
|
827
|
+
Parity: 'wss://statemine-rpc.polkadot.io',
|
|
828
|
+
OnFinality: 'wss://statemine.api.onfinality.io/public-ws',
|
|
829
|
+
Dwellir: 'wss://statemine-rpc.dwellir.com',
|
|
830
|
+
RadiumBlock: 'wss://statemine.public.curie.radiumblock.xyz/ws',
|
|
831
|
+
PinkNode: 'wss://public-rpc.pinknode.io/statemine',
|
|
832
|
+
'Dwellir Tunisia': 'wss://statemine-rpc-tn.dwellir.com'
|
|
833
|
+
},
|
|
834
|
+
active: false,
|
|
835
|
+
currentProviderMode: 'ws',
|
|
836
|
+
currentProvider: 'Parity',
|
|
837
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
838
|
+
paraId: 1000,
|
|
839
|
+
nativeToken: 'KSM',
|
|
840
|
+
decimals: 12
|
|
841
|
+
},
|
|
842
|
+
karura: {
|
|
843
|
+
key: 'karura',
|
|
844
|
+
chain: 'Karura',
|
|
845
|
+
genesisHash: '0xbaf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b',
|
|
846
|
+
ss58Format: 8,
|
|
847
|
+
providers: {
|
|
848
|
+
'Acala Foundation 0': 'wss://karura-rpc-0.aca-api.network',
|
|
849
|
+
'Acala Foundation 1': 'wss://karura-rpc-1.aca-api.network',
|
|
850
|
+
'Acala Foundation 2': 'wss://karura-rpc-2.aca-api.network/ws',
|
|
851
|
+
'Acala Foundation 3': 'wss://karura-rpc-3.aca-api.network/ws',
|
|
852
|
+
'Polkawallet 0': 'wss://karura.polkawallet.io',
|
|
853
|
+
OnFinality: 'wss://karura.api.onfinality.io/public-ws',
|
|
854
|
+
Dwellir: 'wss://karura-rpc.dwellir.com'
|
|
855
|
+
},
|
|
856
|
+
active: false,
|
|
857
|
+
currentProviderMode: 'ws',
|
|
858
|
+
currentProvider: 'Acala Foundation 2',
|
|
859
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
860
|
+
paraId: 2000,
|
|
861
|
+
nativeToken: 'KAR',
|
|
862
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
863
|
+
decimals: 12,
|
|
864
|
+
coinGeckoKey: 'karura'
|
|
865
|
+
},
|
|
866
|
+
moonriver: {
|
|
867
|
+
key: 'moonriver',
|
|
868
|
+
chain: 'Moonriver',
|
|
869
|
+
genesisHash: '0x401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b',
|
|
870
|
+
ss58Format: 1285,
|
|
871
|
+
providers: {
|
|
872
|
+
'Moonbeam Foundation': 'wss://wss.api.moonriver.moonbeam.network',
|
|
873
|
+
OnFinality: 'wss://moonriver.api.onfinality.io/public-ws',
|
|
874
|
+
Dwellir: 'wss://moonriver-rpc.dwellir.com',
|
|
875
|
+
Blast: 'wss://moonriver.public.blastapi.io',
|
|
876
|
+
Pinknode: 'wss://public-rpc.pinknode.io/moonriver', // https://github.com/polkadot-js/apps/issues/7058
|
|
877
|
+
UnitedBloc: 'wss://moonriver.unitedbloc.com:2001'
|
|
878
|
+
},
|
|
879
|
+
active: false,
|
|
880
|
+
currentProviderMode: 'ws',
|
|
881
|
+
currentProvider: 'Moonbeam Foundation',
|
|
882
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
883
|
+
paraId: 2023,
|
|
884
|
+
isEthereum: true,
|
|
885
|
+
nativeToken: 'MOVR',
|
|
886
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
887
|
+
decimals: 18,
|
|
888
|
+
coinGeckoKey: 'moonriver',
|
|
889
|
+
evmChainId: 1285,
|
|
890
|
+
supportBonding: true,
|
|
891
|
+
getStakingOnChain: true,
|
|
892
|
+
abiExplorer: 'https://api-moonriver.moonscan.io/api?module=contract&action=getabi',
|
|
893
|
+
supportSmartContract: [ContractType.evm]
|
|
894
|
+
},
|
|
895
|
+
shiden: {
|
|
896
|
+
key: 'shiden',
|
|
897
|
+
chain: 'Shiden',
|
|
898
|
+
genesisHash: '0xf1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108',
|
|
899
|
+
ss58Format: 5,
|
|
900
|
+
providers: {
|
|
901
|
+
StakeTechnologies: 'wss://rpc.shiden.astar.network',
|
|
902
|
+
OnFinality: 'wss://shiden.api.onfinality.io/public-ws',
|
|
903
|
+
Pinknode: 'wss://rpc.pinknode.io/shiden/explorer',
|
|
904
|
+
Dwellir: 'wss://shiden-rpc.dwellir.com',
|
|
905
|
+
Blast: 'wss://shiden.public.blastapi.io',
|
|
906
|
+
'light client': 'light://substrate-connect/kusama/shiden'
|
|
907
|
+
},
|
|
908
|
+
active: false,
|
|
909
|
+
currentProviderMode: 'ws',
|
|
910
|
+
currentProvider: 'OnFinality',
|
|
911
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
912
|
+
paraId: 2007,
|
|
913
|
+
nativeToken: 'SDN',
|
|
914
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
915
|
+
decimals: 18,
|
|
916
|
+
coinGeckoKey: 'shiden',
|
|
917
|
+
supportSmartContract: [ContractType.wasm],
|
|
918
|
+
supportBonding: true,
|
|
919
|
+
getStakingOnChain: true
|
|
920
|
+
},
|
|
921
|
+
shidenEvm: {
|
|
922
|
+
key: 'shidenEvm',
|
|
923
|
+
chain: 'Shiden - EVM',
|
|
924
|
+
active: false,
|
|
925
|
+
genesisHash: '0xf1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108___EVM',
|
|
926
|
+
ss58Format: 5,
|
|
927
|
+
providers: {
|
|
928
|
+
astar: 'wss://rpc.shiden.astar.network'
|
|
929
|
+
},
|
|
930
|
+
currentProviderMode: 'ws',
|
|
931
|
+
currentProvider: 'astar',
|
|
932
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
933
|
+
nativeToken: 'SDN',
|
|
934
|
+
evmChainId: 336,
|
|
935
|
+
isEthereum: true,
|
|
936
|
+
paraId: 2007,
|
|
937
|
+
supportSmartContract: [ContractType.evm]
|
|
938
|
+
},
|
|
939
|
+
shibuya: {
|
|
940
|
+
key: 'shibuya',
|
|
941
|
+
chain: 'Shibuya Testnet',
|
|
942
|
+
genesisHash: '0xddb89973361a170839f80f152d2e9e38a376a5a7eccefcade763f46a8e567019',
|
|
943
|
+
ss58Format: 5,
|
|
944
|
+
providers: {
|
|
945
|
+
Shibuya: 'wss://rpc.shibuya.astar.network/',
|
|
946
|
+
Dwellir: 'wss://shibuya-rpc.dwellir.com'
|
|
947
|
+
},
|
|
948
|
+
isEthereum: false,
|
|
949
|
+
active: false,
|
|
950
|
+
currentProviderMode: 'ws',
|
|
951
|
+
currentProvider: 'Shibuya',
|
|
952
|
+
groups: ['TEST_NET'],
|
|
953
|
+
nativeToken: 'SBY',
|
|
954
|
+
decimals: 18,
|
|
955
|
+
getStakingOnChain: true,
|
|
956
|
+
supportBonding: true,
|
|
957
|
+
supportSmartContract: [ContractType.wasm]
|
|
958
|
+
},
|
|
959
|
+
shibuyaEvm: {
|
|
960
|
+
key: 'shibuyaEvm',
|
|
961
|
+
chain: 'Shibuya Testnet - EVM',
|
|
962
|
+
genesisHash: '0xddb89973361a170839f80f152d2e9e38a376a5a7eccefcade763f46a8e567019_evm',
|
|
963
|
+
ss58Format: 5,
|
|
964
|
+
providers: {
|
|
965
|
+
Shibuya: 'wss://rpc.shibuya.astar.network/'
|
|
966
|
+
},
|
|
967
|
+
isEthereum: true,
|
|
968
|
+
active: false,
|
|
969
|
+
currentProviderMode: 'ws',
|
|
970
|
+
currentProvider: 'Shibuya',
|
|
971
|
+
groups: ['TEST_NET'],
|
|
972
|
+
evmChainId: 81,
|
|
973
|
+
nativeToken: 'SBY',
|
|
974
|
+
decimals: 18,
|
|
975
|
+
supportSmartContract: [ContractType.evm]
|
|
976
|
+
},
|
|
977
|
+
khala: {
|
|
978
|
+
key: 'khala',
|
|
979
|
+
chain: 'Khala',
|
|
980
|
+
genesisHash: '0xd43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d',
|
|
981
|
+
ss58Format: 30,
|
|
982
|
+
providers: {
|
|
983
|
+
Phala: 'wss://khala-api.phala.network/ws',
|
|
984
|
+
OnFinality: 'wss://khala.api.onfinality.io/public-ws',
|
|
985
|
+
Dwellir: 'wss://khala-rpc.dwellir.com',
|
|
986
|
+
PinkNode: 'wss://public-rpc.pinknode.io/khala'
|
|
987
|
+
},
|
|
988
|
+
active: false,
|
|
989
|
+
currentProviderMode: 'ws',
|
|
990
|
+
currentProvider: 'Phala',
|
|
991
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
992
|
+
paraId: 2004,
|
|
993
|
+
nativeToken: 'PHA',
|
|
994
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
995
|
+
decimals: 12
|
|
996
|
+
},
|
|
997
|
+
bifrost: {
|
|
998
|
+
key: 'bifrost',
|
|
999
|
+
chain: 'Bifrost Kusama',
|
|
1000
|
+
genesisHash: '0x9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed',
|
|
1001
|
+
ss58Format: 6,
|
|
1002
|
+
providers: {
|
|
1003
|
+
'Liebi 0': 'wss://bifrost-rpc.liebi.com/ws',
|
|
1004
|
+
Dwellir: 'wss://bifrost-rpc.dwellir.com',
|
|
1005
|
+
OnFinality: 'wss://bifrost-parachain.api.onfinality.io/public-ws'
|
|
1006
|
+
},
|
|
1007
|
+
active: false,
|
|
1008
|
+
currentProviderMode: 'ws',
|
|
1009
|
+
currentProvider: 'Liebi 0',
|
|
1010
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1011
|
+
paraId: 2001,
|
|
1012
|
+
nativeToken: 'BNC',
|
|
1013
|
+
crowdloanUrl: 'https://bifrost.app/vcrowdloan',
|
|
1014
|
+
decimals: 12,
|
|
1015
|
+
coinGeckoKey: 'bifrost-native-coin',
|
|
1016
|
+
getStakingOnChain: true,
|
|
1017
|
+
supportBonding: true,
|
|
1018
|
+
blockExplorer: 'https://bifrost-kusama.subscan.io'
|
|
1019
|
+
},
|
|
1020
|
+
bifrost_dot: {
|
|
1021
|
+
key: 'bifrost_dot',
|
|
1022
|
+
chain: 'Bifrost Polkadot',
|
|
1023
|
+
genesisHash: '0x262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b',
|
|
1024
|
+
ss58Format: 6,
|
|
1025
|
+
providers: {
|
|
1026
|
+
Liebi: 'wss://hk.p.bifrost-rpc.liebi.com/ws',
|
|
1027
|
+
OnFinality: 'wss://bifrost-polkadot.api.onfinality.io/public-ws'
|
|
1028
|
+
},
|
|
1029
|
+
active: false,
|
|
1030
|
+
currentProviderMode: 'ws',
|
|
1031
|
+
currentProvider: 'Liebi',
|
|
1032
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1033
|
+
paraId: 2030,
|
|
1034
|
+
nativeToken: 'BNC',
|
|
1035
|
+
crowdloanUrl: 'https://bifrost.app/vcrowdloan',
|
|
1036
|
+
decimals: 12,
|
|
1037
|
+
coinGeckoKey: 'bifrost-native-coin',
|
|
1038
|
+
blockExplorer: 'https://bifrost.subscan.io'
|
|
1039
|
+
},
|
|
1040
|
+
bifrost_testnet: {
|
|
1041
|
+
key: 'bifrost_testnet',
|
|
1042
|
+
chain: 'Bifrost Testnet',
|
|
1043
|
+
genesisHash: '0x8b290fa39a8808f29d7309ea99442c95bf964838aef14be5a6449ae48f8a5f1f',
|
|
1044
|
+
ss58Format: 6,
|
|
1045
|
+
providers: {
|
|
1046
|
+
Liebi: 'wss://bifrost-rpc.rococo.liebi.com/ws'
|
|
1047
|
+
},
|
|
1048
|
+
active: false,
|
|
1049
|
+
currentProviderMode: 'ws',
|
|
1050
|
+
currentProvider: 'Liebi',
|
|
1051
|
+
groups: ['TEST_NET'],
|
|
1052
|
+
nativeToken: 'BNC',
|
|
1053
|
+
decimals: 12,
|
|
1054
|
+
getStakingOnChain: true,
|
|
1055
|
+
supportBonding: true
|
|
1056
|
+
},
|
|
1057
|
+
kilt: {
|
|
1058
|
+
key: 'kilt',
|
|
1059
|
+
chain: 'KILT Spiritnet',
|
|
1060
|
+
genesisHash: '0x411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21',
|
|
1061
|
+
ss58Format: 38,
|
|
1062
|
+
providers: {
|
|
1063
|
+
'KILT Protocol': 'wss://spiritnet.kilt.io/',
|
|
1064
|
+
OnFinality: 'wss://spiritnet.api.onfinality.io/public-ws',
|
|
1065
|
+
Dwellir: 'wss://kilt-rpc.dwellir.com'
|
|
1066
|
+
},
|
|
1067
|
+
active: false,
|
|
1068
|
+
currentProviderMode: 'ws',
|
|
1069
|
+
currentProvider: 'KILT Protocol',
|
|
1070
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1071
|
+
paraId: 2086,
|
|
1072
|
+
nativeToken: 'KILT',
|
|
1073
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
1074
|
+
decimals: 12,
|
|
1075
|
+
coinGeckoKey: 'kilt-protocol',
|
|
1076
|
+
supportBonding: true,
|
|
1077
|
+
getStakingOnChain: true
|
|
1078
|
+
},
|
|
1079
|
+
calamari: {
|
|
1080
|
+
key: 'calamari',
|
|
1081
|
+
chain: 'Calamari Parachain',
|
|
1082
|
+
genesisHash: '0x4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1',
|
|
1083
|
+
ss58Format: 78,
|
|
1084
|
+
providers: {
|
|
1085
|
+
'Manta Network': 'wss://ws.calamari.systems/',
|
|
1086
|
+
OnFinality: 'wss://calamari.api.onfinality.io/public-ws'
|
|
1087
|
+
},
|
|
1088
|
+
active: false,
|
|
1089
|
+
currentProviderMode: 'ws',
|
|
1090
|
+
currentProvider: 'Manta Network',
|
|
1091
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1092
|
+
paraId: 2084,
|
|
1093
|
+
nativeToken: 'KMA',
|
|
1094
|
+
crowdloanUrl: 'https://calamari.network/',
|
|
1095
|
+
decimals: 12,
|
|
1096
|
+
coinGeckoKey: 'calamari-network',
|
|
1097
|
+
getStakingOnChain: true,
|
|
1098
|
+
supportBonding: true
|
|
1099
|
+
},
|
|
1100
|
+
basilisk: {
|
|
1101
|
+
key: 'basilisk',
|
|
1102
|
+
chain: 'Basilisk',
|
|
1103
|
+
genesisHash: '0xa85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755',
|
|
1104
|
+
ss58Format: 10041,
|
|
1105
|
+
providers: {
|
|
1106
|
+
Basilisk: 'wss://rpc.basilisk.cloud',
|
|
1107
|
+
Dwellir: 'wss://basilisk-rpc.dwellir.com'
|
|
1108
|
+
},
|
|
1109
|
+
active: false,
|
|
1110
|
+
currentProviderMode: 'ws',
|
|
1111
|
+
currentProvider: 'Basilisk',
|
|
1112
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1113
|
+
paraId: 2090,
|
|
1114
|
+
coinGeckoKey: 'basilisk',
|
|
1115
|
+
nativeToken: 'BSX',
|
|
1116
|
+
crowdloanUrl: 'https://loan.bsx.fi/',
|
|
1117
|
+
decimals: 12
|
|
1118
|
+
},
|
|
1119
|
+
altair: {
|
|
1120
|
+
key: 'altair',
|
|
1121
|
+
chain: 'Altair',
|
|
1122
|
+
genesisHash: '0xaa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011',
|
|
1123
|
+
ss58Format: 136,
|
|
1124
|
+
providers: {
|
|
1125
|
+
Centrifuge: 'wss://fullnode.altair.centrifuge.io',
|
|
1126
|
+
OnFinality: 'wss://altair.api.onfinality.io/public-ws'
|
|
1127
|
+
},
|
|
1128
|
+
active: false,
|
|
1129
|
+
currentProviderMode: 'ws',
|
|
1130
|
+
currentProvider: 'Centrifuge',
|
|
1131
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1132
|
+
paraId: 2088,
|
|
1133
|
+
nativeToken: 'AIR',
|
|
1134
|
+
crowdloanUrl: 'https://centrifuge.io/altair/crowdloan/',
|
|
1135
|
+
decimals: 18,
|
|
1136
|
+
coinGeckoKey: 'altair'
|
|
1137
|
+
},
|
|
1138
|
+
heiko: {
|
|
1139
|
+
key: 'heiko',
|
|
1140
|
+
chain: 'Heiko',
|
|
1141
|
+
genesisHash: '0x64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b',
|
|
1142
|
+
ss58Format: 110,
|
|
1143
|
+
providers: {
|
|
1144
|
+
OnFinality: 'wss://parallel-heiko.api.onfinality.io/public-ws',
|
|
1145
|
+
Parallel: 'wss://heiko-rpc.parallel.fi'
|
|
1146
|
+
},
|
|
1147
|
+
active: false,
|
|
1148
|
+
currentProviderMode: 'ws',
|
|
1149
|
+
currentProvider: 'Parallel',
|
|
1150
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1151
|
+
paraId: 2085,
|
|
1152
|
+
nativeToken: 'HKO',
|
|
1153
|
+
crowdloanUrl: 'https://crowdloan.parallel.fi/#/auction/contribute/kusama/2085',
|
|
1154
|
+
decimals: 12
|
|
1155
|
+
},
|
|
1156
|
+
kintsugi: {
|
|
1157
|
+
key: 'kintsugi',
|
|
1158
|
+
chain: 'Kintsugi',
|
|
1159
|
+
genesisHash: '0x9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b',
|
|
1160
|
+
ss58Format: 2092,
|
|
1161
|
+
providers: {
|
|
1162
|
+
'Kintsugi Labs': 'wss://api-kusama.interlay.io/parachain',
|
|
1163
|
+
OnFinality: 'wss://kintsugi.api.onfinality.io/public-ws'
|
|
1164
|
+
},
|
|
1165
|
+
active: false,
|
|
1166
|
+
currentProviderMode: 'ws',
|
|
1167
|
+
currentProvider: 'Kintsugi Labs',
|
|
1168
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1169
|
+
paraId: 2092,
|
|
1170
|
+
nativeToken: 'KINT',
|
|
1171
|
+
crowdloanUrl: 'https://kintsugi.interlay.io/',
|
|
1172
|
+
decimals: 12,
|
|
1173
|
+
coinGeckoKey: 'kintsugi'
|
|
1174
|
+
},
|
|
1175
|
+
kintsugi_test: {
|
|
1176
|
+
key: 'kintsugi_test',
|
|
1177
|
+
chain: 'Kintsugi Testnet',
|
|
1178
|
+
genesisHash: '0x364dd762ee3fa02f63548f579f185e64932fc1a29052d7d9a588d2a57b191abf',
|
|
1179
|
+
ss58Format: 42,
|
|
1180
|
+
active: false,
|
|
1181
|
+
providers: {
|
|
1182
|
+
testnet: 'wss://api-testnet.interlay.io:443/parachain'
|
|
1183
|
+
},
|
|
1184
|
+
currentProviderMode: 'ws',
|
|
1185
|
+
currentProvider: 'testnet',
|
|
1186
|
+
groups: ['TEST_NET'],
|
|
1187
|
+
nativeToken: 'KINT',
|
|
1188
|
+
decimals: 12
|
|
1189
|
+
},
|
|
1190
|
+
picasso: {
|
|
1191
|
+
key: 'picasso',
|
|
1192
|
+
chain: 'Picasso',
|
|
1193
|
+
genesisHash: '0x6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc',
|
|
1194
|
+
ss58Format: 49,
|
|
1195
|
+
providers: {
|
|
1196
|
+
Composable: 'wss://rpc.composablenodes.tech'
|
|
1197
|
+
},
|
|
1198
|
+
active: false,
|
|
1199
|
+
currentProviderMode: 'ws',
|
|
1200
|
+
currentProvider: 'Composable',
|
|
1201
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1202
|
+
paraId: 2087,
|
|
1203
|
+
nativeToken: 'PICA',
|
|
1204
|
+
crowdloanUrl: 'https://crowdloan.composable.finance/',
|
|
1205
|
+
decimals: 12,
|
|
1206
|
+
coinGeckoKey: 'picasso-network'
|
|
1207
|
+
},
|
|
1208
|
+
quartz: {
|
|
1209
|
+
key: 'quartz',
|
|
1210
|
+
chain: 'QUARTZ by UNIQUE',
|
|
1211
|
+
genesisHash: '0xcd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554',
|
|
1212
|
+
ss58Format: 255,
|
|
1213
|
+
providers: {
|
|
1214
|
+
'Unique Europe': 'wss://eu-ws-quartz.unique.network',
|
|
1215
|
+
'Unique US': 'wss://us-ws-quartz.unique.network',
|
|
1216
|
+
'Unique Asia': 'wss://asia-ws-quartz.unique.network'
|
|
1217
|
+
},
|
|
1218
|
+
active: false,
|
|
1219
|
+
currentProviderMode: 'ws',
|
|
1220
|
+
currentProvider: 'Unique Europe',
|
|
1221
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1222
|
+
paraId: 2095,
|
|
1223
|
+
nativeToken: 'QTZ',
|
|
1224
|
+
crowdloanUrl: 'https://unique.network/quartz/crowdloan/',
|
|
1225
|
+
decimals: 18,
|
|
1226
|
+
coinGeckoKey: 'quartz'
|
|
1227
|
+
},
|
|
1228
|
+
unique_network: {
|
|
1229
|
+
key: 'unique_network',
|
|
1230
|
+
chain: 'UNIQUE NETWORK',
|
|
1231
|
+
active: false,
|
|
1232
|
+
genesisHash: '0x84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31',
|
|
1233
|
+
ss58Format: 7391,
|
|
1234
|
+
providers: {
|
|
1235
|
+
unique: 'wss://us-ws.unique.network/',
|
|
1236
|
+
UniqueEu: 'wss://eu-ws.unique.network/',
|
|
1237
|
+
UniqueAsia: 'wss://asia-ws.unique.network/'
|
|
1238
|
+
},
|
|
1239
|
+
currentProvider: 'unique',
|
|
1240
|
+
currentProviderMode: 'ws',
|
|
1241
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1242
|
+
paraId: 2037,
|
|
1243
|
+
nativeToken: 'UNQ'
|
|
1244
|
+
},
|
|
1245
|
+
genshiro: {
|
|
1246
|
+
key: 'genshiro',
|
|
1247
|
+
chain: 'Genshiro',
|
|
1248
|
+
genesisHash: '0x9b8cefc0eb5c568b527998bdd76c184e2b76ae561be76e4667072230217ea243',
|
|
1249
|
+
ss58Format: 68,
|
|
1250
|
+
providers: {
|
|
1251
|
+
Equilibrium: 'wss://node.genshiro.io'
|
|
1252
|
+
},
|
|
1253
|
+
active: false,
|
|
1254
|
+
currentProviderMode: 'ws',
|
|
1255
|
+
currentProvider: 'Equilibrium',
|
|
1256
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1257
|
+
paraId: 2024,
|
|
1258
|
+
nativeToken: 'GENS',
|
|
1259
|
+
crowdloanUrl: 'https://genshiro.equilibrium.io/en',
|
|
1260
|
+
decimals: 10,
|
|
1261
|
+
coinGeckoKey: 'genshiro',
|
|
1262
|
+
blockExplorer: 'https://genshiro.subscan.io'
|
|
1263
|
+
},
|
|
1264
|
+
genshiro_testnet: {
|
|
1265
|
+
key: 'genshiro_testnet',
|
|
1266
|
+
chain: 'Genshiro Testnet',
|
|
1267
|
+
genesisHash: '0xdec164ef73b27c5b7e404114305102018a2b5a4ddda665bb510ce896ad5ba78d',
|
|
1268
|
+
ss58Format: 68,
|
|
1269
|
+
providers: {
|
|
1270
|
+
testnet: 'wss://testnet.genshiro.io'
|
|
1271
|
+
},
|
|
1272
|
+
decimals: 9,
|
|
1273
|
+
nativeToken: 'TOKEN',
|
|
1274
|
+
active: false,
|
|
1275
|
+
currentProviderMode: 'ws',
|
|
1276
|
+
currentProvider: 'testnet',
|
|
1277
|
+
groups: ['TEST_NET']
|
|
1278
|
+
},
|
|
1279
|
+
subsocial_x: {
|
|
1280
|
+
key: 'subsocial_x',
|
|
1281
|
+
active: false,
|
|
1282
|
+
chain: 'SubsocialX',
|
|
1283
|
+
genesisHash: '0x4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f',
|
|
1284
|
+
ss58Format: 28,
|
|
1285
|
+
providers: {
|
|
1286
|
+
subsocialx: 'wss://para.f3joule.space'
|
|
1287
|
+
},
|
|
1288
|
+
currentProviderMode: 'ws',
|
|
1289
|
+
currentProvider: 'subsocialx',
|
|
1290
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1291
|
+
paraId: 2100,
|
|
1292
|
+
nativeToken: 'SUB',
|
|
1293
|
+
crowdloanUrl: 'https://app.subsocial.network/crowdloan'
|
|
1294
|
+
},
|
|
1295
|
+
zeitgeist: {
|
|
1296
|
+
key: 'zeitgeist',
|
|
1297
|
+
chain: 'Zeitgeist',
|
|
1298
|
+
genesisHash: '0x1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060',
|
|
1299
|
+
ss58Format: 73,
|
|
1300
|
+
providers: {
|
|
1301
|
+
OnFinality: 'wss://zeitgeist.api.onfinality.io/public-ws',
|
|
1302
|
+
Dwellir: 'wss://zeitgeist-rpc.dwellir.com'
|
|
1303
|
+
},
|
|
1304
|
+
active: false,
|
|
1305
|
+
currentProviderMode: 'ws',
|
|
1306
|
+
currentProvider: 'Dwellir',
|
|
1307
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1308
|
+
paraId: 2101,
|
|
1309
|
+
nativeToken: 'ZTG',
|
|
1310
|
+
crowdloanUrl: 'https://crowdloan.zeitgeist.pm/',
|
|
1311
|
+
decimals: 10,
|
|
1312
|
+
coinGeckoKey: 'zeitgeist'
|
|
1313
|
+
},
|
|
1314
|
+
sakura: {
|
|
1315
|
+
key: 'sakura',
|
|
1316
|
+
chain: 'Sakura',
|
|
1317
|
+
genesisHash: '0x7b0f142a9299b0886595992f8cac58814c8956de6a31c77caca95db01370fc2c',
|
|
1318
|
+
ss58Format: 42,
|
|
1319
|
+
providers: {
|
|
1320
|
+
Clover: 'wss://rpc.sakura.clover.finance'
|
|
1321
|
+
},
|
|
1322
|
+
active: false,
|
|
1323
|
+
currentProviderMode: 'ws',
|
|
1324
|
+
currentProvider: 'Clover',
|
|
1325
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1326
|
+
paraId: 2016,
|
|
1327
|
+
nativeToken: 'SKU',
|
|
1328
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
1329
|
+
decimals: 10,
|
|
1330
|
+
coinGeckoKey: 'sakura'
|
|
1331
|
+
},
|
|
1332
|
+
shadow: {
|
|
1333
|
+
key: 'shadow',
|
|
1334
|
+
chain: 'Crust Shadow',
|
|
1335
|
+
genesisHash: '0xd4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc',
|
|
1336
|
+
ss58Format: 66,
|
|
1337
|
+
providers: {
|
|
1338
|
+
Crust: 'wss://rpc-shadow.crust.network/'
|
|
1339
|
+
},
|
|
1340
|
+
active: false,
|
|
1341
|
+
currentProviderMode: 'ws',
|
|
1342
|
+
currentProvider: 'Crust',
|
|
1343
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1344
|
+
paraId: 2012,
|
|
1345
|
+
nativeToken: 'CSM',
|
|
1346
|
+
crowdloanUrl: 'https://polkadot.js.org/apps/#/parachains/crowdloan',
|
|
1347
|
+
decimals: 12,
|
|
1348
|
+
coinGeckoKey: 'crust-storage-market'
|
|
1349
|
+
},
|
|
1350
|
+
uniqueNft: {
|
|
1351
|
+
key: 'uniqueNft',
|
|
1352
|
+
chain: 'Unique TestNet 2.0',
|
|
1353
|
+
genesisHash: 'UPDATING',
|
|
1354
|
+
ss58Format: -1,
|
|
1355
|
+
providers: {
|
|
1356
|
+
Unique: 'wss://testnet2.unique.network'
|
|
1357
|
+
},
|
|
1358
|
+
active: false,
|
|
1359
|
+
currentProviderMode: 'ws',
|
|
1360
|
+
currentProvider: 'Unique',
|
|
1361
|
+
groups: ['TEST_NET'],
|
|
1362
|
+
nativeToken: 'UNQ',
|
|
1363
|
+
decimals: 15
|
|
1364
|
+
},
|
|
1365
|
+
robonomics: {
|
|
1366
|
+
key: 'robonomics',
|
|
1367
|
+
chain: 'Robonomics',
|
|
1368
|
+
genesisHash: '0x631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc',
|
|
1369
|
+
ss58Format: 32,
|
|
1370
|
+
providers: {
|
|
1371
|
+
Airalab: 'wss://kusama.rpc.robonomics.network/',
|
|
1372
|
+
Leemo: 'wss://robonomics.leemo.me',
|
|
1373
|
+
OnFinality: 'wss://robonomics.api.onfinality.io/public-ws',
|
|
1374
|
+
Samsara: 'wss://robonomics.0xsamsara.com'
|
|
1375
|
+
},
|
|
1376
|
+
active: false,
|
|
1377
|
+
currentProviderMode: 'ws',
|
|
1378
|
+
currentProvider: 'Airalab',
|
|
1379
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1380
|
+
paraId: 2048,
|
|
1381
|
+
nativeToken: 'XRT',
|
|
1382
|
+
crowdloanUrl: 'https://robonomics.network/kusama-slot/',
|
|
1383
|
+
decimals: 9,
|
|
1384
|
+
coinGeckoKey: 'robonomics-network'
|
|
1385
|
+
},
|
|
1386
|
+
integritee: {
|
|
1387
|
+
key: 'integritee',
|
|
1388
|
+
chain: 'Integritee Network',
|
|
1389
|
+
genesisHash: '0xf195ef30c646663a24a3164b307521174a86f437c586397a43183c736a8383c1',
|
|
1390
|
+
ss58Format: 13,
|
|
1391
|
+
providers: {
|
|
1392
|
+
Integritee: 'wss://kusama.api.integritee.network',
|
|
1393
|
+
OnFinality: 'wss://integritee-kusama.api.onfinality.io/public-ws'
|
|
1394
|
+
},
|
|
1395
|
+
active: false,
|
|
1396
|
+
currentProviderMode: 'ws',
|
|
1397
|
+
currentProvider: 'Integritee',
|
|
1398
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1399
|
+
paraId: 2015,
|
|
1400
|
+
nativeToken: 'TEER',
|
|
1401
|
+
crowdloanUrl: 'https://crowdloan.integritee.network/',
|
|
1402
|
+
decimals: 12,
|
|
1403
|
+
coinGeckoKey: 'integritee'
|
|
1404
|
+
},
|
|
1405
|
+
integriteePolkadot: {
|
|
1406
|
+
key: 'integriteePolkadot',
|
|
1407
|
+
chain: 'Integritee Shell',
|
|
1408
|
+
genesisHash: '0xe13e7af377c64e83f95e0d70d5e5c3c01d697a84538776c5b9bbe0e7d7b6034c',
|
|
1409
|
+
ss58Format: 13,
|
|
1410
|
+
providers: {
|
|
1411
|
+
Integritee: 'wss://polkadot.api.integritee.network'
|
|
1412
|
+
},
|
|
1413
|
+
active: false,
|
|
1414
|
+
currentProviderMode: 'ws',
|
|
1415
|
+
currentProvider: 'Integritee',
|
|
1416
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1417
|
+
paraId: 2015,
|
|
1418
|
+
nativeToken: 'TEER',
|
|
1419
|
+
crowdloanUrl: 'https://crowdloan.integritee.network/',
|
|
1420
|
+
decimals: 12,
|
|
1421
|
+
coinGeckoKey: 'integritee'
|
|
1422
|
+
},
|
|
1423
|
+
crab: {
|
|
1424
|
+
key: 'crab',
|
|
1425
|
+
chain: 'Darwinia Crab',
|
|
1426
|
+
genesisHash: '0x34f61bfda344b3fad3c3e38832a91448b3c613b199eb23e5110a635d71c13c65',
|
|
1427
|
+
ss58Format: 42,
|
|
1428
|
+
providers: {
|
|
1429
|
+
OnFinality: 'wss://darwinia-crab.api.onfinality.io/public-ws',
|
|
1430
|
+
Darwinia_Network: 'wss://crab-rpc.darwinia.network',
|
|
1431
|
+
Dwellir: 'wss://darwiniacrab-rpc.dwellir.com'
|
|
1432
|
+
},
|
|
1433
|
+
active: false,
|
|
1434
|
+
currentProviderMode: 'ws',
|
|
1435
|
+
currentProvider: 'Darwinia_Network',
|
|
1436
|
+
groups: ['MAIN_NET'],
|
|
1437
|
+
nativeToken: 'CRAB',
|
|
1438
|
+
crowdloanUrl: 'https://crab.network/plo',
|
|
1439
|
+
decimals: 9,
|
|
1440
|
+
coinGeckoKey: 'darwinia-crab-network'
|
|
1441
|
+
},
|
|
1442
|
+
crabParachain: {
|
|
1443
|
+
key: 'crabParachain',
|
|
1444
|
+
chain: 'Crab Parachain',
|
|
1445
|
+
genesisHash: '0xeac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076',
|
|
1446
|
+
ss58Format: 42,
|
|
1447
|
+
providers: {
|
|
1448
|
+
Crab: 'wss://crab-parachain-rpc.darwinia.network'
|
|
1449
|
+
},
|
|
1450
|
+
active: false,
|
|
1451
|
+
currentProviderMode: 'ws',
|
|
1452
|
+
currentProvider: 'Crab',
|
|
1453
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1454
|
+
paraId: 2105,
|
|
1455
|
+
nativeToken: 'CRAB',
|
|
1456
|
+
crowdloanUrl: 'https://crab.network/plo',
|
|
1457
|
+
decimals: 18,
|
|
1458
|
+
coinGeckoKey: 'darwinia-crab-network'
|
|
1459
|
+
},
|
|
1460
|
+
crabEvm: {
|
|
1461
|
+
key: 'crabEvm',
|
|
1462
|
+
chain: 'Darwinia Crab - EVM',
|
|
1463
|
+
genesisHash: '0x34f61bfda344b3fad3c3e38832a91448b3c613b199eb23e5110a635d71c13c65_1',
|
|
1464
|
+
ss58Format: 42,
|
|
1465
|
+
providers: {
|
|
1466
|
+
Darwinia_Network: 'wss://crab-rpc.darwinia.network'
|
|
1467
|
+
},
|
|
1468
|
+
active: false,
|
|
1469
|
+
currentProviderMode: 'ws',
|
|
1470
|
+
currentProvider: 'Darwinia_Network',
|
|
1471
|
+
groups: ['MAIN_NET'],
|
|
1472
|
+
nativeToken: 'CRAB',
|
|
1473
|
+
decimals: 18,
|
|
1474
|
+
coinGeckoKey: 'darwinia-crab-network',
|
|
1475
|
+
isEthereum: true,
|
|
1476
|
+
evmChainId: 44,
|
|
1477
|
+
blockExplorer: 'https://crab.subscan.io',
|
|
1478
|
+
supportSmartContract: [ContractType.evm]
|
|
1479
|
+
},
|
|
1480
|
+
pangolin: {
|
|
1481
|
+
key: 'pangolin',
|
|
1482
|
+
chain: 'Pangolin',
|
|
1483
|
+
genesisHash: '0xce44bd16fc276f9e457b452577b6c2678e57768260012af127479fed806da7e7',
|
|
1484
|
+
ss58Format: 42,
|
|
1485
|
+
providers: {
|
|
1486
|
+
Pangolin_Network: 'wss://pangolin-rpc.darwinia.network'
|
|
1487
|
+
},
|
|
1488
|
+
active: false,
|
|
1489
|
+
currentProviderMode: 'ws',
|
|
1490
|
+
currentProvider: 'Pangolin_Network',
|
|
1491
|
+
groups: ['TEST_NET'],
|
|
1492
|
+
nativeToken: 'PRING',
|
|
1493
|
+
decimals: 9,
|
|
1494
|
+
isEthereum: false,
|
|
1495
|
+
blockExplorer: 'https://pangolin.subscan.io'
|
|
1496
|
+
},
|
|
1497
|
+
pangolinEvm: {
|
|
1498
|
+
key: 'pangolinEvm',
|
|
1499
|
+
chain: 'Pangolin - EVM',
|
|
1500
|
+
genesisHash: '0xce44bd16fc276f9e457b452577b6c2678e57768260012af127479fed806da7e7_1',
|
|
1501
|
+
ss58Format: 42,
|
|
1502
|
+
providers: {
|
|
1503
|
+
Pangolin_Network: 'wss://pangolin-rpc.darwinia.network'
|
|
1504
|
+
},
|
|
1505
|
+
active: false,
|
|
1506
|
+
currentProviderMode: 'ws',
|
|
1507
|
+
currentProvider: 'Pangolin_Network',
|
|
1508
|
+
groups: ['TEST_NET'],
|
|
1509
|
+
nativeToken: 'PRING',
|
|
1510
|
+
decimals: 18,
|
|
1511
|
+
isEthereum: true,
|
|
1512
|
+
evmChainId: 43,
|
|
1513
|
+
blockExplorer: 'https://pangolin.subscan.io',
|
|
1514
|
+
supportSmartContract: [ContractType.evm]
|
|
1515
|
+
},
|
|
1516
|
+
bitcountry: {
|
|
1517
|
+
key: 'bitcountry',
|
|
1518
|
+
chain: 'Bit.Country - Alpha Net',
|
|
1519
|
+
genesisHash: '0xfff6fd94251f570d4c9cdf25a0475da0d7ad35160290da19dad8f9caf8bf31b5',
|
|
1520
|
+
ss58Format: 42,
|
|
1521
|
+
providers: {
|
|
1522
|
+
'Metaverse Foundation': 'wss://alphanet-rpc.bit.country'
|
|
1523
|
+
},
|
|
1524
|
+
active: false,
|
|
1525
|
+
currentProviderMode: 'ws',
|
|
1526
|
+
currentProvider: 'Metaverse Foundation',
|
|
1527
|
+
groups: ['TEST_NET'],
|
|
1528
|
+
nativeToken: 'NUUM',
|
|
1529
|
+
decimals: 18
|
|
1530
|
+
},
|
|
1531
|
+
chainx: {
|
|
1532
|
+
key: 'chainx',
|
|
1533
|
+
chain: 'Chain X',
|
|
1534
|
+
active: false,
|
|
1535
|
+
genesisHash: '0x6ac13efb5b368b97b4934cef6edfdd99c2af51ba5109bfb8dacc116f9c584c10',
|
|
1536
|
+
ss58Format: 44,
|
|
1537
|
+
providers: {
|
|
1538
|
+
chainx: 'wss://mainnet.chainx.org/ws'
|
|
1539
|
+
},
|
|
1540
|
+
currentProvider: 'chainx',
|
|
1541
|
+
currentProviderMode: 'ws',
|
|
1542
|
+
groups: ['MAIN_NET'],
|
|
1543
|
+
nativeToken: 'PCX'
|
|
1544
|
+
},
|
|
1545
|
+
acala_testnet: {
|
|
1546
|
+
key: 'acala_testnet',
|
|
1547
|
+
active: false,
|
|
1548
|
+
chain: 'Acala Mandala TC7',
|
|
1549
|
+
genesisHash: '0x5c562e6300954998233c9a40b6b86f3028977e6d32d0da1af207738d19f98c1b',
|
|
1550
|
+
icon: 'polkadot',
|
|
1551
|
+
ss58Format: 42,
|
|
1552
|
+
providers: {
|
|
1553
|
+
OnFinality: 'wss://acala-mandala.api.onfinality.io/public-ws',
|
|
1554
|
+
Polkawallet: 'wss://mandala.polkawallet.io'
|
|
1555
|
+
},
|
|
1556
|
+
currentProviderMode: 'ws',
|
|
1557
|
+
currentProvider: 'OnFinality',
|
|
1558
|
+
groups: ['TEST_NET'],
|
|
1559
|
+
nativeToken: 'ACA',
|
|
1560
|
+
decimals: 12
|
|
1561
|
+
},
|
|
1562
|
+
turing: {
|
|
1563
|
+
chain: 'Turing Network',
|
|
1564
|
+
genesisHash: '0x0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d',
|
|
1565
|
+
ss58Format: 51,
|
|
1566
|
+
providers: {
|
|
1567
|
+
turing: 'wss://rpc.turing.oak.tech',
|
|
1568
|
+
OnFinality: 'wss://turing.api.onfinality.io/public-ws',
|
|
1569
|
+
Dwellir: 'wss://turing-rpc.dwellir.com'
|
|
1570
|
+
},
|
|
1571
|
+
currentProviderMode: 'ws',
|
|
1572
|
+
currentProvider: 'turing',
|
|
1573
|
+
key: 'turing',
|
|
1574
|
+
active: false,
|
|
1575
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1576
|
+
paraId: 2114,
|
|
1577
|
+
nativeToken: 'TUR',
|
|
1578
|
+
decimals: 10,
|
|
1579
|
+
crowdloanUrl: 'https://crowdloan.zeitgeist.pm/',
|
|
1580
|
+
getStakingOnChain: true,
|
|
1581
|
+
supportBonding: true
|
|
1582
|
+
},
|
|
1583
|
+
turingStaging: {
|
|
1584
|
+
chain: 'Turing Staging',
|
|
1585
|
+
genesisHash: '0xd54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b',
|
|
1586
|
+
ss58Format: 51,
|
|
1587
|
+
providers: {
|
|
1588
|
+
turing: 'wss://rpc.turing-staging.oak.tech'
|
|
1589
|
+
},
|
|
1590
|
+
currentProviderMode: 'ws',
|
|
1591
|
+
currentProvider: 'turing',
|
|
1592
|
+
key: 'turingStaging',
|
|
1593
|
+
active: false,
|
|
1594
|
+
groups: ['TEST_NET'],
|
|
1595
|
+
paraId: 2114,
|
|
1596
|
+
nativeToken: 'TUR',
|
|
1597
|
+
decimals: 10,
|
|
1598
|
+
crowdloanUrl: 'https://crowdloan.zeitgeist.pm/',
|
|
1599
|
+
getStakingOnChain: true,
|
|
1600
|
+
supportBonding: true
|
|
1601
|
+
},
|
|
1602
|
+
mangatax: {
|
|
1603
|
+
chain: 'MangataX Public Testnet',
|
|
1604
|
+
genesisHash: '0x797fe0d6ea6917b5a36707961d819dca1826628123510730425c3bafc65ccf59',
|
|
1605
|
+
ss58Format: 42,
|
|
1606
|
+
providers: {
|
|
1607
|
+
mangatax: 'wss://roccoco-testnet-collator-01.mangatafinance.cloud'
|
|
1608
|
+
},
|
|
1609
|
+
currentProvider: 'mangatax',
|
|
1610
|
+
currentProviderMode: 'ws',
|
|
1611
|
+
active: false,
|
|
1612
|
+
key: 'mangatax',
|
|
1613
|
+
groups: ['TEST_NET'],
|
|
1614
|
+
nativeToken: 'MGAT',
|
|
1615
|
+
decimals: 18
|
|
1616
|
+
},
|
|
1617
|
+
mangatax_para: {
|
|
1618
|
+
chain: 'Mangata Kusama Mainnet',
|
|
1619
|
+
genesisHash: '0xd611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa',
|
|
1620
|
+
ss58Format: 42,
|
|
1621
|
+
providers: {
|
|
1622
|
+
mangata: 'wss://prod-kusama-collator-01.mangatafinance.cloud',
|
|
1623
|
+
OnFinality: 'wss://mangata-x.api.onfinality.io/public-ws'
|
|
1624
|
+
},
|
|
1625
|
+
currentProviderMode: 'ws',
|
|
1626
|
+
currentProvider: 'mangata',
|
|
1627
|
+
key: 'mangatax_para',
|
|
1628
|
+
active: false,
|
|
1629
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1630
|
+
paraId: 2110,
|
|
1631
|
+
nativeToken: 'MGX'
|
|
1632
|
+
},
|
|
1633
|
+
encointer: {
|
|
1634
|
+
chain: 'Encointer Network',
|
|
1635
|
+
genesisHash: '0x7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b',
|
|
1636
|
+
ss58Format: 42,
|
|
1637
|
+
providers: {
|
|
1638
|
+
'Encointer Association': 'wss://kusama.api.encointer.org'
|
|
1639
|
+
},
|
|
1640
|
+
currentProvider: 'Encointer Association',
|
|
1641
|
+
currentProviderMode: 'ws',
|
|
1642
|
+
active: false,
|
|
1643
|
+
key: 'encointer',
|
|
1644
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1645
|
+
paraId: 1001,
|
|
1646
|
+
nativeToken: 'KSM'
|
|
1647
|
+
},
|
|
1648
|
+
litmus: {
|
|
1649
|
+
chain: 'Litmus',
|
|
1650
|
+
genesisHash: '0xda5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c',
|
|
1651
|
+
ss58Format: 131,
|
|
1652
|
+
providers: {
|
|
1653
|
+
litmus: 'wss://rpc.litmus-parachain.litentry.io'
|
|
1654
|
+
},
|
|
1655
|
+
currentProviderMode: 'ws',
|
|
1656
|
+
currentProvider: 'litmus',
|
|
1657
|
+
key: 'litmus',
|
|
1658
|
+
active: false,
|
|
1659
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1660
|
+
paraId: 2106,
|
|
1661
|
+
nativeToken: 'LIT',
|
|
1662
|
+
decimals: 12,
|
|
1663
|
+
crowdloanUrl: 'https://kusama-crowdloan.litentry.com/'
|
|
1664
|
+
},
|
|
1665
|
+
litentry: {
|
|
1666
|
+
key: 'litentry',
|
|
1667
|
+
chain: 'Litentry',
|
|
1668
|
+
genesisHash: '0x2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9',
|
|
1669
|
+
ss58Format: 31,
|
|
1670
|
+
providers: {
|
|
1671
|
+
Litentry: 'wss://rpc.litentry-parachain.litentry.io',
|
|
1672
|
+
Dwellir: 'wss://litentry-rpc.dwellir.com'
|
|
1673
|
+
},
|
|
1674
|
+
active: false,
|
|
1675
|
+
currentProviderMode: 'ws',
|
|
1676
|
+
currentProvider: 'Litentry',
|
|
1677
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1678
|
+
paraId: 2013,
|
|
1679
|
+
nativeToken: 'LIT',
|
|
1680
|
+
crowdloanUrl: 'https://crowdloan.litentry.com/',
|
|
1681
|
+
decimals: 12,
|
|
1682
|
+
coinGeckoKey: 'litentry'
|
|
1683
|
+
},
|
|
1684
|
+
tinkernet: {
|
|
1685
|
+
key: 'tinkernet',
|
|
1686
|
+
chain: 'InvArch Tinker Network',
|
|
1687
|
+
genesisHash: '0xd42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2',
|
|
1688
|
+
ss58Format: 117,
|
|
1689
|
+
providers: {
|
|
1690
|
+
Invarch: 'wss://tinker.invarch.network',
|
|
1691
|
+
'light client': 'light://substrate-connect/kusama/tinkernet',
|
|
1692
|
+
OnFinality: 'wss://invarch-tinkernet.api.onfinality.io/public-ws'
|
|
1693
|
+
},
|
|
1694
|
+
active: false,
|
|
1695
|
+
currentProviderMode: 'ws',
|
|
1696
|
+
currentProvider: 'OnFinality',
|
|
1697
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1698
|
+
paraId: 2125,
|
|
1699
|
+
nativeToken: 'TNKR',
|
|
1700
|
+
crowdloanUrl: 'https://invarch.network/tinkernet',
|
|
1701
|
+
decimals: 12
|
|
1702
|
+
},
|
|
1703
|
+
imbue_network: {
|
|
1704
|
+
key: 'imbue_network',
|
|
1705
|
+
chain: 'Imbue Kusama',
|
|
1706
|
+
genesisHash: '0xca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89',
|
|
1707
|
+
ss58Format: 42,
|
|
1708
|
+
providers: {
|
|
1709
|
+
Imbue: 'wss://imbue-kusama.imbue.network'
|
|
1710
|
+
},
|
|
1711
|
+
active: false,
|
|
1712
|
+
currentProviderMode: 'ws',
|
|
1713
|
+
currentProvider: 'Imbue',
|
|
1714
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1715
|
+
paraId: 2121,
|
|
1716
|
+
nativeToken: 'IMBU',
|
|
1717
|
+
decimals: 12
|
|
1718
|
+
},
|
|
1719
|
+
subspace_test: {
|
|
1720
|
+
key: 'subspace_test',
|
|
1721
|
+
chain: 'Subspace Testnet',
|
|
1722
|
+
genesisHash: '0x332ef6e751e25426e38996c51299dfc53bcd56f40b53dce2b2fc8442ae9c4a74_2',
|
|
1723
|
+
ss58Format: 2254,
|
|
1724
|
+
providers: {
|
|
1725
|
+
testnet: 'wss://test-rpc.subspace.network/ws'
|
|
1726
|
+
},
|
|
1727
|
+
active: false,
|
|
1728
|
+
currentProviderMode: 'ws',
|
|
1729
|
+
currentProvider: 'testnet',
|
|
1730
|
+
groups: ['TEST_NET'],
|
|
1731
|
+
nativeToken: 'tSSC',
|
|
1732
|
+
decimals: 18
|
|
1733
|
+
},
|
|
1734
|
+
subspace_gemini_2a: {
|
|
1735
|
+
key: 'subspace_gemini_2a',
|
|
1736
|
+
chain: 'Subspace Gemini 2a',
|
|
1737
|
+
genesisHash: '0x43d10ffd50990380ffe6c9392145431d630ae67e89dbc9c014cac2a417759101',
|
|
1738
|
+
ss58Format: 2254,
|
|
1739
|
+
providers: {
|
|
1740
|
+
'Europe 0': 'wss://eu-0.gemini-2a.subspace.network/ws',
|
|
1741
|
+
'Europe 1': 'wss://eu-1.gemini-2a.subspace.network/ws',
|
|
1742
|
+
'Europe 2': 'wss://eu-2.gemini-2a.subspace.network/ws'
|
|
1743
|
+
},
|
|
1744
|
+
active: false,
|
|
1745
|
+
currentProviderMode: 'ws',
|
|
1746
|
+
currentProvider: 'Europe 0',
|
|
1747
|
+
groups: ['TEST_NET'],
|
|
1748
|
+
nativeToken: 'tSSC',
|
|
1749
|
+
decimals: 18,
|
|
1750
|
+
blockExplorer: 'https://subspace.subscan.io'
|
|
1751
|
+
},
|
|
1752
|
+
subspace_gemini_3c: {
|
|
1753
|
+
key: 'subspace_gemini_3c',
|
|
1754
|
+
chain: 'Subspace Gemini 3c',
|
|
1755
|
+
genesisHash: '0xab946a15b37f59c5f4f27c5de93acde9fe67a28e0b724a43a30e4fe0e87246b7',
|
|
1756
|
+
ss58Format: 2254,
|
|
1757
|
+
providers: {
|
|
1758
|
+
'Europe 0': 'wss://eu-0.gemini-3c.subspace.network/ws',
|
|
1759
|
+
'Europe 1': 'wss://eu-1.gemini-3c.subspace.network/ws',
|
|
1760
|
+
'Europe 2': 'wss://eu-2.gemini-3c.subspace.network/ws'
|
|
1761
|
+
},
|
|
1762
|
+
active: false,
|
|
1763
|
+
currentProviderMode: 'ws',
|
|
1764
|
+
currentProvider: 'Europe 0',
|
|
1765
|
+
groups: ['TEST_NET'],
|
|
1766
|
+
nativeToken: 'tSSC',
|
|
1767
|
+
decimals: 18,
|
|
1768
|
+
blockExplorer: 'https://subspace.github.io/blockexplorer/#/gemini-3c'
|
|
1769
|
+
},
|
|
1770
|
+
origintrail: {
|
|
1771
|
+
key: 'origintrail',
|
|
1772
|
+
chain: 'OriginTrail Parachain',
|
|
1773
|
+
genesisHash: '0xe7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174',
|
|
1774
|
+
ss58Format: 101,
|
|
1775
|
+
providers: {
|
|
1776
|
+
TraceLabs: 'wss://parachain-rpc.origin-trail.network'
|
|
1777
|
+
},
|
|
1778
|
+
active: false,
|
|
1779
|
+
currentProviderMode: 'ws',
|
|
1780
|
+
currentProvider: 'TraceLabs',
|
|
1781
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1782
|
+
paraId: 2043,
|
|
1783
|
+
nativeToken: 'OTP',
|
|
1784
|
+
decimals: 12
|
|
1785
|
+
},
|
|
1786
|
+
// kapex: {
|
|
1787
|
+
// key: 'kapex',
|
|
1788
|
+
// chain: 'Kapex',
|
|
1789
|
+
// genesisHash: '0x7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e',
|
|
1790
|
+
// ss58Format: 2007,
|
|
1791
|
+
// providers: {
|
|
1792
|
+
// Totem: 'wss://k-ui.kapex.network'
|
|
1793
|
+
// },
|
|
1794
|
+
// active: false,
|
|
1795
|
+
// currentProviderMode: 'ws',
|
|
1796
|
+
// currentProvider: 'Totem',
|
|
1797
|
+
// groups: ['POLKADOT_PARACHAIN'],
|
|
1798
|
+
// paraId: 2007,
|
|
1799
|
+
// nativeToken: 'KAPEX',
|
|
1800
|
+
// decimals: 12
|
|
1801
|
+
// },
|
|
1802
|
+
dorafactory: {
|
|
1803
|
+
key: 'dorafactory',
|
|
1804
|
+
chain: 'Dorafactory Network',
|
|
1805
|
+
genesisHash: '0x577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14',
|
|
1806
|
+
ss58Format: 128,
|
|
1807
|
+
providers: {
|
|
1808
|
+
DORA: 'wss://kusama.dorafactory.org'
|
|
1809
|
+
},
|
|
1810
|
+
active: false,
|
|
1811
|
+
currentProviderMode: 'ws',
|
|
1812
|
+
currentProvider: 'DORA',
|
|
1813
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1814
|
+
paraId: 2115,
|
|
1815
|
+
nativeToken: 'DORA',
|
|
1816
|
+
coinGeckoKey: 'dora-factory',
|
|
1817
|
+
decimals: 12
|
|
1818
|
+
},
|
|
1819
|
+
bajun: {
|
|
1820
|
+
key: 'bajun',
|
|
1821
|
+
chain: 'Bajun Kusama',
|
|
1822
|
+
genesisHash: '0x35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14',
|
|
1823
|
+
ss58Format: 1337,
|
|
1824
|
+
providers: {
|
|
1825
|
+
AjunaNetwork: 'wss://rpc-parachain.bajun.network',
|
|
1826
|
+
OnFinality: 'wss://bajun.api.onfinality.io/public-ws',
|
|
1827
|
+
Dwellir: 'wss://bajun-rpc.dwellir.com'
|
|
1828
|
+
},
|
|
1829
|
+
active: false,
|
|
1830
|
+
currentProviderMode: 'ws',
|
|
1831
|
+
currentProvider: 'AjunaNetwork',
|
|
1832
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1833
|
+
paraId: 2119,
|
|
1834
|
+
nativeToken: 'BAJU',
|
|
1835
|
+
decimals: 12
|
|
1836
|
+
},
|
|
1837
|
+
listen: {
|
|
1838
|
+
key: 'listen',
|
|
1839
|
+
chain: 'Listen Network',
|
|
1840
|
+
genesisHash: '0x48eb7f3fff34e702aa2b504674df8f8afbf9889f804e3088c0cb662e433552a0',
|
|
1841
|
+
ss58Format: 42,
|
|
1842
|
+
providers: {
|
|
1843
|
+
'Listen Foundation 1': 'wss://rpc.mainnet.listen.io',
|
|
1844
|
+
'Listen Foundation 2': 'wss://wss.mainnet.listen.io'
|
|
1845
|
+
},
|
|
1846
|
+
active: false,
|
|
1847
|
+
currentProviderMode: 'ws',
|
|
1848
|
+
currentProvider: 'Listen Foundation 1',
|
|
1849
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1850
|
+
paraId: 2118,
|
|
1851
|
+
nativeToken: 'LT',
|
|
1852
|
+
decimals: 12
|
|
1853
|
+
},
|
|
1854
|
+
kabocha: {
|
|
1855
|
+
key: 'kabocha',
|
|
1856
|
+
chain: 'Kabocha',
|
|
1857
|
+
genesisHash: '0xfeb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7',
|
|
1858
|
+
ss58Format: 27,
|
|
1859
|
+
providers: {
|
|
1860
|
+
JelliedOwl: 'wss://kabocha.jelliedowl.com'
|
|
1861
|
+
},
|
|
1862
|
+
active: false,
|
|
1863
|
+
currentProviderMode: 'ws',
|
|
1864
|
+
currentProvider: 'JelliedOwl',
|
|
1865
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1866
|
+
paraId: 2113,
|
|
1867
|
+
nativeToken: 'KAB',
|
|
1868
|
+
decimals: 12
|
|
1869
|
+
},
|
|
1870
|
+
gmdie: {
|
|
1871
|
+
key: 'gmdie',
|
|
1872
|
+
chain: 'GM Parachain',
|
|
1873
|
+
genesisHash: '0x19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8',
|
|
1874
|
+
ss58Format: 7013,
|
|
1875
|
+
providers: {
|
|
1876
|
+
gmDie: 'wss://kusama.gmordie.com',
|
|
1877
|
+
bLdNodes: 'wss://ws.gm.bldnodes.org',
|
|
1878
|
+
TerraBioDAO: 'wss://ws-node-gm.terrabiodao.org'
|
|
1879
|
+
},
|
|
1880
|
+
active: false,
|
|
1881
|
+
currentProvider: 'bLdNodes',
|
|
1882
|
+
currentProviderMode: 'ws',
|
|
1883
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1884
|
+
paraId: 2123,
|
|
1885
|
+
nativeToken: 'FREN',
|
|
1886
|
+
decimals: 12
|
|
1887
|
+
},
|
|
1888
|
+
ternoa: {
|
|
1889
|
+
key: 'ternoa',
|
|
1890
|
+
chain: 'Ternoa Mainnet',
|
|
1891
|
+
genesisHash: '0x6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e',
|
|
1892
|
+
ss58Format: 42,
|
|
1893
|
+
providers: {
|
|
1894
|
+
ternoa: 'wss://mainnet.ternoa.network'
|
|
1895
|
+
},
|
|
1896
|
+
active: false,
|
|
1897
|
+
currentProviderMode: 'ws',
|
|
1898
|
+
currentProvider: 'ternoa',
|
|
1899
|
+
nativeToken: 'CAPS',
|
|
1900
|
+
groups: ['MAIN_NET'],
|
|
1901
|
+
decimals: 18,
|
|
1902
|
+
coinGeckoKey: 'coin-capsule',
|
|
1903
|
+
supportBonding: true,
|
|
1904
|
+
getStakingOnChain: true
|
|
1905
|
+
},
|
|
1906
|
+
tanganika: {
|
|
1907
|
+
key: 'tanganika',
|
|
1908
|
+
chain: 'DataHighway Tanganika',
|
|
1909
|
+
genesisHash: '0xeacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21',
|
|
1910
|
+
ss58Format: 33,
|
|
1911
|
+
providers: {
|
|
1912
|
+
tanganika: 'wss://tanganika.datahighway.com'
|
|
1913
|
+
},
|
|
1914
|
+
active: false,
|
|
1915
|
+
currentProvider: 'tanganika',
|
|
1916
|
+
currentProviderMode: 'ws',
|
|
1917
|
+
nativeToken: 'DHX',
|
|
1918
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1919
|
+
paraId: 2116,
|
|
1920
|
+
decimals: 18
|
|
1921
|
+
},
|
|
1922
|
+
amplitude: {
|
|
1923
|
+
key: 'amplitude',
|
|
1924
|
+
chain: 'Amplitude',
|
|
1925
|
+
genesisHash: '0xcceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf',
|
|
1926
|
+
ss58Format: 57,
|
|
1927
|
+
providers: {
|
|
1928
|
+
amplitude: 'wss://rpc-amplitude.pendulumchain.tech'
|
|
1929
|
+
},
|
|
1930
|
+
active: false,
|
|
1931
|
+
currentProviderMode: 'ws',
|
|
1932
|
+
currentProvider: 'amplitude',
|
|
1933
|
+
nativeToken: 'AMPE',
|
|
1934
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
1935
|
+
decimals: 12,
|
|
1936
|
+
paraId: 2124,
|
|
1937
|
+
supportBonding: true,
|
|
1938
|
+
getStakingOnChain: true
|
|
1939
|
+
},
|
|
1940
|
+
pendulum: {
|
|
1941
|
+
key: 'pendulum',
|
|
1942
|
+
chain: 'Pendulum',
|
|
1943
|
+
genesisHash: '0xcceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf',
|
|
1944
|
+
ss58Format: 56,
|
|
1945
|
+
providers: {},
|
|
1946
|
+
active: false,
|
|
1947
|
+
currentProviderMode: 'ws',
|
|
1948
|
+
currentProvider: null,
|
|
1949
|
+
nativeToken: 'PEN',
|
|
1950
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
1951
|
+
paraId: 2094,
|
|
1952
|
+
decimals: 12
|
|
1953
|
+
},
|
|
1954
|
+
gear_testnet: {
|
|
1955
|
+
key: 'gear_testnet',
|
|
1956
|
+
chain: 'Gear Staging Testnet',
|
|
1957
|
+
genesisHash: '0x6f022bd353c56b3e441507e1173601fd9dc0fb7547e6a95bbaf9b21f311bcab6',
|
|
1958
|
+
ss58Format: 42,
|
|
1959
|
+
providers: {
|
|
1960
|
+
gear: 'wss://rpc-node.gear-tech.io'
|
|
1961
|
+
},
|
|
1962
|
+
currentProvider: 'gear',
|
|
1963
|
+
active: false,
|
|
1964
|
+
currentProviderMode: 'ws',
|
|
1965
|
+
nativeToken: 'Unit',
|
|
1966
|
+
decimals: 12,
|
|
1967
|
+
groups: ['TEST_NET']
|
|
1968
|
+
},
|
|
1969
|
+
snow: {
|
|
1970
|
+
key: 'snow',
|
|
1971
|
+
chain: 'Snow Network',
|
|
1972
|
+
genesisHash: '0xb34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9',
|
|
1973
|
+
ss58Format: 2207,
|
|
1974
|
+
providers: {
|
|
1975
|
+
snow: 'wss://snow-rpc.icenetwork.io'
|
|
1976
|
+
},
|
|
1977
|
+
currentProvider: 'snow',
|
|
1978
|
+
active: false,
|
|
1979
|
+
currentProviderMode: 'ws',
|
|
1980
|
+
nativeToken: 'ICZ',
|
|
1981
|
+
decimals: 18,
|
|
1982
|
+
paraId: 2129,
|
|
1983
|
+
groups: ['KUSAMA_PARACHAIN']
|
|
1984
|
+
},
|
|
1985
|
+
arctic_testnet: {
|
|
1986
|
+
key: 'arctic_testnet',
|
|
1987
|
+
chain: 'Arctic Testnet',
|
|
1988
|
+
genesisHash: '0x5c4207232d344710a176b1982471acf9b058f40b4a57470c25410b68b684c766',
|
|
1989
|
+
ss58Format: 2207,
|
|
1990
|
+
providers: {
|
|
1991
|
+
arctic: 'wss://arctic-rpc.icenetwork.io:9944'
|
|
1992
|
+
},
|
|
1993
|
+
currentProvider: 'arctic',
|
|
1994
|
+
active: false,
|
|
1995
|
+
currentProviderMode: 'ws',
|
|
1996
|
+
nativeToken: 'ICY',
|
|
1997
|
+
decimals: 18,
|
|
1998
|
+
groups: ['TEST_NET']
|
|
1999
|
+
},
|
|
2000
|
+
ternoa_alphanet: {
|
|
2001
|
+
key: 'ternoa_alphanet',
|
|
2002
|
+
chain: 'Ternoa Alphanet',
|
|
2003
|
+
genesisHash: '0x18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace',
|
|
2004
|
+
ss58Format: 42,
|
|
2005
|
+
providers: {
|
|
2006
|
+
ternoa: 'wss://alphanet.ternoa.com'
|
|
2007
|
+
},
|
|
2008
|
+
active: false,
|
|
2009
|
+
currentProviderMode: 'ws',
|
|
2010
|
+
currentProvider: 'ternoa',
|
|
2011
|
+
nativeToken: 'CAPS',
|
|
2012
|
+
groups: ['TEST_NET'],
|
|
2013
|
+
decimals: 18,
|
|
2014
|
+
supportBonding: true,
|
|
2015
|
+
getStakingOnChain: true
|
|
2016
|
+
},
|
|
2017
|
+
calamari_test: {
|
|
2018
|
+
key: 'calamari_test',
|
|
2019
|
+
chain: 'Calamari Staging',
|
|
2020
|
+
genesisHash: '0x2ae061f08422b6503b8aa5f401242a209999669c3b8945f814dc096fb1a977bd',
|
|
2021
|
+
ss58Format: 78,
|
|
2022
|
+
providers: {
|
|
2023
|
+
calamari_test: 'wss://c1.calamari.seabird.systems'
|
|
2024
|
+
},
|
|
2025
|
+
active: false,
|
|
2026
|
+
currentProviderMode: 'ws',
|
|
2027
|
+
currentProvider: 'calamari_test',
|
|
2028
|
+
nativeToken: 'KMA',
|
|
2029
|
+
groups: ['TEST_NET'],
|
|
2030
|
+
decimals: 12,
|
|
2031
|
+
supportBonding: true,
|
|
2032
|
+
getStakingOnChain: true
|
|
2033
|
+
},
|
|
2034
|
+
boba: {
|
|
2035
|
+
key: 'boba',
|
|
2036
|
+
chain: 'Boba Network',
|
|
2037
|
+
genesisHash: '0xc7d53ee64d57e783b539c09923069280b95a212a36e84b308e15ad6f09a6fd6e',
|
|
2038
|
+
ss58Format: 0,
|
|
2039
|
+
providers: {
|
|
2040
|
+
'Read RPC': 'https://lightning-replica.boba.network',
|
|
2041
|
+
'Write RPC': 'https://mainnet.boba.network'
|
|
2042
|
+
},
|
|
2043
|
+
active: false,
|
|
2044
|
+
currentProviderMode: 'http',
|
|
2045
|
+
currentProvider: 'Write RPC',
|
|
2046
|
+
groups: ['MAIN_NET'],
|
|
2047
|
+
isEthereum: true,
|
|
2048
|
+
nativeToken: 'ETH',
|
|
2049
|
+
coinGeckoKey: 'ethereum',
|
|
2050
|
+
decimals: 18,
|
|
2051
|
+
evmChainId: 288,
|
|
2052
|
+
supportBonding: false,
|
|
2053
|
+
getStakingOnChain: false,
|
|
2054
|
+
abiExplorer: 'https://blockexplorer.boba.network',
|
|
2055
|
+
supportSmartContract: [ContractType.evm]
|
|
2056
|
+
},
|
|
2057
|
+
boba_rinkeby: {
|
|
2058
|
+
key: 'boba_rinkeby',
|
|
2059
|
+
chain: 'Boba Rinkeby (Testnet)',
|
|
2060
|
+
genesisHash: '0x6854c3f614bd5096f3b4cf142c9fbad8b95ced2eda2f5d64f97e8136b80e3677',
|
|
2061
|
+
ss58Format: 0,
|
|
2062
|
+
providers: {
|
|
2063
|
+
RPC: 'https://rinkeby.boba.network'
|
|
2064
|
+
},
|
|
2065
|
+
active: false,
|
|
2066
|
+
currentProviderMode: 'http',
|
|
2067
|
+
currentProvider: 'RPC',
|
|
2068
|
+
groups: ['TEST_NET'],
|
|
2069
|
+
isEthereum: true,
|
|
2070
|
+
nativeToken: 'ETH',
|
|
2071
|
+
decimals: 18,
|
|
2072
|
+
evmChainId: 28,
|
|
2073
|
+
supportBonding: false,
|
|
2074
|
+
getStakingOnChain: false,
|
|
2075
|
+
abiExplorer: 'https://blockexplorer.rinkeby.boba.network',
|
|
2076
|
+
supportSmartContract: [ContractType.evm]
|
|
2077
|
+
},
|
|
2078
|
+
bobabeam: {
|
|
2079
|
+
key: 'bobabeam',
|
|
2080
|
+
chain: 'Bobabeam',
|
|
2081
|
+
genesisHash: '0x6330c695da0822ab704c71ec3e26e14999e8074754fa1923059dd9a3e0d39c07',
|
|
2082
|
+
ss58Format: 0,
|
|
2083
|
+
providers: {
|
|
2084
|
+
RPC: 'https://bobabeam.boba.network',
|
|
2085
|
+
'Replica RPC': 'https://replica.bobabeam.boba.network'
|
|
2086
|
+
},
|
|
2087
|
+
active: false,
|
|
2088
|
+
currentProviderMode: 'http',
|
|
2089
|
+
coinGeckoKey: 'boba-network',
|
|
2090
|
+
currentProvider: 'RPC',
|
|
2091
|
+
groups: ['MAIN_NET'],
|
|
2092
|
+
isEthereum: true,
|
|
2093
|
+
nativeToken: 'BOBA',
|
|
2094
|
+
decimals: 18,
|
|
2095
|
+
evmChainId: 1294,
|
|
2096
|
+
supportBonding: false,
|
|
2097
|
+
getStakingOnChain: false,
|
|
2098
|
+
abiExplorer: 'https://blockexplorer.bobabeam.boba.network',
|
|
2099
|
+
supportSmartContract: [ContractType.evm]
|
|
2100
|
+
},
|
|
2101
|
+
bobabase: {
|
|
2102
|
+
key: 'bobabase',
|
|
2103
|
+
chain: 'Bobabase (Testnet)',
|
|
2104
|
+
genesisHash: '0x66482d8e7d148ce68bc546fc4e2f5e0631d4fc816d5327fb1f688a8fbad01d6a',
|
|
2105
|
+
ss58Format: 0,
|
|
2106
|
+
providers: {
|
|
2107
|
+
RPC: 'https://bobabase.boba.network',
|
|
2108
|
+
'Replica RPC': 'https://replica.bobabase.boba.network'
|
|
2109
|
+
},
|
|
2110
|
+
active: false,
|
|
2111
|
+
currentProviderMode: 'http',
|
|
2112
|
+
currentProvider: 'RPC',
|
|
2113
|
+
groups: ['TEST_NET'],
|
|
2114
|
+
isEthereum: true,
|
|
2115
|
+
nativeToken: 'BOBA',
|
|
2116
|
+
decimals: 18,
|
|
2117
|
+
evmChainId: 1297,
|
|
2118
|
+
supportBonding: false,
|
|
2119
|
+
getStakingOnChain: false,
|
|
2120
|
+
abiExplorer: 'https://blockexplorer.bobabase.boba.network',
|
|
2121
|
+
supportSmartContract: [ContractType.evm]
|
|
2122
|
+
},
|
|
2123
|
+
amplitude_test: {
|
|
2124
|
+
key: 'amplitude_test',
|
|
2125
|
+
chain: 'Amplitude Testnet',
|
|
2126
|
+
genesisHash: '0x67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13',
|
|
2127
|
+
ss58Format: 57,
|
|
2128
|
+
providers: {
|
|
2129
|
+
pendulum: 'wss://rpc-foucoco.pendulumchain.tech'
|
|
2130
|
+
},
|
|
2131
|
+
active: false,
|
|
2132
|
+
currentProviderMode: 'ws',
|
|
2133
|
+
currentProvider: 'pendulum',
|
|
2134
|
+
groups: ['TEST_NET'],
|
|
2135
|
+
nativeToken: 'AMPE',
|
|
2136
|
+
decimals: 12,
|
|
2137
|
+
supportBonding: true,
|
|
2138
|
+
getStakingOnChain: true
|
|
2139
|
+
},
|
|
2140
|
+
kilt_peregrine: {
|
|
2141
|
+
key: 'kilt_peregrine',
|
|
2142
|
+
chain: 'KILT Peregrine',
|
|
2143
|
+
genesisHash: '0xa0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21',
|
|
2144
|
+
ss58Format: 38,
|
|
2145
|
+
providers: {
|
|
2146
|
+
kilt: 'wss://peregrine.kilt.io/parachain-public-ws/'
|
|
2147
|
+
},
|
|
2148
|
+
active: false,
|
|
2149
|
+
currentProviderMode: 'ws',
|
|
2150
|
+
currentProvider: 'kilt',
|
|
2151
|
+
groups: ['TEST_NET'],
|
|
2152
|
+
nativeToken: 'PILT',
|
|
2153
|
+
decimals: 15,
|
|
2154
|
+
supportBonding: true,
|
|
2155
|
+
getStakingOnChain: true
|
|
2156
|
+
},
|
|
2157
|
+
xx_network: {
|
|
2158
|
+
key: 'xx_network',
|
|
2159
|
+
chain: 'XX Network',
|
|
2160
|
+
genesisHash: '0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa',
|
|
2161
|
+
ss58Format: 55,
|
|
2162
|
+
providers: {
|
|
2163
|
+
'XX Foundation': 'wss://rpc.xx.network',
|
|
2164
|
+
dwellir: 'wss://xxnetwork-rpc.dwellir.com'
|
|
2165
|
+
},
|
|
2166
|
+
active: false,
|
|
2167
|
+
currentProviderMode: 'ws',
|
|
2168
|
+
currentProvider: 'XX Foundation',
|
|
2169
|
+
groups: ['MAIN_NET'],
|
|
2170
|
+
nativeToken: 'xx',
|
|
2171
|
+
decimals: 9,
|
|
2172
|
+
coinGeckoKey: 'xxcoin'
|
|
2173
|
+
},
|
|
2174
|
+
watr_network: {
|
|
2175
|
+
key: 'watr_network',
|
|
2176
|
+
chain: 'Watr Network',
|
|
2177
|
+
genesisHash: '0xb53c620c41860278fa3068a5367c8eedceefce8a7c29237d830bc09a71737b5d',
|
|
2178
|
+
ss58Format: 19,
|
|
2179
|
+
providers: {
|
|
2180
|
+
watr: 'wss://rpc.dev.watr.org'
|
|
2181
|
+
},
|
|
2182
|
+
active: false,
|
|
2183
|
+
currentProviderMode: 'ws',
|
|
2184
|
+
currentProvider: 'watr',
|
|
2185
|
+
groups: ['TEST_NET'],
|
|
2186
|
+
nativeToken: 'WATRD',
|
|
2187
|
+
decimals: 18,
|
|
2188
|
+
coinGeckoKey: 'watr'
|
|
2189
|
+
},
|
|
2190
|
+
watr_network_evm: {
|
|
2191
|
+
key: 'watr_network_evm',
|
|
2192
|
+
chain: 'Watr Network - EVM',
|
|
2193
|
+
genesisHash: '0xb53c620c41860278fa3068a5367c8eedceefce8a7c29237d830bc09a71737b5d_evm',
|
|
2194
|
+
ss58Format: 19,
|
|
2195
|
+
providers: {
|
|
2196
|
+
watr: 'https://rpc.dev.watr.org'
|
|
2197
|
+
},
|
|
2198
|
+
active: false,
|
|
2199
|
+
isEthereum: true,
|
|
2200
|
+
currentProviderMode: 'http',
|
|
2201
|
+
currentProvider: 'watr',
|
|
2202
|
+
groups: ['TEST_NET'],
|
|
2203
|
+
nativeToken: 'WATRD',
|
|
2204
|
+
decimals: 18,
|
|
2205
|
+
evmChainId: 688,
|
|
2206
|
+
coinGeckoKey: 'watr',
|
|
2207
|
+
supportSmartContract: [ContractType.evm]
|
|
2208
|
+
},
|
|
2209
|
+
fusotao: {
|
|
2210
|
+
key: 'fusotao',
|
|
2211
|
+
chain: 'Fusotao',
|
|
2212
|
+
genesisHash: '0xa7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3',
|
|
2213
|
+
ss58Format: 42,
|
|
2214
|
+
providers: {
|
|
2215
|
+
fusotao: 'wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2'
|
|
2216
|
+
},
|
|
2217
|
+
active: false,
|
|
2218
|
+
currentProviderMode: 'ws',
|
|
2219
|
+
currentProvider: 'fusotao',
|
|
2220
|
+
groups: ['MAIN_NET'],
|
|
2221
|
+
nativeToken: 'TAO',
|
|
2222
|
+
decimals: 18,
|
|
2223
|
+
coinGeckoKey: 'fusotao'
|
|
2224
|
+
},
|
|
2225
|
+
discovol: {
|
|
2226
|
+
key: 'discovol',
|
|
2227
|
+
chain: 'Discovol',
|
|
2228
|
+
genesisHash: '0x2dfbcf7700297bd8ce07a4665ab39e2ed1a3790df783b936988c85eb87e38bee',
|
|
2229
|
+
ss58Format: 42,
|
|
2230
|
+
providers: {
|
|
2231
|
+
discovol: 'wss://gateway.mainnet.octopus.network/discovol/afpft46l1egfhrv8at5pfyrld03zseo1'
|
|
2232
|
+
},
|
|
2233
|
+
active: false,
|
|
2234
|
+
currentProviderMode: 'ws',
|
|
2235
|
+
currentProvider: 'discovol',
|
|
2236
|
+
groups: ['MAIN_NET'],
|
|
2237
|
+
nativeToken: 'DISC',
|
|
2238
|
+
decimals: 14
|
|
2239
|
+
},
|
|
2240
|
+
discovol_testnet: {
|
|
2241
|
+
key: 'discovol_testnet',
|
|
2242
|
+
chain: 'Discovol (Testnet)',
|
|
2243
|
+
genesisHash: '0xdc1922b7f60b4925091bbfdd912684c449de7a7cdc5592e9eab11fee55fa53ec',
|
|
2244
|
+
ss58Format: 42,
|
|
2245
|
+
providers: {
|
|
2246
|
+
discovol_testnet: 'wss://gateway.testnet.octopus.network/discovol/o4urcey87y4n1qimhfrad92gzs315z9h'
|
|
2247
|
+
},
|
|
2248
|
+
active: false,
|
|
2249
|
+
currentProviderMode: 'ws',
|
|
2250
|
+
currentProvider: 'discovol_testnet',
|
|
2251
|
+
groups: ['TEST_NET'],
|
|
2252
|
+
nativeToken: 'DISC',
|
|
2253
|
+
decimals: 14
|
|
2254
|
+
},
|
|
2255
|
+
atocha: {
|
|
2256
|
+
key: 'atocha',
|
|
2257
|
+
chain: 'Atocha',
|
|
2258
|
+
genesisHash: '0x1f11f745be512a17f39b571a9391b5ee6747b900c1db98176828e4a1346dbe9b',
|
|
2259
|
+
ss58Format: 42,
|
|
2260
|
+
providers: {
|
|
2261
|
+
atocha: 'wss://gateway.mainnet.octopus.network/atocha/jungxomf4hdcfocwcalgoiz64g9avjim'
|
|
2262
|
+
},
|
|
2263
|
+
active: false,
|
|
2264
|
+
currentProviderMode: 'ws',
|
|
2265
|
+
currentProvider: 'atocha',
|
|
2266
|
+
groups: ['MAIN_NET'],
|
|
2267
|
+
nativeToken: 'ATO',
|
|
2268
|
+
decimals: 18,
|
|
2269
|
+
coinGeckoKey: 'atocha-coin'
|
|
2270
|
+
},
|
|
2271
|
+
myriad: {
|
|
2272
|
+
key: 'myriad',
|
|
2273
|
+
chain: 'Myriad',
|
|
2274
|
+
genesisHash: '0x74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063',
|
|
2275
|
+
ss58Format: 42,
|
|
2276
|
+
providers: {
|
|
2277
|
+
myriad: 'wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0'
|
|
2278
|
+
},
|
|
2279
|
+
active: false,
|
|
2280
|
+
currentProviderMode: 'ws',
|
|
2281
|
+
currentProvider: 'myriad',
|
|
2282
|
+
groups: ['MAIN_NET'],
|
|
2283
|
+
nativeToken: 'MYRIA',
|
|
2284
|
+
decimals: 18,
|
|
2285
|
+
coinGeckoKey: 'myriad-social'
|
|
2286
|
+
},
|
|
2287
|
+
deBio: {
|
|
2288
|
+
key: 'deBio',
|
|
2289
|
+
chain: 'DeBio',
|
|
2290
|
+
genesisHash: '0x996800af345b3109acdada9913e36d1efa98b89e7dcd0b61b70fdbfc13b2fa50',
|
|
2291
|
+
ss58Format: 42,
|
|
2292
|
+
providers: {
|
|
2293
|
+
deBio: 'wss://gateway.mainnet.octopus.network/debionetwork/ae48005a0c7ecb4053394559a7f4069e'
|
|
2294
|
+
},
|
|
2295
|
+
active: false,
|
|
2296
|
+
currentProviderMode: 'ws',
|
|
2297
|
+
currentProvider: 'deBio',
|
|
2298
|
+
groups: ['MAIN_NET'],
|
|
2299
|
+
nativeToken: 'DBIO',
|
|
2300
|
+
decimals: 18,
|
|
2301
|
+
coinGeckoKey: 'debio-network'
|
|
2302
|
+
},
|
|
2303
|
+
barnacle: {
|
|
2304
|
+
key: 'barnacle',
|
|
2305
|
+
chain: 'Barnacle',
|
|
2306
|
+
genesisHash: '0xb3d6017fd8f67d1d9970a010ee1bbf0bc12c5ff2d2c7b9c311a11332cb7b3a53',
|
|
2307
|
+
ss58Format: 42,
|
|
2308
|
+
providers: {
|
|
2309
|
+
barnacle: 'wss://gateway.testnet.octopus.network/barnacle0928/9mw012zuf27soh7nrrq3a4p0s2ti3cyn'
|
|
2310
|
+
},
|
|
2311
|
+
active: false,
|
|
2312
|
+
currentProviderMode: 'ws',
|
|
2313
|
+
currentProvider: 'barnacle',
|
|
2314
|
+
groups: ['TEST_NET'],
|
|
2315
|
+
nativeToken: 'BAR',
|
|
2316
|
+
decimals: 18
|
|
2317
|
+
},
|
|
2318
|
+
barnacle_evm: {
|
|
2319
|
+
key: 'barnacle_evm',
|
|
2320
|
+
chain: 'Barnacle EVM',
|
|
2321
|
+
genesisHash: '0x49c76ef3ec0e3931db706b8df850b3e57bf0637a74ac72d0ae3d8242bc0c2a35',
|
|
2322
|
+
ss58Format: 42,
|
|
2323
|
+
providers: {
|
|
2324
|
+
barnacle_evm: 'wss://gateway.testnet.octopus.network/barnacle-evm/wj1hhcverunusc35jifki19otd4od1n5'
|
|
2325
|
+
},
|
|
2326
|
+
active: false,
|
|
2327
|
+
currentProviderMode: 'ws',
|
|
2328
|
+
currentProvider: 'barnacle_evm',
|
|
2329
|
+
groups: ['TEST_NET'],
|
|
2330
|
+
nativeToken: 'EBAR',
|
|
2331
|
+
decimals: 18,
|
|
2332
|
+
isEthereum: true
|
|
2333
|
+
},
|
|
2334
|
+
collectives: {
|
|
2335
|
+
key: 'collectives',
|
|
2336
|
+
chain: 'Collectives',
|
|
2337
|
+
genesisHash: '0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2',
|
|
2338
|
+
ss58Format: 0,
|
|
2339
|
+
providers: {
|
|
2340
|
+
viaParity: 'wss://polkadot-collectives-rpc.polkadot.io'
|
|
2341
|
+
},
|
|
2342
|
+
paraId: 1001,
|
|
2343
|
+
active: false,
|
|
2344
|
+
currentProviderMode: 'ws',
|
|
2345
|
+
currentProvider: 'viaParity',
|
|
2346
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2347
|
+
nativeToken: 'DOT',
|
|
2348
|
+
decimals: 10
|
|
2349
|
+
},
|
|
2350
|
+
ajunaPolkadot: {
|
|
2351
|
+
key: 'ajunaPolkadot',
|
|
2352
|
+
chain: 'Ajuna Network',
|
|
2353
|
+
genesisHash: '0xe358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee',
|
|
2354
|
+
ss58Format: 1328,
|
|
2355
|
+
providers: {
|
|
2356
|
+
viaAjunaNetwork: 'wss://rpc-parachain.ajuna.network',
|
|
2357
|
+
OnFinality: 'wss://ajuna.api.onfinality.io/public-ws'
|
|
2358
|
+
},
|
|
2359
|
+
paraId: 2028,
|
|
2360
|
+
active: false,
|
|
2361
|
+
currentProviderMode: 'ws',
|
|
2362
|
+
currentProvider: 'viaAjunaNetwork',
|
|
2363
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2364
|
+
nativeToken: 'AJUN',
|
|
2365
|
+
decimals: 12
|
|
2366
|
+
},
|
|
2367
|
+
bitgreen: {
|
|
2368
|
+
key: 'bitgreen',
|
|
2369
|
+
chain: 'Bitgreen',
|
|
2370
|
+
genesisHash: '0xc14597baeccb232d662770d2d50ae832ca8c3192693d2b0814e6433f2888ddd6',
|
|
2371
|
+
ss58Format: 42,
|
|
2372
|
+
providers: {
|
|
2373
|
+
viaBitgreen: 'wss://mainnet.bitgreen.org'
|
|
2374
|
+
},
|
|
2375
|
+
paraId: 2048,
|
|
2376
|
+
active: false,
|
|
2377
|
+
currentProviderMode: 'ws',
|
|
2378
|
+
currentProvider: 'viaBitgreen',
|
|
2379
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2380
|
+
nativeToken: 'BBB',
|
|
2381
|
+
decimals: 18
|
|
2382
|
+
},
|
|
2383
|
+
frequency: {
|
|
2384
|
+
key: 'frequency',
|
|
2385
|
+
chain: 'Frequency',
|
|
2386
|
+
genesisHash: '0x4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1',
|
|
2387
|
+
ss58Format: 90,
|
|
2388
|
+
providers: {
|
|
2389
|
+
'Frequency 0': 'wss://0.rpc.frequency.xyz',
|
|
2390
|
+
'Frequency 1': 'wss://1.rpc.frequency.xyz'
|
|
2391
|
+
},
|
|
2392
|
+
paraId: 2091,
|
|
2393
|
+
active: false,
|
|
2394
|
+
currentProviderMode: 'ws',
|
|
2395
|
+
currentProvider: 'Frequency 1',
|
|
2396
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2397
|
+
nativeToken: 'FRQCY',
|
|
2398
|
+
decimals: 8
|
|
2399
|
+
},
|
|
2400
|
+
hashedNetwork: {
|
|
2401
|
+
key: 'hashedNetwork',
|
|
2402
|
+
chain: 'Hashed Network',
|
|
2403
|
+
genesisHash: '0x331645ae3db556c7754a82f79cece12cce3420975d5b0219d51b1cb4f6ddc21c',
|
|
2404
|
+
ss58Format: 42,
|
|
2405
|
+
providers: {
|
|
2406
|
+
'Hashed Systems': 'wss://c1.hashed.network'
|
|
2407
|
+
},
|
|
2408
|
+
paraId: 2093,
|
|
2409
|
+
active: false,
|
|
2410
|
+
currentProviderMode: 'ws',
|
|
2411
|
+
currentProvider: 'Hashed Systems',
|
|
2412
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2413
|
+
nativeToken: 'HASH',
|
|
2414
|
+
decimals: 18
|
|
2415
|
+
},
|
|
2416
|
+
kapex: {
|
|
2417
|
+
key: 'kapex',
|
|
2418
|
+
chain: 'Kapex',
|
|
2419
|
+
genesisHash: '0x7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e',
|
|
2420
|
+
ss58Format: 2007,
|
|
2421
|
+
providers: {
|
|
2422
|
+
viaTotem: 'wss://k-ui.kapex.network'
|
|
2423
|
+
},
|
|
2424
|
+
paraId: 2007,
|
|
2425
|
+
active: false,
|
|
2426
|
+
currentProviderMode: 'ws',
|
|
2427
|
+
currentProvider: 'viaTotem',
|
|
2428
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2429
|
+
nativeToken: 'KPX',
|
|
2430
|
+
decimals: 12
|
|
2431
|
+
},
|
|
2432
|
+
kylinNetwork: {
|
|
2433
|
+
key: 'kylinNetwork',
|
|
2434
|
+
chain: 'Kylin Network',
|
|
2435
|
+
genesisHash: '0xf2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5',
|
|
2436
|
+
ss58Format: 42,
|
|
2437
|
+
providers: {
|
|
2438
|
+
'Kylin Network': 'wss://polkadot.kylin-node.co.uk'
|
|
2439
|
+
},
|
|
2440
|
+
paraId: 2052,
|
|
2441
|
+
active: false,
|
|
2442
|
+
currentProviderMode: 'ws',
|
|
2443
|
+
currentProvider: 'Kylin Network',
|
|
2444
|
+
groups: ['POLKADOT_PARACHAIN'],
|
|
2445
|
+
nativeToken: 'KYL',
|
|
2446
|
+
decimals: 18,
|
|
2447
|
+
coinGeckoKey: 'kylin-network'
|
|
2448
|
+
},
|
|
2449
|
+
ipci: {
|
|
2450
|
+
key: 'ipci',
|
|
2451
|
+
chain: 'DAO IPCI',
|
|
2452
|
+
genesisHash: '0x6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348',
|
|
2453
|
+
ss58Format: 32,
|
|
2454
|
+
providers: {
|
|
2455
|
+
viaAiralab: 'wss://kusama.rpc.ipci.io'
|
|
2456
|
+
},
|
|
2457
|
+
paraId: 2222,
|
|
2458
|
+
active: false,
|
|
2459
|
+
currentProviderMode: 'ws',
|
|
2460
|
+
currentProvider: 'viaAiralab',
|
|
2461
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
2462
|
+
nativeToken: 'MITO',
|
|
2463
|
+
decimals: 12
|
|
2464
|
+
},
|
|
2465
|
+
kico: {
|
|
2466
|
+
key: 'kico',
|
|
2467
|
+
chain: 'KICO',
|
|
2468
|
+
genesisHash: '0x52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da',
|
|
2469
|
+
ss58Format: 42,
|
|
2470
|
+
providers: {
|
|
2471
|
+
'DICO Foundation': 'wss://rpc.kico.dico.io'
|
|
2472
|
+
},
|
|
2473
|
+
paraId: 2107,
|
|
2474
|
+
active: false,
|
|
2475
|
+
currentProviderMode: 'ws',
|
|
2476
|
+
currentProvider: 'DICO Foundation',
|
|
2477
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
2478
|
+
nativeToken: 'KICO',
|
|
2479
|
+
decimals: 14
|
|
2480
|
+
},
|
|
2481
|
+
luhnNetwork: {
|
|
2482
|
+
key: 'luhnNetwork',
|
|
2483
|
+
chain: 'Luhn Network',
|
|
2484
|
+
genesisHash: '0xba713fdbf674083c5541c1439b83d8e593e1105f35f11954bcc50d0bf9607873',
|
|
2485
|
+
ss58Format: 42,
|
|
2486
|
+
providers: {
|
|
2487
|
+
'Hashed Systems': 'wss://c1.luhn.network'
|
|
2488
|
+
},
|
|
2489
|
+
paraId: 2232,
|
|
2490
|
+
active: false,
|
|
2491
|
+
currentProviderMode: 'ws',
|
|
2492
|
+
currentProvider: 'Hashed Systems',
|
|
2493
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
2494
|
+
nativeToken: 'LUHN',
|
|
2495
|
+
decimals: 18
|
|
2496
|
+
},
|
|
2497
|
+
pichiu: {
|
|
2498
|
+
key: 'pichiu',
|
|
2499
|
+
chain: 'Pichiu Network',
|
|
2500
|
+
genesisHash: '0x0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5',
|
|
2501
|
+
ss58Format: 42,
|
|
2502
|
+
providers: {
|
|
2503
|
+
'Kylin Network': 'wss://kusama.kylin-node.co.uk',
|
|
2504
|
+
OnFinality: 'wss://pichiu.api.onfinality.io/public-ws'
|
|
2505
|
+
},
|
|
2506
|
+
paraId: 2102,
|
|
2507
|
+
active: false,
|
|
2508
|
+
currentProviderMode: 'ws',
|
|
2509
|
+
currentProvider: 'OnFinality',
|
|
2510
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
2511
|
+
nativeToken: 'PCHU',
|
|
2512
|
+
decimals: 18
|
|
2513
|
+
},
|
|
2514
|
+
riodefi: {
|
|
2515
|
+
key: 'riodefi',
|
|
2516
|
+
chain: 'RioDeFi',
|
|
2517
|
+
genesisHash: '0x70310f31bdb878e9920121807ee46236bda2e00c10eb105a40b386bd7ad16906',
|
|
2518
|
+
ss58Format: 42,
|
|
2519
|
+
providers: {
|
|
2520
|
+
RioProtocol: 'wss://rio-kusama.riocorenetwork.com'
|
|
2521
|
+
},
|
|
2522
|
+
paraId: 2227,
|
|
2523
|
+
active: false,
|
|
2524
|
+
currentProviderMode: 'ws',
|
|
2525
|
+
currentProvider: 'RioProtocol',
|
|
2526
|
+
groups: ['KUSAMA_PARACHAIN'],
|
|
2527
|
+
nativeToken: 'UNIT',
|
|
2528
|
+
decimals: 12
|
|
2529
|
+
},
|
|
2530
|
+
automata: {
|
|
2531
|
+
key: 'automata',
|
|
2532
|
+
chain: 'Automata',
|
|
2533
|
+
genesisHash: '0xc8eda34601b5a48c73f47ee39a3a86a858c34f044185b17dc7d5ad155813dc63',
|
|
2534
|
+
ss58Format: 42,
|
|
2535
|
+
providers: {
|
|
2536
|
+
'Automata Network': 'wss://api.ata.network',
|
|
2537
|
+
OnFinality: 'wss://automata.api.onfinality.io/public-ws'
|
|
2538
|
+
},
|
|
2539
|
+
active: false,
|
|
2540
|
+
currentProviderMode: 'ws',
|
|
2541
|
+
currentProvider: 'OnFinality',
|
|
2542
|
+
groups: ['MAIN_NET'],
|
|
2543
|
+
nativeToken: 'ATA',
|
|
2544
|
+
decimals: 18,
|
|
2545
|
+
coinGeckoKey: 'automata'
|
|
2546
|
+
},
|
|
2547
|
+
creditcoin: {
|
|
2548
|
+
key: 'creditcoin',
|
|
2549
|
+
chain: 'Creditcoin',
|
|
2550
|
+
genesisHash: '0xdd954cbf4000542ef1a15bca509cd89684330bee5e23766c527cdb0d7275e9c2',
|
|
2551
|
+
ss58Format: 42,
|
|
2552
|
+
providers: {
|
|
2553
|
+
'Creditcoin Foundation': 'wss://rpc.mainnet.creditcoin.network/ws'
|
|
2554
|
+
},
|
|
2555
|
+
active: false,
|
|
2556
|
+
currentProviderMode: 'ws',
|
|
2557
|
+
currentProvider: 'Creditcoin Foundation',
|
|
2558
|
+
groups: ['MAIN_NET'],
|
|
2559
|
+
nativeToken: 'CTC',
|
|
2560
|
+
decimals: 18,
|
|
2561
|
+
coinGeckoKey: 'creditcoin-2'
|
|
2562
|
+
},
|
|
2563
|
+
crownSterling: {
|
|
2564
|
+
key: 'crownSterling',
|
|
2565
|
+
chain: 'Crown Sterling',
|
|
2566
|
+
genesisHash: '0xce24ecf534daea9cd46e425659ef4950a57dd29d07272b423220129c323a64b7',
|
|
2567
|
+
ss58Format: 0,
|
|
2568
|
+
providers: {
|
|
2569
|
+
'Crown Sterling': 'wss://blockchain.crownsterling.io'
|
|
2570
|
+
},
|
|
2571
|
+
active: false,
|
|
2572
|
+
currentProviderMode: 'ws',
|
|
2573
|
+
currentProvider: 'Crown Sterling',
|
|
2574
|
+
groups: ['MAIN_NET'],
|
|
2575
|
+
nativeToken: 'CSOV',
|
|
2576
|
+
decimals: 12,
|
|
2577
|
+
coinGeckoKey: 'crownsterling'
|
|
2578
|
+
},
|
|
2579
|
+
dockPosMainnet: {
|
|
2580
|
+
key: 'dockPosMainnet',
|
|
2581
|
+
chain: 'Dock',
|
|
2582
|
+
genesisHash: '0x6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae',
|
|
2583
|
+
ss58Format: 22,
|
|
2584
|
+
providers: {
|
|
2585
|
+
'Dock Association': 'wss://mainnet-node.dock.io'
|
|
2586
|
+
},
|
|
2587
|
+
active: false,
|
|
2588
|
+
currentProviderMode: 'ws',
|
|
2589
|
+
currentProvider: 'Dock Association',
|
|
2590
|
+
groups: ['MAIN_NET'],
|
|
2591
|
+
nativeToken: 'DOCK',
|
|
2592
|
+
decimals: 6,
|
|
2593
|
+
coinGeckoKey: 'dock',
|
|
2594
|
+
blockExplorer: 'https://dock.subscan.io'
|
|
2595
|
+
},
|
|
2596
|
+
kusari: {
|
|
2597
|
+
key: 'kusari',
|
|
2598
|
+
chain: 'Kusari',
|
|
2599
|
+
genesisHash: '0x4959f8d87d40d9ef516459ff177111bb03d875e5a7ed69282f6b689a707b69f5',
|
|
2600
|
+
ss58Format: 42,
|
|
2601
|
+
providers: {
|
|
2602
|
+
Swapdex: 'wss://ws.kusari.network'
|
|
2603
|
+
},
|
|
2604
|
+
active: false,
|
|
2605
|
+
currentProviderMode: 'ws',
|
|
2606
|
+
currentProvider: 'Swapdex',
|
|
2607
|
+
groups: ['MAIN_NET'],
|
|
2608
|
+
nativeToken: 'KSI',
|
|
2609
|
+
decimals: 18
|
|
2610
|
+
},
|
|
2611
|
+
logion: {
|
|
2612
|
+
key: 'logion',
|
|
2613
|
+
chain: 'logion Standalone',
|
|
2614
|
+
genesisHash: '0xe9d7420a5f73edef005ccb8e043500aa5b2458f173912184ea93c14dc035a203',
|
|
2615
|
+
ss58Format: 42,
|
|
2616
|
+
providers: {
|
|
2617
|
+
Logion: 'wss://rpc01.logion.network'
|
|
2618
|
+
},
|
|
2619
|
+
active: false,
|
|
2620
|
+
currentProviderMode: 'ws',
|
|
2621
|
+
currentProvider: 'Logion',
|
|
2622
|
+
groups: ['MAIN_NET'],
|
|
2623
|
+
nativeToken: 'LGNT',
|
|
2624
|
+
decimals: 18
|
|
2625
|
+
},
|
|
2626
|
+
neatcoin: {
|
|
2627
|
+
key: 'neatcoin',
|
|
2628
|
+
chain: 'Neatcoin',
|
|
2629
|
+
genesisHash: '0xfbb541421d30423c9a753ffa844b64fd44d823f513bf49e3b73b3a656309a595',
|
|
2630
|
+
ss58Format: 48,
|
|
2631
|
+
providers: {
|
|
2632
|
+
Neatcoin: 'wss://rpc.neatcoin.org/ws'
|
|
2633
|
+
},
|
|
2634
|
+
active: false,
|
|
2635
|
+
currentProviderMode: 'ws',
|
|
2636
|
+
currentProvider: 'Neatcoin',
|
|
2637
|
+
groups: ['MAIN_NET'],
|
|
2638
|
+
nativeToken: 'NEAT',
|
|
2639
|
+
decimals: 12
|
|
2640
|
+
},
|
|
2641
|
+
nftmart: {
|
|
2642
|
+
key: 'nftmart',
|
|
2643
|
+
chain: 'NFTMart',
|
|
2644
|
+
genesisHash: '0xfcf9074303d8f319ad1bf0195b145871977e7c375883b834247cb01ff22f51f9',
|
|
2645
|
+
ss58Format: 12191,
|
|
2646
|
+
providers: {
|
|
2647
|
+
NFTMart: 'wss://mainnet.nftmart.io/rpc/ws'
|
|
2648
|
+
},
|
|
2649
|
+
active: false,
|
|
2650
|
+
currentProviderMode: 'ws',
|
|
2651
|
+
currentProvider: 'NFTMart',
|
|
2652
|
+
groups: ['MAIN_NET'],
|
|
2653
|
+
nativeToken: 'NMT',
|
|
2654
|
+
decimals: 12,
|
|
2655
|
+
coinGeckoKey: 'nftmart-token'
|
|
2656
|
+
},
|
|
2657
|
+
polymesh: {
|
|
2658
|
+
key: 'polymesh',
|
|
2659
|
+
chain: 'Polymesh Mainnet',
|
|
2660
|
+
genesisHash: '0x6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063',
|
|
2661
|
+
ss58Format: 12,
|
|
2662
|
+
providers: {
|
|
2663
|
+
Polymath: 'wss://mainnet-rpc.polymesh.network'
|
|
2664
|
+
},
|
|
2665
|
+
active: false,
|
|
2666
|
+
currentProviderMode: 'ws',
|
|
2667
|
+
currentProvider: 'Polymath',
|
|
2668
|
+
groups: ['MAIN_NET'],
|
|
2669
|
+
nativeToken: 'POLYX',
|
|
2670
|
+
decimals: 6,
|
|
2671
|
+
coinGeckoKey: 'polymesh',
|
|
2672
|
+
blockExplorer: 'https://polymesh.subscan.io'
|
|
2673
|
+
},
|
|
2674
|
+
riochain: {
|
|
2675
|
+
key: 'riochain',
|
|
2676
|
+
chain: 'RioChain',
|
|
2677
|
+
genesisHash: '0xd8c6dc2e057b94d05c870a7b39bfb30ae10202ed9cf7731d28dafcfe9458e307',
|
|
2678
|
+
ss58Format: 42,
|
|
2679
|
+
providers: {
|
|
2680
|
+
RioChain: 'wss://node.v1.riochain.io'
|
|
2681
|
+
},
|
|
2682
|
+
active: false,
|
|
2683
|
+
currentProviderMode: 'ws',
|
|
2684
|
+
currentProvider: 'RioChain',
|
|
2685
|
+
groups: ['MAIN_NET'],
|
|
2686
|
+
nativeToken: 'RFUEL',
|
|
2687
|
+
decimals: 12,
|
|
2688
|
+
coinGeckoKey: 'rio-defi'
|
|
2689
|
+
},
|
|
2690
|
+
sherpax: {
|
|
2691
|
+
key: 'sherpax',
|
|
2692
|
+
chain: 'SherpaX',
|
|
2693
|
+
genesisHash: '0xe195ef16d0c628b5cab1486a233865def6e71f8b7814dd058a6b93a85118b796',
|
|
2694
|
+
ss58Format: 44,
|
|
2695
|
+
providers: {
|
|
2696
|
+
ChainX: 'wss://mainnet.sherpax.io'
|
|
2697
|
+
},
|
|
2698
|
+
active: false,
|
|
2699
|
+
currentProviderMode: 'ws',
|
|
2700
|
+
currentProvider: 'ChainX',
|
|
2701
|
+
groups: ['MAIN_NET'],
|
|
2702
|
+
nativeToken: 'KSX',
|
|
2703
|
+
decimals: 18
|
|
2704
|
+
},
|
|
2705
|
+
'sora-substrate': {
|
|
2706
|
+
key: 'sora-substrate',
|
|
2707
|
+
chain: 'SORA',
|
|
2708
|
+
genesisHash: '0x7e4e32d0feafd4f9c9414b0be86373f9a1efa904809b683453a9af6856d38ad5',
|
|
2709
|
+
ss58Format: 69,
|
|
2710
|
+
providers: {
|
|
2711
|
+
'SORA Parliament Ministry of Finance #2': 'wss://mof2.sora.org',
|
|
2712
|
+
'SORA Parliament Ministry of Finance': 'wss://ws.mof.sora.org',
|
|
2713
|
+
'SORA Parliament Ministry of Finance #3': 'wss://mof3.sora.org',
|
|
2714
|
+
OnFinality: 'wss://sora.api.onfinality.io/public-ws'
|
|
2715
|
+
},
|
|
2716
|
+
active: false,
|
|
2717
|
+
currentProviderMode: 'ws',
|
|
2718
|
+
currentProvider: 'SORA Parliament Ministry of Finance #2',
|
|
2719
|
+
groups: ['MAIN_NET'],
|
|
2720
|
+
nativeToken: 'XOR',
|
|
2721
|
+
decimals: 18,
|
|
2722
|
+
coinGeckoKey: 'sora',
|
|
2723
|
+
blockExplorer: 'https://sora.subscan.io'
|
|
2724
|
+
},
|
|
2725
|
+
swapdex: {
|
|
2726
|
+
key: 'swapdex',
|
|
2727
|
+
chain: 'Swapdex',
|
|
2728
|
+
genesisHash: '0x15bac4f0a9aad3f46c5fc067fdb59b3ff29738dcd491fe5e37b4b76121163471',
|
|
2729
|
+
ss58Format: 42,
|
|
2730
|
+
providers: {
|
|
2731
|
+
Swapdex: 'wss://ws.swapdex.network'
|
|
2732
|
+
},
|
|
2733
|
+
active: false,
|
|
2734
|
+
currentProviderMode: 'ws',
|
|
2735
|
+
currentProvider: 'Swapdex',
|
|
2736
|
+
groups: ['MAIN_NET'],
|
|
2737
|
+
nativeToken: 'SDX',
|
|
2738
|
+
decimals: 18,
|
|
2739
|
+
coinGeckoKey: 'swapdex'
|
|
2740
|
+
},
|
|
2741
|
+
'3dpass': {
|
|
2742
|
+
key: '3dpass',
|
|
2743
|
+
chain: '3DPass',
|
|
2744
|
+
genesisHash: '0x6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66',
|
|
2745
|
+
ss58Format: 71,
|
|
2746
|
+
providers: {
|
|
2747
|
+
'3dpass': 'wss://rpc2.3dpass.org'
|
|
2748
|
+
},
|
|
2749
|
+
active: false,
|
|
2750
|
+
currentProviderMode: 'ws',
|
|
2751
|
+
currentProvider: '3dpass',
|
|
2752
|
+
groups: ['MAIN_NET'],
|
|
2753
|
+
nativeToken: 'P3D',
|
|
2754
|
+
decimals: 12
|
|
2755
|
+
},
|
|
2756
|
+
alephSmartNet: {
|
|
2757
|
+
key: 'alephSmartNet',
|
|
2758
|
+
chain: 'Aleph Zero Smartnet',
|
|
2759
|
+
genesisHash: '0x6153e2745a56d188365372b5cce283dfddbb96b17e9bb396cceb4630103ff92b',
|
|
2760
|
+
ss58Format: 42,
|
|
2761
|
+
providers: {
|
|
2762
|
+
alephSmartNet: 'wss://ws-smartnet.test.azero.dev'
|
|
2763
|
+
},
|
|
2764
|
+
active: false,
|
|
2765
|
+
currentProviderMode: 'ws',
|
|
2766
|
+
currentProvider: 'alephSmartNet',
|
|
2767
|
+
groups: ['TEST_NET'],
|
|
2768
|
+
nativeToken: 'SZERO',
|
|
2769
|
+
decimals: 12
|
|
2770
|
+
},
|
|
2771
|
+
kulupu: {
|
|
2772
|
+
key: 'kulupu',
|
|
2773
|
+
chain: 'Kulupu',
|
|
2774
|
+
genesisHash: '0xf7a99d3cb92853d00d5275c971c132c074636256583fee53b3bbe60d7b8769ba',
|
|
2775
|
+
ss58Format: 16,
|
|
2776
|
+
providers: {
|
|
2777
|
+
Kulupu: 'wss://rpc.kulupu.corepaper.org/ws'
|
|
2778
|
+
},
|
|
2779
|
+
active: false,
|
|
2780
|
+
currentProviderMode: 'ws',
|
|
2781
|
+
currentProvider: 'Kulupu',
|
|
2782
|
+
groups: ['MAIN_NET'],
|
|
2783
|
+
nativeToken: 'KLP',
|
|
2784
|
+
decimals: 12,
|
|
2785
|
+
coinGeckoKey: 'kulupu',
|
|
2786
|
+
blockExplorer: 'https://kulupu.subscan.io'
|
|
2787
|
+
},
|
|
2788
|
+
joystream: {
|
|
2789
|
+
key: 'joystream',
|
|
2790
|
+
chain: 'Joystream',
|
|
2791
|
+
genesisHash: '0x6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956',
|
|
2792
|
+
ss58Format: 126,
|
|
2793
|
+
providers: {
|
|
2794
|
+
Jsgenesis: 'wss://rpc.joystream.org'
|
|
2795
|
+
},
|
|
2796
|
+
active: false,
|
|
2797
|
+
currentProviderMode: 'ws',
|
|
2798
|
+
currentProvider: 'Jsgenesis',
|
|
2799
|
+
groups: ['MAIN_NET'],
|
|
2800
|
+
nativeToken: 'JOY',
|
|
2801
|
+
decimals: 10
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
const subscanExplorerMap = {
|
|
2806
|
+
"polkadot": "https://polkadot.subscan.io/",
|
|
2807
|
+
"acala": "https://acala.subscan.io/",
|
|
2808
|
+
"astar": "https://astar.subscan.io/",
|
|
2809
|
+
"bifrost": "https://bifrost.subscan.io/",
|
|
2810
|
+
"centrifuge": "https://centrifuge.subscan.io/",
|
|
2811
|
+
"clv": "https://clv.subscan.io/",
|
|
2812
|
+
"composable": "https://composable.subscan.io/",
|
|
2813
|
+
"crust-parachain": "https://crust-parachain.subscan.io/",
|
|
2814
|
+
"darwinia-parachain": "https://darwinia-parachain.subscan.io/",
|
|
2815
|
+
"efinity": "https://efinity.subscan.io/",
|
|
2816
|
+
"equilibrium": "https://equilibrium.subscan.io/",
|
|
2817
|
+
"hydradx": "https://hydradx.subscan.io/",
|
|
2818
|
+
"interlay": "https://interlay.subscan.io/",
|
|
2819
|
+
"spiritnet": "https://spiritnet.subscan.io/",
|
|
2820
|
+
"moonbeam": "https://moonbeam.subscan.io/",
|
|
2821
|
+
"nodle": "https://nodle.subscan.io/",
|
|
2822
|
+
"origintrail": "https://origintrail.subscan.io/",
|
|
2823
|
+
"parallel": "https://parallel.subscan.io/",
|
|
2824
|
+
"phala": "https://phala.subscan.io/",
|
|
2825
|
+
"statemint": "https://statemint.subscan.io/",
|
|
2826
|
+
"unique": "https://unique.subscan.io/",
|
|
2827
|
+
"zeitgeist": "https://zeitgeist.subscan.io/",
|
|
2828
|
+
"kusama": "https://kusama.subscan.io/",
|
|
2829
|
+
"altair": "https://altair.subscan.io/",
|
|
2830
|
+
"bajun": "https://bajun.subscan.io/",
|
|
2831
|
+
"basilisk": "https://basilisk.subscan.io/",
|
|
2832
|
+
"bifrost-kusama": "https://bifrost-kusama.subscan.io/",
|
|
2833
|
+
"calamari": "https://calamari.subscan.io/",
|
|
2834
|
+
"crab": "https://crab.subscan.io/",
|
|
2835
|
+
"datahighway": "https://datahighway.subscan.io/",
|
|
2836
|
+
"encointer": "https://encointer.subscan.io/",
|
|
2837
|
+
"parallel-heiko": "https://parallel-heiko.subscan.io/",
|
|
2838
|
+
"integritee": "https://integritee.subscan.io/",
|
|
2839
|
+
"karura": "https://karura.subscan.io/",
|
|
2840
|
+
"khala": "https://khala.subscan.io/",
|
|
2841
|
+
"kintsugi": "https://kintsugi.subscan.io/",
|
|
2842
|
+
"mangatax": "https://mangatax.subscan.io/",
|
|
2843
|
+
"moonriver": "https://moonriver.subscan.io/",
|
|
2844
|
+
"picasso": "https://picasso.subscan.io/",
|
|
2845
|
+
"pioneer": "https://pioneer.subscan.io/",
|
|
2846
|
+
"quartz": "https://quartz.subscan.io/",
|
|
2847
|
+
"robonomics": "https://robonomics.subscan.io/",
|
|
2848
|
+
"shadow": "https://shadow.subscan.io/",
|
|
2849
|
+
"shiden": "https://shiden.subscan.io/",
|
|
2850
|
+
"snow": "https://snow.subscan.io/",
|
|
2851
|
+
"statemine": "https://statemine.subscan.io/",
|
|
2852
|
+
"turing": "https://turing.subscan.io/",
|
|
2853
|
+
"darwinia": "https://darwinia.subscan.io/",
|
|
2854
|
+
"alephzero": "https://alephzero.subscan.io/",
|
|
2855
|
+
"clover": "https://clover.subscan.io/",
|
|
2856
|
+
"crust": "https://crust.subscan.io/",
|
|
2857
|
+
"dbc": "https://dbc.subscan.io/",
|
|
2858
|
+
"dock": "https://dock.subscan.io/",
|
|
2859
|
+
"edgeware": "https://edgeware.subscan.io/",
|
|
2860
|
+
"genshiro": "https://genshiro.subscan.io/",
|
|
2861
|
+
"polkadex": "https://polkadex.subscan.io/",
|
|
2862
|
+
"polymesh": "https://polymesh.subscan.io/",
|
|
2863
|
+
"reef": "https://reef.subscan.io/",
|
|
2864
|
+
"sakura": "https://sakura.subscan.io/",
|
|
2865
|
+
"sora": "https://sora.subscan.io/",
|
|
2866
|
+
"stafi": "https://stafi.subscan.io/",
|
|
2867
|
+
"rococo": "https://rococo.subscan.io/",
|
|
2868
|
+
"bifrost-testnet": "https://bifrost-testnet.subscan.io/",
|
|
2869
|
+
"dali": "https://dali.subscan.io/",
|
|
2870
|
+
"dolphin": "https://dolphin.subscan.io/",
|
|
2871
|
+
"origintrail-testnet": "https://origintrail-testnet.subscan.io/",
|
|
2872
|
+
"rockmine": "https://rockmine.subscan.io/",
|
|
2873
|
+
"westend": "https://westend.subscan.io/",
|
|
2874
|
+
"acala-testnet": "https://acala-testnet.subscan.io/",
|
|
2875
|
+
"arctic": "https://arctic.subscan.io/",
|
|
2876
|
+
"clover-testnet": "https://clover-testnet.subscan.io/",
|
|
2877
|
+
"kilt-testnet": "https://kilt-testnet.subscan.io/",
|
|
2878
|
+
"moonbase": "https://moonbase.subscan.io/",
|
|
2879
|
+
"pangoro": "https://pangoro.subscan.io/",
|
|
2880
|
+
"polymesh-testnet": "https://polymesh-testnet.subscan.io/",
|
|
2881
|
+
"shibuya": "https://shibuya.subscan.io/",
|
|
2882
|
+
"subspace": "https://subspace.subscan.io/"
|
|
2883
|
+
}
|
|
2884
|
+
const evmExplorerMap = {
|
|
2885
|
+
moonbeam: 'https://moonbeam.moonscan.io',
|
|
2886
|
+
moonriver: 'https://moonriver.moonscan.io',
|
|
2887
|
+
moonbase: 'https://moonbase.moonscan.io',
|
|
2888
|
+
ethereum: 'https://etherscan.io',
|
|
2889
|
+
ethereum_goerli: 'https://goerli.etherscan.io',
|
|
2890
|
+
binance: 'https://bscscan.com',
|
|
2891
|
+
binance_test: 'https://testnet.bscscan.com',
|
|
2892
|
+
boba_rinkeby: 'https://blockexplorer.rinkeby.boba.network',
|
|
2893
|
+
boba: 'https://blockexplorer.boba.network',
|
|
2894
|
+
bobabase: 'https://blockexplorer.bobabase.boba.network',
|
|
2895
|
+
bobabeam: 'https://blockexplorer.bobabeam.boba.network'
|
|
2896
|
+
};
|
|
2897
|
+
|
|
2898
|
+
const useSubscanMap = Object.fromEntries(Object.keys(subscanExplorerMap).map(k => [k, false]));
|
|
2899
|
+
|
|
2900
|
+
// Convert inputMap to outputMap
|
|
2901
|
+
const outputMap = Object.keys(inputMap).reduce((acc, k) => {
|
|
2902
|
+
const value = inputMap[k];
|
|
2903
|
+
// Extract all the values from the value
|
|
2904
|
+
const {key, chain, icon, active, providers, currentProvider, currentProviderMode, customProviders, nftProvider, genesisHash, groups, ss58Format, paraId, chainType, crowdloanUrl, isEthereum, evmChainId, isHybrid,nativeToken, decimals, coinGeckoKey, blockExplorer, abiExplorer, dependencies, getStakingOnChain, supportBonding, supportSmartContract, apiStatus, requestId} = value;
|
|
2905
|
+
|
|
2906
|
+
const newItem = {
|
|
2907
|
+
slug: key,
|
|
2908
|
+
name: chain,
|
|
2909
|
+
chainStatus: 'ACTIVE',
|
|
2910
|
+
providers,
|
|
2911
|
+
isTestnet: groups.includes('TEST_NET'),
|
|
2912
|
+
substrateInfo: null,
|
|
2913
|
+
evmInfo: null,
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
if (subscanExplorerMap[k]) {
|
|
2917
|
+
useSubscanMap[k] = true
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
if (isEthereum || currentProviderMode === 'http') {
|
|
2921
|
+
// set prop evmInfo with these field:
|
|
2922
|
+
// evmChainId, blockExplorer, symbol, decimals, existentialDeposit, supportSmartContract, abiExplorer
|
|
2923
|
+
|
|
2924
|
+
newItem.evmInfo = {
|
|
2925
|
+
evmChainId,
|
|
2926
|
+
blockExplorer: subscanExplorerMap[k] || evmExplorerMap[k]|| blockExplorer,
|
|
2927
|
+
symbol: nativeToken,
|
|
2928
|
+
decimals,
|
|
2929
|
+
existentialDeposit: '0',
|
|
2930
|
+
supportSmartContract: ['ERC20', 'ERC721'],
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
if (currentProviderMode === 'ws') {
|
|
2935
|
+
// set prop substrateInfo with these field:
|
|
2936
|
+
// paraId, relaySlug, genesisHash, addressPrefix, crowdloanUrl, chainType, blockExplorer, symbol, existentialDeposit, decimals, hasNativeNft, supportStaking, supportSmartContract
|
|
2937
|
+
|
|
2938
|
+
|
|
2939
|
+
newItem.substrateInfo = {
|
|
2940
|
+
paraId: paraId || null,
|
|
2941
|
+
relaySlug: null,
|
|
2942
|
+
genesisHash,
|
|
2943
|
+
addressPrefix: ss58Format,
|
|
2944
|
+
crowdloanUrl,
|
|
2945
|
+
chainType: 'RELAYCHAIN',
|
|
2946
|
+
blockExplorer: subscanExplorerMap[k] || blockExplorer,
|
|
2947
|
+
symbol: nativeToken,
|
|
2948
|
+
existentialDeposit: '0',
|
|
2949
|
+
decimals,
|
|
2950
|
+
supportStaking: supportBonding || false,
|
|
2951
|
+
hasNativeNft: false,
|
|
2952
|
+
supportSmartContract: supportSmartContract && supportSmartContract.filter(i => (i !== 'ERC20' && i !== 'ERC721')) || null
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
if (groups.includes('POLKADOT_PARACHAIN') && paraId) {
|
|
2956
|
+
newItem.substrateInfo.relaySlug = 'polkadot';
|
|
2957
|
+
newItem.substrateInfo.chainType = 'PARACHAIN';
|
|
2958
|
+
}
|
|
2959
|
+
if (groups.includes('KUSAMA_PARACHAIN') && paraId) {
|
|
2960
|
+
newItem.substrateInfo.relaySlug = 'kusama';
|
|
2961
|
+
newItem.substrateInfo.chainType = 'PARACHAIN';
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
acc[k] = newItem;
|
|
2966
|
+
return acc;
|
|
2967
|
+
}, {});
|
|
2968
|
+
|
|
2969
|
+
const migrated = [
|
|
2970
|
+
'polkadot',
|
|
2971
|
+
'kusama',
|
|
2972
|
+
'moonbeam',
|
|
2973
|
+
'acala',
|
|
2974
|
+
'alephTest',
|
|
2975
|
+
'ethereum',
|
|
2976
|
+
'astar',
|
|
2977
|
+
'astarEvm',
|
|
2978
|
+
'shiden',
|
|
2979
|
+
'shidenEvm',
|
|
2980
|
+
'shibuya',
|
|
2981
|
+
'shibuyaEvm',
|
|
2982
|
+
'westend',
|
|
2983
|
+
'rococo',
|
|
2984
|
+
'bitcountry',
|
|
2985
|
+
'equilibrium_parachain',
|
|
2986
|
+
'moonbase',
|
|
2987
|
+
'moonriver',
|
|
2988
|
+
'turingStaging',
|
|
2989
|
+
'turing',
|
|
2990
|
+
'bifrost',
|
|
2991
|
+
'bifrost_dot',
|
|
2992
|
+
'bifrost_testnet',
|
|
2993
|
+
'calamari',
|
|
2994
|
+
'amplitude',
|
|
2995
|
+
'amplitude_test',
|
|
2996
|
+
'bobabase'
|
|
2997
|
+
]
|
|
2998
|
+
|
|
2999
|
+
for (const key of migrated) {
|
|
3000
|
+
delete outputMap[key];
|
|
3001
|
+
}
|
|
3002
|
+
|
|
3003
|
+
|
|
3004
|
+
// console.log(useSubscanMap);
|
|
3005
|
+
console.log(JSON.stringify(outputMap));
|