@dedot/chaintypes 0.35.0 → 0.37.0

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.
@@ -22,7 +22,7 @@ import type {
22
22
  XcmVersionedXcm,
23
23
  XcmVersionedAssets,
24
24
  SpWeightsWeightV2Weight,
25
- StagingXcmV4Location,
25
+ StagingXcmV5Location,
26
26
  XcmV3WeightLimit,
27
27
  StagingXcmExecutorAssetTransferTransferType,
28
28
  XcmVersionedAssetId,
@@ -1264,13 +1264,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
1264
1264
  * - `location`: The destination that is being described.
1265
1265
  * - `xcm_version`: The latest version of XCM that `location` supports.
1266
1266
  *
1267
- * @param {StagingXcmV4Location} location
1267
+ * @param {StagingXcmV5Location} location
1268
1268
  * @param {number} version
1269
1269
  **/
1270
1270
  forceXcmVersion: GenericTxCall<
1271
1271
  Rv,
1272
1272
  (
1273
- location: StagingXcmV4Location,
1273
+ location: StagingXcmV5Location,
1274
1274
  version: number,
1275
1275
  ) => ChainSubmittableExtrinsic<
1276
1276
  Rv,
@@ -1278,7 +1278,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
1278
1278
  pallet: 'PolkadotXcm';
1279
1279
  palletCall: {
1280
1280
  name: 'ForceXcmVersion';
1281
- params: { location: StagingXcmV4Location; version: number };
1281
+ params: { location: StagingXcmV5Location; version: number };
1282
1282
  };
1283
1283
  }
1284
1284
  >
@@ -6246,14 +6246,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6246
6246
  *
6247
6247
  * Weight: `O(1)`
6248
6248
  *
6249
- * @param {StagingXcmV4Location} id
6249
+ * @param {StagingXcmV5Location} id
6250
6250
  * @param {MultiAddressLike} admin
6251
6251
  * @param {bigint} minBalance
6252
6252
  **/
6253
6253
  create: GenericTxCall<
6254
6254
  Rv,
6255
6255
  (
6256
- id: StagingXcmV4Location,
6256
+ id: StagingXcmV5Location,
6257
6257
  admin: MultiAddressLike,
6258
6258
  minBalance: bigint,
6259
6259
  ) => ChainSubmittableExtrinsic<
@@ -6262,7 +6262,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6262
6262
  pallet: 'ForeignAssets';
6263
6263
  palletCall: {
6264
6264
  name: 'Create';
6265
- params: { id: StagingXcmV4Location; admin: MultiAddressLike; minBalance: bigint };
6265
+ params: { id: StagingXcmV5Location; admin: MultiAddressLike; minBalance: bigint };
6266
6266
  };
6267
6267
  }
6268
6268
  >
@@ -6289,7 +6289,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6289
6289
  *
6290
6290
  * Weight: `O(1)`
6291
6291
  *
6292
- * @param {StagingXcmV4Location} id
6292
+ * @param {StagingXcmV5Location} id
6293
6293
  * @param {MultiAddressLike} owner
6294
6294
  * @param {boolean} isSufficient
6295
6295
  * @param {bigint} minBalance
@@ -6297,7 +6297,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6297
6297
  forceCreate: GenericTxCall<
6298
6298
  Rv,
6299
6299
  (
6300
- id: StagingXcmV4Location,
6300
+ id: StagingXcmV5Location,
6301
6301
  owner: MultiAddressLike,
6302
6302
  isSufficient: boolean,
6303
6303
  minBalance: bigint,
@@ -6307,7 +6307,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6307
6307
  pallet: 'ForeignAssets';
6308
6308
  palletCall: {
6309
6309
  name: 'ForceCreate';
6310
- params: { id: StagingXcmV4Location; owner: MultiAddressLike; isSufficient: boolean; minBalance: bigint };
6310
+ params: { id: StagingXcmV5Location; owner: MultiAddressLike; isSufficient: boolean; minBalance: bigint };
6311
6311
  };
6312
6312
  }
6313
6313
  >
@@ -6324,17 +6324,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6324
6324
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
6325
6325
  * asset.
6326
6326
  *
6327
- * @param {StagingXcmV4Location} id
6327
+ * @param {StagingXcmV5Location} id
6328
6328
  **/
6329
6329
  startDestroy: GenericTxCall<
6330
6330
  Rv,
6331
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6331
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6332
6332
  Rv,
6333
6333
  {
6334
6334
  pallet: 'ForeignAssets';
6335
6335
  palletCall: {
6336
6336
  name: 'StartDestroy';
6337
- params: { id: StagingXcmV4Location };
6337
+ params: { id: StagingXcmV5Location };
6338
6338
  };
6339
6339
  }
6340
6340
  >
@@ -6354,17 +6354,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6354
6354
  *
6355
6355
  * Each call emits the `Event::DestroyedAccounts` event.
6356
6356
  *
6357
- * @param {StagingXcmV4Location} id
6357
+ * @param {StagingXcmV5Location} id
6358
6358
  **/
6359
6359
  destroyAccounts: GenericTxCall<
6360
6360
  Rv,
6361
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6361
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6362
6362
  Rv,
6363
6363
  {
6364
6364
  pallet: 'ForeignAssets';
6365
6365
  palletCall: {
6366
6366
  name: 'DestroyAccounts';
6367
- params: { id: StagingXcmV4Location };
6367
+ params: { id: StagingXcmV5Location };
6368
6368
  };
6369
6369
  }
6370
6370
  >
@@ -6384,17 +6384,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6384
6384
  *
6385
6385
  * Each call emits the `Event::DestroyedApprovals` event.
