@dedot/chaintypes 0.14.0 → 0.16.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.
Files changed (51) hide show
  1. package/kusama/consts.d.ts +48 -30
  2. package/kusama/errors.d.ts +89 -100
  3. package/kusama/events.d.ts +87 -28
  4. package/kusama/index.d.ts +1 -1
  5. package/kusama/query.d.ts +241 -130
  6. package/kusama/runtime.d.ts +347 -95
  7. package/kusama/tx.d.ts +3309 -456
  8. package/kusama/types.d.ts +6341 -1092
  9. package/kusama-asset-hub/consts.d.ts +52 -3
  10. package/kusama-asset-hub/errors.d.ts +30 -5
  11. package/kusama-asset-hub/events.d.ts +61 -1
  12. package/kusama-asset-hub/index.d.ts +1 -1
  13. package/kusama-asset-hub/query.d.ts +100 -18
  14. package/kusama-asset-hub/runtime.d.ts +186 -15
  15. package/kusama-asset-hub/tx.d.ts +3074 -254
  16. package/kusama-asset-hub/types.d.ts +6190 -551
  17. package/package.json +2 -2
  18. package/paseo/index.d.ts +1 -1
  19. package/rococo/errors.d.ts +0 -10
  20. package/rococo/events.d.ts +33 -12
  21. package/rococo/index.d.ts +1 -1
  22. package/rococo/query.d.ts +52 -52
  23. package/rococo/runtime.d.ts +117 -58
  24. package/rococo/tx.d.ts +33 -33
  25. package/rococo/types.d.ts +191 -185
  26. package/rococo-asset-hub/consts.d.ts +2 -2
  27. package/rococo-asset-hub/events.d.ts +87 -80
  28. package/rococo-asset-hub/index.d.ts +1 -1
  29. package/rococo-asset-hub/query.d.ts +66 -54
  30. package/rococo-asset-hub/runtime.d.ts +12 -15
  31. package/rococo-asset-hub/tx.d.ts +250 -241
  32. package/rococo-asset-hub/types.d.ts +353 -404
  33. package/westend/consts.d.ts +9 -0
  34. package/westend/errors.d.ts +0 -10
  35. package/westend/events.d.ts +79 -13
  36. package/westend/index.d.ts +1 -1
  37. package/westend/query.d.ts +75 -52
  38. package/westend/runtime.d.ts +133 -58
  39. package/westend/tx.d.ts +72 -35
  40. package/westend/types.d.ts +308 -190
  41. package/westend-asset-hub/consts.d.ts +2 -2
  42. package/westend-asset-hub/events.d.ts +87 -80
  43. package/westend-asset-hub/index.d.ts +1 -1
  44. package/westend-asset-hub/query.d.ts +66 -54
  45. package/westend-asset-hub/runtime.d.ts +12 -15
  46. package/westend-asset-hub/tx.d.ts +250 -241
  47. package/westend-asset-hub/types.d.ts +353 -404
  48. package/westend-people/index.d.ts +1 -1
  49. package/westend-people/query.d.ts +12 -12
  50. package/westend-people/tx.d.ts +1 -58
  51. package/westend-people/types.d.ts +16 -62
