@talismn/chaindata-provider 0.8.0 → 0.8.2

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