@paraspell/pallets 11.0.1 → 11.1.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.
- package/README.md +16 -1
- package/dist/index.cjs +900 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +899 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -8,15 +8,44 @@ var SUPPORTED_PALLETS = ['XTokens', 'OrmlXTokens', 'PolkadotXcm', 'RelayerXcm',
|
|
|
8
8
|
var AssetHubPolkadot = {
|
|
9
9
|
defaultPallet: "PolkadotXcm",
|
|
10
10
|
supportedPallets: [
|
|
11
|
+
{
|
|
12
|
+
name: "Balances",
|
|
13
|
+
index: 10
|
|
14
|
+
},
|
|
11
15
|
{
|
|
12
16
|
name: "PolkadotXcm",
|
|
13
17
|
index: 31
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: "Assets",
|
|
21
|
+
index: 50
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: "ForeignAssets",
|
|
25
|
+
index: 53
|
|
14
26
|
}
|
|
27
|
+
],
|
|
28
|
+
nativeAssets: "Balances",
|
|
29
|
+
otherAssets: [
|
|
30
|
+
"Assets",
|
|
31
|
+
"ForeignAssets"
|
|
15
32
|
]
|
|
16
33
|
};
|
|
17
34
|
var Acala = {
|
|
18
35
|
defaultPallet: "XTokens",
|
|
19
36
|
supportedPallets: [
|
|
37
|
+
{
|
|
38
|
+
name: "Balances",
|
|
39
|
+
index: 10
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: "Tokens",
|
|
43
|
+
index: 11
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: "Currencies",
|
|
47
|
+
index: 12
|
|
48
|
+
},
|
|
20
49
|
{
|
|
21
50
|
name: "PolkadotXcm",
|
|
22
51
|
index: 51
|
|
@@ -25,11 +54,24 @@ var Acala = {
|
|
|
25
54
|
name: "XTokens",
|
|
26
55
|
index: 54
|
|
27
56
|
}
|
|
57
|
+
],
|
|
58
|
+
nativeAssets: "Balances",
|
|
59
|
+
otherAssets: [
|
|
60
|
+
"Currencies",
|
|
61
|
+
"Tokens"
|
|
28
62
|
]
|
|
29
63
|
};
|
|
30
64
|
var Astar = {
|
|
31
65
|
defaultPallet: "XTokens",
|
|
32
66
|
supportedPallets: [
|
|
67
|
+
{
|
|
68
|
+
name: "Balances",
|
|
69
|
+
index: 31
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
name: "Assets",
|
|
73
|
+
index: 36
|
|
74
|
+
},
|
|
33
75
|
{
|
|
34
76
|
name: "PolkadotXcm",
|
|
35
77
|
index: 51
|
|
@@ -38,11 +80,19 @@ var Astar = {
|
|
|
38
80
|
name: "XTokens",
|
|
39
81
|
index: 55
|
|
40
82
|
}
|
|
83
|
+
],
|
|
84
|
+
nativeAssets: "Balances",
|
|
85
|
+
otherAssets: [
|
|
86
|
+
"Assets"
|
|
41
87
|
]
|
|
42
88
|
};
|
|
43
89
|
var BifrostPolkadot = {
|
|
44
90
|
defaultPallet: "XTokens",
|
|
45
91
|
supportedPallets: [
|
|
92
|
+
{
|
|
93
|
+
name: "Balances",
|
|
94
|
+
index: 10
|
|
95
|
+
},
|
|
46
96
|
{
|
|
47
97
|
name: "PolkadotXcm",
|
|
48
98
|
index: 41
|
|
@@ -50,21 +100,49 @@ var BifrostPolkadot = {
|
|
|
50
100
|
{
|
|
51
101
|
name: "XTokens",
|
|
52
102
|
index: 70
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
name: "Tokens",
|
|
106
|
+
index: 71
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "Currencies",
|
|
110
|
+
index: 72
|
|
53
111
|
}
|
|
112
|
+
],
|
|
113
|
+
nativeAssets: "Balances",
|
|
114
|
+
otherAssets: [
|
|
115
|
+
"Currencies",
|
|
116
|
+
"Tokens"
|
|
54
117
|
]
|
|
55
118
|
};
|
|
56
119
|
var CoretimeKusama = {
|
|
57
120
|
defaultPallet: "PolkadotXcm",
|
|
58
121
|
supportedPallets: [
|
|
122
|
+
{
|
|
123
|
+
name: "Balances",
|
|
124
|
+
index: 10
|
|
125
|
+
},
|
|
59
126
|
{
|
|
60
127
|
name: "PolkadotXcm",
|
|
61
128
|
index: 31
|
|
62
129
|
}
|
|
130
|
+
],
|
|
131
|
+
nativeAssets: "Balances",
|
|
132
|
+
otherAssets: [
|
|
63
133
|
]
|
|
64
134
|
};
|
|
65
135
|
var Centrifuge = {
|
|
66
136
|
defaultPallet: "XTokens",
|
|
67
137
|
supportedPallets: [
|
|
138
|
+
{
|
|
139
|
+
name: "Balances",
|
|
140
|
+
index: 20
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: "Tokens",
|
|
144
|
+
index: 98
|
|
145
|
+
},
|
|
68
146
|
{
|
|
69
147
|
name: "PolkadotXcm",
|
|
70
148
|
index: 121
|
|
@@ -77,6 +155,10 @@ var Centrifuge = {
|
|
|
77
155
|
name: "OrmlXTokens",
|
|
78
156
|
index: 126
|
|
79
157
|
}
|
|
158
|
+
],
|
|
159
|
+
nativeAssets: "Balances",
|
|
160
|
+
otherAssets: [
|
|
161
|
+
"Tokens"
|
|
80
162
|
]
|
|
81
163
|
};
|
|
82
164
|
var ComposableFinance = {
|
|
@@ -90,20 +172,52 @@ var ComposableFinance = {
|
|
|
90
172
|
name: "XTokens",
|
|
91
173
|
index: 44
|
|
92
174
|
}
|
|
175
|
+
],
|
|
176
|
+
nativeAssets: "Balances",
|
|
177
|
+
otherAssets: [
|
|
93
178
|
]
|
|
94
179
|
};
|
|
95
180
|
var Darwinia = {
|
|
96
181
|
defaultPallet: "PolkadotXcm",
|
|
97
182
|
supportedPallets: [
|
|
183
|
+
{
|
|
184
|
+
name: "Balances",
|
|
185
|
+
index: 5
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: "Assets",
|
|
189
|
+
index: 7
|
|
190
|
+
},
|
|
98
191
|
{
|
|
99
192
|
name: "PolkadotXcm",
|
|
100
193
|
index: 33
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
name: "AssetManager",
|
|
197
|
+
index: 45
|
|
101
198
|
}
|
|
199
|
+
],
|
|
200
|
+
nativeAssets: "Balances",
|
|
201
|
+
otherAssets: [
|
|
202
|
+
"Assets",
|
|
203
|
+
"AssetManager"
|
|
102
204
|
]
|
|
103
205
|
};
|
|
104
206
|
var Hydration = {
|
|
105
207
|
defaultPallet: "XTokens",
|
|
106
208
|
supportedPallets: [
|
|
209
|
+
{
|
|
210
|
+
name: "Balances",
|
|
211
|
+
index: 7
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: "Tokens",
|
|
215
|
+
index: 77
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: "Currencies",
|
|
219
|
+
index: 79
|
|
220
|
+
},
|
|
107
221
|
{
|
|
108
222
|
name: "PolkadotXcm",
|
|
109
223
|
index: 107
|
|
@@ -112,11 +226,20 @@ var Hydration = {
|
|
|
112
226
|
name: "XTokens",
|
|
113
227
|
index: 137
|
|
114
228
|
}
|
|
229
|
+
],
|
|
230
|
+
nativeAssets: "Balances",
|
|
231
|
+
otherAssets: [
|
|
232
|
+
"Currencies",
|
|
233
|
+
"Tokens"
|
|
115
234
|
]
|
|
116
235
|
};
|
|
117
236
|
var Interlay = {
|
|
118
237
|
defaultPallet: "XTokens",
|
|
119
238
|
supportedPallets: [
|
|
239
|
+
{
|
|
240
|
+
name: "Tokens",
|
|
241
|
+
index: 21
|
|
242
|
+
},
|
|
120
243
|
{
|
|
121
244
|
name: "PolkadotXcm",
|
|
122
245
|
index: 91
|
|
@@ -125,6 +248,10 @@ var Interlay = {
|
|
|
125
248
|
name: "XTokens",
|
|
126
249
|
index: 94
|
|
127
250
|
}
|
|
251
|
+
],
|
|
252
|
+
nativeAssets: "Tokens",
|
|
253
|
+
otherAssets: [
|
|
254
|
+
"Tokens"
|
|
128
255
|
]
|
|
129
256
|
};
|
|
130
257
|
var Heima = {
|
|
@@ -134,38 +261,90 @@ var Heima = {
|
|
|
134
261
|
name: "PolkadotXcm",
|
|
135
262
|
index: 51
|
|
136
263
|
}
|
|
264
|
+
],
|
|
265
|
+
nativeAssets: "Balances",
|
|
266
|
+
otherAssets: [
|
|
137
267
|
]
|
|
138
268
|
};
|
|
139
269
|
var Moonbeam = {
|
|
140
270
|
defaultPallet: "PolkadotXcm",
|
|
141
271
|
supportedPallets: [
|
|
272
|
+
{
|
|
273
|
+
name: "Balances",
|
|
274
|
+
index: 10
|
|
275
|
+
},
|
|
142
276
|
{
|
|
143
277
|
name: "PolkadotXcm",
|
|
144
278
|
index: 103
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
name: "Assets",
|
|
282
|
+
index: 104
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
name: "AssetManager",
|
|
286
|
+
index: 105
|
|
145
287
|
}
|
|
288
|
+
],
|
|
289
|
+
nativeAssets: "Balances",
|
|
290
|
+
otherAssets: [
|
|
291
|
+
"Assets",
|
|
292
|
+
"AssetManager"
|
|
146
293
|
]
|
|
147
294
|
};
|
|
148
295
|
var AssetHubKusama = {
|
|
149
296
|
defaultPallet: "PolkadotXcm",
|
|
150
297
|
supportedPallets: [
|
|
298
|
+
{
|
|
299
|
+
name: "Balances",
|
|
300
|
+
index: 10
|
|
301
|
+
},
|
|
151
302
|
{
|
|
152
303
|
name: "PolkadotXcm",
|
|
153
304
|
index: 31
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: "Assets",
|
|
308
|
+
index: 50
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
name: "ForeignAssets",
|
|
312
|
+
index: 53
|
|
154
313
|
}
|
|
314
|
+
],
|
|
315
|
+
nativeAssets: "Balances",
|
|
316
|
+
otherAssets: [
|
|
317
|
+
"Assets",
|
|
318
|
+
"ForeignAssets"
|
|
155
319
|
]
|
|
156
320
|
};
|
|
157
321
|
var Encointer = {
|
|
158
322
|
defaultPallet: "PolkadotXcm",
|
|
159
323
|
supportedPallets: [
|
|
324
|
+
{
|
|
325
|
+
name: "Balances",
|
|
326
|
+
index: 10
|
|
327
|
+
},
|
|
160
328
|
{
|
|
161
329
|
name: "PolkadotXcm",
|
|
162
330
|
index: 31
|
|
163
331
|
}
|
|
332
|
+
],
|
|
333
|
+
nativeAssets: "Balances",
|
|
334
|
+
otherAssets: [
|
|
164
335
|
]
|
|
165
336
|
};
|
|
166
337
|
var Altair = {
|
|
167
338
|
defaultPallet: "XTokens",
|
|
168
339
|
supportedPallets: [
|
|
340
|
+
{
|
|
341
|
+
name: "Balances",
|
|
342
|
+
index: 20
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
name: "Tokens",
|
|
346
|
+
index: 97
|
|
347
|
+
},
|
|
169
348
|
{
|
|
170
349
|
name: "PolkadotXcm",
|
|
171
350
|
index: 121
|
|
@@ -178,32 +357,70 @@ var Altair = {
|
|
|
178
357
|
name: "OrmlXTokens",
|
|
179
358
|
index: 126
|
|
180
359
|
}
|
|
360
|
+
],
|
|
361
|
+
nativeAssets: "Balances",
|
|
362
|
+
otherAssets: [
|
|
363
|
+
"Tokens"
|
|
181
364
|
]
|
|
182
365
|
};
|
|
183
366
|
var Amplitude = {
|
|
184
367
|
defaultPallet: "XTokens",
|
|
185
368
|
supportedPallets: [
|
|
369
|
+
{
|
|
370
|
+
name: "Balances",
|
|
371
|
+
index: 10
|
|
372
|
+
},
|
|
186
373
|
{
|
|
187
374
|
name: "PolkadotXcm",
|
|
188
375
|
index: 41
|
|
189
376
|
},
|
|
377
|
+
{
|
|
378
|
+
name: "Currencies",
|
|
379
|
+
index: 52
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: "Tokens",
|
|
383
|
+
index: 53
|
|
384
|
+
},
|
|
190
385
|
{
|
|
191
386
|
name: "XTokens",
|
|
192
387
|
index: 54
|
|
193
388
|
}
|
|
389
|
+
],
|
|
390
|
+
nativeAssets: "Balances",
|
|
391
|
+
otherAssets: [
|
|
392
|
+
"Currencies",
|
|
393
|
+
"Tokens"
|
|
194
394
|
]
|
|
195
395
|
};
|
|
196
396
|
var Basilisk = {
|
|
197
397
|
defaultPallet: "XTokens",
|
|
198
398
|
supportedPallets: [
|
|
399
|
+
{
|
|
400
|
+
name: "Balances",
|
|
401
|
+
index: 2
|
|
402
|
+
},
|
|
199
403
|
{
|
|
200
404
|
name: "PolkadotXcm",
|
|
201
405
|
index: 52
|
|
202
406
|
},
|
|
407
|
+
{
|
|
408
|
+
name: "Currencies",
|
|
409
|
+
index: 150
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
name: "Tokens",
|
|
413
|
+
index: 151
|
|
414
|
+
},
|
|
203
415
|
{
|
|
204
416
|
name: "XTokens",
|
|
205
417
|
index: 154
|
|
206
418
|
}
|
|
419
|
+
],
|
|
420
|
+
nativeAssets: "Balances",
|
|
421
|
+
otherAssets: [
|
|
422
|
+
"Currencies",
|
|
423
|
+
"Tokens"
|
|
207
424
|
]
|
|
208
425
|
};
|
|
209
426
|
var BifrostKusama = {
|
|
@@ -217,33 +434,77 @@ var BifrostKusama = {
|
|
|
217
434
|
name: "XTokens",
|
|
218
435
|
index: 70
|
|
219
436
|
}
|
|
437
|
+
],
|
|
438
|
+
nativeAssets: "Balances",
|
|
439
|
+
otherAssets: [
|
|
220
440
|
]
|
|
221
441
|
};
|
|
222
442
|
var CrustShadow = {
|
|
223
443
|
defaultPallet: "XTokens",
|
|
224
444
|
supportedPallets: [
|
|
445
|
+
{
|
|
446
|
+
name: "Balances",
|
|
447
|
+
index: 2
|
|
448
|
+
},
|
|
225
449
|
{
|
|
226
450
|
name: "PolkadotXcm",
|
|
227
451
|
index: 13
|
|
228
452
|
},
|
|
453
|
+
{
|
|
454
|
+
name: "Assets",
|
|
455
|
+
index: 124
|
|
456
|
+
},
|
|
229
457
|
{
|
|
230
458
|
name: "XTokens",
|
|
231
459
|
index: 125
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
name: "AssetManager",
|
|
463
|
+
index: 126
|
|
232
464
|
}
|
|
465
|
+
],
|
|
466
|
+
nativeAssets: "Balances",
|
|
467
|
+
otherAssets: [
|
|
468
|
+
"Assets",
|
|
469
|
+
"AssetManager"
|
|
233
470
|
]
|
|
234
471
|
};
|
|
235
472
|
var Crab = {
|
|
236
473
|
defaultPallet: "PolkadotXcm",
|
|
237
474
|
supportedPallets: [
|
|
475
|
+
{
|
|
476
|
+
name: "Balances",
|
|
477
|
+
index: 5
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
name: "Assets",
|
|
481
|
+
index: 7
|
|
482
|
+
},
|
|
238
483
|
{
|
|
239
484
|
name: "PolkadotXcm",
|
|
240
485
|
index: 33
|
|
241
486
|
}
|
|
487
|
+
],
|
|
488
|
+
nativeAssets: "Balances",
|
|
489
|
+
otherAssets: [
|
|
490
|
+
"Assets"
|
|
242
491
|
]
|
|
243
492
|
};
|
|
244
493
|
var Karura = {
|
|
245
494
|
defaultPallet: "XTokens",
|
|
246
495
|
supportedPallets: [
|
|
496
|
+
{
|
|
497
|
+
name: "Balances",
|
|
498
|
+
index: 10
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: "Tokens",
|
|
502
|
+
index: 11
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
name: "Currencies",
|
|
506
|
+
index: 12
|
|
507
|
+
},
|
|
247
508
|
{
|
|
248
509
|
name: "PolkadotXcm",
|
|
249
510
|
index: 51
|
|
@@ -252,11 +513,20 @@ var Karura = {
|
|
|
252
513
|
name: "XTokens",
|
|
253
514
|
index: 54
|
|
254
515
|
}
|
|
516
|
+
],
|
|
517
|
+
nativeAssets: "Balances",
|
|
518
|
+
otherAssets: [
|
|
519
|
+
"Currencies",
|
|
520
|
+
"Tokens"
|
|
255
521
|
]
|
|
256
522
|
};
|
|
257
523
|
var Kintsugi = {
|
|
258
524
|
defaultPallet: "XTokens",
|
|
259
525
|
supportedPallets: [
|
|
526
|
+
{
|
|
527
|
+
name: "Tokens",
|
|
528
|
+
index: 21
|
|
529
|
+
},
|
|
260
530
|
{
|
|
261
531
|
name: "PolkadotXcm",
|
|
262
532
|
index: 91
|
|
@@ -265,20 +535,45 @@ var Kintsugi = {
|
|
|
265
535
|
name: "XTokens",
|
|
266
536
|
index: 94
|
|
267
537
|
}
|
|
538
|
+
],
|
|
539
|
+
nativeAssets: "Tokens",
|
|
540
|
+
otherAssets: [
|
|
541
|
+
"Tokens"
|
|
268
542
|
]
|
|
269
543
|
};
|
|
270
544
|
var Moonriver = {
|
|
271
545
|
defaultPallet: "PolkadotXcm",
|
|
272
546
|
supportedPallets: [
|
|
547
|
+
{
|
|
548
|
+
name: "Balances",
|
|
549
|
+
index: 10
|
|
550
|
+
},
|
|
273
551
|
{
|
|
274
552
|
name: "PolkadotXcm",
|
|
275
553
|
index: 103
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
name: "Assets",
|
|
557
|
+
index: 104
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
name: "AssetManager",
|
|
561
|
+
index: 105
|
|
276
562
|
}
|
|
563
|
+
],
|
|
564
|
+
nativeAssets: "Balances",
|
|
565
|
+
otherAssets: [
|
|
566
|
+
"Assets",
|
|
567
|
+
"AssetManager"
|
|
277
568
|
]
|
|
278
569
|
};
|
|
279
570
|
var Quartz = {
|
|
280
571
|
defaultPallet: "XTokens",
|
|
281
572
|
supportedPallets: [
|
|
573
|
+
{
|
|
574
|
+
name: "Balances",
|
|
575
|
+
index: 30
|
|
576
|
+
},
|
|
282
577
|
{
|
|
283
578
|
name: "XTokens",
|
|
284
579
|
index: 38
|
|
@@ -286,21 +581,49 @@ var Quartz = {
|
|
|
286
581
|
{
|
|
287
582
|
name: "PolkadotXcm",
|
|
288
583
|
index: 51
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
name: "ForeignAssets",
|
|
587
|
+
index: 80
|
|
289
588
|
}
|
|
589
|
+
],
|
|
590
|
+
nativeAssets: "Balances",
|
|
591
|
+
otherAssets: [
|
|
592
|
+
"ForeignAssets"
|
|
290
593
|
]
|
|
291
594
|
};
|
|
292
595
|
var RobonomicsKusama = {
|
|
293
596
|
defaultPallet: "PolkadotXcm",
|
|
294
597
|
supportedPallets: [
|
|
598
|
+
{
|
|
599
|
+
name: "Balances",
|
|
600
|
+
index: 31
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
name: "Assets",
|
|
604
|
+
index: 34
|
|
605
|
+
},
|
|
295
606
|
{
|
|
296
607
|
name: "PolkadotXcm",
|
|
297
608
|
index: 71
|
|
298
609
|
}
|
|
610
|
+
],
|
|
611
|
+
nativeAssets: "Balances",
|
|
612
|
+
otherAssets: [
|
|
613
|
+
"Assets"
|
|
299
614
|
]
|
|
300
615
|
};
|
|
301
616
|
var Shiden = {
|
|
302
617
|
defaultPallet: "XTokens",
|
|
303
618
|
supportedPallets: [
|
|
619
|
+
{
|
|
620
|
+
name: "Balances",
|
|
621
|
+
index: 31
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
name: "Assets",
|
|
625
|
+
index: 36
|
|
626
|
+
},
|
|
304
627
|
{
|
|
305
628
|
name: "PolkadotXcm",
|
|
306
629
|
index: 51
|
|
@@ -309,11 +632,19 @@ var Shiden = {
|
|
|
309
632
|
name: "XTokens",
|
|
310
633
|
index: 55
|
|
311
634
|
}
|
|
635
|
+
],
|
|
636
|
+
nativeAssets: "Balances",
|
|
637
|
+
otherAssets: [
|
|
638
|
+
"Assets"
|
|
312
639
|
]
|
|
313
640
|
};
|
|
314
641
|
var Unique = {
|
|
315
642
|
defaultPallet: "XTokens",
|
|
316
643
|
supportedPallets: [
|
|
644
|
+
{
|
|
645
|
+
name: "Balances",
|
|
646
|
+
index: 30
|
|
647
|
+
},
|
|
317
648
|
{
|
|
318
649
|
name: "XTokens",
|
|
319
650
|
index: 38
|
|
@@ -321,25 +652,54 @@ var Unique = {
|
|
|
321
652
|
{
|
|
322
653
|
name: "PolkadotXcm",
|
|
323
654
|
index: 51
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
name: "ForeignAssets",
|
|
658
|
+
index: 80
|
|
324
659
|
}
|
|
660
|
+
],
|
|
661
|
+
nativeAssets: "Balances",
|
|
662
|
+
otherAssets: [
|
|
663
|
+
"ForeignAssets"
|
|
325
664
|
]
|
|
326
665
|
};
|
|
327
666
|
var Crust = {
|
|
328
667
|
defaultPallet: "XTokens",
|
|
329
668
|
supportedPallets: [
|
|
669
|
+
{
|
|
670
|
+
name: "Balances",
|
|
671
|
+
index: 2
|
|
672
|
+
},
|
|
330
673
|
{
|
|
331
674
|
name: "PolkadotXcm",
|
|
332
675
|
index: 14
|
|
333
676
|
},
|
|
677
|
+
{
|
|
678
|
+
name: "Assets",
|
|
679
|
+
index: 124
|
|
680
|
+
},
|
|
334
681
|
{
|
|
335
682
|
name: "XTokens",
|
|
336
683
|
index: 125
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
name: "AssetManager",
|
|
687
|
+
index: 126
|
|
337
688
|
}
|
|
689
|
+
],
|
|
690
|
+
nativeAssets: "Balances",
|
|
691
|
+
otherAssets: [
|
|
692
|
+
"Assets",
|
|
693
|
+
"AssetManager"
|
|
338
694
|
]
|
|
339
695
|
};
|
|
340
696
|
var Manta = {
|
|
341
697
|
defaultPallet: "XTokens",
|
|
342
698
|
supportedPallets: [
|
|
699
|
+
{
|
|
700
|
+
name: "Balances",
|
|
701
|
+
index: 10
|
|
702
|
+
},
|
|
343
703
|
{
|
|
344
704
|
name: "PolkadotXcm",
|
|
345
705
|
index: 31
|
|
@@ -347,43 +707,104 @@ var Manta = {
|
|
|
347
707
|
{
|
|
348
708
|
name: "XTokens",
|
|
349
709
|
index: 34
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
name: "Assets",
|
|
713
|
+
index: 45
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
name: "AssetManager",
|
|
717
|
+
index: 46
|
|
350
718
|
}
|
|
719
|
+
],
|
|
720
|
+
nativeAssets: "Balances",
|
|
721
|
+
otherAssets: [
|
|
722
|
+
"Assets",
|
|
723
|
+
"AssetManager"
|
|
351
724
|
]
|
|
352
725
|
};
|
|
353
726
|
var Nodle = {
|
|
354
727
|
defaultPallet: "PolkadotXcm",
|
|
355
728
|
supportedPallets: [
|
|
729
|
+
{
|
|
730
|
+
name: "Balances",
|
|
731
|
+
index: 2
|
|
732
|
+
},
|
|
356
733
|
{
|
|
357
734
|
name: "PolkadotXcm",
|
|
358
735
|
index: 35
|
|
359
736
|
}
|
|
737
|
+
],
|
|
738
|
+
nativeAssets: "Balances",
|
|
739
|
+
otherAssets: [
|
|
360
740
|
]
|
|
361
741
|
};
|
|
362
742
|
var NeuroWeb = {
|
|
363
743
|
defaultPallet: "PolkadotXcm",
|
|
364
744
|
supportedPallets: [
|
|
745
|
+
{
|
|
746
|
+
name: "Balances",
|
|
747
|
+
index: 10
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
name: "Assets",
|
|
751
|
+
index: 14
|
|
752
|
+
},
|
|
365
753
|
{
|
|
366
754
|
name: "PolkadotXcm",
|
|
367
755
|
index: 31
|
|
368
756
|
}
|
|
757
|
+
],
|
|
758
|
+
nativeAssets: "Balances",
|
|
759
|
+
otherAssets: [
|
|
760
|
+
"Assets"
|
|
369
761
|
]
|
|
370
762
|
};
|
|
371
763
|
var Pendulum = {
|
|
372
764
|
defaultPallet: "XTokens",
|
|
373
765
|
supportedPallets: [
|
|
766
|
+
{
|
|
767
|
+
name: "Balances",
|
|
768
|
+
index: 10
|
|
769
|
+
},
|
|
374
770
|
{
|
|
375
771
|
name: "PolkadotXcm",
|
|
376
772
|
index: 41
|
|
377
773
|
},
|
|
774
|
+
{
|
|
775
|
+
name: "Currencies",
|
|
776
|
+
index: 52
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
name: "Tokens",
|
|
780
|
+
index: 53
|
|
781
|
+
},
|
|
378
782
|
{
|
|
379
783
|
name: "XTokens",
|
|
380
784
|
index: 54
|
|
381
785
|
}
|
|
786
|
+
],
|
|
787
|
+
nativeAssets: "Balances",
|
|
788
|
+
otherAssets: [
|
|
789
|
+
"Currencies",
|
|
790
|
+
"Tokens"
|
|
382
791
|
]
|
|
383
792
|
};
|
|
384
793
|
var Zeitgeist = {
|
|
385
794
|
defaultPallet: "XTokens",
|
|
386
795
|
supportedPallets: [
|
|
796
|
+
{
|
|
797
|
+
name: "Balances",
|
|
798
|
+
index: 10
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
name: "AssetManager",
|
|
802
|
+
index: 40
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
name: "Tokens",
|
|
806
|
+
index: 41
|
|
807
|
+
},
|
|
387
808
|
{
|
|
388
809
|
name: "PolkadotXcm",
|
|
389
810
|
index: 122
|
|
@@ -392,15 +813,27 @@ var Zeitgeist = {
|
|
|
392
813
|
name: "XTokens",
|
|
393
814
|
index: 126
|
|
394
815
|
}
|
|
816
|
+
],
|
|
817
|
+
nativeAssets: "Balances",
|
|
818
|
+
otherAssets: [
|
|
819
|
+
"Tokens",
|
|
820
|
+
"AssetManager"
|
|
395
821
|
]
|
|
396
822
|
};
|
|
397
823
|
var Collectives = {
|
|
398
824
|
defaultPallet: "PolkadotXcm",
|
|
399
825
|
supportedPallets: [
|
|
826
|
+
{
|
|
827
|
+
name: "Balances",
|
|
828
|
+
index: 10
|
|
829
|
+
},
|
|
400
830
|
{
|
|
401
831
|
name: "PolkadotXcm",
|
|
402
832
|
index: 31
|
|
403
833
|
}
|
|
834
|
+
],
|
|
835
|
+
nativeAssets: "Balances",
|
|
836
|
+
otherAssets: [
|
|
404
837
|
]
|
|
405
838
|
};
|
|
406
839
|
var Phala = {
|
|
@@ -410,10 +843,22 @@ var Phala = {
|
|
|
410
843
|
name: "PolkadotXcm",
|
|
411
844
|
index: 33
|
|
412
845
|
},
|
|
846
|
+
{
|
|
847
|
+
name: "Balances",
|
|
848
|
+
index: 40
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
name: "Assets",
|
|
852
|
+
index: 42
|
|
853
|
+
},
|
|
413
854
|
{
|
|
414
855
|
name: "XTransfer",
|
|
415
856
|
index: 82
|
|
416
857
|
}
|
|
858
|
+
],
|
|
859
|
+
nativeAssets: "Balances",
|
|
860
|
+
otherAssets: [
|
|
861
|
+
"Assets"
|
|
417
862
|
]
|
|
418
863
|
};
|
|
419
864
|
var Subsocial = {
|
|
@@ -423,60 +868,112 @@ var Subsocial = {
|
|
|
423
868
|
name: "PolkadotXcm",
|
|
424
869
|
index: 31
|
|
425
870
|
}
|
|
871
|
+
],
|
|
872
|
+
nativeAssets: "Balances",
|
|
873
|
+
otherAssets: [
|
|
426
874
|
]
|
|
427
875
|
};
|
|
428
876
|
var KiltSpiritnet = {
|
|
429
877
|
defaultPallet: "PolkadotXcm",
|
|
430
878
|
supportedPallets: [
|
|
879
|
+
{
|
|
880
|
+
name: "Balances",
|
|
881
|
+
index: 6
|
|
882
|
+
},
|
|
431
883
|
{
|
|
432
884
|
name: "PolkadotXcm",
|
|
433
885
|
index: 83
|
|
434
886
|
}
|
|
887
|
+
],
|
|
888
|
+
nativeAssets: "Balances",
|
|
889
|
+
otherAssets: [
|
|
435
890
|
]
|
|
436
891
|
};
|
|
437
892
|
var Curio = {
|
|
438
893
|
defaultPallet: "XTokens",
|
|
439
894
|
supportedPallets: [
|
|
895
|
+
{
|
|
896
|
+
name: "Balances",
|
|
897
|
+
index: 10
|
|
898
|
+
},
|
|
440
899
|
{
|
|
441
900
|
name: "PolkadotXcm",
|
|
442
901
|
index: 41
|
|
443
902
|
},
|
|
903
|
+
{
|
|
904
|
+
name: "Currencies",
|
|
905
|
+
index: 72
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
name: "Tokens",
|
|
909
|
+
index: 73
|
|
910
|
+
},
|
|
444
911
|
{
|
|
445
912
|
name: "XTokens",
|
|
446
913
|
index: 75
|
|
447
914
|
}
|
|
915
|
+
],
|
|
916
|
+
nativeAssets: "Balances",
|
|
917
|
+
otherAssets: [
|
|
918
|
+
"Currencies",
|
|
919
|
+
"Tokens"
|
|
448
920
|
]
|
|
449
921
|
};
|
|
450
922
|
var BridgeHubPolkadot = {
|
|
451
923
|
defaultPallet: "PolkadotXcm",
|
|
452
924
|
supportedPallets: [
|
|
925
|
+
{
|
|
926
|
+
name: "Balances",
|
|
927
|
+
index: 10
|
|
928
|
+
},
|
|
453
929
|
{
|
|
454
930
|
name: "PolkadotXcm",
|
|
455
931
|
index: 31
|
|
456
932
|
}
|
|
933
|
+
],
|
|
934
|
+
nativeAssets: "Balances",
|
|
935
|
+
otherAssets: [
|
|
457
936
|
]
|
|
458
937
|
};
|
|
459
938
|
var BridgeHubKusama = {
|
|
460
939
|
defaultPallet: "PolkadotXcm",
|
|
461
940
|
supportedPallets: [
|
|
941
|
+
{
|
|
942
|
+
name: "Balances",
|
|
943
|
+
index: 10
|
|
944
|
+
},
|
|
462
945
|
{
|
|
463
946
|
name: "PolkadotXcm",
|
|
464
947
|
index: 31
|
|
465
948
|
}
|
|
949
|
+
],
|
|
950
|
+
nativeAssets: "Balances",
|
|
951
|
+
otherAssets: [
|
|
466
952
|
]
|
|
467
953
|
};
|
|
468
954
|
var Mythos = {
|
|
469
955
|
defaultPallet: "PolkadotXcm",
|
|
470
956
|
supportedPallets: [
|
|
957
|
+
{
|
|
958
|
+
name: "Balances",
|
|
959
|
+
index: 10
|
|
960
|
+
},
|
|
471
961
|
{
|
|
472
962
|
name: "PolkadotXcm",
|
|
473
963
|
index: 31
|
|
474
964
|
}
|
|
965
|
+
],
|
|
966
|
+
nativeAssets: "Balances",
|
|
967
|
+
otherAssets: [
|
|
475
968
|
]
|
|
476
969
|
};
|
|
477
970
|
var Peaq = {
|
|
478
971
|
defaultPallet: "XTokens",
|
|
479
972
|
supportedPallets: [
|
|
973
|
+
{
|
|
974
|
+
name: "Balances",
|
|
975
|
+
index: 4
|
|
976
|
+
},
|
|
480
977
|
{
|
|
481
978
|
name: "PolkadotXcm",
|
|
482
979
|
index: 31
|
|
@@ -484,75 +981,146 @@ var Peaq = {
|
|
|
484
981
|
{
|
|
485
982
|
name: "XTokens",
|
|
486
983
|
index: 36
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
name: "Assets",
|
|
987
|
+
index: 39
|
|
487
988
|
}
|
|
989
|
+
],
|
|
990
|
+
nativeAssets: "Balances",
|
|
991
|
+
otherAssets: [
|
|
992
|
+
"Assets"
|
|
488
993
|
]
|
|
489
994
|
};
|
|
490
995
|
var CoretimePolkadot = {
|
|
491
996
|
defaultPallet: "PolkadotXcm",
|
|
492
997
|
supportedPallets: [
|
|
998
|
+
{
|
|
999
|
+
name: "Balances",
|
|
1000
|
+
index: 10
|
|
1001
|
+
},
|
|
493
1002
|
{
|
|
494
1003
|
name: "PolkadotXcm",
|
|
495
1004
|
index: 31
|
|
496
1005
|
}
|
|
1006
|
+
],
|
|
1007
|
+
nativeAssets: "Balances",
|
|
1008
|
+
otherAssets: [
|
|
497
1009
|
]
|
|
498
1010
|
};
|
|
499
1011
|
var Polimec = {
|
|
500
1012
|
defaultPallet: "PolkadotXcm",
|
|
501
1013
|
supportedPallets: [
|
|
1014
|
+
{
|
|
1015
|
+
name: "Balances",
|
|
1016
|
+
index: 10
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
name: "ForeignAssets",
|
|
1020
|
+
index: 14
|
|
1021
|
+
},
|
|
502
1022
|
{
|
|
503
1023
|
name: "PolkadotXcm",
|
|
504
1024
|
index: 31
|
|
505
1025
|
}
|
|
1026
|
+
],
|
|
1027
|
+
nativeAssets: "Balances",
|
|
1028
|
+
otherAssets: [
|
|
1029
|
+
"ForeignAssets"
|
|
506
1030
|
]
|
|
507
1031
|
};
|
|
508
1032
|
var RobonomicsPolkadot = {
|
|
509
1033
|
defaultPallet: "PolkadotXcm",
|
|
510
1034
|
supportedPallets: [
|
|
1035
|
+
{
|
|
1036
|
+
name: "Balances",
|
|
1037
|
+
index: 31
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
name: "Assets",
|
|
1041
|
+
index: 34
|
|
1042
|
+
},
|
|
511
1043
|
{
|
|
512
1044
|
name: "PolkadotXcm",
|
|
513
1045
|
index: 71
|
|
514
1046
|
}
|
|
1047
|
+
],
|
|
1048
|
+
nativeAssets: "Balances",
|
|
1049
|
+
otherAssets: [
|
|
1050
|
+
"Assets"
|
|
515
1051
|
]
|
|
516
1052
|
};
|
|
517
1053
|
var PeoplePolkadot = {
|
|
518
1054
|
defaultPallet: "PolkadotXcm",
|
|
519
1055
|
supportedPallets: [
|
|
1056
|
+
{
|
|
1057
|
+
name: "Balances",
|
|
1058
|
+
index: 10
|
|
1059
|
+
},
|
|
520
1060
|
{
|
|
521
1061
|
name: "PolkadotXcm",
|
|
522
1062
|
index: 31
|
|
523
1063
|
}
|
|
1064
|
+
],
|
|
1065
|
+
nativeAssets: "Balances",
|
|
1066
|
+
otherAssets: [
|
|
524
1067
|
]
|
|
525
1068
|
};
|
|
526
1069
|
var PeopleKusama = {
|
|
527
1070
|
defaultPallet: "PolkadotXcm",
|
|
528
1071
|
supportedPallets: [
|
|
1072
|
+
{
|
|
1073
|
+
name: "Balances",
|
|
1074
|
+
index: 10
|
|
1075
|
+
},
|
|
529
1076
|
{
|
|
530
1077
|
name: "PolkadotXcm",
|
|
531
1078
|
index: 31
|
|
532
1079
|
}
|
|
1080
|
+
],
|
|
1081
|
+
nativeAssets: "Balances",
|
|
1082
|
+
otherAssets: [
|
|
533
1083
|
]
|
|
534
1084
|
};
|
|
535
1085
|
var Polkadot = {
|
|
536
1086
|
defaultPallet: "XcmPallet",
|
|
537
1087
|
supportedPallets: [
|
|
1088
|
+
{
|
|
1089
|
+
name: "Balances",
|
|
1090
|
+
index: 5
|
|
1091
|
+
},
|
|
538
1092
|
{
|
|
539
1093
|
name: "XcmPallet",
|
|
540
1094
|
index: 99
|
|
541
1095
|
}
|
|
1096
|
+
],
|
|
1097
|
+
nativeAssets: "Balances",
|
|
1098
|
+
otherAssets: [
|
|
542
1099
|
]
|
|
543
1100
|
};
|
|
544
1101
|
var Kusama = {
|
|
545
1102
|
defaultPallet: "XcmPallet",
|
|
546
1103
|
supportedPallets: [
|
|
1104
|
+
{
|
|
1105
|
+
name: "Balances",
|
|
1106
|
+
index: 4
|
|
1107
|
+
},
|
|
547
1108
|
{
|
|
548
1109
|
name: "XcmPallet",
|
|
549
1110
|
index: 99
|
|
550
1111
|
}
|
|
1112
|
+
],
|
|
1113
|
+
nativeAssets: "Balances",
|
|
1114
|
+
otherAssets: [
|
|
551
1115
|
]
|
|
552
1116
|
};
|
|
553
1117
|
var Ajuna = {
|
|
554
1118
|
defaultPallet: "XTokens",
|
|
555
1119
|
supportedPallets: [
|
|
1120
|
+
{
|
|
1121
|
+
name: "Balances",
|
|
1122
|
+
index: 15
|
|
1123
|
+
},
|
|
556
1124
|
{
|
|
557
1125
|
name: "PolkadotXcm",
|
|
558
1126
|
index: 31
|
|
@@ -560,21 +1128,48 @@ var Ajuna = {
|
|
|
560
1128
|
{
|
|
561
1129
|
name: "XTokens",
|
|
562
1130
|
index: 35
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
name: "Assets",
|
|
1134
|
+
index: 90
|
|
563
1135
|
}
|
|
1136
|
+
],
|
|
1137
|
+
nativeAssets: "Balances",
|
|
1138
|
+
otherAssets: [
|
|
1139
|
+
"Assets"
|
|
564
1140
|
]
|
|
565
1141
|
};
|
|
566
1142
|
var Laos = {
|
|
567
1143
|
defaultPallet: "PolkadotXcm",
|
|
568
1144
|
supportedPallets: [
|
|
1145
|
+
{
|
|
1146
|
+
name: "Balances",
|
|
1147
|
+
index: 10
|
|
1148
|
+
},
|
|
569
1149
|
{
|
|
570
1150
|
name: "PolkadotXcm",
|
|
571
1151
|
index: 31
|
|
572
1152
|
}
|
|
1153
|
+
],
|
|
1154
|
+
nativeAssets: "Balances",
|
|
1155
|
+
otherAssets: [
|
|
573
1156
|
]
|
|
574
1157
|
};
|
|
575
1158
|
var Jamton = {
|
|
576
1159
|
defaultPallet: "XTokens",
|
|
577
1160
|
supportedPallets: [
|
|
1161
|
+
{
|
|
1162
|
+
name: "Balances",
|
|
1163
|
+
index: 10
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
name: "Tokens",
|
|
1167
|
+
index: 12
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
name: "Currencies",
|
|
1171
|
+
index: 16
|
|
1172
|
+
},
|
|
578
1173
|
{
|
|
579
1174
|
name: "XTokens",
|
|
580
1175
|
index: 18
|
|
@@ -583,110 +1178,236 @@ var Jamton = {
|
|
|
583
1178
|
name: "PolkadotXcm",
|
|
584
1179
|
index: 31
|
|
585
1180
|
}
|
|
1181
|
+
],
|
|
1182
|
+
nativeAssets: "Balances",
|
|
1183
|
+
otherAssets: [
|
|
1184
|
+
"Currencies",
|
|
1185
|
+
"Tokens"
|
|
586
1186
|
]
|
|
587
1187
|
};
|
|
588
1188
|
var AssetHubWestend = {
|
|
589
1189
|
defaultPallet: "PolkadotXcm",
|
|
590
1190
|
supportedPallets: [
|
|
1191
|
+
{
|
|
1192
|
+
name: "Balances",
|
|
1193
|
+
index: 10
|
|
1194
|
+
},
|
|
591
1195
|
{
|
|
592
1196
|
name: "PolkadotXcm",
|
|
593
1197
|
index: 31
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
name: "Assets",
|
|
1201
|
+
index: 50
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
name: "ForeignAssets",
|
|
1205
|
+
index: 53
|
|
594
1206
|
}
|
|
1207
|
+
],
|
|
1208
|
+
nativeAssets: "Balances",
|
|
1209
|
+
otherAssets: [
|
|
1210
|
+
"Assets",
|
|
1211
|
+
"ForeignAssets"
|
|
595
1212
|
]
|
|
596
1213
|
};
|
|
597
1214
|
var BridgeHubWestend = {
|
|
598
1215
|
defaultPallet: "PolkadotXcm",
|
|
599
1216
|
supportedPallets: [
|
|
1217
|
+
{
|
|
1218
|
+
name: "Balances",
|
|
1219
|
+
index: 10
|
|
1220
|
+
},
|
|
600
1221
|
{
|
|
601
1222
|
name: "PolkadotXcm",
|
|
602
1223
|
index: 31
|
|
603
1224
|
}
|
|
1225
|
+
],
|
|
1226
|
+
nativeAssets: "Balances",
|
|
1227
|
+
otherAssets: [
|
|
604
1228
|
]
|
|
605
1229
|
};
|
|
606
1230
|
var CollectivesWestend = {
|
|
607
1231
|
defaultPallet: "PolkadotXcm",
|
|
608
1232
|
supportedPallets: [
|
|
1233
|
+
{
|
|
1234
|
+
name: "Balances",
|
|
1235
|
+
index: 10
|
|
1236
|
+
},
|
|
609
1237
|
{
|
|
610
1238
|
name: "PolkadotXcm",
|
|
611
1239
|
index: 31
|
|
612
1240
|
}
|
|
1241
|
+
],
|
|
1242
|
+
nativeAssets: "Balances",
|
|
1243
|
+
otherAssets: [
|
|
613
1244
|
]
|
|
614
1245
|
};
|
|
615
1246
|
var CoretimeWestend = {
|
|
616
1247
|
defaultPallet: "PolkadotXcm",
|
|
617
1248
|
supportedPallets: [
|
|
1249
|
+
{
|
|
1250
|
+
name: "Balances",
|
|
1251
|
+
index: 10
|
|
1252
|
+
},
|
|
618
1253
|
{
|
|
619
1254
|
name: "PolkadotXcm",
|
|
620
1255
|
index: 31
|
|
621
1256
|
}
|
|
1257
|
+
],
|
|
1258
|
+
nativeAssets: "Balances",
|
|
1259
|
+
otherAssets: [
|
|
622
1260
|
]
|
|
623
1261
|
};
|
|
624
1262
|
var PeopleWestend = {
|
|
625
1263
|
defaultPallet: "PolkadotXcm",
|
|
626
1264
|
supportedPallets: [
|
|
1265
|
+
{
|
|
1266
|
+
name: "Balances",
|
|
1267
|
+
index: 10
|
|
1268
|
+
},
|
|
627
1269
|
{
|
|
628
1270
|
name: "PolkadotXcm",
|
|
629
1271
|
index: 31
|
|
630
1272
|
}
|
|
1273
|
+
],
|
|
1274
|
+
nativeAssets: "Balances",
|
|
1275
|
+
otherAssets: [
|
|
631
1276
|
]
|
|
632
1277
|
};
|
|
633
1278
|
var Penpal = {
|
|
634
1279
|
defaultPallet: "PolkadotXcm",
|
|
635
1280
|
supportedPallets: [
|
|
1281
|
+
{
|
|
1282
|
+
name: "Balances",
|
|
1283
|
+
index: 10
|
|
1284
|
+
},
|
|
636
1285
|
{
|
|
637
1286
|
name: "PolkadotXcm",
|
|
638
1287
|
index: 31
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
name: "Assets",
|
|
1291
|
+
index: 50
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
name: "ForeignAssets",
|
|
1295
|
+
index: 51
|
|
639
1296
|
}
|
|
1297
|
+
],
|
|
1298
|
+
nativeAssets: "Balances",
|
|
1299
|
+
otherAssets: [
|
|
1300
|
+
"Assets",
|
|
1301
|
+
"ForeignAssets"
|
|
640
1302
|
]
|
|
641
1303
|
};
|
|
642
1304
|
var AssetHubPaseo = {
|
|
643
1305
|
defaultPallet: "PolkadotXcm",
|
|
644
1306
|
supportedPallets: [
|
|
1307
|
+
{
|
|
1308
|
+
name: "Balances",
|
|
1309
|
+
index: 10
|
|
1310
|
+
},
|
|
645
1311
|
{
|
|
646
1312
|
name: "PolkadotXcm",
|
|
647
1313
|
index: 31
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
name: "Assets",
|
|
1317
|
+
index: 50
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
name: "ForeignAssets",
|
|
1321
|
+
index: 53
|
|
648
1322
|
}
|
|
1323
|
+
],
|
|
1324
|
+
nativeAssets: "Balances",
|
|
1325
|
+
otherAssets: [
|
|
1326
|
+
"Assets",
|
|
1327
|
+
"ForeignAssets"
|
|
649
1328
|
]
|
|
650
1329
|
};
|
|
651
1330
|
var BridgeHubPaseo = {
|
|
652
1331
|
defaultPallet: "PolkadotXcm",
|
|
653
1332
|
supportedPallets: [
|
|
1333
|
+
{
|
|
1334
|
+
name: "Balances",
|
|
1335
|
+
index: 10
|
|
1336
|
+
},
|
|
654
1337
|
{
|
|
655
1338
|
name: "PolkadotXcm",
|
|
656
1339
|
index: 31
|
|
657
1340
|
}
|
|
1341
|
+
],
|
|
1342
|
+
nativeAssets: "Balances",
|
|
1343
|
+
otherAssets: [
|
|
658
1344
|
]
|
|
659
1345
|
};
|
|
660
1346
|
var CoretimePaseo = {
|
|
661
1347
|
defaultPallet: "PolkadotXcm",
|
|
662
1348
|
supportedPallets: [
|
|
1349
|
+
{
|
|
1350
|
+
name: "Balances",
|
|
1351
|
+
index: 10
|
|
1352
|
+
},
|
|
663
1353
|
{
|
|
664
1354
|
name: "PolkadotXcm",
|
|
665
1355
|
index: 31
|
|
666
1356
|
}
|
|
1357
|
+
],
|
|
1358
|
+
nativeAssets: "Balances",
|
|
1359
|
+
otherAssets: [
|
|
667
1360
|
]
|
|
668
1361
|
};
|
|
669
1362
|
var PAssetHub = {
|
|
670
1363
|
defaultPallet: "PolkadotXcm",
|
|
671
1364
|
supportedPallets: [
|
|
1365
|
+
{
|
|
1366
|
+
name: "Balances",
|
|
1367
|
+
index: 10
|
|
1368
|
+
},
|
|
672
1369
|
{
|
|
673
1370
|
name: "PolkadotXcm",
|
|
674
1371
|
index: 31
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
name: "Assets",
|
|
1375
|
+
index: 50
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
name: "ForeignAssets",
|
|
1379
|
+
index: 53
|
|
675
1380
|
}
|
|
1381
|
+
],
|
|
1382
|
+
nativeAssets: "Balances",
|
|
1383
|
+
otherAssets: [
|
|
1384
|
+
"Assets",
|
|
1385
|
+
"ForeignAssets"
|
|
676
1386
|
]
|
|
677
1387
|
};
|
|
678
1388
|
var PeoplePaseo = {
|
|
679
1389
|
defaultPallet: "PolkadotXcm",
|
|
680
1390
|
supportedPallets: [
|
|
1391
|
+
{
|
|
1392
|
+
name: "Balances",
|
|
1393
|
+
index: 10
|
|
1394
|
+
},
|
|
681
1395
|
{
|
|
682
1396
|
name: "PolkadotXcm",
|
|
683
1397
|
index: 31
|
|
684
1398
|
}
|
|
1399
|
+
],
|
|
1400
|
+
nativeAssets: "Balances",
|
|
1401
|
+
otherAssets: [
|
|
685
1402
|
]
|
|
686
1403
|
};
|
|
687
1404
|
var AjunaPaseo = {
|
|
688
1405
|
defaultPallet: "XTokens",
|
|
689
1406
|
supportedPallets: [
|
|
1407
|
+
{
|
|
1408
|
+
name: "Balances",
|
|
1409
|
+
index: 15
|
|
1410
|
+
},
|
|
690
1411
|
{
|
|
691
1412
|
name: "PolkadotXcm",
|
|
692
1413
|
index: 31
|
|
@@ -694,12 +1415,24 @@ var AjunaPaseo = {
|
|
|
694
1415
|
{
|
|
695
1416
|
name: "XTokens",
|
|
696
1417
|
index: 35
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
name: "Assets",
|
|
1421
|
+
index: 90
|
|
697
1422
|
}
|
|
1423
|
+
],
|
|
1424
|
+
nativeAssets: "Balances",
|
|
1425
|
+
otherAssets: [
|
|
1426
|
+
"Assets"
|
|
698
1427
|
]
|
|
699
1428
|
};
|
|
700
1429
|
var BifrostPaseo = {
|
|
701
1430
|
defaultPallet: "XTokens",
|
|
702
1431
|
supportedPallets: [
|
|
1432
|
+
{
|
|
1433
|
+
name: "Balances",
|
|
1434
|
+
index: 10
|
|
1435
|
+
},
|
|
703
1436
|
{
|
|
704
1437
|
name: "PolkadotXcm",
|
|
705
1438
|
index: 41
|
|
@@ -707,21 +1440,63 @@ var BifrostPaseo = {
|
|
|
707
1440
|
{
|
|
708
1441
|
name: "XTokens",
|
|
709
1442
|
index: 70
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
name: "Tokens",
|
|
1446
|
+
index: 71
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
name: "Currencies",
|
|
1450
|
+
index: 72
|
|
710
1451
|
}
|
|
1452
|
+
],
|
|
1453
|
+
nativeAssets: "Balances",
|
|
1454
|
+
otherAssets: [
|
|
1455
|
+
"Currencies",
|
|
1456
|
+
"Tokens"
|
|
711
1457
|
]
|
|
712
1458
|
};
|
|
713
1459
|
var HeimaPaseo = {
|
|
714
1460
|
defaultPallet: "PolkadotXcm",
|
|
715
1461
|
supportedPallets: [
|
|
1462
|
+
{
|
|
1463
|
+
name: "Balances",
|
|
1464
|
+
index: 10
|
|
1465
|
+
},
|
|
716
1466
|
{
|
|
717
1467
|
name: "PolkadotXcm",
|
|
718
1468
|
index: 51
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
name: "Assets",
|
|
1472
|
+
index: 56
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
name: "AssetManager",
|
|
1476
|
+
index: 64
|
|
719
1477
|
}
|
|
1478
|
+
],
|
|
1479
|
+
nativeAssets: "Balances",
|
|
1480
|
+
otherAssets: [
|
|
1481
|
+
"Assets",
|
|
1482
|
+
"AssetManager"
|
|
720
1483
|
]
|
|
721
1484
|
};
|
|
722
1485
|
var HydrationPaseo = {
|
|
723
1486
|
defaultPallet: "XTokens",
|
|
724
1487
|
supportedPallets: [
|
|
1488
|
+
{
|
|
1489
|
+
name: "Balances",
|
|
1490
|
+
index: 7
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
name: "Tokens",
|
|
1494
|
+
index: 77
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
name: "Currencies",
|
|
1498
|
+
index: 79
|
|
1499
|
+
},
|
|
725
1500
|
{
|
|
726
1501
|
name: "PolkadotXcm",
|
|
727
1502
|
index: 107
|
|
@@ -730,47 +1505,97 @@ var HydrationPaseo = {
|
|
|
730
1505
|
name: "XTokens",
|
|
731
1506
|
index: 137
|
|
732
1507
|
}
|
|
1508
|
+
],
|
|
1509
|
+
nativeAssets: "Balances",
|
|
1510
|
+
otherAssets: [
|
|
1511
|
+
"Currencies",
|
|
1512
|
+
"Tokens"
|
|
733
1513
|
]
|
|
734
1514
|
};
|
|
735
1515
|
var KiltPaseo = {
|
|
736
1516
|
defaultPallet: "PolkadotXcm",
|
|
737
1517
|
supportedPallets: [
|
|
1518
|
+
{
|
|
1519
|
+
name: "Balances",
|
|
1520
|
+
index: 6
|
|
1521
|
+
},
|
|
738
1522
|
{
|
|
739
1523
|
name: "PolkadotXcm",
|
|
740
1524
|
index: 83
|
|
741
1525
|
}
|
|
1526
|
+
],
|
|
1527
|
+
nativeAssets: "Balances",
|
|
1528
|
+
otherAssets: [
|
|
742
1529
|
]
|
|
743
1530
|
};
|
|
744
1531
|
var LaosPaseo = {
|
|
745
1532
|
defaultPallet: "PolkadotXcm",
|
|
746
1533
|
supportedPallets: [
|
|
1534
|
+
{
|
|
1535
|
+
name: "Balances",
|
|
1536
|
+
index: 10
|
|
1537
|
+
},
|
|
747
1538
|
{
|
|
748
1539
|
name: "PolkadotXcm",
|
|
749
1540
|
index: 31
|
|
750
1541
|
}
|
|
1542
|
+
],
|
|
1543
|
+
nativeAssets: "Balances",
|
|
1544
|
+
otherAssets: [
|
|
751
1545
|
]
|
|
752
1546
|
};
|
|
753
1547
|
var NeuroWebPaseo = {
|
|
754
1548
|
defaultPallet: "PolkadotXcm",
|
|
755
1549
|
supportedPallets: [
|
|
1550
|
+
{
|
|
1551
|
+
name: "Balances",
|
|
1552
|
+
index: 10
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
name: "Assets",
|
|
1556
|
+
index: 14
|
|
1557
|
+
},
|
|
756
1558
|
{
|
|
757
1559
|
name: "PolkadotXcm",
|
|
758
1560
|
index: 31
|
|
759
1561
|
}
|
|
1562
|
+
],
|
|
1563
|
+
nativeAssets: "Balances",
|
|
1564
|
+
otherAssets: [
|
|
1565
|
+
"Assets"
|
|
760
1566
|
]
|
|
761
1567
|
};
|
|
762
1568
|
var NodlePaseo = {
|
|
763
1569
|
defaultPallet: "PolkadotXcm",
|
|
764
1570
|
supportedPallets: [
|
|
1571
|
+
{
|
|
1572
|
+
name: "Balances",
|
|
1573
|
+
index: 2
|
|
1574
|
+
},
|
|
765
1575
|
{
|
|
766
1576
|
name: "PolkadotXcm",
|
|
767
1577
|
index: 35
|
|
768
1578
|
}
|
|
1579
|
+
],
|
|
1580
|
+
nativeAssets: "Balances",
|
|
1581
|
+
otherAssets: [
|
|
769
1582
|
]
|
|
770
1583
|
};
|
|
771
1584
|
var ZeitgeistPaseo = {
|
|
772
1585
|
defaultPallet: "XTokens",
|
|
773
1586
|
supportedPallets: [
|
|
1587
|
+
{
|
|
1588
|
+
name: "Balances",
|
|
1589
|
+
index: 10
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
name: "AssetManager",
|
|
1593
|
+
index: 40
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
name: "Tokens",
|
|
1597
|
+
index: 41
|
|
1598
|
+
},
|
|
774
1599
|
{
|
|
775
1600
|
name: "PolkadotXcm",
|
|
776
1601
|
index: 122
|
|
@@ -779,47 +1604,94 @@ var ZeitgeistPaseo = {
|
|
|
779
1604
|
name: "XTokens",
|
|
780
1605
|
index: 126
|
|
781
1606
|
}
|
|
1607
|
+
],
|
|
1608
|
+
nativeAssets: "Balances",
|
|
1609
|
+
otherAssets: [
|
|
1610
|
+
"Tokens",
|
|
1611
|
+
"AssetManager"
|
|
782
1612
|
]
|
|
783
1613
|
};
|
|
784
1614
|
var Westend = {
|
|
785
1615
|
defaultPallet: "XcmPallet",
|
|
786
1616
|
supportedPallets: [
|
|
1617
|
+
{
|
|
1618
|
+
name: "Balances",
|
|
1619
|
+
index: 4
|
|
1620
|
+
},
|
|
787
1621
|
{
|
|
788
1622
|
name: "XcmPallet",
|
|
789
1623
|
index: 99
|
|
790
1624
|
}
|
|
1625
|
+
],
|
|
1626
|
+
nativeAssets: "Balances",
|
|
1627
|
+
otherAssets: [
|
|
791
1628
|
]
|
|
792
1629
|
};
|
|
793
1630
|
var Paseo = {
|
|
794
1631
|
defaultPallet: "XcmPallet",
|
|
795
1632
|
supportedPallets: [
|
|
1633
|
+
{
|
|
1634
|
+
name: "Balances",
|
|
1635
|
+
index: 5
|
|
1636
|
+
},
|
|
796
1637
|
{
|
|
797
1638
|
name: "XcmPallet",
|
|
798
1639
|
index: 99
|
|
799
1640
|
}
|
|
1641
|
+
],
|
|
1642
|
+
nativeAssets: "Balances",
|
|
1643
|
+
otherAssets: [
|
|
800
1644
|
]
|
|
801
1645
|
};
|
|
802
1646
|
var EnergyWebX = {
|
|
803
1647
|
defaultPallet: "PolkadotXcm",
|
|
804
1648
|
supportedPallets: [
|
|
1649
|
+
{
|
|
1650
|
+
name: "Balances",
|
|
1651
|
+
index: 10
|
|
1652
|
+
},
|
|
805
1653
|
{
|
|
806
1654
|
name: "PolkadotXcm",
|
|
807
1655
|
index: 31
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
name: "Assets",
|
|
1659
|
+
index: 60
|
|
808
1660
|
}
|
|
1661
|
+
],
|
|
1662
|
+
nativeAssets: "Balances",
|
|
1663
|
+
otherAssets: [
|
|
1664
|
+
"Assets"
|
|
809
1665
|
]
|
|
810
1666
|
};
|
|
811
1667
|
var EnergyWebXPaseo = {
|
|
812
1668
|
defaultPallet: "PolkadotXcm",
|
|
813
1669
|
supportedPallets: [
|
|
1670
|
+
{
|
|
1671
|
+
name: "Balances",
|
|
1672
|
+
index: 10
|
|
1673
|
+
},
|
|
814
1674
|
{
|
|
815
1675
|
name: "PolkadotXcm",
|
|
816
1676
|
index: 31
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
name: "Assets",
|
|
1680
|
+
index: 60
|
|
817
1681
|
}
|
|
1682
|
+
],
|
|
1683
|
+
nativeAssets: "Balances",
|
|
1684
|
+
otherAssets: [
|
|
1685
|
+
"Assets"
|
|
818
1686
|
]
|
|
819
1687
|
};
|
|
820
1688
|
var IntegriteeKusama = {
|
|
821
1689
|
defaultPallet: "XTokens",
|
|
822
1690
|
supportedPallets: [
|
|
1691
|
+
{
|
|
1692
|
+
name: "Balances",
|
|
1693
|
+
index: 10
|
|
1694
|
+
},
|
|
823
1695
|
{
|
|
824
1696
|
name: "PolkadotXcm",
|
|
825
1697
|
index: 31
|
|
@@ -827,12 +1699,24 @@ var IntegriteeKusama = {
|
|
|
827
1699
|
{
|
|
828
1700
|
name: "XTokens",
|
|
829
1701
|
index: 34
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
name: "Assets",
|
|
1705
|
+
index: 41
|
|
830
1706
|
}
|
|
1707
|
+
],
|
|
1708
|
+
nativeAssets: "Balances",
|
|
1709
|
+
otherAssets: [
|
|
1710
|
+
"Assets"
|
|
831
1711
|
]
|
|
832
1712
|
};
|
|
833
1713
|
var IntegriteePaseo = {
|
|
834
1714
|
defaultPallet: "XTokens",
|
|
835
1715
|
supportedPallets: [
|
|
1716
|
+
{
|
|
1717
|
+
name: "Balances",
|
|
1718
|
+
index: 10
|
|
1719
|
+
},
|
|
836
1720
|
{
|
|
837
1721
|
name: "PolkadotXcm",
|
|
838
1722
|
index: 31
|
|
@@ -840,7 +1724,15 @@ var IntegriteePaseo = {
|
|
|
840
1724
|
{
|
|
841
1725
|
name: "XTokens",
|
|
842
1726
|
index: 34
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
name: "Assets",
|
|
1730
|
+
index: 41
|
|
843
1731
|
}
|
|
1732
|
+
],
|
|
1733
|
+
nativeAssets: "Balances",
|
|
1734
|
+
otherAssets: [
|
|
1735
|
+
"Assets"
|
|
844
1736
|
]
|
|
845
1737
|
};
|
|
846
1738
|
var pallets = {
|
|
@@ -1038,9 +1930,17 @@ var getPalletIndex = function getPalletIndex(chain, pallet) {
|
|
|
1038
1930
|
return p.name === pallet;
|
|
1039
1931
|
})) === null || _palletsMap$chain$sup === void 0 ? void 0 : _palletsMap$chain$sup.index;
|
|
1040
1932
|
};
|
|
1933
|
+
var getNativeAssetsPallet = function getNativeAssetsPallet(chain) {
|
|
1934
|
+
return palletsMap[chain].nativeAssets;
|
|
1935
|
+
};
|
|
1936
|
+
var getOtherAssetsPallets = function getOtherAssetsPallets(chain) {
|
|
1937
|
+
return palletsMap[chain].otherAssets;
|
|
1938
|
+
};
|
|
1041
1939
|
|
|
1042
1940
|
exports.SUPPORTED_PALLETS = SUPPORTED_PALLETS;
|
|
1043
1941
|
exports.getDefaultPallet = getDefaultPallet;
|
|
1942
|
+
exports.getNativeAssetsPallet = getNativeAssetsPallet;
|
|
1943
|
+
exports.getOtherAssetsPallets = getOtherAssetsPallets;
|
|
1044
1944
|
exports.getPalletIndex = getPalletIndex;
|
|
1045
1945
|
exports.getSupportedPallets = getSupportedPallets;
|
|
1046
1946
|
exports.getSupportedPalletsDetails = getSupportedPalletsDetails;
|