@@ -10,12 +10,12 @@ import type {
10
10
  FixedArray,
11
11
  Bytes,
12
12
  Result,
13
+ FixedU128,
13
14
  Permill,
14
15
  BytesLike,
15
16
  MultiAddress,
16
17
  MultiAddressLike,
17
18
  AccountId32Like,
18
- FixedU128,
19
19
  Era,
20
20
  Header,
21
21
  UncheckedExtrinsic,
@@ -63,6 +63,7 @@ export type AssetHubRococoRuntimeRuntimeEvent =
63
63
  | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
64
64
  | { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
65
65
  | { pallet: 'Proxy'; palletEvent: PalletProxyEvent }
66
+ | { pallet: 'ToWestendXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
66
67
  | { pallet: 'Assets'; palletEvent: PalletAssetsEvent }
67
68
  | { pallet: 'Uniques'; palletEvent: PalletUniquesEvent }
68
69
  | { pallet: 'Nfts'; palletEvent: PalletNftsEvent }
@@ -266,54 +267,39 @@ export type PalletAssetConversionTxPaymentEvent =
266
267
  **/
267
268
  | {
268
269
  name: 'AssetTxFeePaid';
269
- data: { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV3MultilocationMultiLocation };
270
+ data: { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV4Location };
270
271
  }
271
272
  /**
272
273
  * A swap of the refund in native currency back to asset failed.
273
274
  **/
274
275
  | { name: 'AssetRefundFailed'; data: { nativeAmountKept: bigint } };
275
276
 
276
- export type StagingXcmV3MultilocationMultiLocation = { parents: number; interior: XcmV3Junctions };
277
+ export type StagingXcmV4Location = { parents: number; interior: StagingXcmV4Junctions };
277
278
 
278
- export type XcmV3Junctions =
279
+ export type StagingXcmV4Junctions =
279
280
  | { type: 'Here' }
280
- | { type: 'X1'; value: XcmV3Junction }
281
- | { type: 'X2'; value: [XcmV3Junction, XcmV3Junction] }
282
- | { type: 'X3'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction] }
283
- | { type: 'X4'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
284
- | { type: 'X5'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
285
- | { type: 'X6'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
286
- | {
287
- type: 'X7';
288
- value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction];
289
- }
290
- | {
291
- type: 'X8';
292
- value: [
293
- XcmV3Junction,
294
- XcmV3Junction,
295
- XcmV3Junction,
296
- XcmV3Junction,
297
- XcmV3Junction,
298
- XcmV3Junction,
299
- XcmV3Junction,
300
- XcmV3Junction,
301
- ];
302
- };
281
+ | { type: 'X1'; value: FixedArray<StagingXcmV4Junction, 1> }
282
+ | { type: 'X2'; value: FixedArray<StagingXcmV4Junction, 2> }
283
+ | { type: 'X3'; value: FixedArray<StagingXcmV4Junction, 3> }
284
+ | { type: 'X4'; value: FixedArray<StagingXcmV4Junction, 4> }
285
+ | { type: 'X5'; value: FixedArray<StagingXcmV4Junction, 5> }
286
+ | { type: 'X6'; value: FixedArray<StagingXcmV4Junction, 6> }
287
+ | { type: 'X7'; value: FixedArray<StagingXcmV4Junction, 7> }
288
+ | { type: 'X8'; value: FixedArray<StagingXcmV4Junction, 8> };
303
289
 
304
- export type XcmV3Junction =
290
+ export type StagingXcmV4Junction =
305
291
  | { type: 'Parachain'; value: number }
306
- | { type: 'AccountId32'; value: { network?: XcmV3JunctionNetworkId | undefined; id: FixedBytes<32> } }
307
- | { type: 'AccountIndex64'; value: { network?: XcmV3JunctionNetworkId | undefined; index: bigint } }
308
- | { type: 'AccountKey20'; value: { network?: XcmV3JunctionNetworkId | undefined; key: FixedBytes<20> } }
292
+ | { type: 'AccountId32'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; id: FixedBytes<32> } }
293
+ | { type: 'AccountIndex64'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; index: bigint } }
294
+ | { type: 'AccountKey20'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; key: FixedBytes<20> } }
309
295
  | { type: 'PalletInstance'; value: number }
310
296
  | { type: 'GeneralIndex'; value: bigint }
311
297
  | { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
312
298
  | { type: 'OnlyChild' }
313
299
  | { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
314
- | { type: 'GlobalConsensus'; value: XcmV3JunctionNetworkId };
300
+ | { type: 'GlobalConsensus'; value: StagingXcmV4JunctionNetworkId };
315
301
 
316
- export type XcmV3JunctionNetworkId =
302
+ export type StagingXcmV4JunctionNetworkId =
317
303
  | { type: 'ByGenesis'; value: FixedBytes<32> }
318
304
  | { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
319
305
  | { type: 'Polkadot' }
@@ -635,44 +621,6 @@ export type XcmV3TraitsError =
635
621
  | { type: 'WeightNotComputable' }
636
622
  | { type: 'ExceedsStackLimit' };
637
623
 
638
- export type StagingXcmV4Location = { parents: number; interior: StagingXcmV4Junctions };
639
-
640
- export type StagingXcmV4Junctions =
641
- | { type: 'Here' }
642
- | { type: 'X1'; value: FixedArray<StagingXcmV4Junction, 1> }
643
- | { type: 'X2'; value: FixedArray<StagingXcmV4Junction, 2> }
644
- | { type: 'X3'; value: FixedArray<StagingXcmV4Junction, 3> }
645
- | { type: 'X4'; value: FixedArray<StagingXcmV4Junction, 4> }
646
- | { type: 'X5'; value: FixedArray<StagingXcmV4Junction, 5> }
647
- | { type: 'X6'; value: FixedArray<StagingXcmV4Junction, 6> }
648
- | { type: 'X7'; value: FixedArray<StagingXcmV4Junction, 7> }
649
- | { type: 'X8'; value: FixedArray<StagingXcmV4Junction, 8> };
650
-
651
- export type StagingXcmV4Junction =
652
- | { type: 'Parachain'; value: number }
653
- | { type: 'AccountId32'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; id: FixedBytes<32> } }
654
- | { type: 'AccountIndex64'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; index: bigint } }
655
- | { type: 'AccountKey20'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; key: FixedBytes<20> } }
656
- | { type: 'PalletInstance'; value: number }
657
- | { type: 'GeneralIndex'; value: bigint }
658
- | { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
659
- | { type: 'OnlyChild' }
660
- | { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
661
- | { type: 'GlobalConsensus'; value: StagingXcmV4JunctionNetworkId };
662
-
663
- export type StagingXcmV4JunctionNetworkId =
664
- | { type: 'ByGenesis'; value: FixedBytes<32> }
665
- | { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
666
- | { type: 'Polkadot' }
667
- | { type: 'Kusama' }
668
- | { type: 'Westend' }
669
- | { type: 'Rococo' }
670
- | { type: 'Wococo' }
671
- | { type: 'Ethereum'; value: { chainId: bigint } }
672
- | { type: 'BitcoinCore' }
673
- | { type: 'BitcoinCash' }
674
- | { type: 'PolkadotBulletin' };
675
-
676
624
  export type StagingXcmV4Xcm = Array<StagingXcmV4Instruction>;
677
625
 
678
626
  export type StagingXcmV4Instruction =
@@ -928,6 +876,59 @@ export type XcmV3MultiassetAssetId =
928
876
  | { type: 'Concrete'; value: StagingXcmV3MultilocationMultiLocation }
929
877
  | { type: 'Abstract'; value: FixedBytes<32> };
930
878
 
879
+ export type StagingXcmV3MultilocationMultiLocation = { parents: number; interior: XcmV3Junctions };
880
+
881
+ export type XcmV3Junctions =
882
+ | { type: 'Here' }
883
+ | { type: 'X1'; value: XcmV3Junction }
884
+ | { type: 'X2'; value: [XcmV3Junction, XcmV3Junction] }
885
+ | { type: 'X3'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction] }
886
+ | { type: 'X4'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
887
+ | { type: 'X5'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
888
+ | { type: 'X6'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
889
+ | {
890
+ type: 'X7';
891
+ value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction];
892
+ }
893
+ | {
894
+ type: 'X8';
895
+ value: [
896
+ XcmV3Junction,
897
+ XcmV3Junction,
898
+ XcmV3Junction,
899
+ XcmV3Junction,
900
+ XcmV3Junction,
901
+ XcmV3Junction,
902
+ XcmV3Junction,
903
+ XcmV3Junction,
904
+ ];
905
+ };
906
+
907
+ export type XcmV3Junction =
908
+ | { type: 'Parachain'; value: number }
909
+ | { type: 'AccountId32'; value: { network?: XcmV3JunctionNetworkId | undefined; id: FixedBytes<32> } }
910
+ | { type: 'AccountIndex64'; value: { network?: XcmV3JunctionNetworkId | undefined; index: bigint } }
911
+ | { type: 'AccountKey20'; value: { network?: XcmV3JunctionNetworkId | undefined; key: FixedBytes<20> } }
912
+ | { type: 'PalletInstance'; value: number }
913
+ | { type: 'GeneralIndex'; value: bigint }
914
+ | { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
915
+ | { type: 'OnlyChild' }
916
+ | { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
917
+ | { type: 'GlobalConsensus'; value: XcmV3JunctionNetworkId };
918
+
919
+ export type XcmV3JunctionNetworkId =
920
+ | { type: 'ByGenesis'; value: FixedBytes<32> }
921
+ | { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
922
+ | { type: 'Polkadot' }
923
+ | { type: 'Kusama' }
924
+ | { type: 'Westend' }
925
+ | { type: 'Rococo' }
926
+ | { type: 'Wococo' }
927
+ | { type: 'Ethereum'; value: { chainId: bigint } }
928
+ | { type: 'BitcoinCore' }
929
+ | { type: 'BitcoinCash' }
930
+ | { type: 'PolkadotBulletin' };
931
+
931
932
  export type XcmV3MultiassetFungibility =
932
933
  | { type: 'Fungible'; value: bigint }
933
934
  | { type: 'NonFungible'; value: XcmV3MultiassetAssetInstance };
@@ -1223,6 +1224,35 @@ export type AssetHubRococoRuntimeProxyType =
1223
1224
  | 'AssetManager'
1224
1225
  | 'Collator';
1225
1226
 
1227
+ /**
1228
+ * The `Event` enum of this pallet
1229
+ **/
1230
+ export type PalletXcmBridgeHubRouterEvent =
1231
+ /**
1232
+ * Delivery fee factor has been decreased.
1233
+ **/
1234
+ | {
1235
+ name: 'DeliveryFeeFactorDecreased';
1236
+ data: {
1237
+ /**
1238
+ * New value of the `DeliveryFeeFactor`.
1239
+ **/
1240
+ newValue: FixedU128;
1241
+ };
1242
+ }
1243
+ /**
1244
+ * Delivery fee factor has been increased.
1245
+ **/
1246
+ | {
1247
+ name: 'DeliveryFeeFactorIncreased';
1248
+ data: {
1249
+ /**
1250
+ * New value of the `DeliveryFeeFactor`.
1251
+ **/
1252
+ newValue: FixedU128;
1253
+ };
1254
+ };
1255
+
1226
1256
  /**
1227
1257
  * The `Event` enum of this pallet
1228
1258
  **/
@@ -1715,119 +1745,94 @@ export type PalletAssetsEvent002 =
1715
1745
  /**
1716
1746
  * Some asset class was created.
1717
1747
  **/
1718
- | {
1719
- name: 'Created';
1720
- data: { assetId: StagingXcmV3MultilocationMultiLocation; creator: AccountId32; owner: AccountId32 };
1721
- }
1748
+ | { name: 'Created'; data: { assetId: StagingXcmV4Location; creator: AccountId32; owner: AccountId32 } }
1722
1749
  /**
1723
1750
  * Some assets were issued.
1724
1751
  **/
1725
- | { name: 'Issued'; data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; amount: bigint } }
1752
+ | { name: 'Issued'; data: { assetId: StagingXcmV4Location; owner: AccountId32; amount: bigint } }
1726
1753
  /**
1727
1754
  * Some assets were transferred.
1728
1755
  **/
1729
- | {
1730
- name: 'Transferred';
1731
- data: { assetId: StagingXcmV3MultilocationMultiLocation; from: AccountId32; to: AccountId32; amount: bigint };
1732
- }
1756
+ | { name: 'Transferred'; data: { assetId: StagingXcmV4Location; from: AccountId32; to: AccountId32; amount: bigint } }
1733
1757
  /**
1734
1758
  * Some assets were destroyed.
1735
1759
  **/
1736
- | { name: 'Burned'; data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; balance: bigint } }
1760
+ | { name: 'Burned'; data: { assetId: StagingXcmV4Location; owner: AccountId32; balance: bigint } }
1737
1761
  /**
1738
1762
  * The management team changed.
1739
1763
  **/
1740
1764
  | {
1741
1765
  name: 'TeamChanged';
1742
- data: {
1743
- assetId: StagingXcmV3MultilocationMultiLocation;
1744
- issuer: AccountId32;
1745
- admin: AccountId32;
1746
- freezer: AccountId32;
1747
- };
1766
+ data: { assetId: StagingXcmV4Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 };
1748
1767
  }
1749
1768
  /**
1750
1769
  * The owner changed.
1751
1770
  **/
1752
- | { name: 'OwnerChanged'; data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32 } }
1771
+ | { name: 'OwnerChanged'; data: { assetId: StagingXcmV4Location; owner: AccountId32 } }
1753
1772
  /**
1754
1773
  * Some account `who` was frozen.
1755
1774
  **/
1756
- | { name: 'Frozen'; data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 } }
1775
+ | { name: 'Frozen'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
1757
1776
  /**
1758
1777
  * Some account `who` was thawed.
1759
1778
  **/
1760
- | { name: 'Thawed'; data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 } }
1779
+ | { name: 'Thawed'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
1761
1780
  /**
1762
1781
  * Some asset `asset_id` was frozen.
1763
1782
  **/
1764
- | { name: 'AssetFrozen'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1783
+ | { name: 'AssetFrozen'; data: { assetId: StagingXcmV4Location } }
1765
1784
  /**
1766
1785
  * Some asset `asset_id` was thawed.
1767
1786
  **/
1768
- | { name: 'AssetThawed'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1787
+ | { name: 'AssetThawed'; data: { assetId: StagingXcmV4Location } }
1769
1788
  /**
1770
1789
  * Accounts were destroyed for given asset.
1771
1790
  **/
1772
1791
  | {
1773
1792
  name: 'AccountsDestroyed';
1774
- data: { assetId: StagingXcmV3MultilocationMultiLocation; accountsDestroyed: number; accountsRemaining: number };
1793
+ data: { assetId: StagingXcmV4Location; accountsDestroyed: number; accountsRemaining: number };
1775
1794
  }
1776
1795
  /**
1777
1796
  * Approvals were destroyed for given asset.
1778
1797
  **/
1779
1798
  | {
1780
1799
  name: 'ApprovalsDestroyed';
1781
- data: { assetId: StagingXcmV3MultilocationMultiLocation; approvalsDestroyed: number; approvalsRemaining: number };
1800
+ data: { assetId: StagingXcmV4Location; approvalsDestroyed: number; approvalsRemaining: number };
1782
1801
  }
1783
1802
  /**
1784
1803
  * An asset class is in the process of being destroyed.
1785
1804
  **/
1786
- | { name: 'DestructionStarted'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1805
+ | { name: 'DestructionStarted'; data: { assetId: StagingXcmV4Location } }
1787
1806
  /**
1788
1807
  * An asset class was destroyed.
1789
1808
  **/
1790
- | { name: 'Destroyed'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1809
+ | { name: 'Destroyed'; data: { assetId: StagingXcmV4Location } }
1791
1810
  /**
1792
1811
  * Some asset class was force-created.
1793
1812
  **/
1794
- | { name: 'ForceCreated'; data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32 } }
1813
+ | { name: 'ForceCreated'; data: { assetId: StagingXcmV4Location; owner: AccountId32 } }
1795
1814
  /**
1796
1815
  * New metadata has been set for an asset.
1797
1816
  **/
1798
1817
  | {
1799
1818
  name: 'MetadataSet';
1800
- data: {
1801
- assetId: StagingXcmV3MultilocationMultiLocation;
1802
- name: Bytes;
1803
- symbol: Bytes;
1804
- decimals: number;
1805
- isFrozen: boolean;
1806
- };
1819
+ data: { assetId: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean };
1807
1820
  }
1808
1821
  /**
1809
1822
  * Metadata has been cleared for an asset.
1810
1823
  **/
1811
- | { name: 'MetadataCleared'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1824
+ | { name: 'MetadataCleared'; data: { assetId: StagingXcmV4Location } }
1812
1825
  /**
1813
1826
  * (Additional) funds have been approved for transfer to a destination account.
1814
1827
  **/
1815
1828
  | {
1816
1829
  name: 'ApprovedTransfer';
1817
- data: {
1818
- assetId: StagingXcmV3MultilocationMultiLocation;
1819
- source: AccountId32;
1820
- delegate: AccountId32;
1821
- amount: bigint;
1822
- };
1830
+ data: { assetId: StagingXcmV4Location; source: AccountId32; delegate: AccountId32; amount: bigint };
1823
1831
  }
1824
1832
  /**
1825
1833
  * An approval for account `delegate` was cancelled by `owner`.
1826
1834
  **/
1827
- | {
1828
- name: 'ApprovalCancelled';
1829
- data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; delegate: AccountId32 };
1830
- }
1835
+ | { name: 'ApprovalCancelled'; data: { assetId: StagingXcmV4Location; owner: AccountId32; delegate: AccountId32 } }
1831
1836
  /**
1832
1837
  * An `amount` was transferred in its entirety from `owner` to `destination` by
1833
1838
  * the approved `delegate`.
@@ -1835,7 +1840,7 @@ export type PalletAssetsEvent002 =
1835
1840
  | {
1836
1841
  name: 'TransferredApproved';
1837
1842
  data: {
1838
- assetId: StagingXcmV3MultilocationMultiLocation;
1843
+ assetId: StagingXcmV4Location;
1839
1844
  owner: AccountId32;
1840
1845
  delegate: AccountId32;
1841
1846
  destination: AccountId32;
@@ -1845,30 +1850,27 @@ export type PalletAssetsEvent002 =
1845
1850
  /**
1846
1851
  * An asset has had its attributes changed by the `Force` origin.
1847
1852
  **/
1848
- | { name: 'AssetStatusChanged'; data: { assetId: StagingXcmV3MultilocationMultiLocation } }
1853
+ | { name: 'AssetStatusChanged'; data: { assetId: StagingXcmV4Location } }
1849
1854
  /**
1850
1855
  * The min_balance of an asset has been updated by the asset owner.
1851
1856
  **/
1852
- | { name: 'AssetMinBalanceChanged'; data: { assetId: StagingXcmV3MultilocationMultiLocation; newMinBalance: bigint } }
1857
+ | { name: 'AssetMinBalanceChanged'; data: { assetId: StagingXcmV4Location; newMinBalance: bigint } }
1853
1858
  /**
1854
1859
  * Some account `who` was created with a deposit from `depositor`.
1855
1860
  **/
1856
- | {
1857
- name: 'Touched';
1858
- data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; depositor: AccountId32 };
1859
- }
1861
+ | { name: 'Touched'; data: { assetId: StagingXcmV4Location; who: AccountId32; depositor: AccountId32 } }
1860
1862
  /**
1861
1863
  * Some account `who` was blocked.
1862
1864
  **/
1863
- | { name: 'Blocked'; data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 } }
1865
+ | { name: 'Blocked'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
1864
1866
  /**
1865
1867
  * Some assets were deposited (e.g. for transaction fees).
1866
1868
  **/
1867
- | { name: 'Deposited'; data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; amount: bigint } }
1869
+ | { name: 'Deposited'; data: { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint } }
1868
1870
  /**
1869
1871
  * Some assets were withdrawn from the account (e.g. for transaction fees).
1870
1872
  **/
1871
- | { name: 'Withdrawn'; data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; amount: bigint } };
1873
+ | { name: 'Withdrawn'; data: { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint } };
1872
1874
 
1873
1875
  /**
1874
1876
  * The `Event` enum of this pallet
@@ -1905,7 +1907,7 @@ export type PalletAssetConversionEvent =
1905
1907
  * The pool id associated with the pool. Note that the order of the assets may not be
1906
1908
  * the same as the order specified in the create pool extrinsic.
1907
1909
  **/
1908
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
1910
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
1909
1911
 
1910
1912
  /**
1911
1913
  * The account ID of the pool.
@@ -1938,7 +1940,7 @@ export type PalletAssetConversionEvent =
1938
1940
  /**
1939
1941
  * The pool id of the pool that the liquidity was added to.
1940
1942
  **/
1941
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
1943
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
1942
1944
 
1943
1945
  /**
1944
1946
  * The amount of the first asset that was added to the pool.
@@ -1980,7 +1982,7 @@ export type PalletAssetConversionEvent =
1980
1982
  /**
1981
1983
  * The pool id that the liquidity was removed from.
1982
1984
  **/
1983
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
1985
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
1984
1986
 
1985
1987
  /**
1986
1988
  * The amount of the first asset that was removed from the pool.
@@ -2039,7 +2041,7 @@ export type PalletAssetConversionEvent =
2039
2041
  * The route of asset IDs with amounts that the swap went through.
2040
2042
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2041
2043
  **/
2042
- path: Array<[StagingXcmV3MultilocationMultiLocation, bigint]>;
2044
+ path: Array<[StagingXcmV4Location, bigint]>;
2043
2045
  };
2044
2046
  }
2045
2047
  /**
@@ -2062,7 +2064,7 @@ export type PalletAssetConversionEvent =
2062
2064
  * The route of asset IDs with amounts that the swap went through.
2063
2065
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2064
2066
  **/
2065
- path: Array<[StagingXcmV3MultilocationMultiLocation, bigint]>;
2067
+ path: Array<[StagingXcmV4Location, bigint]>;
2066
2068
  };
2067
2069
  }
2068
2070
  /**
@@ -2074,7 +2076,7 @@ export type PalletAssetConversionEvent =
2074
2076
  /**
2075
2077
  * The ID of the pool.
2076
2078
  **/
2077
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2079
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2078
2080
 
2079
2081
  /**
2080
2082
  * The account initiating the touch.
@@ -2094,8 +2096,8 @@ export type PalletAssetsFreezerEvent =
2094
2096
  * The `Event` enum of this pallet
2095
2097
  **/
2096
2098
  export type PalletAssetsFreezerEvent002 =
2097
- | { name: 'Frozen'; data: { who: AccountId32; assetId: StagingXcmV3MultilocationMultiLocation; amount: bigint } }
2098
- | { name: 'Thawed'; data: { who: AccountId32; assetId: StagingXcmV3MultilocationMultiLocation; amount: bigint } };
2099
+ | { name: 'Frozen'; data: { who: AccountId32; assetId: StagingXcmV4Location; amount: bigint } }
2100
+ | { name: 'Thawed'; data: { who: AccountId32; assetId: StagingXcmV4Location; amount: bigint } };
2099
2101
 
2100
2102
  /**
2101
2103
  * The `Event` enum of this pallet
@@ -2110,7 +2112,7 @@ export type PalletAssetConversionOpsEvent =
2110
2112
  /**
2111
2113
  * Pool's ID.
2112
2114
  **/
2113
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2115
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2114
2116
 
2115
2117
  /**
2116
2118
  * Pool's prior account ID.
@@ -2348,7 +2350,7 @@ export type FrameSystemError =
2348
2350
  export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
2349
2351
  usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
2350
2352
  paraHeadHash?: H256 | undefined;
2351
- consumedGoAheadSignal?: PolkadotPrimitivesV7UpgradeGoAhead | undefined;
2353
+ consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
2352
2354
  };
2353
2355
 
2354
2356
  export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
@@ -2361,15 +2363,15 @@ export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
2361
2363
 
2362
2364
  export type CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate = { msgCount: number; totalBytes: number };
2363
2365
 
2364
- export type PolkadotPrimitivesV7UpgradeGoAhead = 'Abort' | 'GoAhead';
2366
+ export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
2365
2367
 
2366
2368
  export type CumulusPalletParachainSystemUnincludedSegmentSegmentTracker = {
2367
2369
  usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
2368
2370
  hrmpWatermark?: number | undefined;
2369
- consumedGoAheadSignal?: PolkadotPrimitivesV7UpgradeGoAhead | undefined;
2371
+ consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
2370
2372
  };
2371
2373
 
2372
- export type PolkadotPrimitivesV7PersistedValidationData = {
2374
+ export type PolkadotPrimitivesV8PersistedValidationData = {
2373
2375
  parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
2374
2376
  relayParentNumber: number;
2375
2377
  relayParentStorageRoot: H256;
@@ -2378,15 +2380,15 @@ export type PolkadotPrimitivesV7PersistedValidationData = {
2378
2380
 
2379
2381
  export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
2380
2382
 
2381
- export type PolkadotPrimitivesV7UpgradeRestriction = 'Present';
2383
+ export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
2382
2384
 
2383
2385
  export type SpTrieStorageProof = { trieNodes: Array<Bytes> };
2384
2386
 
2385
2387
  export type CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot = {
2386
2388
  dmqMqcHead: H256;
2387
2389
  relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
2388
- ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV7AbridgedHrmpChannel]>;
2389
- egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV7AbridgedHrmpChannel]>;
2390
+ ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
2391
+ egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
2390
2392
  };
2391
2393
 
2392
2394
  export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity = {
@@ -2394,7 +2396,7 @@ export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRema
2394
2396
  remainingSize: number;
2395
2397
  };
2396
2398
 
2397
- export type PolkadotPrimitivesV7AbridgedHrmpChannel = {
2399
+ export type PolkadotPrimitivesV8AbridgedHrmpChannel = {
2398
2400
  maxCapacity: number;
2399
2401
  maxTotalSize: number;
2400
2402
  maxMessageSize: number;
@@ -2403,7 +2405,7 @@ export type PolkadotPrimitivesV7AbridgedHrmpChannel = {
2403
2405
  mqcHead?: H256 | undefined;
2404
2406
  };
2405
2407
 
2406
- export type PolkadotPrimitivesV7AbridgedHostConfiguration = {
2408
+ export type PolkadotPrimitivesV8AbridgedHostConfiguration = {
2407
2409
  maxCodeSize: number;
2408
2410
  maxHeadDataSize: number;
2409
2411
  maxUpwardQueueCount: number;
@@ -2413,10 +2415,10 @@ export type PolkadotPrimitivesV7AbridgedHostConfiguration = {
2413
2415
  hrmpMaxMessageNumPerCandidate: number;
2414
2416
  validationUpgradeCooldown: number;
2415
2417
  validationUpgradeDelay: number;
2416
- asyncBackingParams: PolkadotPrimitivesV7AsyncBackingAsyncBackingParams;
2418
+ asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
2417
2419
  };
2418
2420
 
2419
- export type PolkadotPrimitivesV7AsyncBackingAsyncBackingParams = {
2421
+ export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
2420
2422
  maxCandidateDepth: number;
2421
2423
  allowedAncestryLen: number;
2422
2424
  };
@@ -2444,30 +2446,7 @@ export type CumulusPalletParachainSystemCall =
2444
2446
  * if the appropriate time has come.
2445
2447
  **/
2446
2448
  | { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
2447
- | { name: 'SudoSendUpwardMessage'; params: { message: Bytes } }
2448
- /**
2449
- * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
2450
- * later.
2451
- *
2452
- * The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
2453
- * version and name should be verified on upgrade. Since the authorization only has a hash,
2454
- * it cannot actually perform the verification.
2455
- *
2456
- * This call requires Root origin.
2457
- **/
2458
- | { name: 'AuthorizeUpgrade'; params: { codeHash: H256; checkVersion: boolean } }
2459
- /**
2460
- * Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
2461
- *
2462
- * If the authorization required a version check, this call will ensure the spec name
2463
- * remains unchanged and that the spec version has increased.
2464
- *
2465
- * Note that this function will not apply the new `code`, but only attempt to schedule the
2466
- * upgrade with the Relay Chain.
2467
- *
2468
- * All origins are allowed.
2469
- **/
2470
- | { name: 'EnactAuthorizedUpgrade'; params: { code: Bytes } };
2449
+ | { name: 'SudoSendUpwardMessage'; params: { message: Bytes } };
2471
2450
 
2472
2451
  export type CumulusPalletParachainSystemCallLike =
2473
2452
  /**
@@ -2482,33 +2461,10 @@ export type CumulusPalletParachainSystemCallLike =
2482
2461
  * if the appropriate time has come.
2483
2462
  **/
2484
2463
  | { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
2485
- | { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } }
2486
- /**
2487
- * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
2488
- * later.
2489
- *
2490
- * The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
2491
- * version and name should be verified on upgrade. Since the authorization only has a hash,
2492
- * it cannot actually perform the verification.
2493
- *
2494
- * This call requires Root origin.
2495
- **/
2496
- | { name: 'AuthorizeUpgrade'; params: { codeHash: H256; checkVersion: boolean } }
2497
- /**
2498
- * Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
2499
- *
2500
- * If the authorization required a version check, this call will ensure the spec name
2501
- * remains unchanged and that the spec version has increased.
2502
- *
2503
- * Note that this function will not apply the new `code`, but only attempt to schedule the
2504
- * upgrade with the Relay Chain.
2505
- *
2506
- * All origins are allowed.
2507
- **/
2508
- | { name: 'EnactAuthorizedUpgrade'; params: { code: BytesLike } };
2464
+ | { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } };
2509
2465
 
2510
2466
  export type CumulusPrimitivesParachainInherentParachainInherentData = {
2511
- validationData: PolkadotPrimitivesV7PersistedValidationData;
2467
+ validationData: PolkadotPrimitivesV8PersistedValidationData;
2512
2468
  relayChainState: SpTrieStorageProof;
2513
2469
  downwardMessages: Array<PolkadotCorePrimitivesInboundDownwardMessage>;
2514
2470
  horizontalMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<PolkadotCorePrimitivesInboundHrmpMessage>]>;
@@ -4702,7 +4658,6 @@ export type AssetHubRococoRuntimeRuntimeCall =
4702
4658
  | { pallet: 'Utility'; palletCall: PalletUtilityCall }
4703
4659
  | { pallet: 'Multisig'; palletCall: PalletMultisigCall }
4704
4660
  | { pallet: 'Proxy'; palletCall: PalletProxyCall }
4705
- | { pallet: 'ToWestendXcmRouter'; palletCall: PalletXcmBridgeHubRouterCall }
4706
4661
  | { pallet: 'Assets'; palletCall: PalletAssetsCall }
4707
4662
  | { pallet: 'Uniques'; palletCall: PalletUniquesCall }
4708
4663
  | { pallet: 'Nfts'; palletCall: PalletNftsCall }
@@ -4727,7 +4682,6 @@ export type AssetHubRococoRuntimeRuntimeCallLike =
4727
4682
  | { pallet: 'Utility'; palletCall: PalletUtilityCallLike }
4728
4683
  | { pallet: 'Multisig'; palletCall: PalletMultisigCallLike }
4729
4684
  | { pallet: 'Proxy'; palletCall: PalletProxyCallLike }
4730
- | { pallet: 'ToWestendXcmRouter'; palletCall: PalletXcmBridgeHubRouterCallLike }
4731
4685
  | { pallet: 'Assets'; palletCall: PalletAssetsCallLike }
4732
4686
  | { pallet: 'Uniques'; palletCall: PalletUniquesCallLike }
4733
4687
  | { pallet: 'Nfts'; palletCall: PalletNftsCallLike }
@@ -5376,21 +5330,6 @@ export type PalletProxyCallLike =
5376
5330
  };
