@talismn/chaindata-provider 0.7.0 → 0.8.1

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.
Files changed (77) hide show
  1. package/dist/declarations/src/ChaindataProvider.d.ts +90 -17
  2. package/dist/declarations/src/TalismanChaindataDatabase.d.ts +9 -0
  3. package/dist/declarations/src/constants.d.ts +26 -0
  4. package/dist/declarations/src/index.d.ts +5 -2
  5. package/dist/declarations/src/init/chains.d.ts +243 -0
  6. package/dist/declarations/src/init/evm-networks.d.ts +61 -0
  7. package/dist/declarations/src/init/index.d.ts +5 -0
  8. package/dist/declarations/src/init/mini-metadatas.d.ts +21 -0
  9. package/dist/declarations/src/init/tokens.d.ts +103 -0
  10. package/dist/declarations/src/log.d.ts +2 -0
  11. package/dist/declarations/src/net.d.ts +8 -0
  12. package/dist/declarations/src/types/Chain.d.ts +42 -5
  13. package/dist/declarations/src/types/ChaindataProviderInterface.d.ts +42 -0
  14. package/dist/declarations/src/types/EvmNetwork.d.ts +17 -4
  15. package/dist/declarations/src/types/Token/EvmErc20Token.d.ts +15 -0
  16. package/dist/declarations/src/types/Token/EvmNativeToken.d.ts +10 -0
  17. package/dist/declarations/src/types/Token/EvmUniswapV2Token.d.ts +22 -0
  18. package/dist/declarations/src/types/Token/SubstrateAssetsToken.d.ts +12 -0
  19. package/dist/declarations/src/types/Token/SubstrateEquilibriumToken.d.ts +11 -0
  20. package/dist/declarations/src/types/Token/SubstrateForeignAssetsToken.d.ts +12 -0
  21. package/dist/declarations/src/types/Token/SubstrateNativeToken.d.ts +13 -0
  22. package/dist/declarations/src/types/Token/SubstratePsp22Token.d.ts +11 -0
  23. package/dist/declarations/src/types/Token/SubstrateTokensToken.d.ts +11 -0
  24. package/dist/declarations/src/types/Token/index.d.ts +26 -0
  25. package/dist/declarations/src/types/Token/types.d.ts +27 -0
  26. package/dist/declarations/src/types/index.d.ts +1 -0
  27. package/dist/declarations/src/upgrades/2024-01-25-upgradeAddIsDefaultToExistingChains.d.ts +2 -0
  28. package/dist/declarations/src/upgrades/2024-01-25-upgradeRemoveSymbolFromNativeTokenId.d.ts +2 -0
  29. package/dist/declarations/src/upgrades/index.d.ts +1 -0
  30. package/dist/declarations/src/util.d.ts +27 -0
  31. package/dist/net-BE0MfrDv.cjs.dev.js +89 -0
  32. package/dist/net-BE0MfrDv.cjs.prod.js +89 -0
  33. package/dist/net-il4EYhJN.esm.js +55 -0
  34. package/dist/talismn-chaindata-provider.cjs.dev.js +912 -23
  35. package/dist/talismn-chaindata-provider.cjs.prod.js +912 -23
  36. package/dist/talismn-chaindata-provider.esm.js +858 -12
  37. package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.d.ts +1 -0
  38. package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.dev.js +934 -0
  39. package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.js +7 -0
  40. package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.prod.js +934 -0
  41. package/init/chains/dist/talismn-chaindata-provider-init-chains.esm.js +932 -0
  42. package/init/chains/package.json +4 -0
  43. package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.d.ts +1 -0
  44. package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.dev.js +69 -0
  45. package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.js +7 -0
  46. package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.prod.js +69 -0
  47. package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.esm.js +67 -0
  48. package/init/evm-networks/package.json +4 -0
  49. package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.d.ts +1 -0
  50. package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.dev.js +311 -0
  51. package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.js +7 -0
  52. package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.prod.js +311 -0
  53. package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.esm.js +309 -0
  54. package/init/mini-metadatas/package.json +4 -0
  55. package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.d.ts +1 -0
  56. package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.dev.js +406 -0
  57. package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.js +7 -0
  58. package/init/tokens/dist/talismn-chaindata-provider-init-tokens.cjs.prod.js +406 -0
  59. package/init/tokens/dist/talismn-chaindata-provider-init-tokens.esm.js +404 -0
  60. package/init/tokens/package.json +4 -0
  61. package/net/dist/talismn-chaindata-provider-net.cjs.d.ts +1 -0
  62. package/net/dist/talismn-chaindata-provider-net.cjs.dev.js +14 -0
  63. package/net/dist/talismn-chaindata-provider-net.cjs.js +7 -0
  64. package/net/dist/talismn-chaindata-provider-net.cjs.prod.js +14 -0
  65. package/net/dist/talismn-chaindata-provider-net.esm.js +1 -0
  66. package/net/package.json +4 -0
  67. package/package.json +27 -14
  68. package/CHANGELOG.md +0 -104
  69. package/dist/declarations/src/github.d.ts +0 -11
  70. package/dist/declarations/src/plugins.d.ts +0 -17
  71. package/dist/declarations/src/types/Token.d.ts +0 -48
  72. package/plugins/dist/talismn-chaindata-provider-plugins.cjs.d.ts +0 -1
  73. package/plugins/dist/talismn-chaindata-provider-plugins.cjs.dev.js +0 -2
  74. package/plugins/dist/talismn-chaindata-provider-plugins.cjs.js +0 -7
  75. package/plugins/dist/talismn-chaindata-provider-plugins.cjs.prod.js +0 -2
  76. package/plugins/dist/talismn-chaindata-provider-plugins.esm.js +0 -1
  77. package/plugins/package.json +0 -4