6386
6386
  *
6387
- * @param {StagingXcmV4Location} id
6387
+ * @param {StagingXcmV5Location} id
6388
6388
  **/
6389
6389
  destroyApprovals: GenericTxCall<
6390
6390
  Rv,
6391
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6391
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6392
6392
  Rv,
6393
6393
  {
6394
6394
  pallet: 'ForeignAssets';
6395
6395
  palletCall: {
6396
6396
  name: 'DestroyApprovals';
6397
- params: { id: StagingXcmV4Location };
6397
+ params: { id: StagingXcmV5Location };
6398
6398
  };
6399
6399
  }
6400
6400
  >
@@ -6412,17 +6412,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6412
6412
  *
6413
6413
  * Each successful call emits the `Event::Destroyed` event.
6414
6414
  *
6415
- * @param {StagingXcmV4Location} id
6415
+ * @param {StagingXcmV5Location} id
6416
6416
  **/
6417
6417
  finishDestroy: GenericTxCall<
6418
6418
  Rv,
6419
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6419
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6420
6420
  Rv,
6421
6421
  {
6422
6422
  pallet: 'ForeignAssets';
6423
6423
  palletCall: {
6424
6424
  name: 'FinishDestroy';
6425
- params: { id: StagingXcmV4Location };
6425
+ params: { id: StagingXcmV5Location };
6426
6426
  };
6427
6427
  }
6428
6428
  >
@@ -6442,14 +6442,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6442
6442
  * Weight: `O(1)`
6443
6443
  * Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
6444
6444
  *
6445
- * @param {StagingXcmV4Location} id
6445
+ * @param {StagingXcmV5Location} id
6446
6446
  * @param {MultiAddressLike} beneficiary
6447
6447
  * @param {bigint} amount
6448
6448
  **/
6449
6449
  mint: GenericTxCall<
6450
6450
  Rv,
6451
6451
  (
6452
- id: StagingXcmV4Location,
6452
+ id: StagingXcmV5Location,
6453
6453
  beneficiary: MultiAddressLike,
6454
6454
  amount: bigint,
6455
6455
  ) => ChainSubmittableExtrinsic<
@@ -6458,7 +6458,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6458
6458
  pallet: 'ForeignAssets';
6459
6459
  palletCall: {
6460
6460
  name: 'Mint';
6461
- params: { id: StagingXcmV4Location; beneficiary: MultiAddressLike; amount: bigint };
6461
+ params: { id: StagingXcmV5Location; beneficiary: MultiAddressLike; amount: bigint };
6462
6462
  };
6463
6463
  }
6464
6464
  >
@@ -6481,14 +6481,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6481
6481
  * Weight: `O(1)`
6482
6482
  * Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
6483
6483
  *
6484
- * @param {StagingXcmV4Location} id
6484
+ * @param {StagingXcmV5Location} id
6485
6485
  * @param {MultiAddressLike} who
6486
6486
  * @param {bigint} amount
6487
6487
  **/
6488
6488
  burn: GenericTxCall<
6489
6489
  Rv,
6490
6490
  (
6491
- id: StagingXcmV4Location,
6491
+ id: StagingXcmV5Location,
6492
6492
  who: MultiAddressLike,
6493
6493
  amount: bigint,
6494
6494
  ) => ChainSubmittableExtrinsic<
@@ -6497,7 +6497,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6497
6497
  pallet: 'ForeignAssets';
6498
6498
  palletCall: {
6499
6499
  name: 'Burn';
6500
- params: { id: StagingXcmV4Location; who: MultiAddressLike; amount: bigint };
6500
+ params: { id: StagingXcmV5Location; who: MultiAddressLike; amount: bigint };
6501
6501
  };
6502
6502
  }
6503
6503
  >
@@ -6523,14 +6523,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6523
6523
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
6524
6524
  * `target`.
6525
6525
  *
6526
- * @param {StagingXcmV4Location} id
6526
+ * @param {StagingXcmV5Location} id
6527
6527
  * @param {MultiAddressLike} target
6528
6528
  * @param {bigint} amount
6529
6529
  **/
6530
6530
  transfer: GenericTxCall<
6531
6531
  Rv,
6532
6532
  (
6533
- id: StagingXcmV4Location,
6533
+ id: StagingXcmV5Location,
6534
6534
  target: MultiAddressLike,
6535
6535
  amount: bigint,
6536
6536
  ) => ChainSubmittableExtrinsic<
@@ -6539,7 +6539,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6539
6539
  pallet: 'ForeignAssets';
6540
6540
  palletCall: {
6541
6541
  name: 'Transfer';
6542
- params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint };
6542
+ params: { id: StagingXcmV5Location; target: MultiAddressLike; amount: bigint };
6543
6543
  };
6544
6544
  }
6545
6545
  >
@@ -6565,14 +6565,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6565
6565
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
6566
6566
  * `target`.
6567
6567
  *
6568
- * @param {StagingXcmV4Location} id
6568
+ * @param {StagingXcmV5Location} id
6569
6569
  * @param {MultiAddressLike} target
6570
6570
  * @param {bigint} amount
6571
6571
  **/
6572
6572
  transferKeepAlive: GenericTxCall<
6573
6573
  Rv,
6574
6574
  (
6575
- id: StagingXcmV4Location,
6575
+ id: StagingXcmV5Location,
6576
6576
  target: MultiAddressLike,
6577
6577
  amount: bigint,
6578
6578
  ) => ChainSubmittableExtrinsic<
@@ -6581,7 +6581,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6581
6581
  pallet: 'ForeignAssets';