5377
5331
  };
5378
5332
 
5379
- /**
5380
- * Contains a variant per dispatchable extrinsic that this pallet has.
5381
- **/
5382
- export type PalletXcmBridgeHubRouterCall =
5383
- /**
5384
- * Notification about congested bridge queue.
5385
- **/
5386
- { name: 'ReportBridgeStatus'; params: { bridgeId: H256; isCongested: boolean } };
5387
-
5388
- export type PalletXcmBridgeHubRouterCallLike =
5389
- /**
5390
- * Notification about congested bridge queue.
5391
- **/
5392
- { name: 'ReportBridgeStatus'; params: { bridgeId: H256; isCongested: boolean } };
5393
-
5394
5333
  /**
5395
5334
  * Contains a variant per dispatchable extrinsic that this pallet has.
5396
5335
  **/
@@ -5449,8 +5388,6 @@ export type PalletAssetsCall =
5449
5388
  *
5450
5389
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
5451
5390
  * asset.
5452
- *
5453
- * The asset class must be frozen before calling `start_destroy`.
5454
5391
  **/
5455
5392
  | { name: 'StartDestroy'; params: { id: number } }
5456
5393
  /**
@@ -5931,7 +5868,26 @@ export type PalletAssetsCall =
5931
5868
  *
5932
5869
  * Weight: `O(1)`
5933
5870
  **/
