@dedot/chaintypes 0.90.0 → 0.91.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.
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/runtime.d.ts +3 -1
- package/kusama-asset-hub/types.d.ts +1 -4
- package/package.json +2 -2
- package/paseo-asset-hub/consts.d.ts +36 -2
- package/paseo-asset-hub/errors.d.ts +45 -0
- package/paseo-asset-hub/events.d.ts +121 -77
- package/paseo-asset-hub/index.d.ts +1 -1
- package/paseo-asset-hub/query.d.ts +68 -37
- package/paseo-asset-hub/runtime.d.ts +13 -16
- package/paseo-asset-hub/tx.d.ts +433 -204
- package/paseo-asset-hub/types.d.ts +581 -373
|
@@ -9,13 +9,13 @@ import type {
|
|
|
9
9
|
FixedBytes,
|
|
10
10
|
FixedArray,
|
|
11
11
|
Bytes,
|
|
12
|
+
FixedU128,
|
|
12
13
|
Result,
|
|
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,
|
|
@@ -60,6 +60,7 @@ export type AssetHubPaseoRuntimeRuntimeEvent =
|
|
|
60
60
|
| { pallet: 'XcmpQueue'; palletEvent: CumulusPalletXcmpQueueEvent }
|
|
61
61
|
| { pallet: 'PolkadotXcm'; palletEvent: PalletXcmEvent }
|
|
62
62
|
| { pallet: 'CumulusXcm'; palletEvent: CumulusPalletXcmEvent }
|
|
63
|
+
| { pallet: 'ToKusamaXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
|
|
63
64
|
| { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
|
|
64
65
|
| { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
|
|
65
66
|
| { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
|
|
@@ -70,6 +71,7 @@ export type AssetHubPaseoRuntimeRuntimeEvent =
|
|
|
70
71
|
| { pallet: 'ForeignAssets'; palletEvent: PalletAssetsEvent002 }
|
|
71
72
|
| { pallet: 'PoolAssets'; palletEvent: PalletAssetsEvent }
|
|
72
73
|
| { pallet: 'AssetConversion'; palletEvent: PalletAssetConversionEvent }
|
|
74
|
+
| { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
|
|
73
75
|
| { pallet: 'Sudo'; palletEvent: PalletSudoEvent };
|
|
74
76
|
|
|
75
77
|
/**
|
|
@@ -263,54 +265,39 @@ export type PalletAssetConversionTxPaymentEvent =
|
|
|
263
265
|
**/
|
|
264
266
|
| {
|
|
265
267
|
name: 'AssetTxFeePaid';
|
|
266
|
-
data: { who: AccountId32; actualFee: bigint; tip: bigint; assetId:
|
|
268
|
+
data: { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV4Location };
|
|
267
269
|
}
|
|
268
270
|
/**
|
|
269
271
|
* A swap of the refund in native currency back to asset failed.
|
|
270
272
|
**/
|
|
271
273
|
| { name: 'AssetRefundFailed'; data: { nativeAmountKept: bigint } };
|
|
272
274
|
|
|
273
|
-
export type
|
|
275
|
+
export type StagingXcmV4Location = { parents: number; interior: StagingXcmV4Junctions };
|
|
274
276
|
|
|
275
|
-
export type
|
|
277
|
+
export type StagingXcmV4Junctions =
|
|
276
278
|
| { type: 'Here' }
|
|
277
|
-
| { type: 'X1'; value:
|
|
278
|
-
| { type: 'X2'; value:
|
|
279
|
-
| { type: 'X3'; value:
|
|
280
|
-
| { type: 'X4'; value:
|
|
281
|
-
| { type: 'X5'; value:
|
|
282
|
-
| { type: 'X6'; value:
|
|
283
|
-
| {
|
|
284
|
-
|
|
285
|
-
value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction];
|
|
286
|
-
}
|
|
287
|
-
| {
|
|
288
|
-
type: 'X8';
|
|
289
|
-
value: [
|
|
290
|
-
XcmV3Junction,
|
|
291
|
-
XcmV3Junction,
|
|
292
|
-
XcmV3Junction,
|
|
293
|
-
XcmV3Junction,
|
|
294
|
-
XcmV3Junction,
|
|
295
|
-
XcmV3Junction,
|
|
296
|
-
XcmV3Junction,
|
|
297
|
-
XcmV3Junction,
|
|
298
|
-
];
|
|
299
|
-
};
|
|
279
|
+
| { type: 'X1'; value: FixedArray<StagingXcmV4Junction, 1> }
|
|
280
|
+
| { type: 'X2'; value: FixedArray<StagingXcmV4Junction, 2> }
|
|
281
|
+
| { type: 'X3'; value: FixedArray<StagingXcmV4Junction, 3> }
|
|
282
|
+
| { type: 'X4'; value: FixedArray<StagingXcmV4Junction, 4> }
|
|
283
|
+
| { type: 'X5'; value: FixedArray<StagingXcmV4Junction, 5> }
|
|
284
|
+
| { type: 'X6'; value: FixedArray<StagingXcmV4Junction, 6> }
|
|
285
|
+
| { type: 'X7'; value: FixedArray<StagingXcmV4Junction, 7> }
|
|
286
|
+
| { type: 'X8'; value: FixedArray<StagingXcmV4Junction, 8> };
|
|
300
287
|
|
|
301
|
-
export type
|
|
288
|
+
export type StagingXcmV4Junction =
|
|
302
289
|
| { type: 'Parachain'; value: number }
|
|
303
|
-
| { type: 'AccountId32'; value: { network?:
|
|
304
|
-
| { type: 'AccountIndex64'; value: { network?:
|
|
305
|
-
| { type: 'AccountKey20'; value: { network?:
|
|
290
|
+
| { type: 'AccountId32'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; id: FixedBytes<32> } }
|
|
291
|
+
| { type: 'AccountIndex64'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; index: bigint } }
|
|
292
|
+
| { type: 'AccountKey20'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; key: FixedBytes<20> } }
|
|
306
293
|
| { type: 'PalletInstance'; value: number }
|
|
307
294
|
| { type: 'GeneralIndex'; value: bigint }
|
|
308
295
|
| { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
|
|
309
296
|
| { type: 'OnlyChild' }
|
|
310
297
|
| { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
|
|
311
|
-
| { type: 'GlobalConsensus'; value:
|
|
298
|
+
| { type: 'GlobalConsensus'; value: StagingXcmV4JunctionNetworkId };
|
|
312
299
|
|
|
313
|
-
export type
|
|
300
|
+
export type StagingXcmV4JunctionNetworkId =
|
|
314
301
|
| { type: 'ByGenesis'; value: FixedBytes<32> }
|
|
315
302
|
| { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
|
|
316
303
|
| { type: 'Polkadot' }
|
|
@@ -646,44 +633,6 @@ export type XcmV3TraitsError =
|
|
|
646
633
|
| { type: 'WeightNotComputable' }
|
|
647
634
|
| { type: 'ExceedsStackLimit' };
|
|
648
635
|
|
|
649
|
-
export type StagingXcmV4Location = { parents: number; interior: StagingXcmV4Junctions };
|
|
650
|
-
|
|
651
|
-
export type StagingXcmV4Junctions =
|
|
652
|
-
| { type: 'Here' }
|
|
653
|
-
| { type: 'X1'; value: FixedArray<StagingXcmV4Junction, 1> }
|
|
654
|
-
| { type: 'X2'; value: FixedArray<StagingXcmV4Junction, 2> }
|
|
655
|
-
| { type: 'X3'; value: FixedArray<StagingXcmV4Junction, 3> }
|
|
656
|
-
| { type: 'X4'; value: FixedArray<StagingXcmV4Junction, 4> }
|
|
657
|
-
| { type: 'X5'; value: FixedArray<StagingXcmV4Junction, 5> }
|
|
658
|
-
| { type: 'X6'; value: FixedArray<StagingXcmV4Junction, 6> }
|
|
659
|
-
| { type: 'X7'; value: FixedArray<StagingXcmV4Junction, 7> }
|
|
660
|
-
| { type: 'X8'; value: FixedArray<StagingXcmV4Junction, 8> };
|
|
661
|
-
|
|
662
|
-
export type StagingXcmV4Junction =
|
|
663
|
-
| { type: 'Parachain'; value: number }
|
|
664
|
-
| { type: 'AccountId32'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; id: FixedBytes<32> } }
|
|
665
|
-
| { type: 'AccountIndex64'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; index: bigint } }
|
|
666
|
-
| { type: 'AccountKey20'; value: { network?: StagingXcmV4JunctionNetworkId | undefined; key: FixedBytes<20> } }
|
|
667
|
-
| { type: 'PalletInstance'; value: number }
|
|
668
|
-
| { type: 'GeneralIndex'; value: bigint }
|
|
669
|
-
| { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
|
|
670
|
-
| { type: 'OnlyChild' }
|
|
671
|
-
| { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
|
|
672
|
-
| { type: 'GlobalConsensus'; value: StagingXcmV4JunctionNetworkId };
|
|
673
|
-
|
|
674
|
-
export type StagingXcmV4JunctionNetworkId =
|
|
675
|
-
| { type: 'ByGenesis'; value: FixedBytes<32> }
|
|
676
|
-
| { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
|
|
677
|
-
| { type: 'Polkadot' }
|
|
678
|
-
| { type: 'Kusama' }
|
|
679
|
-
| { type: 'Westend' }
|
|
680
|
-
| { type: 'Rococo' }
|
|
681
|
-
| { type: 'Wococo' }
|
|
682
|
-
| { type: 'Ethereum'; value: { chainId: bigint } }
|
|
683
|
-
| { type: 'BitcoinCore' }
|
|
684
|
-
| { type: 'BitcoinCash' }
|
|
685
|
-
| { type: 'PolkadotBulletin' };
|
|
686
|
-
|
|
687
636
|
export type StagingXcmV4Xcm = Array<StagingXcmV4Instruction>;
|
|
688
637
|
|
|
689
638
|
export type StagingXcmV4Instruction =
|
|
@@ -939,6 +888,59 @@ export type XcmV3MultiassetAssetId =
|
|
|
939
888
|
| { type: 'Concrete'; value: StagingXcmV3MultilocationMultiLocation }
|
|
940
889
|
| { type: 'Abstract'; value: FixedBytes<32> };
|
|
941
890
|
|
|
891
|
+
export type StagingXcmV3MultilocationMultiLocation = { parents: number; interior: XcmV3Junctions };
|
|
892
|
+
|
|
893
|
+
export type XcmV3Junctions =
|
|
894
|
+
| { type: 'Here' }
|
|
895
|
+
| { type: 'X1'; value: XcmV3Junction }
|
|
896
|
+
| { type: 'X2'; value: [XcmV3Junction, XcmV3Junction] }
|
|
897
|
+
| { type: 'X3'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction] }
|
|
898
|
+
| { type: 'X4'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
|
|
899
|
+
| { type: 'X5'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
|
|
900
|
+
| { type: 'X6'; value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction] }
|
|
901
|
+
| {
|
|
902
|
+
type: 'X7';
|
|
903
|
+
value: [XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction];
|
|
904
|
+
}
|
|
905
|
+
| {
|
|
906
|
+
type: 'X8';
|
|
907
|
+
value: [
|
|
908
|
+
XcmV3Junction,
|
|
909
|
+
XcmV3Junction,
|
|
910
|
+
XcmV3Junction,
|
|
911
|
+
XcmV3Junction,
|
|
912
|
+
XcmV3Junction,
|
|
913
|
+
XcmV3Junction,
|
|
914
|
+
XcmV3Junction,
|
|
915
|
+
XcmV3Junction,
|
|
916
|
+
];
|
|
917
|
+
};
|
|
918
|
+
|
|
919
|
+
export type XcmV3Junction =
|
|
920
|
+
| { type: 'Parachain'; value: number }
|
|
921
|
+
| { type: 'AccountId32'; value: { network?: XcmV3JunctionNetworkId | undefined; id: FixedBytes<32> } }
|
|
922
|
+
| { type: 'AccountIndex64'; value: { network?: XcmV3JunctionNetworkId | undefined; index: bigint } }
|
|
923
|
+
| { type: 'AccountKey20'; value: { network?: XcmV3JunctionNetworkId | undefined; key: FixedBytes<20> } }
|
|
924
|
+
| { type: 'PalletInstance'; value: number }
|
|
925
|
+
| { type: 'GeneralIndex'; value: bigint }
|
|
926
|
+
| { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
|
|
927
|
+
| { type: 'OnlyChild' }
|
|
928
|
+
| { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
|
|
929
|
+
| { type: 'GlobalConsensus'; value: XcmV3JunctionNetworkId };
|
|
930
|
+
|
|
931
|
+
export type XcmV3JunctionNetworkId =
|
|
932
|
+
| { type: 'ByGenesis'; value: FixedBytes<32> }
|
|
933
|
+
| { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
|
|
934
|
+
| { type: 'Polkadot' }
|
|
935
|
+
| { type: 'Kusama' }
|
|
936
|
+
| { type: 'Westend' }
|
|
937
|
+
| { type: 'Rococo' }
|
|
938
|
+
| { type: 'Wococo' }
|
|
939
|
+
| { type: 'Ethereum'; value: { chainId: bigint } }
|
|
940
|
+
| { type: 'BitcoinCore' }
|
|
941
|
+
| { type: 'BitcoinCash' }
|
|
942
|
+
| { type: 'PolkadotBulletin' };
|
|
943
|
+
|
|
942
944
|
export type XcmV3MultiassetFungibility =
|
|
943
945
|
| { type: 'Fungible'; value: bigint }
|
|
944
946
|
| { type: 'NonFungible'; value: XcmV3MultiassetAssetInstance };
|
|
@@ -976,6 +978,35 @@ export type CumulusPalletXcmEvent =
|
|
|
976
978
|
**/
|
|
977
979
|
| { name: 'ExecutedDownward'; data: [FixedBytes<32>, StagingXcmV4TraitsOutcome] };
|
|
978
980
|
|
|
981
|
+
/**
|
|
982
|
+
* The `Event` enum of this pallet
|
|
983
|
+
**/
|
|
984
|
+
export type PalletXcmBridgeHubRouterEvent =
|
|
985
|
+
/**
|
|
986
|
+
* Delivery fee factor has been decreased.
|
|
987
|
+
**/
|
|
988
|
+
| {
|
|
989
|
+
name: 'DeliveryFeeFactorDecreased';
|
|
990
|
+
data: {
|
|
991
|
+
/**
|
|
992
|
+
* New value of the `DeliveryFeeFactor`.
|
|
993
|
+
**/
|
|
994
|
+
newValue: FixedU128;
|
|
995
|
+
};
|
|
996
|
+
}
|
|
997
|
+
/**
|
|
998
|
+
* Delivery fee factor has been increased.
|
|
999
|
+
**/
|
|
1000
|
+
| {
|
|
1001
|
+
name: 'DeliveryFeeFactorIncreased';
|
|
1002
|
+
data: {
|
|
1003
|
+
/**
|
|
1004
|
+
* New value of the `DeliveryFeeFactor`.
|
|
1005
|
+
**/
|
|
1006
|
+
newValue: FixedU128;
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
|
|
979
1010
|
/**
|
|
980
1011
|
* The `Event` enum of this pallet
|
|
981
1012
|
**/
|
|
@@ -1716,119 +1747,94 @@ export type PalletAssetsEvent002 =
|
|
|
1716
1747
|
/**
|
|
1717
1748
|
* Some asset class was created.
|
|
1718
1749
|
**/
|
|
1719
|
-
| {
|
|
1720
|
-
name: 'Created';
|
|
1721
|
-
data: { assetId: StagingXcmV3MultilocationMultiLocation; creator: AccountId32; owner: AccountId32 };
|
|
1722
|
-
}
|
|
1750
|
+
| { name: 'Created'; data: { assetId: StagingXcmV4Location; creator: AccountId32; owner: AccountId32 } }
|
|
1723
1751
|
/**
|
|
1724
1752
|
* Some assets were issued.
|
|
1725
1753
|
**/
|
|
1726
|
-
| { name: 'Issued'; data: { assetId:
|
|
1754
|
+
| { name: 'Issued'; data: { assetId: StagingXcmV4Location; owner: AccountId32; amount: bigint } }
|
|
1727
1755
|
/**
|
|
1728
1756
|
* Some assets were transferred.
|
|
1729
1757
|
**/
|
|
1730
|
-
| {
|
|
1731
|
-
name: 'Transferred';
|
|
1732
|
-
data: { assetId: StagingXcmV3MultilocationMultiLocation; from: AccountId32; to: AccountId32; amount: bigint };
|
|
1733
|
-
}
|
|
1758
|
+
| { name: 'Transferred'; data: { assetId: StagingXcmV4Location; from: AccountId32; to: AccountId32; amount: bigint } }
|
|
1734
1759
|
/**
|
|
1735
1760
|
* Some assets were destroyed.
|
|
1736
1761
|
**/
|
|
1737
|
-
| { name: 'Burned'; data: { assetId:
|
|
1762
|
+
| { name: 'Burned'; data: { assetId: StagingXcmV4Location; owner: AccountId32; balance: bigint } }
|
|
1738
1763
|
/**
|
|
1739
1764
|
* The management team changed.
|
|
1740
1765
|
**/
|
|
1741
1766
|
| {
|
|
1742
1767
|
name: 'TeamChanged';
|
|
1743
|
-
data: {
|
|
1744
|
-
assetId: StagingXcmV3MultilocationMultiLocation;
|
|
1745
|
-
issuer: AccountId32;
|
|
1746
|
-
admin: AccountId32;
|
|
1747
|
-
freezer: AccountId32;
|
|
1748
|
-
};
|
|
1768
|
+
data: { assetId: StagingXcmV4Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 };
|
|
1749
1769
|
}
|
|
1750
1770
|
/**
|
|
1751
1771
|
* The owner changed.
|
|
1752
1772
|
**/
|
|
1753
|
-
| { name: 'OwnerChanged'; data: { assetId:
|
|
1773
|
+
| { name: 'OwnerChanged'; data: { assetId: StagingXcmV4Location; owner: AccountId32 } }
|
|
1754
1774
|
/**
|
|
1755
1775
|
* Some account `who` was frozen.
|
|
1756
1776
|
**/
|
|
1757
|
-
| { name: 'Frozen'; data: { assetId:
|
|
1777
|
+
| { name: 'Frozen'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
|
|
1758
1778
|
/**
|
|
1759
1779
|
* Some account `who` was thawed.
|
|
1760
1780
|
**/
|
|
1761
|
-
| { name: 'Thawed'; data: { assetId:
|
|
1781
|
+
| { name: 'Thawed'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
|
|
1762
1782
|
/**
|
|
1763
1783
|
* Some asset `asset_id` was frozen.
|
|
1764
1784
|
**/
|
|
1765
|
-
| { name: 'AssetFrozen'; data: { assetId:
|
|
1785
|
+
| { name: 'AssetFrozen'; data: { assetId: StagingXcmV4Location } }
|
|
1766
1786
|
/**
|
|
1767
1787
|
* Some asset `asset_id` was thawed.
|
|
1768
1788
|
**/
|
|
1769
|
-
| { name: 'AssetThawed'; data: { assetId:
|
|
1789
|
+
| { name: 'AssetThawed'; data: { assetId: StagingXcmV4Location } }
|
|
1770
1790
|
/**
|
|
1771
1791
|
* Accounts were destroyed for given asset.
|
|
1772
1792
|
**/
|
|
1773
1793
|
| {
|
|
1774
1794
|
name: 'AccountsDestroyed';
|
|
1775
|
-
data: { assetId:
|
|
1795
|
+
data: { assetId: StagingXcmV4Location; accountsDestroyed: number; accountsRemaining: number };
|
|
1776
1796
|
}
|
|
1777
1797
|
/**
|
|
1778
1798
|
* Approvals were destroyed for given asset.
|
|
1779
1799
|
**/
|
|
1780
1800
|
| {
|
|
1781
1801
|
name: 'ApprovalsDestroyed';
|
|
1782
|
-
data: { assetId:
|
|
1802
|
+
data: { assetId: StagingXcmV4Location; approvalsDestroyed: number; approvalsRemaining: number };
|
|
1783
1803
|
}
|
|
1784
1804
|
/**
|
|
1785
1805
|
* An asset class is in the process of being destroyed.
|
|
1786
1806
|
**/
|
|
1787
|
-
| { name: 'DestructionStarted'; data: { assetId:
|
|
1807
|
+
| { name: 'DestructionStarted'; data: { assetId: StagingXcmV4Location } }
|
|
1788
1808
|
/**
|
|
1789
1809
|
* An asset class was destroyed.
|
|
1790
1810
|
**/
|
|
1791
|
-
| { name: 'Destroyed'; data: { assetId:
|
|
1811
|
+
| { name: 'Destroyed'; data: { assetId: StagingXcmV4Location } }
|
|
1792
1812
|
/**
|
|
1793
1813
|
* Some asset class was force-created.
|
|
1794
1814
|
**/
|
|
1795
|
-
| { name: 'ForceCreated'; data: { assetId:
|
|
1815
|
+
| { name: 'ForceCreated'; data: { assetId: StagingXcmV4Location; owner: AccountId32 } }
|
|
1796
1816
|
/**
|
|
1797
1817
|
* New metadata has been set for an asset.
|
|
1798
1818
|
**/
|
|
1799
1819
|
| {
|
|
1800
1820
|
name: 'MetadataSet';
|
|
1801
|
-
data: {
|
|
1802
|
-
assetId: StagingXcmV3MultilocationMultiLocation;
|
|
1803
|
-
name: Bytes;
|
|
1804
|
-
symbol: Bytes;
|
|
1805
|
-
decimals: number;
|
|
1806
|
-
isFrozen: boolean;
|
|
1807
|
-
};
|
|
1821
|
+
data: { assetId: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean };
|
|
1808
1822
|
}
|
|
1809
1823
|
/**
|
|
1810
1824
|
* Metadata has been cleared for an asset.
|
|
1811
1825
|
**/
|
|
1812
|
-
| { name: 'MetadataCleared'; data: { assetId:
|
|
1826
|
+
| { name: 'MetadataCleared'; data: { assetId: StagingXcmV4Location } }
|
|
1813
1827
|
/**
|
|
1814
1828
|
* (Additional) funds have been approved for transfer to a destination account.
|
|
1815
1829
|
**/
|
|
1816
1830
|
| {
|
|
1817
1831
|
name: 'ApprovedTransfer';
|
|
1818
|
-
data: {
|
|
1819
|
-
assetId: StagingXcmV3MultilocationMultiLocation;
|
|
1820
|
-
source: AccountId32;
|
|
1821
|
-
delegate: AccountId32;
|
|
1822
|
-
amount: bigint;
|
|
1823
|
-
};
|
|
1832
|
+
data: { assetId: StagingXcmV4Location; source: AccountId32; delegate: AccountId32; amount: bigint };
|
|
1824
1833
|
}
|
|
1825
1834
|
/**
|
|
1826
1835
|
* An approval for account `delegate` was cancelled by `owner`.
|
|
1827
1836
|
**/
|
|
1828
|
-
| {
|
|
1829
|
-
name: 'ApprovalCancelled';
|
|
1830
|
-
data: { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; delegate: AccountId32 };
|
|
1831
|
-
}
|
|
1837
|
+
| { name: 'ApprovalCancelled'; data: { assetId: StagingXcmV4Location; owner: AccountId32; delegate: AccountId32 } }
|
|
1832
1838
|
/**
|
|
1833
1839
|
* An `amount` was transferred in its entirety from `owner` to `destination` by
|
|
1834
1840
|
* the approved `delegate`.
|
|
@@ -1836,7 +1842,7 @@ export type PalletAssetsEvent002 =
|
|
|
1836
1842
|
| {
|
|
1837
1843
|
name: 'TransferredApproved';
|
|
1838
1844
|
data: {
|
|
1839
|
-
assetId:
|
|
1845
|
+
assetId: StagingXcmV4Location;
|
|
1840
1846
|
owner: AccountId32;
|
|
1841
1847
|
delegate: AccountId32;
|
|
1842
1848
|
destination: AccountId32;
|
|
@@ -1846,30 +1852,27 @@ export type PalletAssetsEvent002 =
|
|
|
1846
1852
|
/**
|
|
1847
1853
|
* An asset has had its attributes changed by the `Force` origin.
|
|
1848
1854
|
**/
|
|
1849
|
-
| { name: 'AssetStatusChanged'; data: { assetId:
|
|
1855
|
+
| { name: 'AssetStatusChanged'; data: { assetId: StagingXcmV4Location } }
|
|
1850
1856
|
/**
|
|
1851
1857
|
* The min_balance of an asset has been updated by the asset owner.
|
|
1852
1858
|
**/
|
|
1853
|
-
| { name: 'AssetMinBalanceChanged'; data: { assetId:
|
|
1859
|
+
| { name: 'AssetMinBalanceChanged'; data: { assetId: StagingXcmV4Location; newMinBalance: bigint } }
|
|
1854
1860
|
/**
|
|
1855
1861
|
* Some account `who` was created with a deposit from `depositor`.
|
|
1856
1862
|
**/
|
|
1857
|
-
| {
|
|
1858
|
-
name: 'Touched';
|
|
1859
|
-
data: { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; depositor: AccountId32 };
|
|
1860
|
-
}
|
|
1863
|
+
| { name: 'Touched'; data: { assetId: StagingXcmV4Location; who: AccountId32; depositor: AccountId32 } }
|
|
1861
1864
|
/**
|
|
1862
1865
|
* Some account `who` was blocked.
|
|
1863
1866
|
**/
|
|
1864
|
-
| { name: 'Blocked'; data: { assetId:
|
|
1867
|
+
| { name: 'Blocked'; data: { assetId: StagingXcmV4Location; who: AccountId32 } }
|
|
1865
1868
|
/**
|
|
1866
1869
|
* Some assets were deposited (e.g. for transaction fees).
|
|
1867
1870
|
**/
|
|
1868
|
-
| { name: 'Deposited'; data: { assetId:
|
|
1871
|
+
| { name: 'Deposited'; data: { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint } }
|
|
1869
1872
|
/**
|
|
1870
1873
|
* Some assets were withdrawn from the account (e.g. for transaction fees).
|
|
1871
1874
|
**/
|
|
1872
|
-
| { name: 'Withdrawn'; data: { assetId:
|
|
1875
|
+
| { name: 'Withdrawn'; data: { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint } };
|
|
1873
1876
|
|
|
1874
1877
|
/**
|
|
1875
1878
|
* The `Event` enum of this pallet
|
|
@@ -1890,7 +1893,7 @@ export type PalletAssetConversionEvent =
|
|
|
1890
1893
|
* The pool id associated with the pool. Note that the order of the assets may not be
|
|
1891
1894
|
* the same as the order specified in the create pool extrinsic.
|
|
1892
1895
|
**/
|
|
1893
|
-
poolId: [
|
|
1896
|
+
poolId: [StagingXcmV4Location, StagingXcmV4Location];
|
|
1894
1897
|
|
|
1895
1898
|
/**
|
|
1896
1899
|
* The account ID of the pool.
|
|
@@ -1923,7 +1926,7 @@ export type PalletAssetConversionEvent =
|
|
|
1923
1926
|
/**
|
|
1924
1927
|
* The pool id of the pool that the liquidity was added to.
|
|
1925
1928
|
**/
|
|
1926
|
-
poolId: [
|
|
1929
|
+
poolId: [StagingXcmV4Location, StagingXcmV4Location];
|
|
1927
1930
|
|
|
1928
1931
|
/**
|
|
1929
1932
|
* The amount of the first asset that was added to the pool.
|
|
@@ -1965,7 +1968,7 @@ export type PalletAssetConversionEvent =
|
|
|
1965
1968
|
/**
|
|
1966
1969
|
* The pool id that the liquidity was removed from.
|
|
1967
1970
|
**/
|
|
1968
|
-
poolId: [
|
|
1971
|
+
poolId: [StagingXcmV4Location, StagingXcmV4Location];
|
|
1969
1972
|
|
|
1970
1973
|
/**
|
|
1971
1974
|
* The amount of the first asset that was removed from the pool.
|
|
@@ -2024,7 +2027,7 @@ export type PalletAssetConversionEvent =
|
|
|
2024
2027
|
* The route of asset IDs with amounts that the swap went through.
|
|
2025
2028
|
* E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
|
|
2026
2029
|
**/
|
|
2027
|
-
path: Array<[
|
|
2030
|
+
path: Array<[StagingXcmV4Location, bigint]>;
|
|
2028
2031
|
};
|
|
2029
2032
|
}
|
|
2030
2033
|
/**
|
|
@@ -2047,7 +2050,7 @@ export type PalletAssetConversionEvent =
|
|
|
2047
2050
|
* The route of asset IDs with amounts that the swap went through.
|
|
2048
2051
|
* E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
|
|
2049
2052
|
**/
|
|
2050
|
-
path: Array<[
|
|
2053
|
+
path: Array<[StagingXcmV4Location, bigint]>;
|
|
2051
2054
|
};
|
|
2052
2055
|
}
|
|
2053
2056
|
/**
|
|
@@ -2059,7 +2062,7 @@ export type PalletAssetConversionEvent =
|
|
|
2059
2062
|
/**
|
|
2060
2063
|
* The ID of the pool.
|
|
2061
2064
|
**/
|
|
2062
|
-
poolId: [
|
|
2065
|
+
poolId: [StagingXcmV4Location, StagingXcmV4Location];
|
|
2063
2066
|
|
|
2064
2067
|
/**
|
|
2065
2068
|
* The account initiating the touch.
|
|
@@ -2068,6 +2071,65 @@ export type PalletAssetConversionEvent =
|
|
|
2068
2071
|
};
|
|
2069
2072
|
};
|
|
2070
2073
|
|
|
2074
|
+
/**
|
|
2075
|
+
* Inner events of this pallet.
|
|
2076
|
+
**/
|
|
2077
|
+
export type PalletStateTrieMigrationEvent =
|
|
2078
|
+
/**
|
|
2079
|
+
* Given number of `(top, child)` keys were migrated respectively, with the given
|
|
2080
|
+
* `compute`.
|
|
2081
|
+
**/
|
|
2082
|
+
| { name: 'Migrated'; data: { top: number; child: number; compute: PalletStateTrieMigrationMigrationCompute } }
|
|
2083
|
+
/**
|
|
2084
|
+
* Some account got slashed by the given amount.
|
|
2085
|
+
**/
|
|
2086
|
+
| { name: 'Slashed'; data: { who: AccountId32; amount: bigint } }
|
|
2087
|
+
/**
|
|
2088
|
+
* The auto migration task finished.
|
|
2089
|
+
**/
|
|
2090
|
+
| { name: 'AutoMigrationFinished' }
|
|
2091
|
+
/**
|
|
2092
|
+
* Migration got halted due to an error or miss-configuration.
|
|
2093
|
+
**/
|
|
2094
|
+
| { name: 'Halted'; data: { error: PalletStateTrieMigrationError } };
|
|
2095
|
+
|
|
2096
|
+
export type PalletStateTrieMigrationMigrationCompute = 'Signed' | 'Auto';
|
|
2097
|
+
|
|
2098
|
+
/**
|
|
2099
|
+
* The `Error` enum of this pallet.
|
|
2100
|
+
**/
|
|
2101
|
+
export type PalletStateTrieMigrationError =
|
|
2102
|
+
/**
|
|
2103
|
+
* Max signed limits not respected.
|
|
2104
|
+
**/
|
|
2105
|
+
| 'MaxSignedLimits'
|
|
2106
|
+
/**
|
|
2107
|
+
* A key was longer than the configured maximum.
|
|
2108
|
+
*
|
|
2109
|
+
* This means that the migration halted at the current [`Progress`] and
|
|
2110
|
+
* can be resumed with a larger [`crate::Config::MaxKeyLen`] value.
|
|
2111
|
+
* Retrying with the same [`crate::Config::MaxKeyLen`] value will not work.
|
|
2112
|
+
* The value should only be increased to avoid a storage migration for the currently
|
|
2113
|
+
* stored [`crate::Progress::LastKey`].
|
|
2114
|
+
**/
|
|
2115
|
+
| 'KeyTooLong'
|
|
2116
|
+
/**
|
|
2117
|
+
* submitter does not have enough funds.
|
|
2118
|
+
**/
|
|
2119
|
+
| 'NotEnoughFunds'
|
|
2120
|
+
/**
|
|
2121
|
+
* Bad witness data provided.
|
|
2122
|
+
**/
|
|
2123
|
+
| 'BadWitness'
|
|
2124
|
+
/**
|
|
2125
|
+
* Signed migration is not allowed because the maximum limit is not set yet.
|
|
2126
|
+
**/
|
|
2127
|
+
| 'SignedMigrationNotAllowed'
|
|
2128
|
+
/**
|
|
2129
|
+
* Bad child root provided.
|
|
2130
|
+
**/
|
|
2131
|
+
| 'BadChildRoot';
|
|
2132
|
+
|
|
2071
2133
|
/**
|
|
2072
2134
|
* The `Event` enum of this pallet
|
|
2073
2135
|
**/
|
|
@@ -2342,7 +2404,7 @@ export type FrameSystemError =
|
|
|
2342
2404
|
export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
|
|
2343
2405
|
usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
2344
2406
|
paraHeadHash?: H256 | undefined;
|
|
2345
|
-
consumedGoAheadSignal?:
|
|
2407
|
+
consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
|
|
2346
2408
|
};
|
|
2347
2409
|
|
|
2348
2410
|
export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
|
|
@@ -2355,15 +2417,15 @@ export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
|
|
|
2355
2417
|
|
|
2356
2418
|
export type CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate = { msgCount: number; totalBytes: number };
|
|
2357
2419
|
|
|
2358
|
-
export type
|
|
2420
|
+
export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
|
|
2359
2421
|
|
|
2360
2422
|
export type CumulusPalletParachainSystemUnincludedSegmentSegmentTracker = {
|
|
2361
2423
|
usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
2362
2424
|
hrmpWatermark?: number | undefined;
|
|
2363
|
-
consumedGoAheadSignal?:
|
|
2425
|
+
consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
|
|
2364
2426
|
};
|
|
2365
2427
|
|
|
2366
|
-
export type
|
|
2428
|
+
export type PolkadotPrimitivesV8PersistedValidationData = {
|
|
2367
2429
|
parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
2368
2430
|
relayParentNumber: number;
|
|
2369
2431
|
relayParentStorageRoot: H256;
|
|
@@ -2372,15 +2434,15 @@ export type PolkadotPrimitivesV7PersistedValidationData = {
|
|
|
2372
2434
|
|
|
2373
2435
|
export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
|
|
2374
2436
|
|
|
2375
|
-
export type
|
|
2437
|
+
export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
|
|
2376
2438
|
|
|
2377
2439
|
export type SpTrieStorageProof = { trieNodes: Array<Bytes> };
|
|
2378
2440
|
|
|
2379
2441
|
export type CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot = {
|
|
2380
2442
|
dmqMqcHead: H256;
|
|
2381
2443
|
relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
|
|
2382
|
-
ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId,
|
|
2383
|
-
egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId,
|
|
2444
|
+
ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
|
|
2445
|
+
egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
|
|
2384
2446
|
};
|
|
2385
2447
|
|
|
2386
2448
|
export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity = {
|
|
@@ -2388,7 +2450,7 @@ export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRema
|
|
|
2388
2450
|
remainingSize: number;
|
|
2389
2451
|
};
|
|
2390
2452
|
|
|
2391
|
-
export type
|
|
2453
|
+
export type PolkadotPrimitivesV8AbridgedHrmpChannel = {
|
|
2392
2454
|
maxCapacity: number;
|
|
2393
2455
|
maxTotalSize: number;
|
|
2394
2456
|
maxMessageSize: number;
|
|
@@ -2397,7 +2459,7 @@ export type PolkadotPrimitivesV7AbridgedHrmpChannel = {
|
|
|
2397
2459
|
mqcHead?: H256 | undefined;
|
|
2398
2460
|
};
|
|
2399
2461
|
|
|
2400
|
-
export type
|
|
2462
|
+
export type PolkadotPrimitivesV8AbridgedHostConfiguration = {
|
|
2401
2463
|
maxCodeSize: number;
|
|
2402
2464
|
maxHeadDataSize: number;
|
|
2403
2465
|
maxUpwardQueueCount: number;
|
|
@@ -2407,10 +2469,10 @@ export type PolkadotPrimitivesV7AbridgedHostConfiguration = {
|
|
|
2407
2469
|
hrmpMaxMessageNumPerCandidate: number;
|
|
2408
2470
|
validationUpgradeCooldown: number;
|
|
2409
2471
|
validationUpgradeDelay: number;
|
|
2410
|
-
asyncBackingParams:
|
|
2472
|
+
asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
|
|
2411
2473
|
};
|
|
2412
2474
|
|
|
2413
|
-
export type
|
|
2475
|
+
export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
|
|
2414
2476
|
maxCandidateDepth: number;
|
|
2415
2477
|
allowedAncestryLen: number;
|
|
2416
2478
|
};
|
|
@@ -2438,30 +2500,7 @@ export type CumulusPalletParachainSystemCall =
|
|
|
2438
2500
|
* if the appropriate time has come.
|
|
2439
2501
|
**/
|
|
2440
2502
|
| { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
|
|
2441
|
-
| { name: 'SudoSendUpwardMessage'; params: { message: Bytes } }
|
|
2442
|
-
/**
|
|
2443
|
-
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
2444
|
-
* later.
|
|
2445
|
-
*
|
|
2446
|
-
* The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
|
|
2447
|
-
* version and name should be verified on upgrade. Since the authorization only has a hash,
|
|
2448
|
-
* it cannot actually perform the verification.
|
|
2449
|
-
*
|
|
2450
|
-
* This call requires Root origin.
|
|
2451
|
-
**/
|
|
2452
|
-
| { name: 'AuthorizeUpgrade'; params: { codeHash: H256; checkVersion: boolean } }
|
|
2453
|
-
/**
|
|
2454
|
-
* Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
|
|
2455
|
-
*
|
|
2456
|
-
* If the authorization required a version check, this call will ensure the spec name
|
|
2457
|
-
* remains unchanged and that the spec version has increased.
|
|
2458
|
-
*
|
|
2459
|
-
* Note that this function will not apply the new `code`, but only attempt to schedule the
|
|
2460
|
-
* upgrade with the Relay Chain.
|
|
2461
|
-
*
|
|
2462
|
-
* All origins are allowed.
|
|
2463
|
-
**/
|
|
2464
|
-
| { name: 'EnactAuthorizedUpgrade'; params: { code: Bytes } };
|
|
2503
|
+
| { name: 'SudoSendUpwardMessage'; params: { message: Bytes } };
|
|
2465
2504
|
|
|
2466
2505
|
export type CumulusPalletParachainSystemCallLike =
|
|
2467
2506
|
/**
|
|
@@ -2476,33 +2515,10 @@ export type CumulusPalletParachainSystemCallLike =
|
|
|
2476
2515
|
* if the appropriate time has come.
|
|
2477
2516
|
**/
|
|
2478
2517
|
| { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
|
|
2479
|
-
| { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } }
|
|
2480
|
-
/**
|
|
2481
|
-
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
2482
|
-
* later.
|
|
2483
|
-
*
|
|
2484
|
-
* The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
|
|
2485
|
-
* version and name should be verified on upgrade. Since the authorization only has a hash,
|
|
2486
|
-
* it cannot actually perform the verification.
|
|
2487
|
-
*
|
|
2488
|
-
* This call requires Root origin.
|
|
2489
|
-
**/
|
|
2490
|
-
| { name: 'AuthorizeUpgrade'; params: { codeHash: H256; checkVersion: boolean } }
|
|
2491
|
-
/**
|
|
2492
|
-
* Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
|
|
2493
|
-
*
|
|
2494
|
-
* If the authorization required a version check, this call will ensure the spec name
|
|
2495
|
-
* remains unchanged and that the spec version has increased.
|
|
2496
|
-
*
|
|
2497
|
-
* Note that this function will not apply the new `code`, but only attempt to schedule the
|
|
2498
|
-
* upgrade with the Relay Chain.
|
|
2499
|
-
*
|
|
2500
|
-
* All origins are allowed.
|
|
2501
|
-
**/
|
|
2502
|
-
| { name: 'EnactAuthorizedUpgrade'; params: { code: BytesLike } };
|
|
2518
|
+
| { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } };
|
|
2503
2519
|
|
|
2504
2520
|
export type CumulusPrimitivesParachainInherentParachainInherentData = {
|
|
2505
|
-
validationData:
|
|
2521
|
+
validationData: PolkadotPrimitivesV8PersistedValidationData;
|
|
2506
2522
|
relayChainState: SpTrieStorageProof;
|
|
2507
2523
|
downwardMessages: Array<PolkadotCorePrimitivesInboundDownwardMessage>;
|
|
2508
2524
|
horizontalMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<PolkadotCorePrimitivesInboundHrmpMessage>]>;
|
|
@@ -2616,7 +2632,12 @@ export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
|
|
|
2616
2632
|
|
|
2617
2633
|
export type FrameSupportTokensMiscIdAmount = { id: AssetHubPaseoRuntimeRuntimeHoldReason; amount: bigint };
|
|
2618
2634
|
|
|
2619
|
-
export type AssetHubPaseoRuntimeRuntimeHoldReason =
|
|
2635
|
+
export type AssetHubPaseoRuntimeRuntimeHoldReason = {
|
|
2636
|
+
type: 'StateTrieMigration';
|
|
2637
|
+
value: PalletStateTrieMigrationHoldReason;
|
|
2638
|
+
};
|
|
2639
|
+
|
|
2640
|
+
export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
|
|
2620
2641
|
|
|
2621
2642
|
export type FrameSupportTokensMiscIdAmount002 = { id: []; amount: bigint };
|
|
2622
2643
|
|
|
@@ -4943,6 +4964,7 @@ export type AssetHubPaseoRuntimeRuntimeCall =
|
|
|
4943
4964
|
| { pallet: 'ForeignAssets'; palletCall: PalletAssetsCall002 }
|
|
4944
4965
|
| { pallet: 'PoolAssets'; palletCall: PalletAssetsCall003 }
|
|
4945
4966
|
| { pallet: 'AssetConversion'; palletCall: PalletAssetConversionCall }
|
|
4967
|
+
| { pallet: 'StateTrieMigration'; palletCall: PalletStateTrieMigrationCall }
|
|
4946
4968
|
| { pallet: 'Sudo'; palletCall: PalletSudoCall };
|
|
4947
4969
|
|
|
4948
4970
|
export type AssetHubPaseoRuntimeRuntimeCallLike =
|
|
@@ -4968,6 +4990,7 @@ export type AssetHubPaseoRuntimeRuntimeCallLike =
|
|
|
4968
4990
|
| { pallet: 'ForeignAssets'; palletCall: PalletAssetsCallLike002 }
|
|
4969
4991
|
| { pallet: 'PoolAssets'; palletCall: PalletAssetsCallLike003 }
|
|
4970
4992
|
| { pallet: 'AssetConversion'; palletCall: PalletAssetConversionCallLike }
|
|
4993
|
+
| { pallet: 'StateTrieMigration'; palletCall: PalletStateTrieMigrationCallLike }
|
|
4971
4994
|
| { pallet: 'Sudo'; palletCall: PalletSudoCallLike };
|
|
4972
4995
|
|
|
4973
4996
|
/**
|
|
@@ -5664,8 +5687,6 @@ export type PalletAssetsCall =
|
|
|
5664
5687
|
*
|
|
5665
5688
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
5666
5689
|
* asset.
|
|
5667
|
-
*
|
|
5668
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
5669
5690
|
**/
|
|
5670
5691
|
| { name: 'StartDestroy'; params: { id: number } }
|
|
5671
5692
|
/**
|
|
@@ -6146,7 +6167,26 @@ export type PalletAssetsCall =
|
|
|
6146
6167
|
*
|
|
6147
6168
|
* Weight: `O(1)`
|
|
6148
6169
|
**/
|
|
6149
|
-
| { name: 'Block'; params: { id: number; who: MultiAddress } }
|
|
6170
|
+
| { name: 'Block'; params: { id: number; who: MultiAddress } }
|
|
6171
|
+
/**
|
|
6172
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
6173
|
+
*
|
|
6174
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
6175
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
6176
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
6177
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
6178
|
+
* deposits, etc...
|
|
6179
|
+
*
|
|
6180
|
+
* The dispatch origin of this call must be Signed.
|
|
6181
|
+
*
|
|
6182
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
6183
|
+
* - `dest`: The recipient of the transfer.
|
|
6184
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
6185
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
6186
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
6187
|
+
* guarantee to keep the sender asset account alive (true).
|
|
6188
|
+
**/
|
|
6189
|
+
| { name: 'TransferAll'; params: { id: number; dest: MultiAddress; keepAlive: boolean } };
|
|
6150
6190
|
|
|
6151
6191
|
export type PalletAssetsCallLike =
|
|
6152
6192
|
/**
|
|
@@ -6203,8 +6243,6 @@ export type PalletAssetsCallLike =
|
|
|
6203
6243
|
*
|
|
6204
6244
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
6205
6245
|
* asset.
|
|
6206
|
-
*
|
|
6207
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
6208
6246
|
**/
|
|
6209
6247
|
| { name: 'StartDestroy'; params: { id: number } }
|
|
6210
6248
|
/**
|
|
@@ -6691,7 +6729,26 @@ export type PalletAssetsCallLike =
|
|
|
6691
6729
|
*
|
|
6692
6730
|
* Weight: `O(1)`
|
|
6693
6731
|
**/
|
|
6694
|
-
| { name: 'Block'; params: { id: number; who: MultiAddressLike } }
|
|
6732
|
+
| { name: 'Block'; params: { id: number; who: MultiAddressLike } }
|
|
6733
|
+
/**
|
|
6734
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
6735
|
+
*
|
|
6736
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
6737
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
6738
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
6739
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
6740
|
+
* deposits, etc...
|
|
6741
|
+
*
|
|
6742
|
+
* The dispatch origin of this call must be Signed.
|
|
6743
|
+
*
|
|
6744
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
6745
|
+
* - `dest`: The recipient of the transfer.
|
|
6746
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
6747
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
6748
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
6749
|
+
* guarantee to keep the sender asset account alive (true).
|
|
6750
|
+
**/
|
|
6751
|
+
| { name: 'TransferAll'; params: { id: number; dest: MultiAddressLike; keepAlive: boolean } };
|
|
6695
6752
|
|
|
6696
6753
|
/**
|
|
6697
6754
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -9119,7 +9176,7 @@ export type PalletAssetsCall002 =
|
|
|
9119
9176
|
*
|
|
9120
9177
|
* Weight: `O(1)`
|
|
9121
9178
|
**/
|
|
9122
|
-
| { name: 'Create'; params: { id:
|
|
9179
|
+
| { name: 'Create'; params: { id: StagingXcmV4Location; admin: MultiAddress; minBalance: bigint } }
|
|
9123
9180
|
/**
|
|
9124
9181
|
* Issue a new class of fungible assets from a privileged origin.
|
|
9125
9182
|
*
|
|
@@ -9143,12 +9200,7 @@ export type PalletAssetsCall002 =
|
|
|
9143
9200
|
**/
|
|
9144
9201
|
| {
|
|
9145
9202
|
name: 'ForceCreate';
|
|
9146
|
-
params: {
|
|
9147
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9148
|
-
owner: MultiAddress;
|
|
9149
|
-
isSufficient: boolean;
|
|
9150
|
-
minBalance: bigint;
|
|
9151
|
-
};
|
|
9203
|
+
params: { id: StagingXcmV4Location; owner: MultiAddress; isSufficient: boolean; minBalance: bigint };
|
|
9152
9204
|
}
|
|
9153
9205
|
/**
|
|
9154
9206
|
* Start the process of destroying a fungible asset class.
|
|
@@ -9160,10 +9212,8 @@ export type PalletAssetsCall002 =
|
|
|
9160
9212
|
*
|
|
9161
9213
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
9162
9214
|
* asset.
|
|
9163
|
-
*
|
|
9164
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
9165
9215
|
**/
|
|
9166
|
-
| { name: 'StartDestroy'; params: { id:
|
|
9216
|
+
| { name: 'StartDestroy'; params: { id: StagingXcmV4Location } }
|
|
9167
9217
|
/**
|
|
9168
9218
|
* Destroy all accounts associated with a given asset.
|
|
9169
9219
|
*
|
|
@@ -9178,7 +9228,7 @@ export type PalletAssetsCall002 =
|
|
|
9178
9228
|
*
|
|
9179
9229
|
* Each call emits the `Event::DestroyedAccounts` event.
|
|
9180
9230
|
**/
|
|
9181
|
-
| { name: 'DestroyAccounts'; params: { id:
|
|
9231
|
+
| { name: 'DestroyAccounts'; params: { id: StagingXcmV4Location } }
|
|
9182
9232
|
/**
|
|
9183
9233
|
* Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit).
|
|
9184
9234
|
*
|
|
@@ -9193,7 +9243,7 @@ export type PalletAssetsCall002 =
|
|
|
9193
9243
|
*
|
|
9194
9244
|
* Each call emits the `Event::DestroyedApprovals` event.
|
|
9195
9245
|
**/
|
|
9196
|
-
| { name: 'DestroyApprovals'; params: { id:
|
|
9246
|
+
| { name: 'DestroyApprovals'; params: { id: StagingXcmV4Location } }
|
|
9197
9247
|
/**
|
|
9198
9248
|
* Complete destroying asset and unreserve currency.
|
|
9199
9249
|
*
|
|
@@ -9206,7 +9256,7 @@ export type PalletAssetsCall002 =
|
|
|
9206
9256
|
*
|
|
9207
9257
|
* Each successful call emits the `Event::Destroyed` event.
|
|
9208
9258
|
**/
|
|
9209
|
-
| { name: 'FinishDestroy'; params: { id:
|
|
9259
|
+
| { name: 'FinishDestroy'; params: { id: StagingXcmV4Location } }
|
|
9210
9260
|
/**
|
|
9211
9261
|
* Mint assets of a particular class.
|
|
9212
9262
|
*
|
|
@@ -9221,7 +9271,7 @@ export type PalletAssetsCall002 =
|
|
|
9221
9271
|
* Weight: `O(1)`
|
|
9222
9272
|
* Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
|
|
9223
9273
|
**/
|
|
9224
|
-
| { name: 'Mint'; params: { id:
|
|
9274
|
+
| { name: 'Mint'; params: { id: StagingXcmV4Location; beneficiary: MultiAddress; amount: bigint } }
|
|
9225
9275
|
/**
|
|
9226
9276
|
* Reduce the balance of `who` by as much as possible up to `amount` assets of `id`.
|
|
9227
9277
|
*
|
|
@@ -9239,7 +9289,7 @@ export type PalletAssetsCall002 =
|
|
|
9239
9289
|
* Weight: `O(1)`
|
|
9240
9290
|
* Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
|
|
9241
9291
|
**/
|
|
9242
|
-
| { name: 'Burn'; params: { id:
|
|
9292
|
+
| { name: 'Burn'; params: { id: StagingXcmV4Location; who: MultiAddress; amount: bigint } }
|
|
9243
9293
|
/**
|
|
9244
9294
|
* Move some assets from the sender account to another.
|
|
9245
9295
|
*
|
|
@@ -9260,7 +9310,7 @@ export type PalletAssetsCall002 =
|
|
|
9260
9310
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
9261
9311
|
* `target`.
|
|
9262
9312
|
**/
|
|
9263
|
-
| { name: 'Transfer'; params: { id:
|
|
9313
|
+
| { name: 'Transfer'; params: { id: StagingXcmV4Location; target: MultiAddress; amount: bigint } }
|
|
9264
9314
|
/**
|
|
9265
9315
|
* Move some assets from the sender account to another, keeping the sender account alive.
|
|
9266
9316
|
*
|
|
@@ -9281,10 +9331,7 @@ export type PalletAssetsCall002 =
|
|
|
9281
9331
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
9282
9332
|
* `target`.
|
|
9283
9333
|
**/
|
|
9284
|
-
| {
|
|
9285
|
-
name: 'TransferKeepAlive';
|
|
9286
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddress; amount: bigint };
|
|
9287
|
-
}
|
|
9334
|
+
| { name: 'TransferKeepAlive'; params: { id: StagingXcmV4Location; target: MultiAddress; amount: bigint } }
|
|
9288
9335
|
/**
|
|
9289
9336
|
* Move some assets from one account to another.
|
|
9290
9337
|
*
|
|
@@ -9308,7 +9355,7 @@ export type PalletAssetsCall002 =
|
|
|
9308
9355
|
**/
|
|
9309
9356
|
| {
|
|
9310
9357
|
name: 'ForceTransfer';
|
|
9311
|
-
params: { id:
|
|
9358
|
+
params: { id: StagingXcmV4Location; source: MultiAddress; dest: MultiAddress; amount: bigint };
|
|
9312
9359
|
}
|
|
9313
9360
|
/**
|
|
9314
9361
|
* Disallow further unprivileged transfers of an asset `id` from an account `who`. `who`
|
|
@@ -9324,7 +9371,7 @@ export type PalletAssetsCall002 =
|
|
|
9324
9371
|
*
|
|
9325
9372
|
* Weight: `O(1)`
|
|
9326
9373
|
**/
|
|
9327
|
-
| { name: 'Freeze'; params: { id:
|
|
9374
|
+
| { name: 'Freeze'; params: { id: StagingXcmV4Location; who: MultiAddress } }
|
|
9328
9375
|
/**
|
|
9329
9376
|
* Allow unprivileged transfers to and from an account again.
|
|
9330
9377
|
*
|
|
@@ -9337,7 +9384,7 @@ export type PalletAssetsCall002 =
|
|
|
9337
9384
|
*
|
|
9338
9385
|
* Weight: `O(1)`
|
|
9339
9386
|
**/
|
|
9340
|
-
| { name: 'Thaw'; params: { id:
|
|
9387
|
+
| { name: 'Thaw'; params: { id: StagingXcmV4Location; who: MultiAddress } }
|
|
9341
9388
|
/**
|
|
9342
9389
|
* Disallow further unprivileged transfers for the asset class.
|
|
9343
9390
|
*
|
|
@@ -9349,7 +9396,7 @@ export type PalletAssetsCall002 =
|
|
|
9349
9396
|
*
|
|
9350
9397
|
* Weight: `O(1)`
|
|
9351
9398
|
**/
|
|
9352
|
-
| { name: 'FreezeAsset'; params: { id:
|
|
9399
|
+
| { name: 'FreezeAsset'; params: { id: StagingXcmV4Location } }
|
|
9353
9400
|
/**
|
|
9354
9401
|
* Allow unprivileged transfers for the asset again.
|
|
9355
9402
|
*
|
|
@@ -9361,7 +9408,7 @@ export type PalletAssetsCall002 =
|
|
|
9361
9408
|
*
|
|
9362
9409
|
* Weight: `O(1)`
|
|
9363
9410
|
**/
|
|
9364
|
-
| { name: 'ThawAsset'; params: { id:
|
|
9411
|
+
| { name: 'ThawAsset'; params: { id: StagingXcmV4Location } }
|
|
9365
9412
|
/**
|
|
9366
9413
|
* Change the Owner of an asset.
|
|
9367
9414
|
*
|
|
@@ -9374,7 +9421,7 @@ export type PalletAssetsCall002 =
|
|
|
9374
9421
|
*
|
|
9375
9422
|
* Weight: `O(1)`
|
|
9376
9423
|
**/
|
|
9377
|
-
| { name: 'TransferOwnership'; params: { id:
|
|
9424
|
+
| { name: 'TransferOwnership'; params: { id: StagingXcmV4Location; owner: MultiAddress } }
|
|
9378
9425
|
/**
|
|
9379
9426
|
* Change the Issuer, Admin and Freezer of an asset.
|
|
9380
9427
|
*
|
|
@@ -9391,12 +9438,7 @@ export type PalletAssetsCall002 =
|
|
|
9391
9438
|
**/
|
|
9392
9439
|
| {
|
|
9393
9440
|
name: 'SetTeam';
|
|
9394
|
-
params: {
|
|
9395
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9396
|
-
issuer: MultiAddress;
|
|
9397
|
-
admin: MultiAddress;
|
|
9398
|
-
freezer: MultiAddress;
|
|
9399
|
-
};
|
|
9441
|
+
params: { id: StagingXcmV4Location; issuer: MultiAddress; admin: MultiAddress; freezer: MultiAddress };
|
|
9400
9442
|
}
|
|
9401
9443
|
/**
|
|
9402
9444
|
* Set the metadata for an asset.
|
|
@@ -9416,10 +9458,7 @@ export type PalletAssetsCall002 =
|
|
|
9416
9458
|
*
|
|
9417
9459
|
* Weight: `O(1)`
|
|
9418
9460
|
**/
|
|
9419
|
-
| {
|
|
9420
|
-
name: 'SetMetadata';
|
|
9421
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; name: Bytes; symbol: Bytes; decimals: number };
|
|
9422
|
-
}
|
|
9461
|
+
| { name: 'SetMetadata'; params: { id: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number } }
|
|
9423
9462
|
/**
|
|
9424
9463
|
* Clear the metadata for an asset.
|
|
9425
9464
|
*
|
|
@@ -9433,7 +9472,7 @@ export type PalletAssetsCall002 =
|
|
|
9433
9472
|
*
|
|
9434
9473
|
* Weight: `O(1)`
|
|
9435
9474
|
**/
|
|
9436
|
-
| { name: 'ClearMetadata'; params: { id:
|
|
9475
|
+
| { name: 'ClearMetadata'; params: { id: StagingXcmV4Location } }
|
|
9437
9476
|
/**
|
|
9438
9477
|
* Force the metadata for an asset to some value.
|
|
9439
9478
|
*
|
|
@@ -9452,13 +9491,7 @@ export type PalletAssetsCall002 =
|
|
|
9452
9491
|
**/
|
|
9453
9492
|
| {
|
|
9454
9493
|
name: 'ForceSetMetadata';
|
|
9455
|
-
params: {
|
|
9456
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9457
|
-
name: Bytes;
|
|
9458
|
-
symbol: Bytes;
|
|
9459
|
-
decimals: number;
|
|
9460
|
-
isFrozen: boolean;
|
|
9461
|
-
};
|
|
9494
|
+
params: { id: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean };
|
|
9462
9495
|
}
|
|
9463
9496
|
/**
|
|
9464
9497
|
* Clear the metadata for an asset.
|
|
@@ -9473,7 +9506,7 @@ export type PalletAssetsCall002 =
|
|
|
9473
9506
|
*
|
|
9474
9507
|
* Weight: `O(1)`
|
|
9475
9508
|
**/
|
|
9476
|
-
| { name: 'ForceClearMetadata'; params: { id:
|
|
9509
|
+
| { name: 'ForceClearMetadata'; params: { id: StagingXcmV4Location } }
|
|
9477
9510
|
/**
|
|
9478
9511
|
* Alter the attributes of a given asset.
|
|
9479
9512
|
*
|
|
@@ -9501,7 +9534,7 @@ export type PalletAssetsCall002 =
|
|
|
9501
9534
|
| {
|
|
9502
9535
|
name: 'ForceAssetStatus';
|
|
9503
9536
|
params: {
|
|
9504
|
-
id:
|
|
9537
|
+
id: StagingXcmV4Location;
|
|
9505
9538
|
owner: MultiAddress;
|
|
9506
9539
|
issuer: MultiAddress;
|
|
9507
9540
|
admin: MultiAddress;
|
|
@@ -9533,10 +9566,7 @@ export type PalletAssetsCall002 =
|
|
|
9533
9566
|
*
|
|
9534
9567
|
* Weight: `O(1)`
|
|
9535
9568
|
**/
|
|
9536
|
-
| {
|
|
9537
|
-
name: 'ApproveTransfer';
|
|
9538
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddress; amount: bigint };
|
|
9539
|
-
}
|
|
9569
|
+
| { name: 'ApproveTransfer'; params: { id: StagingXcmV4Location; delegate: MultiAddress; amount: bigint } }
|
|
9540
9570
|
/**
|
|
9541
9571
|
* Cancel all of some asset approved for delegated transfer by a third-party account.
|
|
9542
9572
|
*
|
|
@@ -9552,7 +9582,7 @@ export type PalletAssetsCall002 =
|
|
|
9552
9582
|
*
|
|
9553
9583
|
* Weight: `O(1)`
|
|
9554
9584
|
**/
|
|
9555
|
-
| { name: 'CancelApproval'; params: { id:
|
|
9585
|
+
| { name: 'CancelApproval'; params: { id: StagingXcmV4Location; delegate: MultiAddress } }
|
|
9556
9586
|
/**
|
|
9557
9587
|
* Cancel all of some asset approved for delegated transfer by a third-party account.
|
|
9558
9588
|
*
|
|
@@ -9568,10 +9598,7 @@ export type PalletAssetsCall002 =
|
|
|
9568
9598
|
*
|
|
9569
9599
|
* Weight: `O(1)`
|
|
9570
9600
|
**/
|
|
9571
|
-
| {
|
|
9572
|
-
name: 'ForceCancelApproval';
|
|
9573
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; owner: MultiAddress; delegate: MultiAddress };
|
|
9574
|
-
}
|
|
9601
|
+
| { name: 'ForceCancelApproval'; params: { id: StagingXcmV4Location; owner: MultiAddress; delegate: MultiAddress } }
|
|
9575
9602
|
/**
|
|
9576
9603
|
* Transfer some asset balance from a previously delegated account to some third-party
|
|
9577
9604
|
* account.
|
|
@@ -9594,12 +9621,7 @@ export type PalletAssetsCall002 =
|
|
|
9594
9621
|
**/
|
|
9595
9622
|
| {
|
|
9596
9623
|
name: 'TransferApproved';
|
|
9597
|
-
params: {
|
|
9598
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9599
|
-
owner: MultiAddress;
|
|
9600
|
-
destination: MultiAddress;
|
|
9601
|
-
amount: bigint;
|
|
9602
|
-
};
|
|
9624
|
+
params: { id: StagingXcmV4Location; owner: MultiAddress; destination: MultiAddress; amount: bigint };
|
|
9603
9625
|
}
|
|
9604
9626
|
/**
|
|
9605
9627
|
* Create an asset account for non-provider assets.
|
|
@@ -9612,7 +9634,7 @@ export type PalletAssetsCall002 =
|
|
|
9612
9634
|
*
|
|
9613
9635
|
* Emits `Touched` event when successful.
|
|
9614
9636
|
**/
|
|
9615
|
-
| { name: 'Touch'; params: { id:
|
|
9637
|
+
| { name: 'Touch'; params: { id: StagingXcmV4Location } }
|
|
9616
9638
|
/**
|
|
9617
9639
|
* Return the deposit (if any) of an asset account or a consumer reference (if any) of an
|
|
9618
9640
|
* account.
|
|
@@ -9625,7 +9647,7 @@ export type PalletAssetsCall002 =
|
|
|
9625
9647
|
*
|
|
9626
9648
|
* Emits `Refunded` event when successful.
|
|
9627
9649
|
**/
|
|
9628
|
-
| { name: 'Refund'; params: { id:
|
|
9650
|
+
| { name: 'Refund'; params: { id: StagingXcmV4Location; allowBurn: boolean } }
|
|
9629
9651
|
/**
|
|
9630
9652
|
* Sets the minimum balance of an asset.
|
|
9631
9653
|
*
|
|
@@ -9640,7 +9662,7 @@ export type PalletAssetsCall002 =
|
|
|
9640
9662
|
*
|
|
9641
9663
|
* Emits `AssetMinBalanceChanged` event when successful.
|
|
9642
9664
|
**/
|
|
9643
|
-
| { name: 'SetMinBalance'; params: { id:
|
|
9665
|
+
| { name: 'SetMinBalance'; params: { id: StagingXcmV4Location; minBalance: bigint } }
|
|
9644
9666
|
/**
|
|
9645
9667
|
* Create an asset account for `who`.
|
|
9646
9668
|
*
|
|
@@ -9653,7 +9675,7 @@ export type PalletAssetsCall002 =
|
|
|
9653
9675
|
*
|
|
9654
9676
|
* Emits `Touched` event when successful.
|
|
9655
9677
|
**/
|
|
9656
|
-
| { name: 'TouchOther'; params: { id:
|
|
9678
|
+
| { name: 'TouchOther'; params: { id: StagingXcmV4Location; who: MultiAddress } }
|
|
9657
9679
|
/**
|
|
9658
9680
|
* Return the deposit (if any) of a target asset account. Useful if you are the depositor.
|
|
9659
9681
|
*
|
|
@@ -9666,7 +9688,7 @@ export type PalletAssetsCall002 =
|
|
|
9666
9688
|
*
|
|
9667
9689
|
* Emits `Refunded` event when successful.
|
|
9668
9690
|
**/
|
|
9669
|
-
| { name: 'RefundOther'; params: { id:
|
|
9691
|
+
| { name: 'RefundOther'; params: { id: StagingXcmV4Location; who: MultiAddress } }
|
|
9670
9692
|
/**
|
|
9671
9693
|
* Disallow further unprivileged transfers of an asset `id` to and from an account `who`.
|
|
9672
9694
|
*
|
|
@@ -9679,7 +9701,26 @@ export type PalletAssetsCall002 =
|
|
|
9679
9701
|
*
|
|
9680
9702
|
* Weight: `O(1)`
|
|
9681
9703
|
**/
|
|
9682
|
-
| { name: 'Block'; params: { id:
|
|
9704
|
+
| { name: 'Block'; params: { id: StagingXcmV4Location; who: MultiAddress } }
|
|
9705
|
+
/**
|
|
9706
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
9707
|
+
*
|
|
9708
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
9709
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
9710
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
9711
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
9712
|
+
* deposits, etc...
|
|
9713
|
+
*
|
|
9714
|
+
* The dispatch origin of this call must be Signed.
|
|
9715
|
+
*
|
|
9716
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
9717
|
+
* - `dest`: The recipient of the transfer.
|
|
9718
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
9719
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
9720
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
9721
|
+
* guarantee to keep the sender asset account alive (true).
|
|
9722
|
+
**/
|
|
9723
|
+
| { name: 'TransferAll'; params: { id: StagingXcmV4Location; dest: MultiAddress; keepAlive: boolean } };
|
|
9683
9724
|
|
|
9684
9725
|
export type PalletAssetsCallLike002 =
|
|
9685
9726
|
/**
|
|
@@ -9703,10 +9744,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9703
9744
|
*
|
|
9704
9745
|
* Weight: `O(1)`
|
|
9705
9746
|
**/
|
|
9706
|
-
| {
|
|
9707
|
-
name: 'Create';
|
|
9708
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; admin: MultiAddressLike; minBalance: bigint };
|
|
9709
|
-
}
|
|
9747
|
+
| { name: 'Create'; params: { id: StagingXcmV4Location; admin: MultiAddressLike; minBalance: bigint } }
|
|
9710
9748
|
/**
|
|
9711
9749
|
* Issue a new class of fungible assets from a privileged origin.
|
|
9712
9750
|
*
|
|
@@ -9730,12 +9768,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9730
9768
|
**/
|
|
9731
9769
|
| {
|
|
9732
9770
|
name: 'ForceCreate';
|
|
9733
|
-
params: {
|
|
9734
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9735
|
-
owner: MultiAddressLike;
|
|
9736
|
-
isSufficient: boolean;
|
|
9737
|
-
minBalance: bigint;
|
|
9738
|
-
};
|
|
9771
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike; isSufficient: boolean; minBalance: bigint };
|
|
9739
9772
|
}
|
|
9740
9773
|
/**
|
|
9741
9774
|
* Start the process of destroying a fungible asset class.
|
|
@@ -9747,10 +9780,8 @@ export type PalletAssetsCallLike002 =
|
|
|
9747
9780
|
*
|
|
9748
9781
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
9749
9782
|
* asset.
|
|
9750
|
-
*
|
|
9751
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
9752
9783
|
**/
|
|
9753
|
-
| { name: 'StartDestroy'; params: { id:
|
|
9784
|
+
| { name: 'StartDestroy'; params: { id: StagingXcmV4Location } }
|
|
9754
9785
|
/**
|
|
9755
9786
|
* Destroy all accounts associated with a given asset.
|
|
9756
9787
|
*
|
|
@@ -9765,7 +9796,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9765
9796
|
*
|
|
9766
9797
|
* Each call emits the `Event::DestroyedAccounts` event.
|
|
9767
9798
|
**/
|
|
9768
|
-
| { name: 'DestroyAccounts'; params: { id:
|
|
9799
|
+
| { name: 'DestroyAccounts'; params: { id: StagingXcmV4Location } }
|
|
9769
9800
|
/**
|
|
9770
9801
|
* Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit).
|
|
9771
9802
|
*
|
|
@@ -9780,7 +9811,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9780
9811
|
*
|
|
9781
9812
|
* Each call emits the `Event::DestroyedApprovals` event.
|
|
9782
9813
|
**/
|
|
9783
|
-
| { name: 'DestroyApprovals'; params: { id:
|
|
9814
|
+
| { name: 'DestroyApprovals'; params: { id: StagingXcmV4Location } }
|
|
9784
9815
|
/**
|
|
9785
9816
|
* Complete destroying asset and unreserve currency.
|
|
9786
9817
|
*
|
|
@@ -9793,7 +9824,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9793
9824
|
*
|
|
9794
9825
|
* Each successful call emits the `Event::Destroyed` event.
|
|
9795
9826
|
**/
|
|
9796
|
-
| { name: 'FinishDestroy'; params: { id:
|
|
9827
|
+
| { name: 'FinishDestroy'; params: { id: StagingXcmV4Location } }
|
|
9797
9828
|
/**
|
|
9798
9829
|
* Mint assets of a particular class.
|
|
9799
9830
|
*
|
|
@@ -9808,10 +9839,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9808
9839
|
* Weight: `O(1)`
|
|
9809
9840
|
* Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
|
|
9810
9841
|
**/
|
|
9811
|
-
| {
|
|
9812
|
-
name: 'Mint';
|
|
9813
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; beneficiary: MultiAddressLike; amount: bigint };
|
|
9814
|
-
}
|
|
9842
|
+
| { name: 'Mint'; params: { id: StagingXcmV4Location; beneficiary: MultiAddressLike; amount: bigint } }
|
|
9815
9843
|
/**
|
|
9816
9844
|
* Reduce the balance of `who` by as much as possible up to `amount` assets of `id`.
|
|
9817
9845
|
*
|
|
@@ -9829,7 +9857,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9829
9857
|
* Weight: `O(1)`
|
|
9830
9858
|
* Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
|
|
9831
9859
|
**/
|
|
9832
|
-
| { name: 'Burn'; params: { id:
|
|
9860
|
+
| { name: 'Burn'; params: { id: StagingXcmV4Location; who: MultiAddressLike; amount: bigint } }
|
|
9833
9861
|
/**
|
|
9834
9862
|
* Move some assets from the sender account to another.
|
|
9835
9863
|
*
|
|
@@ -9850,10 +9878,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9850
9878
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
9851
9879
|
* `target`.
|
|
9852
9880
|
**/
|
|
9853
|
-
| {
|
|
9854
|
-
name: 'Transfer';
|
|
9855
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddressLike; amount: bigint };
|
|
9856
|
-
}
|
|
9881
|
+
| { name: 'Transfer'; params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint } }
|
|
9857
9882
|
/**
|
|
9858
9883
|
* Move some assets from the sender account to another, keeping the sender account alive.
|
|
9859
9884
|
*
|
|
@@ -9874,10 +9899,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9874
9899
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
9875
9900
|
* `target`.
|
|
9876
9901
|
**/
|
|
9877
|
-
| {
|
|
9878
|
-
name: 'TransferKeepAlive';
|
|
9879
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; target: MultiAddressLike; amount: bigint };
|
|
9880
|
-
}
|
|
9902
|
+
| { name: 'TransferKeepAlive'; params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint } }
|
|
9881
9903
|
/**
|
|
9882
9904
|
* Move some assets from one account to another.
|
|
9883
9905
|
*
|
|
@@ -9901,12 +9923,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9901
9923
|
**/
|
|
9902
9924
|
| {
|
|
9903
9925
|
name: 'ForceTransfer';
|
|
9904
|
-
params: {
|
|
9905
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
9906
|
-
source: MultiAddressLike;
|
|
9907
|
-
dest: MultiAddressLike;
|
|
9908
|
-
amount: bigint;
|
|
9909
|
-
};
|
|
9926
|
+
params: { id: StagingXcmV4Location; source: MultiAddressLike; dest: MultiAddressLike; amount: bigint };
|
|
9910
9927
|
}
|
|
9911
9928
|
/**
|
|
9912
9929
|
* Disallow further unprivileged transfers of an asset `id` from an account `who`. `who`
|
|
@@ -9922,7 +9939,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9922
9939
|
*
|
|
9923
9940
|
* Weight: `O(1)`
|
|
9924
9941
|
**/
|
|
9925
|
-
| { name: 'Freeze'; params: { id:
|
|
9942
|
+
| { name: 'Freeze'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
|
|
9926
9943
|
/**
|
|
9927
9944
|
* Allow unprivileged transfers to and from an account again.
|
|
9928
9945
|
*
|
|
@@ -9935,7 +9952,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9935
9952
|
*
|
|
9936
9953
|
* Weight: `O(1)`
|
|
9937
9954
|
**/
|
|
9938
|
-
| { name: 'Thaw'; params: { id:
|
|
9955
|
+
| { name: 'Thaw'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
|
|
9939
9956
|
/**
|
|
9940
9957
|
* Disallow further unprivileged transfers for the asset class.
|
|
9941
9958
|
*
|
|
@@ -9947,7 +9964,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9947
9964
|
*
|
|
9948
9965
|
* Weight: `O(1)`
|
|
9949
9966
|
**/
|
|
9950
|
-
| { name: 'FreezeAsset'; params: { id:
|
|
9967
|
+
| { name: 'FreezeAsset'; params: { id: StagingXcmV4Location } }
|
|
9951
9968
|
/**
|
|
9952
9969
|
* Allow unprivileged transfers for the asset again.
|
|
9953
9970
|
*
|
|
@@ -9959,7 +9976,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9959
9976
|
*
|
|
9960
9977
|
* Weight: `O(1)`
|
|
9961
9978
|
**/
|
|
9962
|
-
| { name: 'ThawAsset'; params: { id:
|
|
9979
|
+
| { name: 'ThawAsset'; params: { id: StagingXcmV4Location } }
|
|
9963
9980
|
/**
|
|
9964
9981
|
* Change the Owner of an asset.
|
|
9965
9982
|
*
|
|
@@ -9972,7 +9989,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9972
9989
|
*
|
|
9973
9990
|
* Weight: `O(1)`
|
|
9974
9991
|
**/
|
|
9975
|
-
| { name: 'TransferOwnership'; params: { id:
|
|
9992
|
+
| { name: 'TransferOwnership'; params: { id: StagingXcmV4Location; owner: MultiAddressLike } }
|
|
9976
9993
|
/**
|
|
9977
9994
|
* Change the Issuer, Admin and Freezer of an asset.
|
|
9978
9995
|
*
|
|
@@ -9990,7 +10007,7 @@ export type PalletAssetsCallLike002 =
|
|
|
9990
10007
|
| {
|
|
9991
10008
|
name: 'SetTeam';
|
|
9992
10009
|
params: {
|
|
9993
|
-
id:
|
|
10010
|
+
id: StagingXcmV4Location;
|
|
9994
10011
|
issuer: MultiAddressLike;
|
|
9995
10012
|
admin: MultiAddressLike;
|
|
9996
10013
|
freezer: MultiAddressLike;
|
|
@@ -10014,10 +10031,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10014
10031
|
*
|
|
10015
10032
|
* Weight: `O(1)`
|
|
10016
10033
|
**/
|
|
10017
|
-
| {
|
|
10018
|
-
name: 'SetMetadata';
|
|
10019
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; name: BytesLike; symbol: BytesLike; decimals: number };
|
|
10020
|
-
}
|
|
10034
|
+
| { name: 'SetMetadata'; params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number } }
|
|
10021
10035
|
/**
|
|
10022
10036
|
* Clear the metadata for an asset.
|
|
10023
10037
|
*
|
|
@@ -10031,7 +10045,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10031
10045
|
*
|
|
10032
10046
|
* Weight: `O(1)`
|
|
10033
10047
|
**/
|
|
10034
|
-
| { name: 'ClearMetadata'; params: { id:
|
|
10048
|
+
| { name: 'ClearMetadata'; params: { id: StagingXcmV4Location } }
|
|
10035
10049
|
/**
|
|
10036
10050
|
* Force the metadata for an asset to some value.
|
|
10037
10051
|
*
|
|
@@ -10050,13 +10064,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10050
10064
|
**/
|
|
10051
10065
|
| {
|
|
10052
10066
|
name: 'ForceSetMetadata';
|
|
10053
|
-
params: {
|
|
10054
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
10055
|
-
name: BytesLike;
|
|
10056
|
-
symbol: BytesLike;
|
|
10057
|
-
decimals: number;
|
|
10058
|
-
isFrozen: boolean;
|
|
10059
|
-
};
|
|
10067
|
+
params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number; isFrozen: boolean };
|
|
10060
10068
|
}
|
|
10061
10069
|
/**
|
|
10062
10070
|
* Clear the metadata for an asset.
|
|
@@ -10071,7 +10079,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10071
10079
|
*
|
|
10072
10080
|
* Weight: `O(1)`
|
|
10073
10081
|
**/
|
|
10074
|
-
| { name: 'ForceClearMetadata'; params: { id:
|
|
10082
|
+
| { name: 'ForceClearMetadata'; params: { id: StagingXcmV4Location } }
|
|
10075
10083
|
/**
|
|
10076
10084
|
* Alter the attributes of a given asset.
|
|
10077
10085
|
*
|
|
@@ -10099,7 +10107,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10099
10107
|
| {
|
|
10100
10108
|
name: 'ForceAssetStatus';
|
|
10101
10109
|
params: {
|
|
10102
|
-
id:
|
|
10110
|
+
id: StagingXcmV4Location;
|
|
10103
10111
|
owner: MultiAddressLike;
|
|
10104
10112
|
issuer: MultiAddressLike;
|
|
10105
10113
|
admin: MultiAddressLike;
|
|
@@ -10131,10 +10139,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10131
10139
|
*
|
|
10132
10140
|
* Weight: `O(1)`
|
|
10133
10141
|
**/
|
|
10134
|
-
| {
|
|
10135
|
-
name: 'ApproveTransfer';
|
|
10136
|
-
params: { id: StagingXcmV3MultilocationMultiLocation; delegate: MultiAddressLike; amount: bigint };
|
|
10137
|
-
}
|
|
10142
|
+
| { name: 'ApproveTransfer'; params: { id: StagingXcmV4Location; delegate: MultiAddressLike; amount: bigint } }
|
|
10138
10143
|
/**
|
|
10139
10144
|
* Cancel all of some asset approved for delegated transfer by a third-party account.
|
|
10140
10145
|
*
|
|
@@ -10150,7 +10155,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10150
10155
|
*
|
|
10151
10156
|
* Weight: `O(1)`
|
|
10152
10157
|
**/
|
|
10153
|
-
| { name: 'CancelApproval'; params: { id:
|
|
10158
|
+
| { name: 'CancelApproval'; params: { id: StagingXcmV4Location; delegate: MultiAddressLike } }
|
|
10154
10159
|
/**
|
|
10155
10160
|
* Cancel all of some asset approved for delegated transfer by a third-party account.
|
|
10156
10161
|
*
|
|
@@ -10168,7 +10173,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10168
10173
|
**/
|
|
10169
10174
|
| {
|
|
10170
10175
|
name: 'ForceCancelApproval';
|
|
10171
|
-
params: { id:
|
|
10176
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike; delegate: MultiAddressLike };
|
|
10172
10177
|
}
|
|
10173
10178
|
/**
|
|
10174
10179
|
* Transfer some asset balance from a previously delegated account to some third-party
|
|
@@ -10192,12 +10197,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10192
10197
|
**/
|
|
10193
10198
|
| {
|
|
10194
10199
|
name: 'TransferApproved';
|
|
10195
|
-
params: {
|
|
10196
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
10197
|
-
owner: MultiAddressLike;
|
|
10198
|
-
destination: MultiAddressLike;
|
|
10199
|
-
amount: bigint;
|
|
10200
|
-
};
|
|
10200
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike; destination: MultiAddressLike; amount: bigint };
|
|
10201
10201
|
}
|
|
10202
10202
|
/**
|
|
10203
10203
|
* Create an asset account for non-provider assets.
|
|
@@ -10210,7 +10210,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10210
10210
|
*
|
|
10211
10211
|
* Emits `Touched` event when successful.
|
|
10212
10212
|
**/
|
|
10213
|
-
| { name: 'Touch'; params: { id:
|
|
10213
|
+
| { name: 'Touch'; params: { id: StagingXcmV4Location } }
|
|
10214
10214
|
/**
|
|
10215
10215
|
* Return the deposit (if any) of an asset account or a consumer reference (if any) of an
|
|
10216
10216
|
* account.
|
|
@@ -10223,7 +10223,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10223
10223
|
*
|
|
10224
10224
|
* Emits `Refunded` event when successful.
|
|
10225
10225
|
**/
|
|
10226
|
-
| { name: 'Refund'; params: { id:
|
|
10226
|
+
| { name: 'Refund'; params: { id: StagingXcmV4Location; allowBurn: boolean } }
|
|
10227
10227
|
/**
|
|
10228
10228
|
* Sets the minimum balance of an asset.
|
|
10229
10229
|
*
|
|
@@ -10238,7 +10238,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10238
10238
|
*
|
|
10239
10239
|
* Emits `AssetMinBalanceChanged` event when successful.
|
|
10240
10240
|
**/
|
|
10241
|
-
| { name: 'SetMinBalance'; params: { id:
|
|
10241
|
+
| { name: 'SetMinBalance'; params: { id: StagingXcmV4Location; minBalance: bigint } }
|
|
10242
10242
|
/**
|
|
10243
10243
|
* Create an asset account for `who`.
|
|
10244
10244
|
*
|
|
@@ -10251,7 +10251,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10251
10251
|
*
|
|
10252
10252
|
* Emits `Touched` event when successful.
|
|
10253
10253
|
**/
|
|
10254
|
-
| { name: 'TouchOther'; params: { id:
|
|
10254
|
+
| { name: 'TouchOther'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
|
|
10255
10255
|
/**
|
|
10256
10256
|
* Return the deposit (if any) of a target asset account. Useful if you are the depositor.
|
|
10257
10257
|
*
|
|
@@ -10264,7 +10264,7 @@ export type PalletAssetsCallLike002 =
|
|
|
10264
10264
|
*
|
|
10265
10265
|
* Emits `Refunded` event when successful.
|
|
10266
10266
|
**/
|
|
10267
|
-
| { name: 'RefundOther'; params: { id:
|
|
10267
|
+
| { name: 'RefundOther'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
|
|
10268
10268
|
/**
|
|
10269
10269
|
* Disallow further unprivileged transfers of an asset `id` to and from an account `who`.
|
|
10270
10270
|
*
|
|
@@ -10277,7 +10277,26 @@ export type PalletAssetsCallLike002 =
|
|
|
10277
10277
|
*
|
|
10278
10278
|
* Weight: `O(1)`
|
|
10279
10279
|
**/
|
|
10280
|
-
| { name: 'Block'; params: { id:
|
|
10280
|
+
| { name: 'Block'; params: { id: StagingXcmV4Location; who: MultiAddressLike } }
|
|
10281
|
+
/**
|
|
10282
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
10283
|
+
*
|
|
10284
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
10285
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
10286
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
10287
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
10288
|
+
* deposits, etc...
|
|
10289
|
+
*
|
|
10290
|
+
* The dispatch origin of this call must be Signed.
|
|
10291
|
+
*
|
|
10292
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
10293
|
+
* - `dest`: The recipient of the transfer.
|
|
10294
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
10295
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
10296
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
10297
|
+
* guarantee to keep the sender asset account alive (true).
|
|
10298
|
+
**/
|
|
10299
|
+
| { name: 'TransferAll'; params: { id: StagingXcmV4Location; dest: MultiAddressLike; keepAlive: boolean } };
|
|
10281
10300
|
|
|
10282
10301
|
/**
|
|
10283
10302
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -10337,8 +10356,6 @@ export type PalletAssetsCall003 =
|
|
|
10337
10356
|
*
|
|
10338
10357
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
10339
10358
|
* asset.
|
|
10340
|
-
*
|
|
10341
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
10342
10359
|
**/
|
|
10343
10360
|
| { name: 'StartDestroy'; params: { id: number } }
|
|
10344
10361
|
/**
|
|
@@ -10819,7 +10836,26 @@ export type PalletAssetsCall003 =
|
|
|
10819
10836
|
*
|
|
10820
10837
|
* Weight: `O(1)`
|
|
10821
10838
|
**/
|
|
10822
|
-
| { name: 'Block'; params: { id: number; who: MultiAddress } }
|
|
10839
|
+
| { name: 'Block'; params: { id: number; who: MultiAddress } }
|
|
10840
|
+
/**
|
|
10841
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
10842
|
+
*
|
|
10843
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
10844
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
10845
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
10846
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
10847
|
+
* deposits, etc...
|
|
10848
|
+
*
|
|
10849
|
+
* The dispatch origin of this call must be Signed.
|
|
10850
|
+
*
|
|
10851
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
10852
|
+
* - `dest`: The recipient of the transfer.
|
|
10853
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
10854
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
10855
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
10856
|
+
* guarantee to keep the sender asset account alive (true).
|
|
10857
|
+
**/
|
|
10858
|
+
| { name: 'TransferAll'; params: { id: number; dest: MultiAddress; keepAlive: boolean } };
|
|
10823
10859
|
|
|
10824
10860
|
export type PalletAssetsCallLike003 =
|
|
10825
10861
|
/**
|
|
@@ -10876,8 +10912,6 @@ export type PalletAssetsCallLike003 =
|
|
|
10876
10912
|
*
|
|
10877
10913
|
* - `id`: The identifier of the asset to be destroyed. This must identify an existing
|
|
10878
10914
|
* asset.
|
|
10879
|
-
*
|
|
10880
|
-
* The asset class must be frozen before calling `start_destroy`.
|
|
10881
10915
|
**/
|
|
10882
10916
|
| { name: 'StartDestroy'; params: { id: number } }
|
|
10883
10917
|
/**
|
|
@@ -11364,7 +11398,26 @@ export type PalletAssetsCallLike003 =
|
|
|
11364
11398
|
*
|
|
11365
11399
|
* Weight: `O(1)`
|
|
11366
11400
|
**/
|
|
11367
|
-
| { name: 'Block'; params: { id: number; who: MultiAddressLike } }
|
|
11401
|
+
| { name: 'Block'; params: { id: number; who: MultiAddressLike } }
|
|
11402
|
+
/**
|
|
11403
|
+
* Transfer the entire transferable balance from the caller asset account.
|
|
11404
|
+
*
|
|
11405
|
+
* NOTE: This function only attempts to transfer _transferable_ balances. This means that
|
|
11406
|
+
* any held, frozen, or minimum balance (when `keep_alive` is `true`), will not be
|
|
11407
|
+
* transferred by this function. To ensure that this function results in a killed account,
|
|
11408
|
+
* you might need to prepare the account by removing any reference counters, storage
|
|
11409
|
+
* deposits, etc...
|
|
11410
|
+
*
|
|
11411
|
+
* The dispatch origin of this call must be Signed.
|
|
11412
|
+
*
|
|
11413
|
+
* - `id`: The identifier of the asset for the account holding a deposit.
|
|
11414
|
+
* - `dest`: The recipient of the transfer.
|
|
11415
|
+
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
|
|
11416
|
+
* of the funds the asset account has, causing the sender asset account to be killed
|
|
11417
|
+
* (false), or transfer everything except at least the minimum balance, which will
|
|
11418
|
+
* guarantee to keep the sender asset account alive (true).
|
|
11419
|
+
**/
|
|
11420
|
+
| { name: 'TransferAll'; params: { id: number; dest: MultiAddressLike; keepAlive: boolean } };
|
|
11368
11421
|
|
|
11369
11422
|
/**
|
|
11370
11423
|
* Pallet's callable functions.
|
|
@@ -11376,10 +11429,7 @@ export type PalletAssetConversionCall =
|
|
|
11376
11429
|
*
|
|
11377
11430
|
* Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
|
|
11378
11431
|
**/
|
|
11379
|
-
| {
|
|
11380
|
-
name: 'CreatePool';
|
|
11381
|
-
params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
|
|
11382
|
-
}
|
|
11432
|
+
| { name: 'CreatePool'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } }
|
|
11383
11433
|
/**
|
|
11384
11434
|
* Provide liquidity into the pool of `asset1` and `asset2`.
|
|
11385
11435
|
* NOTE: an optimal amount of asset1 and asset2 will be calculated and
|
|
@@ -11394,13 +11444,13 @@ export type PalletAssetConversionCall =
|
|
|
11394
11444
|
* calls to render the liquidity withdrawable and rectify the exchange rate.
|
|
11395
11445
|
*
|
|
11396
11446
|
* Once liquidity is added, someone may successfully call
|
|
11397
|
-
* [`Pallet::swap_exact_tokens_for_tokens`]
|
|
11447
|
+
* [`Pallet::swap_exact_tokens_for_tokens`].
|
|
11398
11448
|
**/
|
|
11399
11449
|
| {
|
|
11400
11450
|
name: 'AddLiquidity';
|
|
11401
11451
|
params: {
|
|
11402
|
-
asset1:
|
|
11403
|
-
asset2:
|
|
11452
|
+
asset1: StagingXcmV4Location;
|
|
11453
|
+
asset2: StagingXcmV4Location;
|
|
11404
11454
|
amount1Desired: bigint;
|
|
11405
11455
|
amount2Desired: bigint;
|
|
11406
11456
|
amount1Min: bigint;
|
|
@@ -11416,8 +11466,8 @@ export type PalletAssetConversionCall =
|
|
|
11416
11466
|
| {
|
|
11417
11467
|
name: 'RemoveLiquidity';
|
|
11418
11468
|
params: {
|
|
11419
|
-
asset1:
|
|
11420
|
-
asset2:
|
|
11469
|
+
asset1: StagingXcmV4Location;
|
|
11470
|
+
asset2: StagingXcmV4Location;
|
|
11421
11471
|
lpTokenBurn: bigint;
|
|
11422
11472
|
amount1MinReceive: bigint;
|
|
11423
11473
|
amount2MinReceive: bigint;
|
|
@@ -11435,7 +11485,7 @@ export type PalletAssetConversionCall =
|
|
|
11435
11485
|
| {
|
|
11436
11486
|
name: 'SwapExactTokensForTokens';
|
|
11437
11487
|
params: {
|
|
11438
|
-
path: Array<
|
|
11488
|
+
path: Array<StagingXcmV4Location>;
|
|
11439
11489
|
amountIn: bigint;
|
|
11440
11490
|
amountOutMin: bigint;
|
|
11441
11491
|
sendTo: AccountId32;
|
|
@@ -11453,7 +11503,7 @@ export type PalletAssetConversionCall =
|
|
|
11453
11503
|
| {
|
|
11454
11504
|
name: 'SwapTokensForExactTokens';
|
|
11455
11505
|
params: {
|
|
11456
|
-
path: Array<
|
|
11506
|
+
path: Array<StagingXcmV4Location>;
|
|
11457
11507
|
amountOut: bigint;
|
|
11458
11508
|
amountInMax: bigint;
|
|
11459
11509
|
sendTo: AccountId32;
|
|
@@ -11473,10 +11523,7 @@ export type PalletAssetConversionCall =
|
|
|
11473
11523
|
*
|
|
11474
11524
|
* Emits `Touched` event when successful.
|
|
11475
11525
|
**/
|
|
11476
|
-
| {
|
|
11477
|
-
name: 'Touch';
|
|
11478
|
-
params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
|
|
11479
|
-
};
|
|
11526
|
+
| { name: 'Touch'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
|
|
11480
11527
|
|
|
11481
11528
|
export type PalletAssetConversionCallLike =
|
|
11482
11529
|
/**
|
|
@@ -11485,10 +11532,7 @@ export type PalletAssetConversionCallLike =
|
|
|
11485
11532
|
*
|
|
11486
11533
|
* Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
|
|
11487
11534
|
**/
|
|
11488
|
-
| {
|
|
11489
|
-
name: 'CreatePool';
|
|
11490
|
-
params: { asset1: StagingXcmV3MultilocationMultiLocation; asset2: StagingXcmV3MultilocationMultiLocation };
|
|
11491
|
-
}
|
|
11535
|
+
| { name: 'CreatePool'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } }
|
|
11492
11536
|
/**
|
|
11493
11537
|
* Provide liquidity into the pool of `asset1` and `asset2`.
|
|
11494
11538
|
* NOTE: an optimal amount of asset1 and asset2 will be calculated and
|
|
@@ -11503,13 +11547,13 @@ export type PalletAssetConversionCallLike =
|
|
|
11503
11547
|
* calls to render the liquidity withdrawable and rectify the exchange rate.
|
|
11504
11548
|
*
|
|
11505
11549
|
* Once liquidity is added, someone may successfully call
|
|
11506
|
-
* [`Pallet::swap_exact_tokens_for_tokens`]
|
|
11550
|
+
* [`Pallet::swap_exact_tokens_for_tokens`].
|
|
11507
11551
|
**/
|
|
11508
11552
|
| {
|
|
11509
11553
|
name: 'AddLiquidity';
|
|
11510
11554
|
params: {
|
|
11511
|
-
asset1:
|
|
11512
|
-
asset2:
|
|
11555
|
+
asset1: StagingXcmV4Location;
|
|
11556
|
+
asset2: StagingXcmV4Location;
|
|
11513
11557
|
amount1Desired: bigint;
|
|
11514
11558
|
amount2Desired: bigint;
|
|
11515
11559
|
amount1Min: bigint;
|
|
@@ -11525,8 +11569,8 @@ export type PalletAssetConversionCallLike =
|
|
|
11525
11569
|
| {
|
|
11526
11570
|
name: 'RemoveLiquidity';
|
|
11527
11571
|
params: {
|
|
11528
|
-
asset1:
|
|
11529
|
-
asset2:
|
|
11572
|
+
asset1: StagingXcmV4Location;
|
|
11573
|
+
asset2: StagingXcmV4Location;
|
|
11530
11574
|
lpTokenBurn: bigint;
|
|
11531
11575
|
amount1MinReceive: bigint;
|
|
11532
11576
|
amount2MinReceive: bigint;
|
|
@@ -11544,7 +11588,7 @@ export type PalletAssetConversionCallLike =
|
|
|
11544
11588
|
| {
|
|
11545
11589
|
name: 'SwapExactTokensForTokens';
|
|
11546
11590
|
params: {
|
|
11547
|
-
path: Array<
|
|
11591
|
+
path: Array<StagingXcmV4Location>;
|
|
11548
11592
|
amountIn: bigint;
|
|
11549
11593
|
amountOutMin: bigint;
|
|
11550
11594
|
sendTo: AccountId32Like;
|
|
@@ -11562,7 +11606,7 @@ export type PalletAssetConversionCallLike =
|
|
|
11562
11606
|
| {
|
|
11563
11607
|
name: 'SwapTokensForExactTokens';
|
|
11564
11608
|
params: {
|
|
11565
|
-
path: Array<
|
|
11609
|
+
path: Array<StagingXcmV4Location>;
|
|
11566
11610
|
amountOut: bigint;
|
|
11567
11611
|
amountInMax: bigint;
|
|
11568
11612
|
sendTo: AccountId32Like;
|
|
@@ -11582,11 +11626,174 @@ export type PalletAssetConversionCallLike =
|
|
|
11582
11626
|
*
|
|
11583
11627
|
* Emits `Touched` event when successful.
|
|
11584
11628
|
**/
|
|
11629
|
+
| { name: 'Touch'; params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location } };
|
|
11630
|
+
|
|
11631
|
+
/**
|
|
11632
|
+
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
11633
|
+
**/
|
|
11634
|
+
export type PalletStateTrieMigrationCall =
|
|
11635
|
+
/**
|
|
11636
|
+
* Control the automatic migration.
|
|
11637
|
+
*
|
|
11638
|
+
* The dispatch origin of this call must be [`Config::ControlOrigin`].
|
|
11639
|
+
**/
|
|
11640
|
+
| { name: 'ControlAutoMigration'; params: { maybeConfig?: PalletStateTrieMigrationMigrationLimits | undefined } }
|
|
11641
|
+
/**
|
|
11642
|
+
* Continue the migration for the given `limits`.
|
|
11643
|
+
*
|
|
11644
|
+
* The dispatch origin of this call can be any signed account.
|
|
11645
|
+
*
|
|
11646
|
+
* This transaction has NO MONETARY INCENTIVES. calling it will not reward anyone. Albeit,
|
|
11647
|
+
* Upon successful execution, the transaction fee is returned.
|
|
11648
|
+
*
|
|
11649
|
+
* The (potentially over-estimated) of the byte length of all the data read must be
|
|
11650
|
+
* provided for up-front fee-payment and weighing. In essence, the caller is guaranteeing
|
|
11651
|
+
* that executing the current `MigrationTask` with the given `limits` will not exceed
|
|
11652
|
+
* `real_size_upper` bytes of read data.
|
|
11653
|
+
*
|
|
11654
|
+
* The `witness_task` is merely a helper to prevent the caller from being slashed or
|
|
11655
|
+
* generally trigger a migration that they do not intend. This parameter is just a message
|
|
11656
|
+
* from caller, saying that they believed `witness_task` was the last state of the
|
|
11657
|
+
* migration, and they only wish for their transaction to do anything, if this assumption
|
|
11658
|
+
* holds. In case `witness_task` does not match, the transaction fails.
|
|
11659
|
+
*
|
|
11660
|
+
* Based on the documentation of [`MigrationTask::migrate_until_exhaustion`], the
|
|
11661
|
+
* recommended way of doing this is to pass a `limit` that only bounds `count`, as the
|
|
11662
|
+
* `size` limit can always be overwritten.
|
|
11663
|
+
**/
|
|
11664
|
+
| {
|
|
11665
|
+
name: 'ContinueMigrate';
|
|
11666
|
+
params: {
|
|
11667
|
+
limits: PalletStateTrieMigrationMigrationLimits;
|
|
11668
|
+
realSizeUpper: number;
|
|
11669
|
+
witnessTask: PalletStateTrieMigrationMigrationTask;
|
|
11670
|
+
};
|
|
11671
|
+
}
|
|
11672
|
+
/**
|
|
11673
|
+
* Migrate the list of top keys by iterating each of them one by one.
|
|
11674
|
+
*
|
|
11675
|
+
* This does not affect the global migration process tracker ([`MigrationProcess`]), and
|
|
11676
|
+
* should only be used in case any keys are leftover due to a bug.
|
|
11677
|
+
**/
|
|
11678
|
+
| { name: 'MigrateCustomTop'; params: { keys: Array<Bytes>; witnessSize: number } }
|
|
11679
|
+
/**
|
|
11680
|
+
* Migrate the list of child keys by iterating each of them one by one.
|
|
11681
|
+
*
|
|
11682
|
+
* All of the given child keys must be present under one `child_root`.
|
|
11683
|
+
*
|
|
11684
|
+
* This does not affect the global migration process tracker ([`MigrationProcess`]), and
|
|
11685
|
+
* should only be used in case any keys are leftover due to a bug.
|
|
11686
|
+
**/
|
|
11687
|
+
| { name: 'MigrateCustomChild'; params: { root: Bytes; childKeys: Array<Bytes>; totalSize: number } }
|
|
11688
|
+
/**
|
|
11689
|
+
* Set the maximum limit of the signed migration.
|
|
11690
|
+
**/
|
|
11691
|
+
| { name: 'SetSignedMaxLimits'; params: { limits: PalletStateTrieMigrationMigrationLimits } }
|
|
11692
|
+
/**
|
|
11693
|
+
* Forcefully set the progress the running migration.
|
|
11694
|
+
*
|
|
11695
|
+
* This is only useful in one case: the next key to migrate is too big to be migrated with
|
|
11696
|
+
* a signed account, in a parachain context, and we simply want to skip it. A reasonable
|
|
11697
|
+
* example of this would be `:code:`, which is both very expensive to migrate, and commonly
|
|
11698
|
+
* used, so probably it is already migrated.
|
|
11699
|
+
*
|
|
11700
|
+
* In case you mess things up, you can also, in principle, use this to reset the migration
|
|
11701
|
+
* process.
|
|
11702
|
+
**/
|
|
11703
|
+
| {
|
|
11704
|
+
name: 'ForceSetProgress';
|
|
11705
|
+
params: { progressTop: PalletStateTrieMigrationProgress; progressChild: PalletStateTrieMigrationProgress };
|
|
11706
|
+
};
|
|
11707
|
+
|
|
11708
|
+
export type PalletStateTrieMigrationCallLike =
|
|
11709
|
+
/**
|
|
11710
|
+
* Control the automatic migration.
|
|
11711
|
+
*
|
|
11712
|
+
* The dispatch origin of this call must be [`Config::ControlOrigin`].
|
|
11713
|
+
**/
|
|
11714
|
+
| { name: 'ControlAutoMigration'; params: { maybeConfig?: PalletStateTrieMigrationMigrationLimits | undefined } }
|
|
11715
|
+
/**
|
|
11716
|
+
* Continue the migration for the given `limits`.
|
|
11717
|
+
*
|
|
11718
|
+
* The dispatch origin of this call can be any signed account.
|
|
11719
|
+
*
|
|
11720
|
+
* This transaction has NO MONETARY INCENTIVES. calling it will not reward anyone. Albeit,
|
|
11721
|
+
* Upon successful execution, the transaction fee is returned.
|
|
11722
|
+
*
|
|
11723
|
+
* The (potentially over-estimated) of the byte length of all the data read must be
|
|
11724
|
+
* provided for up-front fee-payment and weighing. In essence, the caller is guaranteeing
|
|
11725
|
+
* that executing the current `MigrationTask` with the given `limits` will not exceed
|
|
11726
|
+
* `real_size_upper` bytes of read data.
|
|
11727
|
+
*
|
|
11728
|
+
* The `witness_task` is merely a helper to prevent the caller from being slashed or
|
|
11729
|
+
* generally trigger a migration that they do not intend. This parameter is just a message
|
|
11730
|
+
* from caller, saying that they believed `witness_task` was the last state of the
|
|
11731
|
+
* migration, and they only wish for their transaction to do anything, if this assumption
|
|
11732
|
+
* holds. In case `witness_task` does not match, the transaction fails.
|
|
11733
|
+
*
|
|
11734
|
+
* Based on the documentation of [`MigrationTask::migrate_until_exhaustion`], the
|
|
11735
|
+
* recommended way of doing this is to pass a `limit` that only bounds `count`, as the
|
|
11736
|
+
* `size` limit can always be overwritten.
|
|
11737
|
+
**/
|
|
11738
|
+
| {
|
|
11739
|
+
name: 'ContinueMigrate';
|
|
11740
|
+
params: {
|
|
11741
|
+
limits: PalletStateTrieMigrationMigrationLimits;
|
|
11742
|
+
realSizeUpper: number;
|
|
11743
|
+
witnessTask: PalletStateTrieMigrationMigrationTask;
|
|
11744
|
+
};
|
|
11745
|
+
}
|
|
11746
|
+
/**
|
|
11747
|
+
* Migrate the list of top keys by iterating each of them one by one.
|
|
11748
|
+
*
|
|
11749
|
+
* This does not affect the global migration process tracker ([`MigrationProcess`]), and
|
|
11750
|
+
* should only be used in case any keys are leftover due to a bug.
|
|
11751
|
+
**/
|
|
11752
|
+
| { name: 'MigrateCustomTop'; params: { keys: Array<BytesLike>; witnessSize: number } }
|
|
11753
|
+
/**
|
|
11754
|
+
* Migrate the list of child keys by iterating each of them one by one.
|
|
11755
|
+
*
|
|
11756
|
+
* All of the given child keys must be present under one `child_root`.
|
|
11757
|
+
*
|
|
11758
|
+
* This does not affect the global migration process tracker ([`MigrationProcess`]), and
|
|
11759
|
+
* should only be used in case any keys are leftover due to a bug.
|
|
11760
|
+
**/
|
|
11761
|
+
| { name: 'MigrateCustomChild'; params: { root: BytesLike; childKeys: Array<BytesLike>; totalSize: number } }
|
|
11762
|
+
/**
|
|
11763
|
+
* Set the maximum limit of the signed migration.
|
|
11764
|
+
**/
|
|
11765
|
+
| { name: 'SetSignedMaxLimits'; params: { limits: PalletStateTrieMigrationMigrationLimits } }
|
|
11766
|
+
/**
|
|
11767
|
+
* Forcefully set the progress the running migration.
|
|
11768
|
+
*
|
|
11769
|
+
* This is only useful in one case: the next key to migrate is too big to be migrated with
|
|
11770
|
+
* a signed account, in a parachain context, and we simply want to skip it. A reasonable
|
|
11771
|
+
* example of this would be `:code:`, which is both very expensive to migrate, and commonly
|
|
11772
|
+
* used, so probably it is already migrated.
|
|
11773
|
+
*
|
|
11774
|
+
* In case you mess things up, you can also, in principle, use this to reset the migration
|
|
11775
|
+
* process.
|
|
11776
|
+
**/
|
|
11585
11777
|
| {
|
|
11586
|
-
name: '
|
|
11587
|
-
params: {
|
|
11778
|
+
name: 'ForceSetProgress';
|
|
11779
|
+
params: { progressTop: PalletStateTrieMigrationProgress; progressChild: PalletStateTrieMigrationProgress };
|
|
11588
11780
|
};
|
|
11589
11781
|
|
|
11782
|
+
export type PalletStateTrieMigrationMigrationLimits = { size: number; item: number };
|
|
11783
|
+
|
|
11784
|
+
export type PalletStateTrieMigrationMigrationTask = {
|
|
11785
|
+
progressTop: PalletStateTrieMigrationProgress;
|
|
11786
|
+
progressChild: PalletStateTrieMigrationProgress;
|
|
11787
|
+
size: number;
|
|
11788
|
+
topItems: number;
|
|
11789
|
+
childItems: number;
|
|
11790
|
+
};
|
|
11791
|
+
|
|
11792
|
+
export type PalletStateTrieMigrationProgress =
|
|
11793
|
+
| { type: 'ToStart' }
|
|
11794
|
+
| { type: 'LastKey'; value: Bytes }
|
|
11795
|
+
| { type: 'Complete' };
|
|
11796
|
+
|
|
11590
11797
|
/**
|
|
11591
11798
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
11592
11799
|
**/
|
|
@@ -12390,7 +12597,7 @@ export type FrameSystemExtensionsCheckWeight = {};
|
|
|
12390
12597
|
|
|
12391
12598
|
export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
|
|
12392
12599
|
tip: bigint;
|
|
12393
|
-
assetId?:
|
|
12600
|
+
assetId?: StagingXcmV4Location | undefined;
|
|
12394
12601
|
};
|
|
12395
12602
|
|
|
12396
12603
|
export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
|
|
@@ -12523,4 +12730,5 @@ export type AssetHubPaseoRuntimeRuntimeError =
|
|
|
12523
12730
|
| { pallet: 'ForeignAssets'; palletError: PalletAssetsError }
|
|
12524
12731
|
| { pallet: 'PoolAssets'; palletError: PalletAssetsError }
|
|
12525
12732
|
| { pallet: 'AssetConversion'; palletError: PalletAssetConversionError }
|
|
12733
|
+
| { pallet: 'StateTrieMigration'; palletError: PalletStateTrieMigrationError }
|
|
12526
12734
|
| { pallet: 'Sudo'; palletError: PalletSudoError };
|