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