5934
- | { name: 'Block'; params: { id: number; who: MultiAddress } };
5871
+ | { name: 'Block'; params: { id: number; who: MultiAddress } }
5872
+ /**
5873
+ * Transfer the entire transferable balance from the caller asset account.
5874
+ *
5875
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
5876
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
5877
+ * transferred by this function. To ensure that this function results in a killed account,
5878
+ * you might need to prepare the account by removing any reference counters, storage
5879
+ * deposits, etc...
5880
+ *
5881
+ * The dispatch origin of this call must be Signed.
5882
+ *
5883
+ * - `id`: The identifier of the asset for the account holding a deposit.
5884
+ * - `dest`: The recipient of the transfer.
5885
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
5886
+ * of the funds the asset account has, causing the sender asset account to be killed
5887
+ * (false), or transfer everything except at least the minimum balance, which will
5888
+ * guarantee to keep the sender asset account alive (true).
5889
+ **/
5890
+ | { name: 'TransferAll'; params: { id: number; dest: MultiAddress; keepAlive: boolean } };
5935
5891
 
5936
5892
  export type PalletAssetsCallLike =
5937
5893
  /**
@@ -5988,8 +5944,6 @@ export type PalletAssetsCallLike =
5988
5944
  *
5989
5945
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
5990
5946
  * asset.
5991
- *
5992
- * The asset class must be frozen before calling `start_destroy`.
5993
5947
  **/
5994
5948
  | { name: 'StartDestroy'; params: { id: number } }
5995
5949
  /**
@@ -6476,7 +6430,26 @@ export type PalletAssetsCallLike =
6476
6430
  *
6477
6431
  * Weight: `O(1)`
6478
6432
  **/
6479
- | { name: 'Block'; params: { id: number; who: MultiAddressLike } };
6433
+ | { name: 'Block'; params: { id: number; who: MultiAddressLike } }
6434
+ /**
6435
+ * Transfer the entire transferable balance from the caller asset account.
6436
+ *
6437
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
6438
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
6439
+ * transferred by this function. To ensure that this function results in a killed account,
6440
+ * you might need to prepare the account by removing any reference counters, storage
6441
+ * deposits, etc...
6442
+ *
6443
+ * The dispatch origin of this call must be Signed.
6444
+ *
6445
+ * - `id`: The identifier of the asset for the account holding a deposit.
6446
+ * - `dest`: The recipient of the transfer.
6447
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
6448
+ * of the funds the asset account has, causing the sender asset account to be killed
6449
+ * (false), or transfer everything except at least the minimum balance, which will
6450
+ * guarantee to keep the sender asset account alive (true).
6451
+ **/
6452
+ | { name: 'TransferAll'; params: { id: number; dest: MultiAddressLike; keepAlive: boolean } };
6480
6453
 
6481
6454
  /**
6482
6455
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -8904,7 +8877,7 @@ export type PalletAssetsCall002 =
8904
8877
  *
8905
8878
  * Weight: `O(1)`
8906
8879
  **/
8907
- | { name: 'Create'; params: { id: StagingXcmV3MultilocationMultiLocation; admin: MultiAddress; minBalance: bigint } }
8880
+ | { name: 'Create'; params: { id: StagingXcmV4Location; admin: MultiAddress; minBalance: bigint } }
8908
8881
  /**
8909
8882
  * Issue a new class of fungible assets from a privileged origin.
8910
8883
  *
@@ -8928,12 +8901,7 @@ export type PalletAssetsCall002 =
8928
8901
  **/
8929
8902
  | {
8930
8903
  name: 'ForceCreate';
8931
- params: {
8932
- id: StagingXcmV3MultilocationMultiLocation;
8933
- owner: MultiAddress;
8934
- isSufficient: boolean;
8935
- minBalance: bigint;
8936
- };
8904
+ params: { id: StagingXcmV4Location; owner: MultiAddress; isSufficient: boolean; minBalance: bigint };
8937
8905
  }
8938
8906
  /**
8939
8907
  * Start the process of destroying a fungible asset class.
@@ -8945,10 +8913,8 @@ export type PalletAssetsCall002 =
8945
8913
  *
8946
8914
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
8947
8915
  * asset.
8948
- *
8949
- * The asset class must be frozen before calling `start_destroy`.
8950
8916
  **/
8951
- | { name: 'StartDestroy'; params: { id: StagingXcmV3MultilocationMultiLocation } }
8917
+ | { name: 'StartDestroy'; params: { id: StagingXcmV4Location } }
8952
8918
  /**
8953
8919
  * Destroy all accounts associated with a given asset.
8954
8920
  *
@@ -8963,7 +8929,7 @@ export type PalletAssetsCall002 =
8963
8929
  *
8964
8930
  * Each call emits the `Event::DestroyedAccounts` event.
8965
8931
  **/
8966
- | { name: 'DestroyAccounts'; params: { id: StagingXcmV3MultilocationMultiLocation } }
8932
+ | { name: 'DestroyAccounts'; params: { id: StagingXcmV4Location } }
8967
8933
  /**
8968
8934
  * Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit).
8969
8935
  *
@@ -8978,7 +8944,7 @@ export type PalletAssetsCall002 =
8978
8944
  *
8979
8945
  * Each call emits the `Event::DestroyedApprovals` event.
8980
8946
  **/
8981
- | { name: 'DestroyApprovals'; params: { id: StagingXcmV3MultilocationMultiLocation } }
8947
+ | { name: 'DestroyApprovals'; params: { id: StagingXcmV4Location } }
8982
8948
  /**
8983
8949
  * Complete destroying asset and unreserve currency.
8984
8950
  *
@@ -8991,7 +8957,7 @@ export type PalletAssetsCall002 =
8991
8957
  *
8992
8958
  * Each successful call emits the `Event::Destroyed` event.
8993
8959
  **/
8994
- | { name: 'FinishDestroy'; params: { id: StagingXcmV3MultilocationMultiLocation } }
8960
+ | { name: 'FinishDestroy'; params: { id: StagingXcmV4Location } }
8995
8961
  /**
8996
8962
  * Mint assets of a particular class.
8997
8963
  *
@@ -9006,7 +8972,7 @@ export type PalletAssetsCall002 =
9006
8972
  * Weight: `O(1)`
9007
8973
  * Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
9008
8974
  **/
