-
Notifications
You must be signed in to change notification settings - Fork 11
/
ParaToSystem.ts
587 lines (547 loc) · 14.4 KB
/
ParaToSystem.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
// Copyright 2023 Parity Technologies (UK) Ltd.
import type { ApiPromise } from '@polkadot/api';
import type { AnyJson } from '@polkadot/types/types';
import { BaseError, BaseErrorsEnum } from '../errors';
import { Registry } from '../registry';
import { XCMAssetRegistryMultiLocation } from '../registry/types';
import { Direction } from '../types';
import { getFeeAssetItemIndex } from '../util/getFeeAssetItemIndex';
import { normalizeArrToStr } from '../util/normalizeArrToStr';
import { resolveMultiLocation } from '../util/resolveMultiLocation';
import type {
CreateAssetsOpts,
CreateFeeAssetItemOpts,
CreateWeightLimitOpts,
FungibleObjAsset,
FungibleObjAssetType,
FungibleObjMultiAsset,
FungibleStrAsset,
FungibleStrAssetType,
FungibleStrMultiAsset,
ICreateXcmType,
UnionXcAssetsMultiAsset,
UnionXcAssetsMultiAssets,
UnionXcAssetsMultiLocation,
UnionXcmMultiAssets,
UnionXcmMultiLocation,
XcmDestBeneficiary,
XcmDestBeneficiaryXcAssets,
XcmV2MultiLocation,
XcmV3MultiLocation,
XcmV4Location,
XcmWeight,
} from './types';
import { dedupeAssets } from './util/dedupeAssets';
import { getXcAssetMultiLocationByAssetId } from './util/getXcAssetMultiLocationByAssetId';
import { isParachainPrimaryNativeAsset } from './util/isParachainPrimaryNativeAsset';
import { sortAssetsAscending } from './util/sortAssetsAscending';
export const ParaToSystem: ICreateXcmType = {
/**
* Create a XcmVersionedMultiLocation type for a beneficiary.
*
* @param accountId The accountId of the beneficiary.
* @param xcmVersion The accepted xcm version.
*/
createBeneficiary: (accountId: string, xcmVersion?: number): XcmDestBeneficiary => {
if (xcmVersion == 2) {
return {
V2: {
parents: 0,
interior: {
X1: { AccountId32: { network: 'Any', id: accountId } },
},
},
};
}
if (xcmVersion === 3) {
return {
V3: {
parents: 0,
interior: {
X1: { AccountId32: { id: accountId } },
},
},
};
}
return {
V4: {
parents: 0,
interior: {
X1: [{ AccountId32: { id: accountId } }],
},
},
};
},
/**
* Create a XcmVersionedMultiLocation type for a destination.
*
* @param destId The parachain Id of the destination.
* @param xcmVersion The accepted xcm version.
*/
createDest: (destId: string, xcmVersion?: number): XcmDestBeneficiary => {
if (xcmVersion === 2) {
return {
V2: {
parents: 1,
interior: {
X1: {
Parachain: destId,
},
},
},
};
}
if (xcmVersion === 3) {
/**
* Ensure that the `parents` field is a `1` when sending a destination MultiLocation
* from a system parachain to a sovereign parachain.
*/
return {
V3: {
parents: 1,
interior: {
X1: {
Parachain: destId,
},
},
},
};
}
/**
* Ensure that the `parents` field is a `1` when sending a destination MultiLocation
* from a system parachain to a sovereign parachain.
*/
return {
V4: {
parents: 1,
interior: {
X1: [
{
Parachain: destId,
},
],
},
},
};
},
/**
* Create a VersionedMultiAsset structured type.
*
* @param amounts Amount per asset. It will match the `assets` length.
* @param xcmVersion The accepted xcm version.
* @param specName The specname of the chain the api is connected to.
* @param assets The assets to create into xcm `MultiAssets`.
* @param opts Options regarding the registry, and types of asset transfers.
*/
createAssets: async (
amounts: string[],
xcmVersion: number,
specName: string,
assets: string[],
opts: CreateAssetsOpts,
): Promise<UnionXcmMultiAssets> => {
const sortedAndDedupedMultiAssets = await createParaToSystemMultiAssets(
opts.api,
amounts,
specName,
assets,
xcmVersion,
opts.registry,
);
if (xcmVersion === 2) {
return Promise.resolve({
V2: sortedAndDedupedMultiAssets as FungibleStrMultiAsset[],
});
} else if (xcmVersion === 3) {
return Promise.resolve({
V3: sortedAndDedupedMultiAssets as FungibleStrMultiAsset[],
});
} else {
return Promise.resolve({
V4: sortedAndDedupedMultiAssets as FungibleStrAsset[],
});
}
},
/**
* Create an Xcm WeightLimit structured type.
*
* @param opts Options that are used for WeightLimit.
*/
createWeightLimit: (opts: CreateWeightLimitOpts): XcmWeight => {
return opts.weightLimit?.refTime && opts.weightLimit?.proofSize
? {
Limited: {
refTime: opts.weightLimit.refTime,
proofSize: opts.weightLimit.proofSize,
},
}
: { Unlimited: null };
},
/**
* Returns the correct `feeAssetItem` based on XCM direction.
*
* @param api ApiPromise
* @param opts Options that are used for fee asset construction.
*/
createFeeAssetItem: async (api: ApiPromise, opts: CreateFeeAssetItemOpts): Promise<number> => {
const { registry, paysWithFeeDest, specName, assetIds, amounts, xcmVersion } = opts;
if (xcmVersion && xcmVersion >= 3 && specName && amounts && assetIds && paysWithFeeDest) {
const multiAssets = await createParaToSystemMultiAssets(
api,
normalizeArrToStr(amounts),
specName,
assetIds,
xcmVersion,
registry,
);
const assetIndex = await getFeeAssetItemIndex(
api,
registry,
paysWithFeeDest,
multiAssets,
specName,
xcmVersion,
opts.isForeignAssetsTransfer,
);
return assetIndex;
}
return 0;
},
/**
* Create xTokens beneficiary structured type.
*
* @param destChainId The parachain Id of the destination.
* @param accountId The accountId of the beneficiary.
* @param xcmVersion The accepted xcm version.
*/
createXTokensBeneficiary: (
destChainId: string,
accountId: string,
xcmVersion: number,
): XcmDestBeneficiaryXcAssets => {
if (xcmVersion === 2) {
return {
V2: {
parents: 1,
interior: {
X2: [{ Parachain: destChainId }, { AccountId32: { id: accountId } }],
},
},
};
}
if (xcmVersion === 3) {
return {
V3: {
parents: 1,
interior: {
X2: [{ Parachain: destChainId }, { AccountId32: { id: accountId } }],
},
},
};
}
return {
V4: {
parents: 1,
interior: {
X2: [{ Parachain: destChainId }, { AccountId32: { id: accountId } }],
},
},
};
},
/**
* Create multiple xTokens Assets.
*
* @param amounts Amount per asset. It will match the `assets` length.
* @param xcmVersion The accepted xcm version.
* @param specName The specname of the chain the api is connected to.
* @param assets The assets to create into xcm `MultiAssets`.
* @param opts Options used to create xTokens `MultiAssets`.
*/
createXTokensAssets: async (
amounts: string[],
xcmVersion: number,
specName: string,
assets: string[],
opts: CreateAssetsOpts,
): Promise<UnionXcAssetsMultiAssets> => {
return await createXTokensMultiAssets(amounts, xcmVersion, specName, assets, opts);
},
/**
* Create a single xToken asset.
*
* @param amount Amount per asset. This will be of length 1.
* @param xcmVersion The accepted xcm version.
* @param specName The specname of the chain the api is connected to.
* @param assetId Single asset to be created into a `MultiAsset`.
* @param opts Options to create a single Asset.
*/
createXTokensAsset: async (
amount: string,
xcmVersion: number,
specName: string,
assetId: string,
opts: CreateAssetsOpts,
): Promise<UnionXcAssetsMultiAsset> => {
const { registry, api } = opts;
let multiAsset: FungibleObjAssetType | undefined;
let concreteMultiLocation: UnionXcmMultiLocation;
// check if asset is the parachains primary native asset
const isPrimaryParachainNativeAsset = isParachainPrimaryNativeAsset(
registry,
specName,
Direction.ParaToPara,
assetId,
);
if (isPrimaryParachainNativeAsset) {
const multiLocation =
xcmVersion < 4 ? { parents: 0, interior: { Here: '' } } : { parents: 0, interior: { X1: [{ Here: '' }] } };
concreteMultiLocation = resolveMultiLocation(multiLocation, xcmVersion);
if (xcmVersion < 4) {
multiAsset = {
id: {
Concrete: concreteMultiLocation,
},
fun: {
Fungible: { Fungible: amount },
},
};
} else {
multiAsset = {
id: concreteMultiLocation,
fun: {
Fungible: { Fungible: amount },
},
};
}
} else {
const xcAssetMultiLocationStr = await getXcAssetMultiLocationByAssetId(
api,
assetId,
specName,
xcmVersion,
registry,
);
const parsedMultiLocation = JSON.parse(xcAssetMultiLocationStr) as XCMAssetRegistryMultiLocation;
const xcAssetMultiLocation = parsedMultiLocation.v1 as unknown as AnyJson;
concreteMultiLocation = resolveMultiLocation(xcAssetMultiLocation, xcmVersion);
if (xcmVersion < 4) {
multiAsset = {
id: {
Concrete: concreteMultiLocation,
},
fun: {
Fungible: { Fungible: amount },
},
};
} else {
multiAsset = {
id: concreteMultiLocation,
fun: {
Fungible: { Fungible: amount },
},
};
}
}
if (xcmVersion === 2) {
return { V2: multiAsset as FungibleObjMultiAsset };
} else if (xcmVersion === 3) {
return { V3: multiAsset as FungibleObjMultiAsset };
} else {
return { V4: multiAsset as FungibleObjAsset };
}
},
/**
* Create an xTokens xcm `feeAssetItem`.
*
* @param opts Options used for creating `feeAssetItem`.
*/
createXTokensFeeAssetItem: (opts: CreateFeeAssetItemOpts): UnionXcAssetsMultiLocation => {
const { paysWithFeeDest, xcmVersion } = opts;
if (xcmVersion && paysWithFeeDest) {
const paysWithFeeMultiLocation = resolveMultiLocation(paysWithFeeDest, xcmVersion);
if (xcmVersion === 2) {
return {
V2: {
id: {
Concrete: paysWithFeeMultiLocation as XcmV2MultiLocation,
},
},
};
}
if (xcmVersion === 3) {
return {
V3: {
id: {
Concrete: paysWithFeeMultiLocation as XcmV3MultiLocation,
},
},
};
}
return {
V4: {
id: paysWithFeeMultiLocation as XcmV4Location,
},
};
}
throw new BaseError('failed to create xTokens fee multilocation', BaseErrorsEnum.InternalError);
},
};
/**
* Create `xTokens` MultiAssets.
*
* @param amounts Amount per asset. It will match the `assets` length.
* @param xcmVersion The accepted xcm version.
* @param specName The specname of the chain the api is connected to.
* @param assets The assets to create into xcm `MultiAssets`.
* @param opts Options used to create xTokens `MultiAssets`.
*/
const createXTokensMultiAssets = async (
amounts: string[],
xcmVersion: number,
specName: string,
assets: string[],
opts: CreateAssetsOpts,
): Promise<UnionXcAssetsMultiAssets> => {
const { registry, api } = opts;
let multiAssets: FungibleObjAssetType[] = [];
let multiAsset: FungibleObjAssetType;
for (let i = 0; i < assets.length; i++) {
const amount = amounts[i];
const assetId = assets[i];
const xcAssetMultiLocationStr = await getXcAssetMultiLocationByAssetId(
api,
assetId,
specName,
xcmVersion,
registry,
);
const parsedMultiLocation = JSON.parse(xcAssetMultiLocationStr) as XCMAssetRegistryMultiLocation;
const xcAssetMultiLocation = parsedMultiLocation.v1 as unknown as AnyJson;
const concreteMultiLocation = resolveMultiLocation(xcAssetMultiLocation, xcmVersion);
if (xcmVersion < 4) {
multiAsset = {
id: {
Concrete: concreteMultiLocation,
},
fun: {
Fungible: { Fungible: amount },
},
};
} else {
multiAsset = {
id: concreteMultiLocation,
fun: {
Fungible: { Fungible: amount },
},
};
}
multiAssets.push(multiAsset);
}
multiAssets = sortAssetsAscending(multiAssets) as FungibleObjAssetType[];
const sortedAndDedupedMultiAssets = dedupeAssets(multiAssets) as FungibleObjAssetType[];
if (xcmVersion === 2) {
return Promise.resolve({
V2: sortedAndDedupedMultiAssets as FungibleObjMultiAsset[],
});
} else if (xcmVersion === 3) {
return Promise.resolve({
V3: sortedAndDedupedMultiAssets as FungibleObjMultiAsset[],
});
} else {
return Promise.resolve({
V4: sortedAndDedupedMultiAssets as FungibleObjAsset[],
});
}
};
/**
* Create multiassets for ParaToSystem direction.
*
* @param api ApiPromise
* @param amounts Amount per asset. It will match the `assets` length.
* @param specName The specname of the chain the api is connected to.
* @param assets The assets to create into xcm `MultiAssets`.
* @param xcmVersion The accepted xcm version.
* @param registry The asset registry used to construct MultiLocations.
* @param isForeignAssetsTransfer Whether this transfer is a foreign assets transfer.
*/
const createParaToSystemMultiAssets = async (
api: ApiPromise,
amounts: string[],
specName: string,
assets: string[],
xcmVersion: number,
registry: Registry,
): Promise<FungibleStrAssetType[]> => {
let multiAssets: FungibleStrAssetType[] = [];
let multiAsset: FungibleStrAssetType;
let concreteMultiLocation;
const isPrimaryParachainNativeAsset = isParachainPrimaryNativeAsset(
registry,
specName,
Direction.ParaToSystem,
assets[0],
);
if (isPrimaryParachainNativeAsset) {
concreteMultiLocation = resolveMultiLocation(
{
parents: 0,
interior: { Here: '' },
},
xcmVersion,
);
if (xcmVersion < 4) {
multiAsset = {
id: {
Concrete: concreteMultiLocation,
},
fun: {
Fungible: amounts[0],
},
};
} else {
multiAsset = {
id: concreteMultiLocation,
fun: {
Fungible: amounts[0],
},
};
}
multiAssets.push(multiAsset);
} else {
for (let i = 0; i < assets.length; i++) {
const amount = amounts[i];
const assetId = assets[i];
const xcAssetMultiLocationStr = await getXcAssetMultiLocationByAssetId(
api,
assetId,
specName,
xcmVersion,
registry,
);
const parsedMultiLocation = JSON.parse(xcAssetMultiLocationStr) as XCMAssetRegistryMultiLocation;
const xcAssetMultiLocation = parsedMultiLocation.v1 as unknown as AnyJson;
concreteMultiLocation = resolveMultiLocation(xcAssetMultiLocation, xcmVersion);
if (xcmVersion < 4) {
multiAsset = {
id: {
Concrete: concreteMultiLocation,
},
fun: {
Fungible: amount,
},
};
} else {
multiAsset = {
id: concreteMultiLocation,
fun: {
Fungible: amount,
},
};
}
multiAssets.push(multiAsset);
}
}
multiAssets = sortAssetsAscending(multiAssets) as FungibleStrAssetType[];
const sortedAndDedupedMultiAssets = dedupeAssets(multiAssets) as FungibleStrAssetType[];
return sortedAndDedupedMultiAssets;
};