6582
6582
  palletCall: {
6583
6583
  name: 'TransferKeepAlive';
6584
- params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint };
6584
+ params: { id: StagingXcmV5Location; target: MultiAddressLike; amount: bigint };
6585
6585
  };
6586
6586
  }
6587
6587
  >
@@ -6608,7 +6608,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6608
6608
  * Modes: Pre-existence of `dest`; Post-existence of `source`; Account pre-existence of
6609
6609
  * `dest`.
6610
6610
  *
6611
- * @param {StagingXcmV4Location} id
6611
+ * @param {StagingXcmV5Location} id
6612
6612
  * @param {MultiAddressLike} source
6613
6613
  * @param {MultiAddressLike} dest
6614
6614
  * @param {bigint} amount
@@ -6616,7 +6616,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6616
6616
  forceTransfer: GenericTxCall<
6617
6617
  Rv,
6618
6618
  (
6619
- id: StagingXcmV4Location,
6619
+ id: StagingXcmV5Location,
6620
6620
  source: MultiAddressLike,
6621
6621
  dest: MultiAddressLike,
6622
6622
  amount: bigint,
@@ -6626,7 +6626,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6626
6626
  pallet: 'ForeignAssets';
6627
6627
  palletCall: {
6628
6628
  name: 'ForceTransfer';
6629
- params: { id: StagingXcmV4Location; source: MultiAddressLike; dest: MultiAddressLike; amount: bigint };
6629
+ params: { id: StagingXcmV5Location; source: MultiAddressLike; dest: MultiAddressLike; amount: bigint };
6630
6630
  };
6631
6631
  }
6632
6632
  >
@@ -6646,13 +6646,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6646
6646
  *
6647
6647
  * Weight: `O(1)`
6648
6648
  *
6649
- * @param {StagingXcmV4Location} id
6649
+ * @param {StagingXcmV5Location} id
6650
6650
  * @param {MultiAddressLike} who
6651
6651
  **/
6652
6652
  freeze: GenericTxCall<
6653
6653
  Rv,
6654
6654
  (
6655
- id: StagingXcmV4Location,
6655
+ id: StagingXcmV5Location,
6656
6656
  who: MultiAddressLike,
6657
6657
  ) => ChainSubmittableExtrinsic<
6658
6658
  Rv,
@@ -6660,7 +6660,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6660
6660
  pallet: 'ForeignAssets';
6661
6661
  palletCall: {
6662
6662
  name: 'Freeze';
6663
- params: { id: StagingXcmV4Location; who: MultiAddressLike };
6663
+ params: { id: StagingXcmV5Location; who: MultiAddressLike };
6664
6664
  };
6665
6665
  }
6666
6666
  >
@@ -6678,13 +6678,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6678
6678
  *
6679
6679
  * Weight: `O(1)`
6680
6680
  *
6681
- * @param {StagingXcmV4Location} id
6681
+ * @param {StagingXcmV5Location} id
6682
6682
  * @param {MultiAddressLike} who
6683
6683
  **/
6684
6684
  thaw: GenericTxCall<
6685
6685
  Rv,
6686
6686
  (
6687
- id: StagingXcmV4Location,
6687
+ id: StagingXcmV5Location,
6688
6688
  who: MultiAddressLike,
6689
6689
  ) => ChainSubmittableExtrinsic<
6690
6690
  Rv,
@@ -6692,7 +6692,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6692
6692
  pallet: 'ForeignAssets';
6693
6693
  palletCall: {
6694
6694
  name: 'Thaw';
6695
- params: { id: StagingXcmV4Location; who: MultiAddressLike };
6695
+ params: { id: StagingXcmV5Location; who: MultiAddressLike };
6696
6696
  };
6697
6697
  }
6698
6698
  >
@@ -6709,17 +6709,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6709
6709
  *
6710
6710
  * Weight: `O(1)`
6711
6711
  *
6712
- * @param {StagingXcmV4Location} id
6712
+ * @param {StagingXcmV5Location} id
6713
6713
  **/
6714
6714
  freezeAsset: GenericTxCall<
6715
6715
  Rv,
6716
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6716
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6717
6717
  Rv,
6718
6718
  {
6719
6719
  pallet: 'ForeignAssets';
6720
6720
  palletCall: {
6721
6721
  name: 'FreezeAsset';
6722
- params: { id: StagingXcmV4Location };
6722
+ params: { id: StagingXcmV5Location };
6723
6723
  };
6724
6724
  }
6725
6725
  >
@@ -6736,17 +6736,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6736
6736
  *
6737
6737
  * Weight: `O(1)`
6738
6738
  *
6739
- * @param {StagingXcmV4Location} id
6739
+ * @param {StagingXcmV5Location} id
6740
6740
  **/
6741
6741
  thawAsset: GenericTxCall<
6742
6742
  Rv,
6743
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6743
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6744
6744
  Rv,
6745
6745
  {
6746
6746
  pallet: 'ForeignAssets';
6747
6747
  palletCall: {
6748
6748
  name: 'ThawAsset';
6749
- params: { id: StagingXcmV4Location };
6749
+ params: { id: StagingXcmV5Location };
6750
6750
  };
6751
6751
  }
6752
6752
  >
@@ -6764,13 +6764,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6764
6764
  *
6765
6765
  * Weight: `O(1)`
6766
6766
  *
6767
- * @param {StagingXcmV4Location} id
6767
+ * @param {StagingXcmV5Location} id
6768
6768
  * @param {MultiAddressLike} owner
6769
6769
  **/
6770
6770
  transferOwnership: GenericTxCall<
6771
6771
  Rv,