9009
- | { name: 'Mint'; params: { id: StagingXcmV3MultilocationMultiLocation; beneficiary: MultiAddress; amount: bigint } }
8975
+ | { name: 'Mint'; params: { id: StagingXcmV4Location; beneficiary: MultiAddress; amount: bigint } }
9010
8976
  /**
9011
8977
  * Reduce the balance of `who` by as much as possible up to `amount` assets of `id`.
9012
8978
  *
@@ -9024,7 +8990,7 @@ export type PalletAssetsCall002 =
9024
8990
  * Weight: `O(1)`
9025
8991
  * Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
9026
8992
  **/
9027
- | { name: 'Burn'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress; amount: bigint } }
8993
+ | { name: 'Burn'; params: { id: StagingXcmV4Location; who: MultiAddress; amount: bigint } }
9028
8994
  /**
9029
8995
  * Move some assets from the sender account to another.
9030
8996
  *
@@ -9045,7 +9011,7 @@ export type PalletAssetsCall002 =
9045
9011
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
9046
9012
  * `target`.
9047
9013
  **/
9048
- | { name: 'Transfer'; params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddress; amount: bigint } }
9014
+ | { name: 'Transfer'; params: { id: StagingXcmV4Location; target: MultiAddress; amount: bigint } }
9049
9015
  /**
9050
9016
  * Move some assets from the sender account to another, keeping the sender account alive.
9051
9017
  *
@@ -9066,10 +9032,7 @@ export type PalletAssetsCall002 =
9066
9032
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
9067
9033
  * `target`.
9068
9034
  **/
9069
- | {
9070
- name: 'TransferKeepAlive';
9071
- params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddress; amount: bigint };
9072
- }
9035
+ | { name: 'TransferKeepAlive'; params: { id: StagingXcmV4Location; target: MultiAddress; amount: bigint } }
9073
9036
  /**
9074
9037
  * Move some assets from one account to another.
9075
9038
  *
@@ -9093,7 +9056,7 @@ export type PalletAssetsCall002 =
9093
9056
  **/
9094
9057
  | {
9095
9058
  name: 'ForceTransfer';
9096
- params: { id: StagingXcmV3MultilocationMultiLocation; source: MultiAddress; dest: MultiAddress; amount: bigint };
9059
+ params: { id: StagingXcmV4Location; source: MultiAddress; dest: MultiAddress; amount: bigint };
9097
9060
  }
9098
9061
  /**
9099
9062
  * Disallow further unprivileged transfers of an asset `id` from an account `who`. `who`
@@ -9109,7 +9072,7 @@ export type PalletAssetsCall002 =
9109
9072
  *
9110
9073
  * Weight: `O(1)`
9111
9074
  **/
9112
- | { name: 'Freeze'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress } }
9075
+ | { name: 'Freeze'; params: { id: StagingXcmV4Location; who: MultiAddress } }
9113
9076
  /**
9114
9077
  * Allow unprivileged transfers to and from an account again.
9115
9078
  *
@@ -9122,7 +9085,7 @@ export type PalletAssetsCall002 =
9122
9085
  *
9123
9086
  * Weight: `O(1)`
9124
9087
  **/
9125
- | { name: 'Thaw'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress } }
9088
+ | { name: 'Thaw'; params: { id: StagingXcmV4Location; who: MultiAddress } }
9126
9089
  /**
9127
9090
  * Disallow further unprivileged transfers for the asset class.
9128
9091
  *
@@ -9134,7 +9097,7 @@ export type PalletAssetsCall002 =
9134
9097
  *
9135
9098
  * Weight: `O(1)`
9136
9099
  **/
9137
- | { name: 'FreezeAsset'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9100
+ | { name: 'FreezeAsset'; params: { id: StagingXcmV4Location } }
9138
9101
  /**
9139
9102
  * Allow unprivileged transfers for the asset again.
9140
9103
  *
@@ -9146,7 +9109,7 @@ export type PalletAssetsCall002 =
9146
9109
  *
9147
9110
  * Weight: `O(1)`
9148
9111
  **/
9149
- | { name: 'ThawAsset'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9112
+ | { name: 'ThawAsset'; params: { id: StagingXcmV4Location } }
9150
9113
  /**
9151
9114
  * Change the Owner of an asset.
9152
9115
  *
@@ -9159,7 +9122,7 @@ export type PalletAssetsCall002 =
9159
9122
  *
9160
9123
  * Weight: `O(1)`
9161
9124
  **/
9162
- | { name: 'TransferOwnership'; params: { id: StagingXcmV3MultilocationMultiLocation; owner: MultiAddress } }
9125
+ | { name: 'TransferOwnership'; params: { id: StagingXcmV4Location; owner: MultiAddress } }
9163
9126
  /**
9164
9127
  * Change the Issuer, Admin and Freezer of an asset.
9165
9128
  *
@@ -9176,12 +9139,7 @@ export type PalletAssetsCall002 =
9176
9139
  **/
9177
9140
  | {
9178
9141
  name: 'SetTeam';
9179
- params: {
9180
- id: StagingXcmV3MultilocationMultiLocation;
9181
- issuer: MultiAddress;
9182
- admin: MultiAddress;
9183
- freezer: MultiAddress;
9184
- };
9142
+ params: { id: StagingXcmV4Location; issuer: MultiAddress; admin: MultiAddress; freezer: MultiAddress };
9185
9143
  }
9186
9144
  /**
9187
9145
  * Set the metadata for an asset.
@@ -9201,10 +9159,7 @@ export type PalletAssetsCall002 =
9201
9159
  *
9202
9160
  * Weight: `O(1)`
9203
9161
  **/
9204
- | {
9205
- name: 'SetMetadata';
9206
- params: { id: StagingXcmV3MultilocationMultiLocation; name: Bytes; symbol: Bytes; decimals: number };
9207
- }
9162
+ | { name: 'SetMetadata'; params: { id: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number } }
9208
9163
  /**
9209
9164
  * Clear the metadata for an asset.
9210
9165
  *
@@ -9218,7 +9173,7 @@ export type PalletAssetsCall002 =
9218
9173
  *
9219
9174
  * Weight: `O(1)`
9220
9175
  **/
9221
- | { name: 'ClearMetadata'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9176
+ | { name: 'ClearMetadata'; params: { id: StagingXcmV4Location } }
9222
9177
  /**
9223
9178
  * Force the metadata for an asset to some value.
9224
9179
  *
@@ -9237,13 +9192,7 @@ export type PalletAssetsCall002 =
9237
9192
  **/
9238
9193
  | {
9239
9194
  name: 'ForceSetMetadata';
9240
- params: {
9241
- id: StagingXcmV3MultilocationMultiLocation;
9242
- name: Bytes;
9243
- symbol: Bytes;
9244
- decimals: number;
9245
- isFrozen: boolean;
9246
- };
9195
+ params: { id: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean };
9247
9196
  }
9248
9197
  /**
9249
9198
  * Clear the metadata for an asset.
@@ -9258,7 +9207,7 @@ export type PalletAssetsCall002 =
9258
9207
  *
9259
9208
  * Weight: `O(1)`
9260
9209
  **/
9261
- | { name: 'ForceClearMetadata'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9210
+ | { name: 'ForceClearMetadata'; params: { id: StagingXcmV4Location } }
9262
9211
  /**
9263
9212
  * Alter the attributes of a given asset.
9264
9213
  *
@@ -9286,7 +9235,7 @@ export type PalletAssetsCall002 =
9286
9235
  | {
9287
9236
  name: 'ForceAssetStatus';
9288
9237
  params: {
9289
- id: StagingXcmV3MultilocationMultiLocation;
9238
+ id: StagingXcmV4Location;
9290
9239
  owner: MultiAddress;
9291
9240
  issuer: MultiAddress;
9292
9241
  admin: MultiAddress;
@@ -9318,10 +9267,7 @@ export type PalletAssetsCall002 =
9318
9267
  *
9319
9268
  * Weight: `O(1)`
9320
9269
  **/
9321
- | {
9322
- name: 'ApproveTransfer';
9323
- params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddress; amount: bigint };
9324
- }
9270
+ | { name: 'ApproveTransfer'; params: { id: StagingXcmV4Location; delegate: MultiAddress; amount: bigint } }
9325
9271
  /**
9326
9272
  * Cancel all of some asset approved for delegated transfer by a third-party account.
9327
9273
  *
@@ -9337,7 +9283,7 @@ export type PalletAssetsCall002 =
9337
9283
  *
9338
9284
  * Weight: `O(1)`
9339
9285
  **/
9340
- | { name: 'CancelApproval'; params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddress } }
9286
+ | { name: 'CancelApproval'; params: { id: StagingXcmV4Location; delegate: MultiAddress } }
9341
9287
  /**
9342
9288
  * Cancel all of some asset approved for delegated transfer by a third-party account.
9343
9289
  *
@@ -9353,10 +9299,7 @@ export type PalletAssetsCall002 =
9353
9299
  *
9354
9300
  * Weight: `O(1)`
9355
9301
  **/
9356
- | {
9357
- name: 'ForceCancelApproval';
9358
- params: { id: StagingXcmV3MultilocationMultiLocation; owner: MultiAddress; delegate: MultiAddress };
9359
- }
9302
+ | { name: 'ForceCancelApproval'; params: { id: StagingXcmV4Location; owner: MultiAddress; delegate: MultiAddress } }
9360
9303
  /**
9361
9304
  * Transfer some asset balance from a previously delegated account to some third-party
9362
9305
  * account.
@@ -9379,12 +9322,7 @@ export type PalletAssetsCall002 =
9379
9322
  **/
9380
9323
  | {
9381
9324
  name: 'TransferApproved';
9382
- params: {
9383
- id: StagingXcmV3MultilocationMultiLocation;
9384
- owner: MultiAddress;
9385
- destination: MultiAddress;
9386
- amount: bigint;
9387
- };
9325
+ params: { id: StagingXcmV4Location; owner: MultiAddress; destination: MultiAddress; amount: bigint };
9388
9326
  }
9389
9327
  /**
9390
9328
  * Create an asset account for non-provider assets.
@@ -9397,7 +9335,7 @@ export type PalletAssetsCall002 =
9397
9335
  *
9398
9336
  * Emits `Touched` event when successful.
9399
9337
  **/
9400
- | { name: 'Touch'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9338
+ | { name: 'Touch'; params: { id: StagingXcmV4Location } }
9401
9339
  /**
9402
9340
  * Return the deposit (if any) of an asset account or a consumer reference (if any) of an
9403
9341
  * account.
@@ -9410,7 +9348,7 @@ export type PalletAssetsCall002 =
9410
9348
  *
9411
9349
  * Emits `Refunded` event when successful.
9412
9350
  **/
9413
- | { name: 'Refund'; params: { id: StagingXcmV3MultilocationMultiLocation; allowBurn: boolean } }
9351
+ | { name: 'Refund'; params: { id: StagingXcmV4Location; allowBurn: boolean } }
9414
9352
  /**
9415
9353
  * Sets the minimum balance of an asset.
9416
9354
  *
@@ -9425,7 +9363,7 @@ export type PalletAssetsCall002 =
9425
9363
  *
9426
9364
  * Emits `AssetMinBalanceChanged` event when successful.
9427
9365
  **/
9428
- | { name: 'SetMinBalance'; params: { id: StagingXcmV3MultilocationMultiLocation; minBalance: bigint } }
9366
+ | { name: 'SetMinBalance'; params: { id: StagingXcmV4Location; minBalance: bigint } }
9429
9367
  /**
9430
9368
  * Create an asset account for `who`.
9431
9369
  *
@@ -9438,7 +9376,7 @@ export type PalletAssetsCall002 =
9438
9376
  *
9439
9377
  * Emits `Touched` event when successful.
9440
9378
  **/
9441
- | { name: 'TouchOther'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress } }
9379
+ | { name: 'TouchOther'; params: { id: StagingXcmV4Location; who: MultiAddress } }
9442
9380
  /**
9443
9381
  * Return the deposit (if any) of a target asset account. Useful if you are the depositor.
9444
9382
  *
@@ -9451,7 +9389,7 @@ export type PalletAssetsCall002 =
9451
9389
  *
9452
9390
  * Emits `Refunded` event when successful.
9453
9391
  **/
9454
- | { name: 'RefundOther'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress } }
9392
+ | { name: 'RefundOther'; params: { id: StagingXcmV4Location; who: MultiAddress } }
9455
9393
  /**
9456
9394
  * Disallow further unprivileged transfers of an asset `id` to and from an account `who`.
9457
9395
  *
@@ -9464,7 +9402,26 @@ export type PalletAssetsCall002 =
9464
9402
  *
9465
9403
  * Weight: `O(1)`
9466
9404
  **/
9467
- | { name: 'Block'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddress } };
9405
+ | { name: 'Block'; params: { id: StagingXcmV4Location; who: MultiAddress } }
9406
+ /**
9407
+ * Transfer the entire transferable balance from the caller asset account.
9408
+ *
9409
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
9410
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
9411
+ * transferred by this function. To ensure that this function results in a killed account,
9412
+ * you might need to prepare the account by removing any reference counters, storage
9413
+ * deposits, etc...
9414
+ *
9415
+ * The dispatch origin of this call must be Signed.
9416
+ *
9417
+ * - `id`: The identifier of the asset for the account holding a deposit.
9418
+ * - `dest`: The recipient of the transfer.
9419
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
9420
+ * of the funds the asset account has, causing the sender asset account to be killed
9421
+ * (false), or transfer everything except at least the minimum balance, which will
9422
+ * guarantee to keep the sender asset account alive (true).
9423
+ **/
9424
+ | { name: 'TransferAll'; params: { id: StagingXcmV4Location; dest: MultiAddress; keepAlive: boolean } };
9468
9425
 