@@ -0,0 +1,934 @@
1
+ 'use strict';
2
+
3
+ const chains = [{
4
+ id: "polkadot",
5
+ isTestnet: false,
6
+ isDefault: true,
7
+ sortIndex: 1,
8
+ genesisHash: "0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
9
+ prefix: 0,
10
+ name: "Polkadot",
11
+ themeColor: "#e6007a",
12
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/polkadot.svg",
13
+ chainName: "Polkadot",
14
+ chainType: "Live",
15
+ implName: "parity-polkadot",
16
+ specName: "polkadot",
17
+ specVersion: "1004001",
18
+ nativeToken: {
19
+ id: "polkadot-substrate-native"
20
+ },
21
+ tokens: [{
22
+ id: "polkadot-substrate-native"
23
+ }],
24
+ account: "*25519",
25
+ subscanUrl: "https://polkadot.subscan.io/",
26
+ chainspecQrUrl: "https://metadata.parity.io/qr/polkadot_specs.png",
27
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot_metadata_latest.apng",
28
+ isUnknownFeeToken: false,
29
+ feeToken: null,
30
+ rpcs: [{
31
+ url: "wss://rpc.ibp.network/polkadot"
32
+ }, {
33
+ url: "wss://polkadot-rpc.dwellir.com"
34
+ }, {
35
+ url: "wss://polkadot-rpc-tn.dwellir.com"
36
+ }, {
37
+ url: "wss://polkadot-rpc.publicnode.com"
38
+ }, {
39
+ url: "wss://polkadot-public-rpc.blockops.network/ws"
40
+ }, {
41
+ url: "wss://rpc-polkadot.helixstreet.io"
42
+ }, {
43
+ url: "wss://polkadot.dotters.network"
44
+ }, {
45
+ url: "wss://rpc-polkadot.luckyfriday.io"
46
+ }, {
47
+ url: "wss://polkadot.api.onfinality.io/public-ws"
48
+ }, {
49
+ url: "wss://polkadot.rpc.permanence.io"
50
+ }, {
51
+ url: "wss://polkadot.public.curie.radiumblock.co/ws"
52
+ }, {
53
+ url: "wss://rockx-dot.w3node.com/polka-public-dot/ws"
54
+ }, {
55
+ url: "wss://dot-rpc.stakeworld.io"
56
+ }, {
57
+ url: "wss://polkadot.rpc.subquery.network/public/ws"
58
+ }],
59
+ evmNetworks: [],
60
+ parathreads: [{
61
+ id: "acala",
62
+ paraId: 2000,
63
+ name: "Acala"
64
+ }, {
65
+ id: "ajuna",
66
+ paraId: 2051,
67
+ name: "Ajuna"
68
+ }, {
69
+ id: "astar",
70
+ paraId: 2006,
71
+ name: "Astar"
72
+ }, {
73
+ id: "aventus",
74
+ paraId: 2056,
75
+ name: "Aventus"
76
+ }, {
77
+ id: "bifrost-polkadot",
78
+ paraId: 2030,
79
+ name: "Bifrost Polkadot"
80
+ }, {
81
+ id: "bitgreen",
82
+ paraId: 2048,
83
+ name: "Bitgreen"
84
+ }, {
85
+ id: "centrifuge-polkadot",
86
+ paraId: 2031,
87
+ name: "Centrifuge"
88
+ }, {
89
+ id: "composable-finance",
90
+ paraId: 2019,
91
+ name: "Composable Finance"
92
+ }, {
93
+ id: "continuum",
94
+ paraId: 3346,
95
+ name: "Continuum"
96
+ }, {
97
+ id: "crust-parachain",
98
+ paraId: 2008,
99
+ name: "Crust"
100
+ }, {
101
+ id: "darwinia",
102
+ paraId: 2046,
103
+ name: "Darwinia"
104
+ }, {
105
+ id: "ewx",
106
+ paraId: 3345,
107
+ name: "Energy Web X"
108
+ }, {
109
+ id: "frequency",
110
+ paraId: 2091,
111
+ name: "Frequency"
112
+ }, {
113
+ id: "geminis",
114
+ paraId: 2038,
115
+ name: "Geminis"
116
+ }, {
117
+ id: "heima",
118
+ paraId: 2013,
119
+ name: "Heima"
120
+ }, {
121
+ id: "hydradx",
122
+ paraId: 2034,
123
+ name: "Hydration"
124
+ }, {
125
+ id: "hyperbridge-polkadot",
126
+ paraId: 3367,
127
+ name: "Hyperbridge"
128
+ }, {
129
+ id: "integritee-polkadot",
130
+ paraId: 3359,
131
+ name: "Integritee"
132
+ }, {
133
+ id: "interlay",
134
+ paraId: 2032,
135
+ name: "Interlay"
136
+ }, {
137
+ id: "invarch",
138
+ paraId: 3340,
139
+ name: "InvArch"
140
+ }, {
141
+ id: "jamton",
142
+ paraId: 3397,
143
+ name: "Jamton"
144
+ }, {
145
+ id: "kilt-spiritnet",
146
+ paraId: 2086,
147
+ name: "KILT Spiritnet"
148
+ }, {
149
+ id: "laos",
150
+ paraId: 3370,
151
+ name: "LAOS"
152
+ }, {
153
+ id: "logion-polkadot",
154
+ paraId: 3354,
155
+ name: "Logion"
156
+ }, {
157
+ id: "manta",
158
+ paraId: 2104,
159
+ name: "Manta"
160
+ }, {
161
+ id: "moonbeam",
162
+ paraId: 2004,
163
+ name: "Moonbeam"
164
+ }, {
165
+ id: "mythos",
166
+ paraId: 3369,
167
+ name: "Mythos"
168
+ }, {
169
+ id: "neuroweb",
170
+ paraId: 2043,
171
+ name: "NeuroWeb"
172
+ }, {
173
+ id: "nodle-polkadot",
174
+ paraId: 2026,
175
+ name: "Nodle"
176
+ }, {
177
+ id: "oak",
178
+ paraId: 2090,
179
+ name: "Oak"
180
+ }, {
181
+ id: "omnibtc",
182
+ paraId: 2053,
183
+ name: "OmniBTC"
184
+ }, {
185
+ id: "parallel",
186
+ paraId: 2012,
187
+ name: "Parallel"
188
+ }, {
189
+ id: "pendulum",
190
+ paraId: 2094,
191
+ name: "Pendulum"
192
+ }, {
193
+ id: "phala",
194
+ paraId: 2035,
195
+ name: "Phala"
196
+ }, {
197
+ id: "polimec",
198
+ paraId: 3344,
199
+ name: "Polimec"
200
+ }, {
201
+ id: "polkadex-polkadot-2",
202
+ paraId: 2040,
203
+ name: "Polkadex"
204
+ }, {
205
+ id: "polkadot-asset-hub",
206
+ paraId: 1000,
207
+ name: "Polkadot Asset Hub"
208
+ }, {
209
+ id: "polkadot-bridge-hub",
210
+ paraId: 1002,
211
+ name: "Polkadot Bridge Hub"
212
+ }, {
213
+ id: "polkadot-collectives",
214
+ paraId: 1001,
215
+ name: "Polkadot Collectives"
216
+ }, {
217
+ id: "polkadot-coretime",
218
+ paraId: 1005,
219
+ name: "Polkadot Coretime"
220
+ }, {
221
+ id: "polkadot-people",
222
+ paraId: 1004,
223
+ name: "Polkadot People"
224
+ }, {
225
+ id: "robonomics-polkadot",
226
+ paraId: 3388,
227
+ name: "Robonomics Polkadot"
228
+ }, {
229
+ id: "sora-polkadot",
230
+ paraId: 2025,
231
+ name: "Sora"
232
+ }, {
233
+ id: "subdao",
234
+ paraId: 2018,
235
+ name: "SubDAO"
236
+ }, {
237
+ id: "subsocial-polkadot",
238
+ paraId: 2101,
239
+ name: "Subsocial"
240
+ }, {
241
+ id: "unique",
242
+ paraId: 2037,
243
+ name: "Unique"
244
+ }, {
245
+ id: "zeitgeist",
246
+ paraId: 2092,
247
+ name: "Zeitgeist"
248
+ }],
249
+ paraId: null,
250
+ relay: null,
251
+ balancesConfig: [{
252
+ moduleType: "substrate-native",
253
+ moduleConfig: {
254
+ coingeckoId: "polkadot",
255
+ dcentName: "POLKADOT",
256
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dot.svg"
257
+ }
258
+ }],
259
+ balancesMetadata: [],
260
+ hasCheckMetadataHash: true
261
+ }, {
262
+ id: "kusama",
263
+ isTestnet: false,
264
+ isDefault: true,
265
+ sortIndex: 2,
266
+ genesisHash: "0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
267
+ prefix: 2,
268
+ name: "Kusama",
269
+ themeColor: "#ffffff",
270
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/kusama.svg",
271
+ chainName: "Kusama",
272
+ chainType: "Live",
273
+ implName: "parity-kusama",
274
+ specName: "kusama",
275
+ specVersion: "1004001",
276
+ nativeToken: {
277
+ id: "kusama-substrate-native"
278
+ },
279
+ tokens: [{
280
+ id: "kusama-substrate-native"
281
+ }],
282
+ account: "*25519",
283
+ subscanUrl: "https://kusama.subscan.io/",
284
+ chainspecQrUrl: "https://metadata.parity.io/qr/kusama_specs.png",
285
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama_metadata_latest.apng",
286
+ isUnknownFeeToken: false,
287
+ feeToken: null,
288
+ rpcs: [{
289
+ url: "wss://rpc.ibp.network/kusama"
290
+ }, {
291
+ url: "wss://kusama-rpc.dwellir.com"
292
+ }, {
293
+ url: "wss://kusama-rpc-tn.dwellir.com"
294
+ }, {
295
+ url: "wss://kusama-rpc.publicnode.com"
296
+ }, {
297
+ url: "wss://rpc-kusama.helixstreet.io"
298
+ }, {
299
+ url: "wss://kusama.dotters.network"
300
+ }, {
301
+ url: "wss://rpc-kusama.luckyfriday.io"
302
+ }, {
303
+ url: "wss://kusama.api.onfinality.io/public-ws"
304
+ }, {
305
+ url: "wss://kusama.public.curie.radiumblock.co/ws"
306
+ }, {
307
+ url: "wss://rockx-ksm.w3node.com/polka-public-ksm/ws"
308
+ }, {
309
+ url: "wss://ksm-rpc.stakeworld.io"
310
+ }],
311
+ evmNetworks: [],
312
+ parathreads: [{
313
+ id: "acurast",
314
+ paraId: 2239,
315
+ name: "Acurast Canary"
316
+ }, {
317
+ id: "altair",
318
+ paraId: 2088,
319
+ name: "Altair"
320
+ }, {
321
+ id: "amplitude",
322
+ paraId: 2124,
323
+ name: "Amplitude"
324
+ }, {
325
+ id: "bajun",
326
+ paraId: 2119,
327
+ name: "Bajun"
328
+ }, {
329
+ id: "basilisk",
330
+ paraId: 2090,
331
+ name: "Basilisk"
332
+ }, {
333
+ id: "bifrost-kusama",
334
+ paraId: 2001,
335
+ name: "Bifrost Kusama"
336
+ }, {
337
+ id: "bitcountry-pioneer",
338
+ paraId: 2096,
339
+ name: "Pioneer"
340
+ }, {
341
+ id: "calamari",
342
+ paraId: 2084,
343
+ name: "Calamari"
344
+ }, {
345
+ id: "crab",
346
+ paraId: 2105,
347
+ name: "Darwinia Crab"
348
+ }, {
349
+ id: "curio",
350
+ paraId: 3339,
351
+ name: "Curio"
352
+ }, {
353
+ id: "encointer",
354
+ paraId: 1001,
355
+ name: "Encointer"
356
+ }, {
357
+ id: "imbue",
358
+ paraId: 2121,
359
+ name: "Imbue"
360
+ }, {
361
+ id: "integritee-kusama",
362
+ paraId: 2015,
363
+ name: "Integritee"
364
+ }, {
365
+ id: "ipci",
366
+ paraId: 2222,
367
+ name: "DAO IPCI"
368
+ }, {
369
+ id: "kabocha",
370
+ paraId: 2113,
371
+ name: "Kabocha"
372
+ }, {
373
+ id: "karura",
374
+ paraId: 2000,
375
+ name: "Karura"
376
+ }, {
377
+ id: "kintsugi",
378
+ paraId: 2092,
379
+ name: "Kintsugi"
380
+ }, {
381
+ id: "kpron",
382
+ paraId: 2019,
383
+ name: "Kpron"
384
+ }, {
385
+ id: "kreivo",
386
+ paraId: 2281,
387
+ name: "Kreivo"
388
+ }, {
389
+ id: "krest",
390
+ paraId: 2241,
391
+ name: "Krest"
392
+ }, {
393
+ id: "kusama-asset-hub",
394
+ paraId: 1000,
395
+ name: "Kusama Asset Hub"
396
+ }, {
397
+ id: "kusama-bridge-hub",
398
+ paraId: 1002,
399
+ name: "Kusama Bridge Hub"
400
+ }, {
401
+ id: "kusama-coretime",
402
+ paraId: 1005,
403
+ name: "Coretime"
404
+ }, {
405
+ id: "kusama-people",
406
+ paraId: 1004,
407
+ name: "Kusama People"
408
+ }, {
409
+ id: "mangata",
410
+ paraId: 2110,
411
+ name: "MangataX"
412
+ }, {
413
+ id: "moonriver",
414
+ paraId: 2023,
415
+ name: "Moonriver"
416
+ }, {
417
+ id: "picasso",
418
+ paraId: 2087,
419
+ name: "Picasso"
420
+ }, {
421
+ id: "quartz",
422
+ paraId: 2095,
423
+ name: "Quartz"
424
+ }, {
425
+ id: "robonomics-kusama",
426
+ paraId: 2048,
427
+ name: "Robonomics Kusama"
428
+ }, {
429
+ id: "sakura",
430
+ paraId: 2016,
431
+ name: "Sakura"
432
+ }, {
433
+ id: "shadow-kusama",
434
+ paraId: 2012,
435
+ name: "Crust Shadow"
436
+ }, {
437
+ id: "shiden-kusama",
438
+ paraId: 2007,
439
+ name: "Shiden"
440
+ }, {
441
+ id: "sora-kusama",
442
+ paraId: 2011,
443
+ name: "Sora"
444
+ }, {
445
+ id: "turing",
446
+ paraId: 2114,
447
+ name: "Turing"
448
+ }, {
449
+ id: "xode",
450
+ paraId: 3344,
451
+ name: "Xode"
452
+ }],
453
+ paraId: null,
454
+ relay: null,
455
+ balancesConfig: [{
456
+ moduleType: "substrate-native",
457
+ moduleConfig: {
458
+ coingeckoId: "kusama",
459
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"
460
+ }
461
+ }],
462
+ balancesMetadata: [],
463
+ hasCheckMetadataHash: true
464
+ }, {
465
+ id: "kusama-asset-hub",
466
+ isTestnet: false,
467
+ isDefault: true,
468
+ sortIndex: 582,
469
+ genesisHash: "0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",
470
+ prefix: 2,
471
+ name: "Kusama Asset Hub",
472
+ themeColor: "#ffffff",
473
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/kusama-asset-hub.svg",
474
+ chainName: "Kusama Asset Hub",
475
+ chainType: "Live",
476
+ implName: "statemine",
477
+ specName: "statemine",
478
+ specVersion: "1004002",
479
+ nativeToken: {
480
+ id: "kusama-asset-hub-substrate-native"
481
+ },
482
+ tokens: [{
483
+ id: "kusama-asset-hub-substrate-assets-8-rmrk"
484
+ }, {
485
+ id: "kusama-asset-hub-substrate-assets-16-aris"
486
+ }, {
487
+ id: "kusama-asset-hub-substrate-assets-1984-usdt"
488
+ }, {
489
+ id: "kusama-asset-hub-substrate-assets-50000002-dusd"
490
+ }, {
491
+ id: "kusama-asset-hub-substrate-native"
492
+ }],
493
+ account: "*25519",
494
+ subscanUrl: "https://assethub-kusama.subscan.io/",
495
+ chainspecQrUrl: "https://metadata.parity.io/qr/kusama-statemine_specs.png",
496
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-statemine_metadata_latest.apng",
497
+ isUnknownFeeToken: false,
498
+ feeToken: null,
499
+ rpcs: [{
500
+ url: "wss://sys.ibp.network/asset-hub-kusama"
501
+ }, {
502
+ url: "wss://asset-hub-kusama-rpc.dwellir.com"
503
+ }, {
504
+ url: "wss://statemine-rpc-tn.dwellir.com"
505
+ }, {
506
+ url: "wss://asset-hub-kusama.dotters.network"
507
+ }, {
508
+ url: "wss://rpc-asset-hub-kusama.luckyfriday.io"
509
+ }, {
510
+ url: "wss://kusama-asset-hub-rpc.polkadot.io"
511
+ }, {
512
+ url: "wss://statemine.public.curie.radiumblock.co/ws"
513
+ }, {
514
+ url: "wss://ksm-rpc.stakeworld.io/assethub"
515
+ }],
516
+ evmNetworks: [],
517
+ parathreads: null,
518
+ paraId: 1000,
519
+ relay: {
520
+ id: "kusama"
521
+ },
522
+ balancesConfig: [{
523
+ moduleType: "substrate-native",
524
+ moduleConfig: {
525
+ coingeckoId: "kusama",
526
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"
527
+ }
528
+ }, {
529
+ moduleType: "substrate-assets",
530
+ moduleConfig: {
531
+ tokens: [{
532
+ assetId: 8,
533
+ symbol: "RMRK",
534
+ coingeckoId: "rmrk",
535
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/rmrk.svg"
536
+ }, {
537
+ assetId: 16,
538
+ symbol: "ARIS",
539
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/aris.svg"
540
+ }, {
541
+ assetId: 1984,
542
+ symbol: "USDT",
543
+ coingeckoId: "tether",
544
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg"
545
+ }, {
546
+ assetId: 50000002,
547
+ symbol: "dUSD",
548
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dusd.webp"
549
+ }]
550
+ }
551
+ }],
552
+ balancesMetadata: [],
553
+ hasCheckMetadataHash: true
554
+ }, {
555
+ id: "kusama-bridge-hub",
556
+ isTestnet: false,
557
+ isDefault: true,
558
+ sortIndex: 583,
559
+ genesisHash: "0x00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5",
560
+ prefix: 2,
561
+ name: "Kusama Bridge Hub",
562
+ themeColor: "#ffffff",
563
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/kusama-bridge-hub.svg",
564
+ chainName: "Kusama BridgeHub",
565
+ chainType: "Live",
566
+ implName: "bridge-hub-kusama",
567
+ specName: "bridge-hub-kusama",
568
+ specVersion: "1004000",
569
+ nativeToken: {
570
+ id: "kusama-bridge-hub-substrate-native"
571
+ },
572
+ tokens: [{
573
+ id: "kusama-bridge-hub-substrate-native"
574
+ }],
575
+ account: "*25519",
576
+ subscanUrl: "https://bridgehub-kusama.subscan.io/",
577
+ chainspecQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_specs.png",
578
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_metadata_latest.apng",
579
+ isUnknownFeeToken: false,
580
+ feeToken: null,
581
+ rpcs: [{
582
+ url: "wss://sys.ibp.network/bridgehub-kusama"
583
+ }, {
584
+ url: "wss://bridge-hub-kusama-rpc.dwellir.com"
585
+ }, {
586
+ url: "wss://kusama-bridge-hub-rpc-tn.dwellir.com"
587
+ }, {
588
+ url: "wss://bridge-hub-kusama.dotters.network"
589
+ }, {
590
+ url: "wss://rpc-bridge-hub-kusama.luckyfriday.io"
591
+ }, {
592
+ url: "wss://kusama-bridge-hub-rpc.polkadot.io"
593
+ }, {
594
+ url: "wss://bridgehub-kusama.public.curie.radiumblock.co/ws"
595
+ }, {
596
+ url: "wss://ksm-rpc.stakeworld.io/bridgehub"
597
+ }],
598
+ evmNetworks: [],
599
+ parathreads: null,
600
+ paraId: 1002,
601
+ relay: {
602
+ id: "kusama"
603
+ },
604
+ balancesConfig: [{
605
+ moduleType: "substrate-native",
606
+ moduleConfig: {
607
+ coingeckoId: "kusama",
608
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/kusama-bridge-hub.svg"
609
+ }
610
+ }],
611
+ balancesMetadata: [],
612
+ hasCheckMetadataHash: true
613
+ }, {
614
+ id: "polkadot-asset-hub",
615
+ isTestnet: false,
616
+ isDefault: true,
617
+ sortIndex: 832,
618
+ genesisHash: "0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",
619
+ prefix: 0,
620
+ oldPrefix: 0,
621
+ name: "Polkadot Asset Hub",
622
+ themeColor: "#321d47",
623
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/polkadot-asset-hub.svg",
624
+ chainName: "Polkadot Asset Hub",
625
+ chainType: "Live",
626
+ implName: "statemint",
627
+ specName: "statemint",
628
+ specVersion: "1004000",
629
+ nativeToken: {
630
+ id: "polkadot-asset-hub-substrate-native"
631
+ },
632
+ tokens: [{
633
+ id: "polkadot-asset-hub-substrate-assets-1337-usdc"
634
+ }, {
635
+ id: "polkadot-asset-hub-substrate-assets-1984-usdt"
636
+ }, {
637
+ id: "polkadot-asset-hub-substrate-assets-18-dota"
638
+ }, {
639
+ id: "polkadot-asset-hub-substrate-assets-23-pink"
640
+ }, {
641
+ id: "polkadot-asset-hub-substrate-assets-30-ded"
642
+ }, {
643
+ id: "polkadot-asset-hub-substrate-assets-17-wifd"
644
+ }, {
645
+ id: "polkadot-asset-hub-substrate-assets-555-game"
646
+ }, {
647
+ id: "polkadot-asset-hub-substrate-assets-690-bork"
648
+ }, {
649
+ id: "polkadot-asset-hub-substrate-assets-31337-wud"
650
+ }, {
651
+ id: "polkadot-asset-hub-substrate-foreignassets-eq"
652
+ }, {
653
+ id: "polkadot-asset-hub-substrate-foreignassets-ksm"
654
+ }, {
655
+ id: "polkadot-asset-hub-substrate-foreignassets-bnc"
656
+ }, {
657
+ id: "polkadot-asset-hub-substrate-foreignassets-eqd"
658
+ }, {
659
+ id: "polkadot-asset-hub-substrate-foreignassets-glmr"
660
+ }, {
661
+ id: "polkadot-asset-hub-substrate-foreignassets-myth"
662
+ }, {
663
+ id: "polkadot-asset-hub-substrate-foreignassets-vdot"
664
+ }, {
665
+ id: "polkadot-asset-hub-substrate-foreignassets-hdx"
666
+ }, {
667
+ id: "polkadot-asset-hub-substrate-foreignassets-ajun"
668
+ }, {
669
+ id: "polkadot-asset-hub-substrate-native"
670
+ }],
671
+ account: "*25519",
672
+ subscanUrl: "https://assethub-polkadot.subscan.io/",
673
+ chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_specs.png",
674
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_metadata_latest.apng",
675
+ isUnknownFeeToken: false,
676
+ feeToken: null,
677
+ rpcs: [{
678
+ url: "wss://sys.ibp.network/statemint"
679
+ }, {
680
+ url: "wss://sys.dotters.network/statemint"
681
+ }, {
682
+ url: "wss://sys.ibp.network/asset-hub-polkadot"
683
+ }, {
684
+ url: "wss://asset-hub-polkadot-rpc.dwellir.com"
685
+ }, {
686
+ url: "wss://statemint-rpc-tn.dwellir.com"
687
+ }, {
688
+ url: "wss://polkadot-assethub-rpc.blockops.network/ws"
689
+ }, {
690
+ url: "wss://asset-hub-polkadot.dotters.network"
691
+ }, {
692
+ url: "wss://rpc-asset-hub-polkadot.luckyfriday.io"
693
+ }, {
694
+ url: "wss://statemint.api.onfinality.io/public-ws"
695
+ }, {
696
+ url: "wss://polkadot-asset-hub-rpc.polkadot.io"
697
+ }, {
698
+ url: "wss://statemint.public.curie.radiumblock.co/ws"
699
+ }, {
700
+ url: "wss://dot-rpc.stakeworld.io/assethub"
701
+ }],
702
+ evmNetworks: [],
703
+ parathreads: null,
704
+ paraId: 1000,
705
+ relay: {
706
+ id: "polkadot"
707
+ },
708
+ balancesConfig: [{
709
+ moduleType: "substrate-native",
710
+ moduleConfig: {
711
+ coingeckoId: "polkadot",
712
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dot.svg"
713
+ }
714
+ }, {
715
+ moduleType: "substrate-assets",
716
+ moduleConfig: {
717
+ tokens: [{
718
+ assetId: 1337,
719
+ symbol: "USDC",
720
+ coingeckoId: "usd-coin",
721
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdc.svg"
722
+ }, {
723
+ assetId: 1984,
724
+ symbol: "USDT",
725
+ coingeckoId: "tether",
726
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg"
727
+ }, {
728
+ assetId: 18,
729
+ symbol: "DOTA",
730
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dota.svg"
731
+ }, {
732
+ assetId: 23,
733
+ symbol: "PINK",
734
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/pink.svg"
735
+ }, {
736
+ assetId: 30,
737
+ symbol: "DED",
738
+ coingeckoId: "dot-is-ded",
739
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ded.svg"
740
+ }, {
741
+ assetId: 17,
742
+ symbol: "WIFD",
743
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/wifd.svg"
744
+ }, {
745
+ assetId: 555,
746
+ symbol: "GAME",
747
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/game.svg"
748
+ }, {
749
+ assetId: 690,
750
+ symbol: "BORK",
751
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/bork.svg"
752
+ }, {
753
+ assetId: 31337,
754
+ symbol: "WUD",
755
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/wud.webp",
756
+ coingeckoId: "gavun-wud"
757
+ }]
758
+ }
759
+ }, {
760
+ moduleType: "substrate-foreignassets",
761
+ moduleConfig: {
762
+ tokens: [{
763
+ onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":2011}}}',
764
+ symbol: "EQ",
765
+ coingeckoId: "equilibrium-token",
766
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/eq.svg"
767
+ }, {
768
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc0"}}]}}',
769
+ symbol: "WETH.e",
770
+ coingeckoId: "weth",
771
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/weth.webp"
772
+ }, {
773
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x6982508145454ce325ddbe47a25d4ec3d2311933"}}]}}',
774
+ symbol: "PEPE.e",
775
+ coingeckoId: "pepe",
776
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/pepe.webp"
777
+ }, {
778
+ onChainId: '{"parents":2,"interior":{"type":"X1","value":{"type":"GlobalConsensus","value":{"type":"Kusama"}}}}',
779
+ symbol: "KSM",
780
+ coingeckoId: "kusama",
781
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"
782
+ }, {
783
+ onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2030},{"type":"GeneralKey","value":{"length":2,"data":"hex:0x0001000000000000000000000000000000000000000000000000000000000000"}}]}}',
784
+ symbol: "BNC",
785
+ coingeckoId: "bifrost-native-coin",
786
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/bnc.svg"
787
+ }, {
788
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}}]}}',
789
+ symbol: "USDC.e",
790
+ coingeckoId: "usd-coin",
791
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/usd-coin.webp"
792
+ }, {
793
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003"}}]}}',
794
+ symbol: "MYTH.e",
795
+ coingeckoId: "mythos",
796
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/mythos.webp"
797
+ }, {
798
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x18084fba666a33d37592fa2633fd49a74dd93a88"}}]}}',
799
+ symbol: "tBTC.e",
800
+ coingeckoId: "tbtc",
801
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/tbtc.webp"
802
+ }, {
803
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0"}}]}}',
804
+ symbol: "wstETH.e",
805
+ coingeckoId: "wrapped-steth",
806
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/wrapped-steth.webp"
807
+ }, {
808
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x582d872a1b094fc48f5de31d3b73f2d9be47def1"}}]}}',
809
+ symbol: "TONCOIN.e",
810
+ coingeckoId: "the-open-network",
811
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/the-open-network.webp"
812
+ }, {
813
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x6b175474e89094c44da98b954eedeac495271d0f"}}]}}',
814
+ symbol: "DAI.e",
815
+ coingeckoId: "dai",
816
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/dai.webp"
817
+ }, {
818
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce"}}]}}',
819
+ symbol: "SHIB.e",
820
+ coingeckoId: "shiba-inu",
821
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/shiba-inu.webp"
822
+ }, {
823
+ onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2011},{"type":"GeneralKey","value":{"length":3,"data":"hex:0x6571640000000000000000000000000000000000000000000000000000000000"}}]}}',
824
+ symbol: "EQD",
825
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/eqd.svg"
826
+ }, {
827
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x2260fac5e5542a773aa44fbcfedf7c193bc2c599"}}]}}',
828
+ symbol: "WBTC.e",
829
+ coingeckoId: "wrapped-bitcoin",
830
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/wrapped-bitcoin.webp"
831
+ }, {
832
+ onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2004},{"type":"PalletInstance","value":10}]}}',
833
+ symbol: "GLMR",
834
+ coingeckoId: "moonbeam",
835
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/glmr.svg"
836
+ }, {
837
+ onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":3369}}}',
838
+ symbol: "MYTH",
839
+ coingeckoId: "mythos",
840
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/myth.svg"
841
+ }, {
842
+ onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2030},{"type":"GeneralKey","value":{"length":2,"data":"hex:0x0900000000000000000000000000000000000000000000000000000000000000"}}]}}',
843
+ symbol: "vDOT",
844
+ coingeckoId: "voucher-dot",
845
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/vdot.svg"
846
+ }, {
847
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0x8daebade922df735c38c80c7ebd708af50815faa"}}]}}',
848
+ symbol: "tBTC.e",
849
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/unknown.svg"
850
+ }, {
851
+ onChainId: '{"parents":1,"interior":{"type":"X2","value":[{"type":"Parachain","value":2034},{"type":"GeneralIndex","value":"bigint:0"}]}}',
852
+ symbol: "HDX",
853
+ coingeckoId: "hydradx",
854
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/hdx.svg"
855
+ }, {
856
+ onChainId: '{"parents":2,"interior":{"type":"X2","value":[{"type":"GlobalConsensus","value":{"type":"Ethereum","value":{"chain_id":"bigint:1"}}},{"type":"AccountKey20","value":{"key":"hex:0xdac17f958d2ee523a2206206994597c13d831ec7"}}]}}',
857
+ symbol: "USDT.e",
858
+ coingeckoId: "tether",
859
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/coingecko/tether.webp"
860
+ }, {
861
+ onChainId: '{"parents":1,"interior":{"type":"X1","value":{"type":"Parachain","value":2051}}}',
862
+ symbol: "AJUN",
863
+ coingeckoId: "ajuna-network-2",
864
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ajun.svg"
865
+ }]
866
+ }
867
+ }],
868
+ balancesMetadata: [],
869
+ hasCheckMetadataHash: true
870
+ }, {
871
+ id: "polkadot-bridge-hub",
872
+ isTestnet: false,
873
+ isDefault: true,
874
+ sortIndex: 833,
875
+ genesisHash: "0xdcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464",
876
+ prefix: 0,
877
+ oldPrefix: 0,
878
+ name: "Polkadot Bridge Hub",
879
+ themeColor: "#321d47",
880
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/polkadot-bridge-hub.svg",
881
+ chainName: "Polkadot BridgeHub",
882
+ chainType: "Live",
883
+ implName: "bridge-hub-polkadot",
884
+ specName: "bridge-hub-polkadot",
885
+ specVersion: "1004000",
886
+ nativeToken: {
887
+ id: "polkadot-bridge-hub-substrate-native"
888
+ },
889
+ tokens: [{
890
+ id: "polkadot-bridge-hub-substrate-native"
891
+ }],
892
+ account: "*25519",
893
+ subscanUrl: "https://bridgehub-polkadot.subscan.io/",
894
+ chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_specs.png",
895
+ latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_metadata_latest.apng",
896
+ isUnknownFeeToken: false,
897
+ feeToken: null,
898
+ rpcs: [{
899
+ url: "wss://sys.ibp.network/bridgehub-polkadot"
900
+ }, {
901
+ url: "wss://bridge-hub-polkadot-rpc.dwellir.com"
902
+ }, {
903
+ url: "wss://polkadot-bridge-hub-rpc-tn.dwellir.com"
904
+ }, {
905
+ url: "wss://bridge-hub-polkadot.dotters.network"
906
+ }, {
907
+ url: "wss://rpc-bridge-hub-polkadot.luckyfriday.io"
908
+ }, {
909
+ url: "wss://bridgehub-polkadot.api.onfinality.io/public-ws"
910
+ }, {
911
+ url: "wss://polkadot-bridge-hub-rpc.polkadot.io"
912
+ }, {
913
+ url: "wss://bridgehub-polkadot.public.curie.radiumblock.co/ws"
914
+ }, {
915
+ url: "wss://dot-rpc.stakeworld.io/bridgehub"
916
+ }],
917
+ evmNetworks: [],
918
+ parathreads: null,
919
+ paraId: 1002,
920
+ relay: {
921
+ id: "polkadot"
922
+ },
923
+ balancesConfig: [{
924
+ moduleType: "substrate-native",
925
+ moduleConfig: {
926
+ coingeckoId: "polkadot",
927
+ logo: "https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/chains/polkadot-bridge-hub.svg"
928
+ }
929
+ }],
930
+ balancesMetadata: [],
931
+ hasCheckMetadataHash: true
932
+ }];
933
+
934
+ exports.chains = chains;