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