6772
6772
  (
6773
- id: StagingXcmV4Location,
6773
+ id: StagingXcmV5Location,
6774
6774
  owner: MultiAddressLike,
6775
6775
  ) => ChainSubmittableExtrinsic<
6776
6776
  Rv,
@@ -6778,7 +6778,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6778
6778
  pallet: 'ForeignAssets';
6779
6779
  palletCall: {
6780
6780
  name: 'TransferOwnership';
6781
- params: { id: StagingXcmV4Location; owner: MultiAddressLike };
6781
+ params: { id: StagingXcmV5Location; owner: MultiAddressLike };
6782
6782
  };
6783
6783
  }
6784
6784
  >
@@ -6798,7 +6798,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6798
6798
  *
6799
6799
  * Weight: `O(1)`
6800
6800
  *
6801
- * @param {StagingXcmV4Location} id
6801
+ * @param {StagingXcmV5Location} id
6802
6802
  * @param {MultiAddressLike} issuer
6803
6803
  * @param {MultiAddressLike} admin
6804
6804
  * @param {MultiAddressLike} freezer
@@ -6806,7 +6806,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6806
6806
  setTeam: GenericTxCall<
6807
6807
  Rv,
6808
6808
  (
6809
- id: StagingXcmV4Location,
6809
+ id: StagingXcmV5Location,
6810
6810
  issuer: MultiAddressLike,
6811
6811
  admin: MultiAddressLike,
6812
6812
  freezer: MultiAddressLike,
@@ -6817,7 +6817,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6817
6817
  palletCall: {
6818
6818
  name: 'SetTeam';
6819
6819
  params: {
6820
- id: StagingXcmV4Location;
6820
+ id: StagingXcmV5Location;
6821
6821
  issuer: MultiAddressLike;
6822
6822
  admin: MultiAddressLike;
6823
6823
  freezer: MultiAddressLike;
@@ -6845,7 +6845,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6845
6845
  *
6846
6846
  * Weight: `O(1)`
6847
6847
  *
6848
- * @param {StagingXcmV4Location} id
6848
+ * @param {StagingXcmV5Location} id
6849
6849
  * @param {BytesLike} name
6850
6850
  * @param {BytesLike} symbol
6851
6851
  * @param {number} decimals
@@ -6853,7 +6853,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6853
6853
  setMetadata: GenericTxCall<
6854
6854
  Rv,
6855
6855
  (
6856
- id: StagingXcmV4Location,
6856
+ id: StagingXcmV5Location,
6857
6857
  name: BytesLike,
6858
6858
  symbol: BytesLike,
6859
6859
  decimals: number,
@@ -6863,7 +6863,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6863
6863
  pallet: 'ForeignAssets';
6864
6864
  palletCall: {
6865
6865
  name: 'SetMetadata';
6866
- params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number };
6866
+ params: { id: StagingXcmV5Location; name: BytesLike; symbol: BytesLike; decimals: number };
6867
6867
  };
6868
6868
  }
6869
6869
  >
@@ -6882,17 +6882,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6882
6882
  *
6883
6883
  * Weight: `O(1)`
6884
6884
  *
6885
- * @param {StagingXcmV4Location} id
6885
+ * @param {StagingXcmV5Location} id
6886
6886
  **/
6887
6887
  clearMetadata: GenericTxCall<
6888
6888
  Rv,
6889
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6889
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6890
6890
  Rv,
6891
6891
  {
6892
6892
  pallet: 'ForeignAssets';
6893
6893
  palletCall: {
6894
6894
  name: 'ClearMetadata';
6895
- params: { id: StagingXcmV4Location };
6895
+ params: { id: StagingXcmV5Location };
6896
6896
  };
6897
6897
  }
6898
6898
  >
@@ -6914,7 +6914,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6914
6914
  *
6915
6915
  * Weight: `O(N + S)` where N and S are the length of the name and symbol respectively.
6916
6916
  *
6917
- * @param {StagingXcmV4Location} id
6917
+ * @param {StagingXcmV5Location} id
6918
6918
  * @param {BytesLike} name
6919
6919
  * @param {BytesLike} symbol
6920
6920
  * @param {number} decimals
@@ -6923,7 +6923,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6923
6923
  forceSetMetadata: GenericTxCall<
6924
6924
  Rv,
6925
6925
  (
6926
- id: StagingXcmV4Location,
6926
+ id: StagingXcmV5Location,
6927
6927
  name: BytesLike,
6928
6928
  symbol: BytesLike,
6929
6929
  decimals: number,
@@ -6935,7 +6935,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6935
6935
  palletCall: {
6936
6936
  name: 'ForceSetMetadata';
6937
6937
  params: {
6938
- id: StagingXcmV4Location;
6938
+ id: StagingXcmV5Location;
6939
6939
  name: BytesLike;
6940
6940
  symbol: BytesLike;
6941
6941
  decimals: number;
@@ -6959,17 +6959,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6959
6959
  *
6960
6960
  * Weight: `O(1)`
6961
6961
  *
6962
- * @param {StagingXcmV4Location} id
6962
+ * @param {StagingXcmV5Location} id
6963
6963
  **/
6964
6964
  forceClearMetadata: GenericTxCall<
6965
6965
  Rv,
6966
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
6966
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
6967
6967
  Rv,
6968
6968
  {
6969
6969
  pallet: 'ForeignAssets';
6970
6970
  palletCall: {
6971
6971
  name: 'ForceClearMetadata';
6972
- params: { id: StagingXcmV4Location };
6972
+ params: { id: StagingXcmV5Location };
6973
6973
  };
6974
6974
  }
6975
6975
  >
@@ -6999,7 +6999,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
6999
6999
  *
7000
7000
  * Weight: `O(1)`
7001
7001
  *
7002
- * @param {StagingXcmV4Location} id
7002
+ * @param {StagingXcmV5Location} id
7003
7003
  * @param {MultiAddressLike} owner
7004
7004
  * @param {MultiAddressLike} issuer
7005
7005
  * @param {MultiAddressLike} admin
@@ -7011,7 +7011,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7011
7011
  forceAssetStatus: GenericTxCall<
7012
7012
  Rv,
7013
7013
  (
7014
- id: StagingXcmV4Location,
7014
+ id: StagingXcmV5Location,
7015
7015
  owner: MultiAddressLike,
7016
7016
  issuer: MultiAddressLike,
7017
7017
  admin: MultiAddressLike,
@@ -7026,7 +7026,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7026
7026
  palletCall: {
7027
7027
  name: 'ForceAssetStatus';
7028
7028
  params: {
7029
- id: StagingXcmV4Location;
7029
+ id: StagingXcmV5Location;
7030
7030
  owner: MultiAddressLike;
7031
7031
  issuer: MultiAddressLike;
7032
7032
  admin: MultiAddressLike;
@@ -7062,14 +7062,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7062
7062
  *
7063
7063
  * Weight: `O(1)`
7064
7064
  *
7065
- * @param {StagingXcmV4Location} id
7065
+ * @param {StagingXcmV5Location} id
7066
7066
  * @param {MultiAddressLike} delegate
7067
7067
  * @param {bigint} amount
7068
7068
  **/
7069
7069
  approveTransfer: GenericTxCall<
7070
7070
  Rv,
7071
7071
  (
7072
- id: StagingXcmV4Location,
7072
+ id: StagingXcmV5Location,
7073
7073
  delegate: MultiAddressLike,
7074
7074
  amount: bigint,
7075
7075
  ) => ChainSubmittableExtrinsic<
@@ -7078,7 +7078,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7078
7078
  pallet: 'ForeignAssets';
7079
7079
  palletCall: {
7080
7080
  name: 'ApproveTransfer';
7081
- params: { id: StagingXcmV4Location; delegate: MultiAddressLike; amount: bigint };
7081
+ params: { id: StagingXcmV5Location; delegate: MultiAddressLike; amount: bigint };
7082
7082
  };
7083
7083
  }
7084
7084
  >
@@ -7099,13 +7099,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7099
7099
  *
7100
7100
  * Weight: `O(1)`
7101
7101
  *
7102
- * @param {StagingXcmV4Location} id
7102
+ * @param {StagingXcmV5Location} id
7103
7103
  * @param {MultiAddressLike} delegate
7104
7104
  **/
7105
7105
  cancelApproval: GenericTxCall<
7106
7106
  Rv,
7107
7107
  (
7108
- id: StagingXcmV4Location,
7108
+ id: StagingXcmV5Location,
7109
7109
  delegate: MultiAddressLike,
7110
7110
  ) => ChainSubmittableExtrinsic<
7111
7111
  Rv,
@@ -7113,7 +7113,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7113
7113
  pallet: 'ForeignAssets';
7114
7114
  palletCall: {
7115
7115
  name: 'CancelApproval';
7116
- params: { id: StagingXcmV4Location; delegate: MultiAddressLike };
7116
+ params: { id: StagingXcmV5Location; delegate: MultiAddressLike };
7117
7117
  };
7118
7118
  }
7119
7119
  >
@@ -7134,14 +7134,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7134
7134
  *
7135
7135
  * Weight: `O(1)`
7136
7136
  *
7137
- * @param {StagingXcmV4Location} id
7137
+ * @param {StagingXcmV5Location} id
7138
7138
  * @param {MultiAddressLike} owner
7139
7139
  * @param {MultiAddressLike} delegate
7140
7140
  **/
7141
7141
  forceCancelApproval: GenericTxCall<
7142
7142
  Rv,
7143
7143
  (
7144
- id: StagingXcmV4Location,
7144
+ id: StagingXcmV5Location,
7145
7145
  owner: MultiAddressLike,
7146
7146
  delegate: MultiAddressLike,
7147
7147
  ) => ChainSubmittableExtrinsic<
@@ -7150,7 +7150,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7150
7150
  pallet: 'ForeignAssets';
7151
7151
  palletCall: {
7152
7152
  name: 'ForceCancelApproval';
7153
- params: { id: StagingXcmV4Location; owner: MultiAddressLike; delegate: MultiAddressLike };
7153
+ params: { id: StagingXcmV5Location; owner: MultiAddressLike; delegate: MultiAddressLike };
7154
7154
  };
7155
7155
  }
7156
7156
  >
@@ -7176,7 +7176,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7176
7176
  *
7177
7177
  * Weight: `O(1)`
7178
7178
  *
7179
- * @param {StagingXcmV4Location} id
7179
+ * @param {StagingXcmV5Location} id
7180
7180
  * @param {MultiAddressLike} owner
7181
7181
  * @param {MultiAddressLike} destination
7182
7182
  * @param {bigint} amount
@@ -7184,7 +7184,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7184
7184
  transferApproved: GenericTxCall<
7185
7185
  Rv,
7186
7186
  (
7187
- id: StagingXcmV4Location,
7187
+ id: StagingXcmV5Location,
7188
7188
  owner: MultiAddressLike,
7189
7189
  destination: MultiAddressLike,
7190
7190
  amount: bigint,
@@ -7195,7 +7195,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7195
7195
  palletCall: {
7196
7196
  name: 'TransferApproved';
7197
7197
  params: {
7198
- id: StagingXcmV4Location;
7198
+ id: StagingXcmV5Location;
7199
7199
  owner: MultiAddressLike;
7200
7200
  destination: MultiAddressLike;
7201
7201
  amount: bigint;
@@ -7216,17 +7216,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7216
7216
  *
7217
7217
  * Emits `Touched` event when successful.
7218
7218
  *
7219
- * @param {StagingXcmV4Location} id
7219
+ * @param {StagingXcmV5Location} id
7220
7220
  **/
7221
7221
  touch: GenericTxCall<
7222
7222
  Rv,
7223
- (id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
7223
+ (id: StagingXcmV5Location) => ChainSubmittableExtrinsic<
7224
7224
  Rv,
7225
7225
  {
7226
7226
  pallet: 'ForeignAssets';
7227
7227
  palletCall: {
7228
7228
  name: 'Touch';
7229
- params: { id: StagingXcmV4Location };
7229
+ params: { id: StagingXcmV5Location };
7230
7230
  };
7231
7231
  }
7232
7232
  >
@@ -7244,13 +7244,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7244
7244
  *
7245
7245
  * Emits `Refunded` event when successful.
7246
7246
  *
7247
- * @param {StagingXcmV4Location} id
7247
+ * @param {StagingXcmV5Location} id
7248
7248
  * @param {boolean} allowBurn
7249
7249
  **/
7250
7250
  refund: GenericTxCall<
7251
7251
  Rv,
7252
7252
  (
7253
- id: StagingXcmV4Location,
7253
+ id: StagingXcmV5Location,
7254
7254
  allowBurn: boolean,
7255
7255
  ) => ChainSubmittableExtrinsic<
7256
7256
  Rv,
@@ -7258,7 +7258,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7258
7258
  pallet: 'ForeignAssets';
7259
7259
  palletCall: {
7260
7260
  name: 'Refund';
7261
- params: { id: StagingXcmV4Location; allowBurn: boolean };
7261
+ params: { id: StagingXcmV5Location; allowBurn: boolean };
7262
7262
  };
7263
7263
  }
7264
7264
  >
@@ -7278,13 +7278,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7278
7278
  *
7279
7279
  * Emits `AssetMinBalanceChanged` event when successful.
7280
7280
  *
7281
- * @param {StagingXcmV4Location} id
7281
+ * @param {StagingXcmV5Location} id
7282
7282
  * @param {bigint} minBalance
7283
7283
  **/
7284
7284
  setMinBalance: GenericTxCall<
7285
7285
  Rv,
7286
7286
  (
7287
- id: StagingXcmV4Location,
7287
+ id: StagingXcmV5Location,
7288
7288
  minBalance: bigint,
7289
7289
  ) => ChainSubmittableExtrinsic<
7290
7290
  Rv,
@@ -7292,7 +7292,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7292
7292
  pallet: 'ForeignAssets';
7293
7293
  palletCall: {
7294
7294
  name: 'SetMinBalance';
7295
- params: { id: StagingXcmV4Location; minBalance: bigint };
7295
+ params: { id: StagingXcmV5Location; minBalance: bigint };
7296
7296
  };
7297
7297
  }
7298
7298
  >
@@ -7310,13 +7310,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7310
7310
  *
7311
7311
  * Emits `Touched` event when successful.
7312
7312
  *
7313
- * @param {StagingXcmV4Location} id
7313
+ * @param {StagingXcmV5Location} id
7314
7314
  * @param {MultiAddressLike} who
7315
7315
  **/
7316
7316
  touchOther: GenericTxCall<
7317
7317
  Rv,
7318
7318
  (
7319
- id: StagingXcmV4Location,
7319
+ id: StagingXcmV5Location,
7320
7320
  who: MultiAddressLike,
7321
7321
  ) => ChainSubmittableExtrinsic<
7322
7322
  Rv,
@@ -7324,7 +7324,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7324
7324
  pallet: 'ForeignAssets';
7325
7325
  palletCall: {
7326
7326
  name: 'TouchOther';
7327
- params: { id: StagingXcmV4Location; who: MultiAddressLike };
7327
+ params: { id: StagingXcmV5Location; who: MultiAddressLike };
7328
7328
  };
7329
7329
  }
7330
7330
  >
@@ -7342,13 +7342,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7342
7342
  *
7343
7343
  * Emits `Refunded` event when successful.
7344
7344
  *
7345
- * @param {StagingXcmV4Location} id
7345
+ * @param {StagingXcmV5Location} id
7346
7346
  * @param {MultiAddressLike} who
7347
7347
  **/
7348
7348
  refundOther: GenericTxCall<
7349
7349
  Rv,
7350
7350
  (
7351
- id: StagingXcmV4Location,
7351
+ id: StagingXcmV5Location,
7352
7352
  who: MultiAddressLike,
7353
7353
  ) => ChainSubmittableExtrinsic<
7354
7354
  Rv,
@@ -7356,7 +7356,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7356
7356
  pallet: 'ForeignAssets';
7357
7357
  palletCall: {
7358
7358
  name: 'RefundOther';
7359
- params: { id: StagingXcmV4Location; who: MultiAddressLike };
7359
+ params: { id: StagingXcmV5Location; who: MultiAddressLike };
7360
7360
  };
7361
7361
  }
7362
7362
  >
@@ -7374,13 +7374,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7374
7374
  *
7375
7375
  * Weight: `O(1)`
7376
7376
  *
7377
- * @param {StagingXcmV4Location} id
7377
+ * @param {StagingXcmV5Location} id
7378
7378
  * @param {MultiAddressLike} who
7379
7379
  **/
7380
7380
  block: GenericTxCall<
7381
7381
  Rv,
7382
7382
  (
7383
- id: StagingXcmV4Location,
7383
+ id: StagingXcmV5Location,
7384
7384
  who: MultiAddressLike,
7385
7385
  ) => ChainSubmittableExtrinsic<
7386
7386
  Rv,
@@ -7388,7 +7388,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7388
7388
  pallet: 'ForeignAssets';
7389
7389
  palletCall: {
7390
7390
  name: 'Block';
7391
- params: { id: StagingXcmV4Location; who: MultiAddressLike };
7391
+ params: { id: StagingXcmV5Location; who: MultiAddressLike };
7392
7392
  };
7393
7393
  }
7394
7394
  >
@@ -7412,14 +7412,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7412
7412
  * (false), or transfer everything except at least the minimum balance, which will
7413
7413
  * guarantee to keep the sender asset account alive (true).
7414
7414
  *
7415
- * @param {StagingXcmV4Location} id
7415
+ * @param {StagingXcmV5Location} id
7416
7416
  * @param {MultiAddressLike} dest
7417
7417
  * @param {boolean} keepAlive
7418
7418
  **/
7419
7419
  transferAll: GenericTxCall<
7420
7420
  Rv,
7421
7421
  (
7422
- id: StagingXcmV4Location,
7422
+ id: StagingXcmV5Location,
7423
7423
  dest: MultiAddressLike,
7424
7424
  keepAlive: boolean,
7425
7425
  ) => ChainSubmittableExtrinsic<
@@ -7428,7 +7428,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
7428
7428
  pallet: 'ForeignAssets';
7429
7429
  palletCall: {
7430
7430
  name: 'TransferAll';
7431
- params: { id: StagingXcmV4Location; dest: MultiAddressLike; keepAlive: boolean };
7431
+ params: { id: StagingXcmV5Location; dest: MultiAddressLike; keepAlive: boolean };
7432
7432
  };
7433
7433
  }
7434
7434
  >
@@ -8753,21 +8753,21 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8753
8753
  *
8754
8754
  * Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
8755
8755
  *
8756
- * @param {StagingXcmV4Location} asset1
8757
- * @param {StagingXcmV4Location} asset2
8756
+ * @param {StagingXcmV5Location} asset1
8757
+ * @param {StagingXcmV5Location} asset2
8758
8758
  **/
8759
8759
  createPool: GenericTxCall<
8760
8760
  Rv,
8761
8761
  (
8762
- asset1: StagingXcmV4Location,
8763
- asset2: StagingXcmV4Location,
8762
+ asset1: StagingXcmV5Location,
8763
+ asset2: StagingXcmV5Location,
8764
8764
  ) => ChainSubmittableExtrinsic<
8765
8765
  Rv,
8766
8766
  {
8767
8767
  pallet: 'AssetConversion';
8768
8768
  palletCall: {
8769
8769
  name: 'CreatePool';
8770
- params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location };
8770
+ params: { asset1: StagingXcmV5Location; asset2: StagingXcmV5Location };
8771
8771
  };
8772
8772
  }
8773
8773
  >
@@ -8789,8 +8789,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8789
8789
  * Once liquidity is added, someone may successfully call
8790
8790
  * [`Pallet::swap_exact_tokens_for_tokens`].
8791
8791
  *
8792
- * @param {StagingXcmV4Location} asset1
8793
- * @param {StagingXcmV4Location} asset2
8792
+ * @param {StagingXcmV5Location} asset1
8793
+ * @param {StagingXcmV5Location} asset2
8794
8794
  * @param {bigint} amount1Desired
8795
8795
  * @param {bigint} amount2Desired
8796
8796
  * @param {bigint} amount1Min
@@ -8800,8 +8800,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8800
8800
  addLiquidity: GenericTxCall<
8801
8801
  Rv,
8802
8802
  (
8803
- asset1: StagingXcmV4Location,
8804
- asset2: StagingXcmV4Location,
8803
+ asset1: StagingXcmV5Location,
8804
+ asset2: StagingXcmV5Location,
8805
8805
  amount1Desired: bigint,
8806
8806
  amount2Desired: bigint,
8807
8807
  amount1Min: bigint,
@@ -8814,8 +8814,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8814
8814
  palletCall: {
8815
8815
  name: 'AddLiquidity';
8816
8816
  params: {
8817
- asset1: StagingXcmV4Location;
8818
- asset2: StagingXcmV4Location;
8817
+ asset1: StagingXcmV5Location;
8818
+ asset2: StagingXcmV5Location;
8819
8819
  amount1Desired: bigint;
8820
8820
  amount2Desired: bigint;
8821
8821
  amount1Min: bigint;
@@ -8832,8 +8832,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8832
8832
  * burned in the process. With the usage of `amount1_min_receive`/`amount2_min_receive`
8833
8833
  * it's possible to control the min amount of returned tokens you're happy with.
8834
8834
  *
8835
- * @param {StagingXcmV4Location} asset1
8836
- * @param {StagingXcmV4Location} asset2
8835
+ * @param {StagingXcmV5Location} asset1
8836
+ * @param {StagingXcmV5Location} asset2
8837
8837
  * @param {bigint} lpTokenBurn
8838
8838
  * @param {bigint} amount1MinReceive
8839
8839
  * @param {bigint} amount2MinReceive
@@ -8842,8 +8842,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8842
8842
  removeLiquidity: GenericTxCall<
8843
8843
  Rv,
8844
8844
  (
8845
- asset1: StagingXcmV4Location,
8846
- asset2: StagingXcmV4Location,
8845
+ asset1: StagingXcmV5Location,
8846
+ asset2: StagingXcmV5Location,
8847
8847
  lpTokenBurn: bigint,
8848
8848
  amount1MinReceive: bigint,
8849
8849
  amount2MinReceive: bigint,
@@ -8855,8 +8855,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8855
8855
  palletCall: {
8856
8856
  name: 'RemoveLiquidity';
8857
8857
  params: {
8858
- asset1: StagingXcmV4Location;
8859
- asset2: StagingXcmV4Location;
8858
+ asset1: StagingXcmV5Location;
8859
+ asset2: StagingXcmV5Location;
8860
8860
  lpTokenBurn: bigint;
8861
8861
  amount1MinReceive: bigint;
8862
8862
  amount2MinReceive: bigint;
@@ -8875,7 +8875,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8875
8875
  * [`AssetConversionApi::quote_price_exact_tokens_for_tokens`] runtime call can be called
8876
8876
  * for a quote.
8877
8877
  *
8878
- * @param {Array<StagingXcmV4Location>} path
8878
+ * @param {Array<StagingXcmV5Location>} path
8879
8879
  * @param {bigint} amountIn
8880
8880
  * @param {bigint} amountOutMin
8881
8881
  * @param {AccountId32Like} sendTo
@@ -8884,7 +8884,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8884
8884
  swapExactTokensForTokens: GenericTxCall<
8885
8885
  Rv,
8886
8886
  (
8887
- path: Array<StagingXcmV4Location>,
8887
+ path: Array<StagingXcmV5Location>,
8888
8888
  amountIn: bigint,
8889
8889
  amountOutMin: bigint,
8890
8890
  sendTo: AccountId32Like,
@@ -8896,7 +8896,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8896
8896
  palletCall: {
8897
8897
  name: 'SwapExactTokensForTokens';
8898
8898
  params: {
8899
- path: Array<StagingXcmV4Location>;
8899
+ path: Array<StagingXcmV5Location>;
8900
8900
  amountIn: bigint;
8901
8901
  amountOutMin: bigint;
8902
8902
  sendTo: AccountId32Like;
@@ -8915,7 +8915,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8915
8915
  * [`AssetConversionApi::quote_price_tokens_for_exact_tokens`] runtime call can be called
8916
8916
  * for a quote.
8917
8917
  *
8918
- * @param {Array<StagingXcmV4Location>} path
8918
+ * @param {Array<StagingXcmV5Location>} path
8919
8919
  * @param {bigint} amountOut
8920
8920
  * @param {bigint} amountInMax
8921
8921
  * @param {AccountId32Like} sendTo
@@ -8924,7 +8924,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8924
8924
  swapTokensForExactTokens: GenericTxCall<
8925
8925
  Rv,
8926
8926
  (
8927
- path: Array<StagingXcmV4Location>,
8927
+ path: Array<StagingXcmV5Location>,
8928
8928
  amountOut: bigint,
8929
8929
  amountInMax: bigint,
8930
8930
  sendTo: AccountId32Like,
@@ -8936,7 +8936,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8936
8936
  palletCall: {
8937
8937
  name: 'SwapTokensForExactTokens';
8938
8938
  params: {
8939
- path: Array<StagingXcmV4Location>;
8939
+ path: Array<StagingXcmV5Location>;
8940
8940
  amountOut: bigint;
8941
8941
  amountInMax: bigint;
8942
8942
  sendTo: AccountId32Like;
@@ -8960,21 +8960,21 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
8960
8960
  *
8961
8961
  * Emits `Touched` event when successful.
8962
8962
  *
8963
- * @param {StagingXcmV4Location} asset1
8964
- * @param {StagingXcmV4Location} asset2
8963
+ * @param {StagingXcmV5Location} asset1
8964
+ * @param {StagingXcmV5Location} asset2
8965
8965
  **/
8966
8966
  touch: GenericTxCall<
8967
8967
  Rv,
8968
8968
  (
8969
- asset1: StagingXcmV4Location,
8970
- asset2: StagingXcmV4Location,
8969
+ asset1: StagingXcmV5Location,
8970
+ asset2: StagingXcmV5Location,
8971
8971
  ) => ChainSubmittableExtrinsic<
8972
8972
  Rv,
8973
8973
  {
8974
8974
  pallet: 'AssetConversion';
8975
8975
  palletCall: {
8976
8976
  name: 'Touch';
8977
- params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location };
8977
+ params: { asset1: StagingXcmV5Location; asset2: StagingXcmV5Location };
8978
8978
  };
8979
8979
  }
8980
8980
  >
@@ -9535,21 +9535,21 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
9535
9535
  *
9536
9536
  * Must be signed.
9537
9537
  *
9538
- * @param {StagingXcmV4Location} asset1
9539
- * @param {StagingXcmV4Location} asset2
9538
+ * @param {StagingXcmV5Location} asset1
9539
+ * @param {StagingXcmV5Location} asset2
9540
9540
  **/
9541
9541
  migrateToNewAccount: GenericTxCall<
9542
9542
  Rv,
9543
9543
  (
9544
- asset1: StagingXcmV4Location,
9545
- asset2: StagingXcmV4Location,
9544
+ asset1: StagingXcmV5Location,
9545
+ asset2: StagingXcmV5Location,
9546
9546
  ) => ChainSubmittableExtrinsic<
9547
9547
  Rv,
9548
9548
  {
9549
9549
  pallet: 'AssetConversionMigration';
9550
9550
  palletCall: {
9551
9551
  name: 'MigrateToNewAccount';
9552
- params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location };
9552
+ params: { asset1: StagingXcmV5Location; asset2: StagingXcmV5Location };
9553
9553
  };
9554
9554
  }
9555
9555
  >