9469
9426
  export type PalletAssetsCallLike002 =
9470
9427
  /**
@@ -9488,10 +9445,7 @@ export type PalletAssetsCallLike002 =
9488
9445
  *
9489
9446
  * Weight: `O(1)`
9490
9447
  **/
9491
- | {
9492
- name: 'Create';
9493
- params: { id: StagingXcmV3MultilocationMultiLocation; admin: MultiAddressLike; minBalance: bigint };
9494
- }
9448
+ | { name: 'Create'; params: { id: StagingXcmV4Location; admin: MultiAddressLike; minBalance: bigint } }
9495
9449
  /**
9496
9450
  * Issue a new class of fungible assets from a privileged origin.
9497
9451
  *
@@ -9515,12 +9469,7 @@ export type PalletAssetsCallLike002 =
9515
9469
  **/
9516
9470
  | {
9517
9471
  name: 'ForceCreate';
9518
- params: {
9519
- id: StagingXcmV3MultilocationMultiLocation;
9520
- owner: MultiAddressLike;
9521
- isSufficient: boolean;
9522
- minBalance: bigint;
9523
- };
9472
+ params: { id: StagingXcmV4Location; owner: MultiAddressLike; isSufficient: boolean; minBalance: bigint };
9524
9473
  }
9525
9474
  /**
9526
9475
  * Start the process of destroying a fungible asset class.
@@ -9532,10 +9481,8 @@ export type PalletAssetsCallLike002 =
9532
9481
  *
9533
9482
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
9534
9483
  * asset.
9535
- *
9536
- * The asset class must be frozen before calling `start_destroy`.
9537
9484
  **/
9538
- | { name: 'StartDestroy'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9485
+ | { name: 'StartDestroy'; params: { id: StagingXcmV4Location } }
9539
9486
  /**
9540
9487
  * Destroy all accounts associated with a given asset.
9541
9488
  *
@@ -9550,7 +9497,7 @@ export type PalletAssetsCallLike002 =
9550
9497
  *
9551
9498
  * Each call emits the `Event::DestroyedAccounts` event.
9552
9499
  **/
9553
- | { name: 'DestroyAccounts'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9500
+ | { name: 'DestroyAccounts'; params: { id: StagingXcmV4Location } }
9554
9501
  /**
9555
9502
  * Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit).
9556
9503
  *
@@ -9565,7 +9512,7 @@ export type PalletAssetsCallLike002 =
9565
9512
  *
9566
9513
  * Each call emits the `Event::DestroyedApprovals` event.
9567
9514
  **/
9568
- | { name: 'DestroyApprovals'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9515
+ | { name: 'DestroyApprovals'; params: { id: StagingXcmV4Location } }
9569
9516
  /**
9570
9517
  * Complete destroying asset and unreserve currency.
9571
9518
  *
@@ -9578,7 +9525,7 @@ export type PalletAssetsCallLike002 =
9578
9525
  *
9579
9526
  * Each successful call emits the `Event::Destroyed` event.
9580
9527
  **/
9581
- | { name: 'FinishDestroy'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9528
+ | { name: 'FinishDestroy'; params: { id: StagingXcmV4Location } }
9582
9529
  /**
9583
9530
  * Mint assets of a particular class.
9584
9531
  *
@@ -9593,10 +9540,7 @@ export type PalletAssetsCallLike002 =
9593
9540
  * Weight: `O(1)`
9594
9541
  * Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
9595
9542
  **/
9596
- | {
9597
- name: 'Mint';
9598
- params: { id: StagingXcmV3MultilocationMultiLocation; beneficiary: MultiAddressLike; amount: bigint };
9599
- }
9543
+ | { name: 'Mint'; params: { id: StagingXcmV4Location; beneficiary: MultiAddressLike; amount: bigint } }
9600
9544
  /**
9601
9545
  * Reduce the balance of `who` by as much as possible up to `amount` assets of `id`.
9602
9546
  *
@@ -9614,7 +9558,7 @@ export type PalletAssetsCallLike002 =
9614
9558
  * Weight: `O(1)`
9615
9559
  * Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
9616
9560
  **/
9617
- | { name: 'Burn'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike; amount: bigint } }
9561
+ | { name: 'Burn'; params: { id: StagingXcmV4Location; who: MultiAddressLike; amount: bigint } }
9618
9562
  /**
9619
9563
  * Move some assets from the sender account to another.
9620
9564
  *
@@ -9635,10 +9579,7 @@ export type PalletAssetsCallLike002 =
9635
9579
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
9636
9580
  * `target`.
9637
9581
  **/
9638
- | {
9639
- name: 'Transfer';
9640
- params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddressLike; amount: bigint };
9641
- }
9582
+ | { name: 'Transfer'; params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint } }
9642
9583
  /**
9643
9584
  * Move some assets from the sender account to another, keeping the sender account alive.
9644
9585
  *
@@ -9659,10 +9600,7 @@ export type PalletAssetsCallLike002 =
9659
9600
  * Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
9660
9601
  * `target`.
9661
9602
  **/
9662
- | {
9663
- name: 'TransferKeepAlive';
9664
- params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddressLike; amount: bigint };
9665
- }
9603
+ | { name: 'TransferKeepAlive'; params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint } }
9666
9604
  /**
9667
9605
  * Move some assets from one account to another.
9668
9606
  *
@@ -9686,12 +9624,7 @@ export type PalletAssetsCallLike002 =
9686
9624
  **/
9687
9625
  | {
9688
9626
  name: 'ForceTransfer';
9689
- params: {
9690
- id: StagingXcmV3MultilocationMultiLocation;
9691
- source: MultiAddressLike;
9692
- dest: MultiAddressLike;
9693
- amount: bigint;
9694
- };
9627
+ params: { id: StagingXcmV4Location; source: MultiAddressLike; dest: MultiAddressLike; amount: bigint };
9695
9628
  }
9696
9629
  /**
9697
9630
  * Disallow further unprivileged transfers of an asset `id` from an account `who`. `who`
@@ -9707,7 +9640,7 @@ export type PalletAssetsCallLike002 =
9707
9640
  *
9708
9641
  * Weight: `O(1)`
9709
9642
  **/
