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