9710
- | { name: 'Freeze'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike } }
9643
+ | { name: 'Freeze'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
9711
9644
  /**
9712
9645
  * Allow unprivileged transfers to and from an account again.
9713
9646
  *
@@ -9720,7 +9653,7 @@ export type PalletAssetsCallLike002 =
9720
9653
  *
9721
9654
  * Weight: `O(1)`
9722
9655
  **/
9723
- | { name: 'Thaw'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike } }
9656
+ | { name: 'Thaw'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
9724
9657
  /**
9725
9658
  * Disallow further unprivileged transfers for the asset class.
9726
9659
  *
@@ -9732,7 +9665,7 @@ export type PalletAssetsCallLike002 =
9732
9665
  *
9733
9666
  * Weight: `O(1)`
9734
9667
  **/
9735
- | { name: 'FreezeAsset'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9668
+ | { name: 'FreezeAsset'; params: { id: StagingXcmV4Location } }
9736
9669
  /**
9737
9670
  * Allow unprivileged transfers for the asset again.
9738
9671
  *
@@ -9744,7 +9677,7 @@ export type PalletAssetsCallLike002 =
9744
9677
  *
9745
9678
  * Weight: `O(1)`
9746
9679
  **/
9747
- | { name: 'ThawAsset'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9680
+ | { name: 'ThawAsset'; params: { id: StagingXcmV4Location } }
9748
9681
  /**
9749
9682
  * Change the Owner of an asset.
9750
9683
  *
@@ -9757,7 +9690,7 @@ export type PalletAssetsCallLike002 =
9757
9690
  *
9758
9691
  * Weight: `O(1)`
9759
9692
  **/
9760
- | { name: 'TransferOwnership'; params: { id: StagingXcmV3MultilocationMultiLocation; owner: MultiAddressLike } }
9693
+ | { name: 'TransferOwnership'; params: { id: StagingXcmV4Location; owner: MultiAddressLike } }
9761
9694
  /**
9762
9695
  * Change the Issuer, Admin and Freezer of an asset.
9763
9696
  *
@@ -9775,7 +9708,7 @@ export type PalletAssetsCallLike002 =
9775
9708
  | {
9776
9709
  name: 'SetTeam';
9777
9710
  params: {
9778
- id: StagingXcmV3MultilocationMultiLocation;
9711
+ id: StagingXcmV4Location;
9779
9712
  issuer: MultiAddressLike;
9780
9713
  admin: MultiAddressLike;
9781
9714
  freezer: MultiAddressLike;
@@ -9799,10 +9732,7 @@ export type PalletAssetsCallLike002 =
9799
9732
  *
9800
9733
  * Weight: `O(1)`
9801
9734
  **/
9802
- | {
9803
- name: 'SetMetadata';
9804
- params: { id: StagingXcmV3MultilocationMultiLocation; name: BytesLike; symbol: BytesLike; decimals: number };
9805
- }
9735
+ | { name: 'SetMetadata'; params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number } }
9806
9736
  /**
9807
9737
  * Clear the metadata for an asset.
9808
9738
  *
@@ -9816,7 +9746,7 @@ export type PalletAssetsCallLike002 =
9816
9746
  *
9817
9747
  * Weight: `O(1)`
9818
9748
  **/
9819
- | { name: 'ClearMetadata'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9749
+ | { name: 'ClearMetadata'; params: { id: StagingXcmV4Location } }
9820
9750
  /**
9821
9751
  * Force the metadata for an asset to some value.
9822
9752
  *
@@ -9835,13 +9765,7 @@ export type PalletAssetsCallLike002 =
9835
9765
  **/
9836
9766
  | {
9837
9767
  name: 'ForceSetMetadata';
9838
- params: {
9839
- id: StagingXcmV3MultilocationMultiLocation;
9840
- name: BytesLike;
9841
- symbol: BytesLike;
9842
- decimals: number;
9843
- isFrozen: boolean;
9844
- };
9768
+ params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number; isFrozen: boolean };
9845
9769
  }
9846
9770
  /**
9847
9771
  * Clear the metadata for an asset.
@@ -9856,7 +9780,7 @@ export type PalletAssetsCallLike002 =
9856
9780
  *
9857
9781
  * Weight: `O(1)`
9858
9782
  **/
9859
- | { name: 'ForceClearMetadata'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9783
+ | { name: 'ForceClearMetadata'; params: { id: StagingXcmV4Location } }
9860
9784
  /**
9861
9785
  * Alter the attributes of a given asset.
9862
9786
  *
@@ -9884,7 +9808,7 @@ export type PalletAssetsCallLike002 =
9884
9808
  | {
9885
9809
  name: 'ForceAssetStatus';
9886
9810
  params: {
9887
- id: StagingXcmV3MultilocationMultiLocation;
9811
+ id: StagingXcmV4Location;
9888
9812
  owner: MultiAddressLike;
9889
9813
  issuer: MultiAddressLike;
9890
9814
  admin: MultiAddressLike;
@@ -9916,10 +9840,7 @@ export type PalletAssetsCallLike002 =
9916
9840
  *
9917
9841
  * Weight: `O(1)`
9918
9842
  **/
9919
- | {
9920
- name: 'ApproveTransfer';
9921
- params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddressLike; amount: bigint };
9922
- }
9843
+ | { name: 'ApproveTransfer'; params: { id: StagingXcmV4Location; delegate: MultiAddressLike; amount: bigint } }
9923
9844
  /**
9924
9845
  * Cancel all of some asset approved for delegated transfer by a third-party account.
9925
9846
  *
@@ -9935,7 +9856,7 @@ export type PalletAssetsCallLike002 =
9935
9856
  *
9936
9857
  * Weight: `O(1)`
9937
9858
  **/
9938
- | { name: 'CancelApproval'; params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddressLike } }
9859
+ | { name: 'CancelApproval'; params: { id: StagingXcmV4Location; delegate: MultiAddressLike } }
9939
9860
  /**
9940
9861
  * Cancel all of some asset approved for delegated transfer by a third-party account.
9941
9862
  *
@@ -9953,7 +9874,7 @@ export type PalletAssetsCallLike002 =
9953
9874
  **/
9954
9875
  | {
9955
9876
  name: 'ForceCancelApproval';
9956
- params: { id: StagingXcmV3MultilocationMultiLocation; owner: MultiAddressLike; delegate: MultiAddressLike };
9877
+ params: { id: StagingXcmV4Location; owner: MultiAddressLike; delegate: MultiAddressLike };
9957
9878
  }
9958
9879
  /**
9959
9880
  * Transfer some asset balance from a previously delegated account to some third-party
@@ -9977,12 +9898,7 @@ export type PalletAssetsCallLike002 =
9977
9898
  **/
9978
9899
  | {
9979
9900
  name: 'TransferApproved';
9980
- params: {
9981
- id: StagingXcmV3MultilocationMultiLocation;
9982
- owner: MultiAddressLike;
9983
- destination: MultiAddressLike;
9984
- amount: bigint;
9985
- };
9901
+ params: { id: StagingXcmV4Location; owner: MultiAddressLike; destination: MultiAddressLike; amount: bigint };
9986
9902
  }
9987
9903
  /**
9988
9904
  * Create an asset account for non-provider assets.
@@ -9995,7 +9911,7 @@ export type PalletAssetsCallLike002 =
9995
9911
  *
9996
9912
  * Emits `Touched` event when successful.
9997
9913
  **/
9998
- | { name: 'Touch'; params: { id: StagingXcmV3MultilocationMultiLocation } }
9914
+ | { name: 'Touch'; params: { id: StagingXcmV4Location } }
9999
9915
  /**
10000
9916
  * Return the deposit (if any) of an asset account or a consumer reference (if any) of an
10001
9917
  * account.
@@ -10008,7 +9924,7 @@ export type PalletAssetsCallLike002 =
10008
9924
  *
10009
9925
  * Emits `Refunded` event when successful.
10010
9926
  **/
10011
- | { name: 'Refund'; params: { id: StagingXcmV3MultilocationMultiLocation; allowBurn: boolean } }
9927
+ | { name: 'Refund'; params: { id: StagingXcmV4Location; allowBurn: boolean } }
10012
9928
  /**
10013
9929
  * Sets the minimum balance of an asset.
10014
9930
  *
@@ -10023,7 +9939,7 @@ export type PalletAssetsCallLike002 =
10023
9939
  *
10024
9940
  * Emits `AssetMinBalanceChanged` event when successful.
10025
9941
  **/
10026
- | { name: 'SetMinBalance'; params: { id: StagingXcmV3MultilocationMultiLocation; minBalance: bigint } }
9942
+ | { name: 'SetMinBalance'; params: { id: StagingXcmV4Location; minBalance: bigint } }
10027
9943
  /**
10028
9944
  * Create an asset account for `who`.
10029
9945
  *
@@ -10036,7 +9952,7 @@ export type PalletAssetsCallLike002 =
10036
9952
  *
10037
9953
  * Emits `Touched` event when successful.
10038
9954
  **/
10039
- | { name: 'TouchOther'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike } }
9955
+ | { name: 'TouchOther'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
10040
9956
  /**
10041
9957
  * Return the deposit (if any) of a target asset account. Useful if you are the depositor.
10042
9958
  *
@@ -10049,7 +9965,7 @@ export type PalletAssetsCallLike002 =
10049
9965
  *
10050
9966
  * Emits `Refunded` event when successful.
10051
9967
  **/
10052
- | { name: 'RefundOther'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike } }
9968
+ | { name: 'RefundOther'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
10053
9969
  /**
10054
9970
  * Disallow further unprivileged transfers of an asset `id` to and from an account `who`.
10055
9971
  *
@@ -10062,7 +9978,26 @@ export type PalletAssetsCallLike002 =
10062
9978
  *
10063
9979
  * Weight: `O(1)`
10064
9980
  **/
10065
- | { name: 'Block'; params: { id: StagingXcmV3MultilocationMultiLocation; who: MultiAddressLike } };
9981
+ | { name: 'Block'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
9982
+ /**
9983
+ * Transfer the entire transferable balance from the caller asset account.
9984
+ *
9985
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
9986
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
9987
+ * transferred by this function. To ensure that this function results in a killed account,
9988
+ * you might need to prepare the account by removing any reference counters, storage
9989
+ * deposits, etc...
9990
+ *
9991
+ * The dispatch origin of this call must be Signed.
9992
+ *
9993
+ * - `id`: The identifier of the asset for the account holding a deposit.
9994
+ * - `dest`: The recipient of the transfer.
9995
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
9996
+ * of the funds the asset account has, causing the sender asset account to be killed
9997
+ * (false), or transfer everything except at least the minimum balance, which will
9998
+ * guarantee to keep the sender asset account alive (true).
9999
+ **/
10000
+ | { name: 'TransferAll'; params: { id: StagingXcmV4Location; dest: MultiAddressLike; keepAlive: boolean } };
10066
10001
 
10067
10002
  /**
10068
10003
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -10222,8 +10157,6 @@ export type PalletAssetsCall003 =
10222
10157
  *
10223
10158
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
10224
10159
  * asset.
10225
- *
10226
- * The asset class must be frozen before calling `start_destroy`.
10227
10160
  **/
10228
10161
  | { name: 'StartDestroy'; params: { id: number } }
10229
10162
  /**
@@ -10704,7 +10637,26 @@ export type PalletAssetsCall003 =
10704
10637
  *
10705
10638
  * Weight: `O(1)`
10706
10639
  **/
10707
- | { name: 'Block'; params: { id: number; who: MultiAddress } };
10640
+ | { name: 'Block'; params: { id: number; who: MultiAddress } }
10641
+ /**
10642
+ * Transfer the entire transferable balance from the caller asset account.
10643
+ *
10644
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
10645
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
10646
+ * transferred by this function. To ensure that this function results in a killed account,
10647
+ * you might need to prepare the account by removing any reference counters, storage
10648
+ * deposits, etc...
10649
+ *
10650
+ * The dispatch origin of this call must be Signed.
10651
+ *
10652
+ * - `id`: The identifier of the asset for the account holding a deposit.
10653
+ * - `dest`: The recipient of the transfer.
10654
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
10655
+ * of the funds the asset account has, causing the sender asset account to be killed
10656
+ * (false), or transfer everything except at least the minimum balance, which will
10657
+ * guarantee to keep the sender asset account alive (true).
10658
+ **/
10659
+ | { name: 'TransferAll'; params: { id: number; dest: MultiAddress; keepAlive: boolean } };
10708
10660
 
10709
10661
  export type PalletAssetsCallLike003 =
10710
10662
  /**
@@ -10761,8 +10713,6 @@ export type PalletAssetsCallLike003 =
10761
10713
  *
10762
10714
  * - `id`: The identifier of the asset to be destroyed. This must identify an existing
10763
10715
  * asset.
10764
- *
10765
- * The asset class must be frozen before calling `start_destroy`.
10766
10716
  **/
10767
10717
  | { name: 'StartDestroy'; params: { id: number } }
10768
10718
  /**
@@ -11249,7 +11199,26 @@ export type PalletAssetsCallLike003 =
11249
11199
  *
11250
11200
  * Weight: `O(1)`
11251
11201
  **/
11252
- | { name: 'Block'; params: { id: number; who: MultiAddressLike } };
11202
+ | { name: 'Block'; params: { id: number; who: MultiAddressLike } }
11203
+ /**
11204
+ * Transfer the entire transferable balance from the caller asset account.
11205
+ *
11206
+ * NOTE: This function only attempts to transfer _transferable_ balances. This means that
11207
+ * any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
11208
+ * transferred by this function. To ensure that this function results in a killed account,
11209
+ * you might need to prepare the account by removing any reference counters, storage
11210
+ * deposits, etc...
11211
+ *
11212
+ * The dispatch origin of this call must be Signed.
11213
+ *
11214
+ * - `id`: The identifier of the asset for the account holding a deposit.
11215
+ * - `dest`: The recipient of the transfer.
11216
+ * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
11217
+ * of the funds the asset account has, causing the sender asset account to be killed
11218
+ * (false), or transfer everything except at least the minimum balance, which will
11219
+ * guarantee to keep the sender asset account alive (true).
11220
+ **/
11221
+ | { name: 'TransferAll'; params: { id: number; dest: MultiAddressLike; keepAlive: boolean } };
11253
11222
 
11254
11223
  /**
11255
11224
  * Pallet's callable functions.
@@ -11261,10 +11230,7 @@ export type PalletAssetConversionCall =
11261
11230
  *
11262
11231
  * Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
11263
11232
  **/
11264
- | {
11265
- name: 'CreatePool';
11266
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11267
- }
11233
+ | { name: 'CreatePool'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } }
11268
11234
  /**
11269
11235
  * Provide liquidity into the pool of `asset1` and `asset2`.
11270
11236
  * NOTE: an optimal amount of asset1 and asset2 will be calculated and
@@ -11279,13 +11245,13 @@ export type PalletAssetConversionCall =
11279
11245
  * calls to render the liquidity withdrawable and rectify the exchange rate.
11280
11246
  *
11281
11247
  * Once liquidity is added, someone may successfully call
11282
- * [`Pallet::swap_exact_tokens_for_tokens`] successfully.
11248
+ * [`Pallet::swap_exact_tokens_for_tokens`].
11283
11249
  **/
11284
11250
  | {
11285
11251
  name: 'AddLiquidity';
11286
11252
  params: {
11287
- asset1: StagingXcmV3MultilocationMultiLocation;
11288
- asset2: StagingXcmV3MultilocationMultiLocation;
11253
+ asset1: StagingXcmV4Location;
11254
+ asset2: StagingXcmV4Location;
11289
11255
  amount1Desired: bigint;
11290
11256
  amount2Desired: bigint;
11291
11257
  amount1Min: bigint;
@@ -11301,8 +11267,8 @@ export type PalletAssetConversionCall =
11301
11267
  | {
11302
11268
  name: 'RemoveLiquidity';
11303
11269
  params: {
11304
- asset1: StagingXcmV3MultilocationMultiLocation;
11305
- asset2: StagingXcmV3MultilocationMultiLocation;
11270
+ asset1: StagingXcmV4Location;
11271
+ asset2: StagingXcmV4Location;
11306
11272
  lpTokenBurn: bigint;
11307
11273
  amount1MinReceive: bigint;
11308
11274
  amount2MinReceive: bigint;
@@ -11320,7 +11286,7 @@ export type PalletAssetConversionCall =
11320
11286
  | {
11321
11287
  name: 'SwapExactTokensForTokens';
11322
11288
  params: {
11323
- path: Array<StagingXcmV3MultilocationMultiLocation>;
11289
+ path: Array<StagingXcmV4Location>;
11324
11290
  amountIn: bigint;
11325
11291
  amountOutMin: bigint;
11326
11292
  sendTo: AccountId32;
@@ -11338,7 +11304,7 @@ export type PalletAssetConversionCall =
11338
11304
  | {
11339
11305
  name: 'SwapTokensForExactTokens';
11340
11306
  params: {
11341
- path: Array<StagingXcmV3MultilocationMultiLocation>;
11307
+ path: Array<StagingXcmV4Location>;
11342
11308
  amountOut: bigint;
11343
11309
  amountInMax: bigint;
11344
11310
  sendTo: AccountId32;
@@ -11358,10 +11324,7 @@ export type PalletAssetConversionCall =
11358
11324
  *
11359
11325
  * Emits `Touched` event when successful.
11360
11326
  **/
11361
- | {
11362
- name: 'Touch';
11363
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11364
- };
11327
+ | { name: 'Touch'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
11365
11328
 
11366
11329
  export type PalletAssetConversionCallLike =
11367
11330
  /**
@@ -11370,10 +11333,7 @@ export type PalletAssetConversionCallLike =
11370
11333
  *
11371
11334
  * Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
11372
11335
  **/
11373
- | {
11374
- name: 'CreatePool';
11375
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11376
- }
11336
+ | { name: 'CreatePool'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } }
11377
11337
  /**
11378
11338
  * Provide liquidity into the pool of `asset1` and `asset2`.
11379
11339
  * NOTE: an optimal amount of asset1 and asset2 will be calculated and
@@ -11388,13 +11348,13 @@ export type PalletAssetConversionCallLike =
11388
11348
  * calls to render the liquidity withdrawable and rectify the exchange rate.
11389
11349
  *
11390
11350
  * Once liquidity is added, someone may successfully call
11391
- * [`Pallet::swap_exact_tokens_for_tokens`] successfully.
11351
+ * [`Pallet::swap_exact_tokens_for_tokens`].
11392
11352
  **/
11393
11353
  | {
11394
11354
  name: 'AddLiquidity';
11395
11355
  params: {
11396
- asset1: StagingXcmV3MultilocationMultiLocation;
11397
- asset2: StagingXcmV3MultilocationMultiLocation;
11356
+ asset1: StagingXcmV4Location;
11357
+ asset2: StagingXcmV4Location;
11398
11358
  amount1Desired: bigint;
11399
11359
  amount2Desired: bigint;
11400
11360
  amount1Min: bigint;
@@ -11410,8 +11370,8 @@ export type PalletAssetConversionCallLike =
11410
11370
  | {
11411
11371
  name: 'RemoveLiquidity';
11412
11372
  params: {
11413
- asset1: StagingXcmV3MultilocationMultiLocation;
11414
- asset2: StagingXcmV3MultilocationMultiLocation;
11373
+ asset1: StagingXcmV4Location;
11374
+ asset2: StagingXcmV4Location;
11415
11375
  lpTokenBurn: bigint;
11416
11376
  amount1MinReceive: bigint;
11417
11377
  amount2MinReceive: bigint;
@@ -11429,7 +11389,7 @@ export type PalletAssetConversionCallLike =
11429
11389
  | {
11430
11390
  name: 'SwapExactTokensForTokens';
11431
11391
  params: {
11432
- path: Array<StagingXcmV3MultilocationMultiLocation>;
11392
+ path: Array<StagingXcmV4Location>;
11433
11393
  amountIn: bigint;
11434
11394
  amountOutMin: bigint;
11435
11395
  sendTo: AccountId32Like;
@@ -11447,7 +11407,7 @@ export type PalletAssetConversionCallLike =
11447
11407
  | {
11448
11408
  name: 'SwapTokensForExactTokens';
11449
11409
  params: {
11450
- path: Array<StagingXcmV3MultilocationMultiLocation>;
11410
+ path: Array<StagingXcmV4Location>;
11451
11411
  amountOut: bigint;
11452
11412
  amountInMax: bigint;
11453
11413
  sendTo: AccountId32Like;
@@ -11467,10 +11427,7 @@ export type PalletAssetConversionCallLike =
11467
11427
  *
11468
11428
  * Emits `Touched` event when successful.
11469
11429
  **/
11470
- | {
11471
- name: 'Touch';
11472
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11473
- };
11430
+ | { name: 'Touch'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
11474
11431
 
11475
11432
  /**
11476
11433
  * Pallet's callable functions.
@@ -11482,10 +11439,7 @@ export type PalletAssetConversionOpsCall =
11482
11439
  *
11483
11440
  * Must be signed.
11484
11441
  **/
11485
- {
11486
- name: 'MigrateToNewAccount';
11487
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11488
- };
11442
+ { name: 'MigrateToNewAccount'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
11489
11443
 
11490
11444
  export type PalletAssetConversionOpsCallLike =
11491
11445
  /**
@@ -11494,10 +11448,7 @@ export type PalletAssetConversionOpsCallLike =
11494
11448
  *
11495
11449
  * Must be signed.
11496
11450
  **/
11497
- {
11498
- name: 'MigrateToNewAccount';
11499
- params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
11500
- };
11451
+ { name: 'MigrateToNewAccount'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
11501
11452
 
11502
11453
  export type AssetHubRococoRuntimeOriginCaller =
11503
11454
  | { type: 'System'; value: FrameSupportDispatchRawOrigin }
@@ -11642,8 +11593,6 @@ export type PalletProxyError =
11642
11593
  **/
11643
11594
  | 'NoSelfProxy';
11644
11595
 
11645
- export type BpXcmBridgeHubRouterBridgeState = { deliveryFeeFactor: FixedU128; isCongested: boolean };
11646
-
11647
11596
  export type PalletAssetsAssetDetails = {
11648
11597
  owner: AccountId32;
11649
11598
  issuer: AccountId32;
@@ -12290,7 +12239,7 @@ export type FrameSystemExtensionsCheckWeight = {};
12290
12239
 
12291
12240
  export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
12292
12241
  tip: bigint;
12293
- assetId?: StagingXcmV3MultilocationMultiLocation | undefined;
12242
+ assetId?: StagingXcmV4Location | undefined;
12294
12243
  };
12295
12244
 
12296
12245
  export type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = {};