@dedot/chaintypes 0.152.0 → 0.154.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.
@@ -10,14 +10,14 @@ import type {
10
10
  Bytes,
11
11
  Result,
12
12
  BytesLike,
13
+ Header,
13
14
  MultiAddress,
14
15
  MultiAddressLike,
15
16
  AccountId32Like,
16
- Perbill,
17
17
  Data,
18
- Era,
19
- Header,
20
18
  UncheckedExtrinsic,
19
+ Era,
20
+ Perbill,
21
21
  } from 'dedot/codecs';
22
22
 
23
23
  export type FrameSystemAccountInfo = {
@@ -96,7 +96,11 @@ export type FrameSystemEvent =
96
96
  /**
97
97
  * An upgrade was authorized.
98
98
  **/
99
- | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } };
99
+ | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } }
100
+ /**
101
+ * An invalid authorized upgrade was rejected while trying to apply it.
102
+ **/
103
+ | { name: 'RejectedInvalidAuthorizedUpgrade'; data: { codeHash: H256; error: DispatchError } };
100
104
 
101
105
  export type FrameSystemDispatchEventInfo = {
102
106
  weight: SpWeightsWeightV2Weight;
@@ -211,10 +215,18 @@ export type PalletBalancesEvent =
211
215
  * Some amount was minted into an account.
212
216
  **/
213
217
  | { name: 'Minted'; data: { who: AccountId32; amount: bigint } }
218
+ /**
219
+ * Some credit was balanced and added to the TotalIssuance.
220
+ **/
221
+ | { name: 'MintedCredit'; data: { amount: bigint } }
214
222
  /**
215
223
  * Some amount was burned from an account.
216
224
  **/
217
225
  | { name: 'Burned'; data: { who: AccountId32; amount: bigint } }
226
+ /**
227
+ * Some debt has been dropped from the Total Issuance.
228
+ **/
229
+ | { name: 'BurnedDebt'; data: { amount: bigint } }
218
230
  /**
219
231
  * Some amount was suspended from an account (it can be restored later).
220
232
  **/
@@ -254,10 +266,55 @@ export type PalletBalancesEvent =
254
266
  /**
255
267
  * The `TotalIssuance` was forcefully changed.
256
268
  **/
257
- | { name: 'TotalIssuanceForced'; data: { old: bigint; new: bigint } };
269
+ | { name: 'TotalIssuanceForced'; data: { old: bigint; new: bigint } }
270
+ /**
271
+ * Some balance was placed on hold.
272
+ **/
273
+ | { name: 'Held'; data: { reason: PeopleWestendRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
274
+ /**
275
+ * Held balance was burned from an account.
276
+ **/
277
+ | { name: 'BurnedHeld'; data: { reason: PeopleWestendRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
278
+ /**
279
+ * A transfer of `amount` on hold from `source` to `dest` was initiated.
280
+ **/
281
+ | {
282
+ name: 'TransferOnHold';
283
+ data: { reason: PeopleWestendRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; amount: bigint };
284
+ }
285
+ /**
286
+ * The `transferred` balance is placed on hold at the `dest` account.
287
+ **/
288
+ | {
289
+ name: 'TransferAndHold';
290
+ data: {
291
+ reason: PeopleWestendRuntimeRuntimeHoldReason;
292
+ source: AccountId32;
293
+ dest: AccountId32;
294
+ transferred: bigint;
295
+ };
296
+ }
297
+ /**
298
+ * Some balance was released from hold.
299
+ **/
300
+ | { name: 'Released'; data: { reason: PeopleWestendRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
301
+ /**
302
+ * An unexpected/defensive event was triggered.
303
+ **/
304
+ | { name: 'Unexpected'; data: PalletBalancesUnexpectedKind };
258
305
 
259
306
  export type FrameSupportTokensMiscBalanceStatus = 'Free' | 'Reserved';
260
307
 
308
+ export type PeopleWestendRuntimeRuntimeHoldReason =
309
+ | { type: 'Session'; value: PalletSessionHoldReason }
310
+ | { type: 'PolkadotXcm'; value: PalletXcmHoldReason };
311
+
312
+ export type PalletSessionHoldReason = 'Keys';
313
+
314
+ export type PalletXcmHoldReason = 'AuthorizeAlias';
315
+
316
+ export type PalletBalancesUnexpectedKind = 'BalanceUpdated' | 'FailedToMutateAccount';
317
+
261
318
  /**
262
319
  * The `Event` enum of this pallet
263
320
  **/
@@ -323,6 +380,11 @@ export type PalletSessionEvent =
323
380
  * block number as the type might suggest.
324
381
  **/
325
382
  | { name: 'NewSession'; data: { sessionIndex: number } }
383
+ /**
384
+ * The `NewSession` event in the current block also implies a new validator set to be
385
+ * queued.
386
+ **/
387
+ | { name: 'NewQueued' }
326
388
  /**
327
389
  * Validator has been disabled.
328
390
  **/
@@ -350,7 +412,7 @@ export type PalletXcmEvent =
350
412
  **/
351
413
  | { name: 'Attempted'; data: { outcome: StagingXcmV5TraitsOutcome } }
352
414
  /**
353
- * A XCM message was sent.
415
+ * An XCM message was sent.
354
416
  **/
355
417
  | {
356
418
  name: 'Sent';
@@ -361,6 +423,25 @@ export type PalletXcmEvent =
361
423
  messageId: FixedBytes<32>;
362
424
  };
363
425
  }
426
+ /**
427
+ * An XCM message failed to send.
428
+ **/
429
+ | {
430
+ name: 'SendFailed';
431
+ data: {
432
+ origin: StagingXcmV5Location;
433
+ destination: StagingXcmV5Location;
434
+ error: XcmV3TraitsSendError;
435
+ messageId: FixedBytes<32>;
436
+ };
437
+ }
438
+ /**
439
+ * An XCM message failed to process.
440
+ **/
441
+ | {
442
+ name: 'ProcessXcmError';
443
+ data: { origin: StagingXcmV5Location; error: XcmV5TraitsError; messageId: FixedBytes<32> };
444
+ }
364
445
  /**
365
446
  * Query response received which does not match a registered query. This may be because a
366
447
  * matching query was never registered, it may be because it is a duplicate response, or
@@ -517,12 +598,30 @@ export type PalletXcmEvent =
517
598
  /**
518
599
  * A XCM version migration finished.
519
600
  **/
520
- | { name: 'VersionMigrationFinished'; data: { version: number } };
601
+ | { name: 'VersionMigrationFinished'; data: { version: number } }
602
+ /**
603
+ * An `aliaser` location was authorized by `target` to alias it, authorization valid until
604
+ * `expiry` block number.
605
+ **/
606
+ | {
607
+ name: 'AliasAuthorized';
608
+ data: { aliaser: StagingXcmV5Location; target: StagingXcmV5Location; expiry?: bigint | undefined };
609
+ }
610
+ /**
611
+ * `target` removed alias authorization for `aliaser`.
612
+ **/
613
+ | { name: 'AliasAuthorizationRemoved'; data: { aliaser: StagingXcmV5Location; target: StagingXcmV5Location } }
614
+ /**
615
+ * `target` removed all alias authorizations.
616
+ **/
617
+ | { name: 'AliasesAuthorizationsRemoved'; data: { target: StagingXcmV5Location } };
521
618
 
522
619
  export type StagingXcmV5TraitsOutcome =
523
620
  | { type: 'Complete'; value: { used: SpWeightsWeightV2Weight } }
524
- | { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error: XcmV5TraitsError } }
525
- | { type: 'Error'; value: { error: XcmV5TraitsError } };
621
+ | { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error: StagingXcmV5TraitsInstructionError } }
622
+ | { type: 'Error'; value: StagingXcmV5TraitsInstructionError };
623
+
624
+ export type StagingXcmV5TraitsInstructionError = { index: number; error: XcmV5TraitsError };
526
625
 
527
626
  export type XcmV5TraitsError =
528
627
  | { type: 'Overflow' }
@@ -802,6 +901,15 @@ export type StagingXcmV5AssetAssetTransferFilter =
802
901
 
803
902
  export type StagingXcmV5Hint = { type: 'AssetClaimer'; value: { location: StagingXcmV5Location } };
804
903
 
904
+ export type XcmV3TraitsSendError =
905
+ | 'NotApplicable'
906
+ | 'Transport'
907
+ | 'Unroutable'
908
+ | 'DestinationUnsupported'
909
+ | 'ExceedsMaxMessageSize'
910
+ | 'MissingArgument'
911
+ | 'Fees';
912
+
805
913
  export type XcmVersionedAssets =
806
914
  | { type: 'V3'; value: XcmV3MultiassetMultiAssets }
807
915
  | { type: 'V4'; value: StagingXcmV4AssetAssets }
@@ -1164,6 +1272,13 @@ export type PalletMultisigEvent =
1164
1272
  multisig: AccountId32;
1165
1273
  callHash: FixedBytes<32>;
1166
1274
  };
1275
+ }
1276
+ /**
1277
+ * The deposit for a multisig operation has been updated/poked.
1278
+ **/
1279
+ | {
1280
+ name: 'DepositPoked';
1281
+ data: { who: AccountId32; callHash: FixedBytes<32>; oldDeposit: bigint; newDeposit: bigint };
1167
1282
  };
1168
1283
 
1169
1284
  export type PalletMultisigTimepoint = { height: number; index: number };
@@ -1187,6 +1302,20 @@ export type PalletProxyEvent =
1187
1302
  who: AccountId32;
1188
1303
  proxyType: PeopleWestendRuntimeProxyType;
1189
1304
  disambiguationIndex: number;
1305
+ at: number;
1306
+ extrinsicIndex: number;
1307
+ };
1308
+ }
1309
+ /**
1310
+ * A pure proxy was killed by its spawner.
1311
+ **/
1312
+ | {
1313
+ name: 'PureKilled';
1314
+ data: {
1315
+ pure: AccountId32;
1316
+ spawner: AccountId32;
1317
+ proxyType: PeopleWestendRuntimeProxyType;
1318
+ disambiguationIndex: number;
1190
1319
  };
1191
1320
  }
1192
1321
  /**
@@ -1206,6 +1335,13 @@ export type PalletProxyEvent =
1206
1335
  | {
1207
1336
  name: 'ProxyRemoved';
1208
1337
  data: { delegator: AccountId32; delegatee: AccountId32; proxyType: PeopleWestendRuntimeProxyType; delay: number };
1338
+ }
1339
+ /**
1340
+ * A deposit stored for proxies or announcements was poked / updated.
1341
+ **/
1342
+ | {
1343
+ name: 'DepositPoked';
1344
+ data: { who: AccountId32; kind: PalletProxyDepositKind; oldDeposit: bigint; newDeposit: bigint };
1209
1345
  };
1210
1346
 
1211
1347
  export type PeopleWestendRuntimeProxyType =
@@ -1216,6 +1352,8 @@ export type PeopleWestendRuntimeProxyType =
1216
1352
  | 'IdentityJudgement'
1217
1353
  | 'Collator';
1218
1354
 
1355
+ export type PalletProxyDepositKind = 'Proxies' | 'Announcements';
1356
+
1219
1357
  /**
1220
1358
  * The `Event` enum of this pallet
1221
1359
  **/
@@ -1657,88 +1795,43 @@ export type FrameSystemError =
1657
1795
  **/
1658
1796
  | 'Unauthorized';
1659
1797
 
1660
- export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
1661
- usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
1662
- paraHeadHash?: H256 | undefined;
1663
- consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
1664
- };
1665
-
1666
- export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
1667
- umpMsgCount: number;
1668
- umpTotalBytes: number;
1669
- hrmpOutgoing: Array<
1670
- [PolkadotParachainPrimitivesPrimitivesId, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate]
1671
- >;
1672
- };
1673
-
1674
- export type CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate = { msgCount: number; totalBytes: number };
1675
-
1676
- export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
1677
-
1678
- export type CumulusPalletParachainSystemUnincludedSegmentSegmentTracker = {
1679
- usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
1680
- hrmpWatermark?: number | undefined;
1681
- consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
1682
- };
1683
-
1684
- export type PolkadotPrimitivesV8PersistedValidationData = {
1685
- parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
1686
- relayParentNumber: number;
1687
- relayParentStorageRoot: H256;
1688
- maxPovSize: number;
1689
- };
1690
-
1691
- export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
1692
-
1693
- export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
1694
-
1695
- export type SpTrieStorageProof = { trieNodes: Array<Bytes> };
1696
-
1697
- export type CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot = {
1698
- dmqMqcHead: H256;
1699
- relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
1700
- ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
1701
- egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
1702
- };
1703
-
1704
- export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity = {
1705
- remainingCount: number;
1706
- remainingSize: number;
1707
- };
1708
-
1709
- export type PolkadotPrimitivesV8AbridgedHrmpChannel = {
1710
- maxCapacity: number;
1711
- maxTotalSize: number;
1712
- maxMessageSize: number;
1713
- msgCount: number;
1714
- totalSize: number;
1715
- mqcHead?: H256 | undefined;
1716
- };
1717
-
1718
- export type PolkadotPrimitivesV8AbridgedHostConfiguration = {
1719
- maxCodeSize: number;
1720
- maxHeadDataSize: number;
1721
- maxUpwardQueueCount: number;
1722
- maxUpwardQueueSize: number;
1723
- maxUpwardMessageSize: number;
1724
- maxUpwardMessageNumPerCandidate: number;
1725
- hrmpMaxMessageNumPerCandidate: number;
1726
- validationUpgradeCooldown: number;
1727
- validationUpgradeDelay: number;
1728
- asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
1729
- };
1730
-
1731
- export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
1732
- maxCandidateDepth: number;
1733
- allowedAncestryLen: number;
1734
- };
1735
-
1736
- export type CumulusPrimitivesParachainInherentMessageQueueChain = H256;
1798
+ export type PeopleWestendRuntimeRuntimeCall =
1799
+ | { pallet: 'System'; palletCall: FrameSystemCall }
1800
+ | { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCall }
1801
+ | { pallet: 'Timestamp'; palletCall: PalletTimestampCall }
1802
+ | { pallet: 'ParachainInfo'; palletCall: StagingParachainInfoCall }
1803
+ | { pallet: 'Balances'; palletCall: PalletBalancesCall }
1804
+ | { pallet: 'CollatorSelection'; palletCall: PalletCollatorSelectionCall }
1805
+ | { pallet: 'Session'; palletCall: PalletSessionCall }
1806
+ | { pallet: 'XcmpQueue'; palletCall: CumulusPalletXcmpQueueCall }
1807
+ | { pallet: 'PolkadotXcm'; palletCall: PalletXcmCall }
1808
+ | { pallet: 'CumulusXcm'; palletCall: CumulusPalletXcmCall }
1809
+ | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
1810
+ | { pallet: 'Utility'; palletCall: PalletUtilityCall }
1811
+ | { pallet: 'Multisig'; palletCall: PalletMultisigCall }
1812
+ | { pallet: 'Proxy'; palletCall: PalletProxyCall }
1813
+ | { pallet: 'Identity'; palletCall: PalletIdentityCall }
1814
+ | { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCall }
1815
+ | { pallet: 'IdentityMigrator'; palletCall: PolkadotRuntimeCommonIdentityMigratorPalletCall };
1737
1816
 
1738
- export type PolkadotCorePrimitivesOutboundHrmpMessage = {
1739
- recipient: PolkadotParachainPrimitivesPrimitivesId;
1740
- data: Bytes;
1741
- };
1817
+ export type PeopleWestendRuntimeRuntimeCallLike =
1818
+ | { pallet: 'System'; palletCall: FrameSystemCallLike }
1819
+ | { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCallLike }
1820
+ | { pallet: 'Timestamp'; palletCall: PalletTimestampCallLike }
1821
+ | { pallet: 'ParachainInfo'; palletCall: StagingParachainInfoCallLike }
1822
+ | { pallet: 'Balances'; palletCall: PalletBalancesCallLike }
1823
+ | { pallet: 'CollatorSelection'; palletCall: PalletCollatorSelectionCallLike }
1824
+ | { pallet: 'Session'; palletCall: PalletSessionCallLike }
1825
+ | { pallet: 'XcmpQueue'; palletCall: CumulusPalletXcmpQueueCallLike }
1826
+ | { pallet: 'PolkadotXcm'; palletCall: PalletXcmCallLike }
1827
+ | { pallet: 'CumulusXcm'; palletCall: CumulusPalletXcmCallLike }
1828
+ | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
1829
+ | { pallet: 'Utility'; palletCall: PalletUtilityCallLike }
1830
+ | { pallet: 'Multisig'; palletCall: PalletMultisigCallLike }
1831
+ | { pallet: 'Proxy'; palletCall: PalletProxyCallLike }
1832
+ | { pallet: 'Identity'; palletCall: PalletIdentityCallLike }
1833
+ | { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCallLike }
1834
+ | { pallet: 'IdentityMigrator'; palletCall: PolkadotRuntimeCommonIdentityMigratorPalletCallLike };
1742
1835
 
1743
1836
  /**
1744
1837
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1755,7 +1848,13 @@ export type CumulusPalletParachainSystemCall =
1755
1848
  * As a side effect, this function upgrades the current validation function
1756
1849
  * if the appropriate time has come.
1757
1850
  **/
1758
- | { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
1851
+ | {
1852
+ name: 'SetValidationData';
1853
+ params: {
1854
+ data: CumulusPalletParachainSystemParachainInherentBasicParachainInherentData;
1855
+ inboundMessagesData: CumulusPalletParachainSystemParachainInherentInboundMessagesData;
1856
+ };
1857
+ }
1759
1858
  | { name: 'SudoSendUpwardMessage'; params: { message: Bytes } };
1760
1859
 
1761
1860
  export type CumulusPalletParachainSystemCallLike =
@@ -1770,57 +1869,53 @@ export type CumulusPalletParachainSystemCallLike =
1770
1869
  * As a side effect, this function upgrades the current validation function
1771
1870
  * if the appropriate time has come.
1772
1871
  **/
1773
- | { name: 'SetValidationData'; params: { data: CumulusPrimitivesParachainInherentParachainInherentData } }
1872
+ | {
1873
+ name: 'SetValidationData';
1874
+ params: {
1875
+ data: CumulusPalletParachainSystemParachainInherentBasicParachainInherentData;
1876
+ inboundMessagesData: CumulusPalletParachainSystemParachainInherentInboundMessagesData;
1877
+ };
1878
+ }
1774
1879
  | { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } };
1775
1880
 
1776
- export type CumulusPrimitivesParachainInherentParachainInherentData = {
1881
+ export type CumulusPalletParachainSystemParachainInherentBasicParachainInherentData = {
1777
1882
  validationData: PolkadotPrimitivesV8PersistedValidationData;
1778
1883
  relayChainState: SpTrieStorageProof;
1779
- downwardMessages: Array<PolkadotCorePrimitivesInboundDownwardMessage>;
1780
- horizontalMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<PolkadotCorePrimitivesInboundHrmpMessage>]>;
1884
+ relayParentDescendants: Array<Header>;
1885
+ collatorPeerId?: Bytes | undefined;
1886
+ };
1887
+
1888
+ export type PolkadotPrimitivesV8PersistedValidationData = {
1889
+ parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
1890
+ relayParentNumber: number;
1891
+ relayParentStorageRoot: H256;
1892
+ maxPovSize: number;
1893
+ };
1894
+
1895
+ export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
1896
+
1897
+ export type SpTrieStorageProof = { trieNodes: Array<Bytes> };
1898
+
1899
+ export type CumulusPalletParachainSystemParachainInherentInboundMessagesData = {
1900
+ downwardMessages: CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection;
1901
+ horizontalMessages: CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection002;
1902
+ };
1903
+
1904
+ export type CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection = {
1905
+ fullMessages: Array<PolkadotCorePrimitivesInboundDownwardMessage>;
1906
+ hashedMessages: Array<CumulusPrimitivesParachainInherentHashedMessage>;
1781
1907
  };
1782
1908
 
1783
1909
  export type PolkadotCorePrimitivesInboundDownwardMessage = { sentAt: number; msg: Bytes };
1784
1910
 
1785
- export type PolkadotCorePrimitivesInboundHrmpMessage = { sentAt: number; data: Bytes };
1911
+ export type CumulusPrimitivesParachainInherentHashedMessage = { sentAt: number; msgHash: H256 };
1786
1912
 
1787
- /**
1788
- * The `Error` enum of this pallet.
1789
- **/
1790
- export type CumulusPalletParachainSystemError =
1791
- /**
1792
- * Attempt to upgrade validation function while existing upgrade pending.
1793
- **/
1794
- | 'OverlappingUpgrades'
1795
- /**
1796
- * Polkadot currently prohibits this parachain from upgrading its validation function.
1797
- **/
1798
- | 'ProhibitedByPolkadot'
1799
- /**
1800
- * The supplied validation function has compiled into a blob larger than Polkadot is
1801
- * willing to run.
1802
- **/
1803
- | 'TooBig'
1804
- /**
1805
- * The inherent which supplies the validation data did not run this block.
1806
- **/
1807
- | 'ValidationDataNotAvailable'
1808
- /**
1809
- * The inherent which supplies the host configuration did not run this block.
1810
- **/
1811
- | 'HostConfigurationNotAvailable'
1812
- /**
1813
- * No validation function upgrade is currently scheduled.
1814
- **/
1815
- | 'NotScheduled'
1816
- /**
1817
- * No code upgrade has been authorized.
1818
- **/
1819
- | 'NothingAuthorized'
1820
- /**
1821
- * The given code upgrade has not been authorized.
1822
- **/
1823
- | 'Unauthorized';
1913
+ export type CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection002 = {
1914
+ fullMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotCorePrimitivesInboundHrmpMessage]>;
1915
+ hashedMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, CumulusPrimitivesParachainInherentHashedMessage]>;
1916
+ };
1917
+
1918
+ export type PolkadotCorePrimitivesInboundHrmpMessage = { sentAt: number; data: Bytes };
1824
1919
 
1825
1920
  /**
1826
1921
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -1880,18 +1975,6 @@ export type StagingParachainInfoCall = null;
1880
1975
 
1881
1976
  export type StagingParachainInfoCallLike = null;
1882
1977
 
1883
- export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
1884
-
1885
- export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
1886
-
1887
- export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
1888
-
1889
- export type FrameSupportTokensMiscIdAmount = { id: PeopleWestendRuntimeRuntimeHoldReason; amount: bigint };
1890
-
1891
- export type PeopleWestendRuntimeRuntimeHoldReason = null;
1892
-
1893
- export type FrameSupportTokensMiscIdAmount002 = { id: []; amount: bigint };
1894
-
1895
1978
  /**
1896
1979
  * Contains a variant per dispatchable extrinsic that this pallet has.
1897
1980
  **/
@@ -2067,63 +2150,6 @@ export type PalletBalancesCallLike =
2067
2150
 
2068
2151
  export type PalletBalancesAdjustmentDirection = 'Increase' | 'Decrease';
2069
2152
 
2070
- /**
2071
- * The `Error` enum of this pallet.
2072
- **/
2073
- export type PalletBalancesError =
2074
- /**
2075
- * Vesting balance too high to send value.
2076
- **/
2077
- | 'VestingBalance'
2078
- /**
2079
- * Account liquidity restrictions prevent withdrawal.
2080
- **/
2081
- | 'LiquidityRestrictions'
2082
- /**
2083
- * Balance too low to send value.
2084
- **/
2085
- | 'InsufficientBalance'
2086
- /**
2087
- * Value too low to create account due to existential deposit.
2088
- **/
2089
- | 'ExistentialDeposit'
2090
- /**
2091
- * Transfer/payment would kill account.
2092
- **/
2093
- | 'Expendability'
2094
- /**
2095
- * A vesting schedule already exists for this account.
2096
- **/
2097
- | 'ExistingVestingSchedule'
2098
- /**
2099
- * Beneficiary account must pre-exist.
2100
- **/
2101
- | 'DeadAccount'
2102
- /**
2103
- * Number of named reserves exceed `MaxReserves`.
2104
- **/
2105
- | 'TooManyReserves'
2106
- /**
2107
- * Number of holds exceed `VariantCountOf<T::RuntimeHoldReason>`.
2108
- **/
2109
- | 'TooManyHolds'
2110
- /**
2111
- * Number of freezes exceed `MaxFreezes`.
2112
- **/
2113
- | 'TooManyFreezes'
2114
- /**
2115
- * The issuance cannot be modified since it is already deactivated.
2116
- **/
2117
- | 'IssuanceDeactivated'
2118
- /**
2119
- * The delta cannot be zero.
2120
- **/
2121
- | 'DeltaZero';
2122
-
2123
- export type PalletTransactionPaymentReleases = 'V1Ancient' | 'V2';
2124
-
2125
- export type PalletCollatorSelectionCandidateInfo = { who: AccountId32; deposit: bigint };
2126
-
2127
2153
  /**
2128
2154
  * Contains a variant per dispatchable extrinsic that this pallet has.
2129
2155
  **/
@@ -2297,89 +2323,6 @@ export type PalletCollatorSelectionCallLike =
2297
2323
  **/
2298
2324
  | { name: 'TakeCandidateSlot'; params: { deposit: bigint; target: AccountId32Like } };
2299
2325
 
2300
- export type FrameSupportPalletId = FixedBytes<8>;
2301
-
2302
- /**
2303
- * The `Error` enum of this pallet.
2304
- **/
2305
- export type PalletCollatorSelectionError =
2306
- /**
2307
- * The pallet has too many candidates.
2308
- **/
2309
- | 'TooManyCandidates'
2310
- /**
2311
- * Leaving would result in too few candidates.
2312
- **/
2313
- | 'TooFewEligibleCollators'
2314
- /**
2315
- * Account is already a candidate.
2316
- **/
2317
- | 'AlreadyCandidate'
2318
- /**
2319
- * Account is not a candidate.
2320
- **/
2321
- | 'NotCandidate'
2322
- /**
2323
- * There are too many Invulnerables.
2324
- **/
2325
- | 'TooManyInvulnerables'
2326
- /**
2327
- * Account is already an Invulnerable.
2328
- **/
2329
- | 'AlreadyInvulnerable'
2330
- /**
2331
- * Account is not an Invulnerable.
2332
- **/
2333
- | 'NotInvulnerable'
2334
- /**
2335
- * Account has no associated validator ID.
2336
- **/
2337
- | 'NoAssociatedValidatorId'
2338
- /**
2339
- * Validator ID is not yet registered.
2340
- **/
2341
- | 'ValidatorNotRegistered'
2342
- /**
2343
- * Could not insert in the candidate list.
2344
- **/
2345
- | 'InsertToCandidateListFailed'
2346
- /**
2347
- * Could not remove from the candidate list.
2348
- **/
2349
- | 'RemoveFromCandidateListFailed'
2350
- /**
2351
- * New deposit amount would be below the minimum candidacy bond.
2352
- **/
2353
- | 'DepositTooLow'
2354
- /**
2355
- * Could not update the candidate list.
2356
- **/
2357
- | 'UpdateCandidateListFailed'
2358
- /**
2359
- * Deposit amount is too low to take the target's slot in the candidate list.
2360
- **/
2361
- | 'InsufficientBond'
2362
- /**
2363
- * The target account to be replaced in the candidate list is not a candidate.
2364
- **/
2365
- | 'TargetIsNotCandidate'
2366
- /**
2367
- * The updated deposit amount is equal to the amount already reserved.
2368
- **/
2369
- | 'IdenticalDeposit'
2370
- /**
2371
- * Cannot lower candidacy bond while occupying a future collator slot in the list.
2372
- **/
2373
- | 'InvalidUnreserve';
2374
-
2375
- export type PeopleWestendRuntimeSessionKeys = { aura: SpConsensusAuraSr25519AppSr25519Public };
2376
-
2377
- export type SpConsensusAuraSr25519AppSr25519Public = FixedBytes<32>;
2378
-
2379
- export type SpStakingOffenceOffenceSeverity = Perbill;
2380
-
2381
- export type SpCoreCryptoKeyTypeId = FixedBytes<4>;
2382
-
2383
2326
  /**
2384
2327
  * Contains a variant per dispatchable extrinsic that this pallet has.
2385
2328
  **/
@@ -2441,48 +2384,9 @@ export type PalletSessionCallLike =
2441
2384
  **/
2442
2385
  | { name: 'PurgeKeys' };
2443
2386
 
2444
- /**
2445
- * Error for the session pallet.
2446
- **/
2447
- export type PalletSessionError =
2448
- /**
2449
- * Invalid ownership proof.
2450
- **/
2451
- | 'InvalidProof'
2452
- /**
2453
- * No associated validator ID for account.
2454
- **/
2455
- | 'NoAssociatedValidatorId'
2456
- /**
2457
- * Registered duplicate key.
2458
- **/
2459
- | 'DuplicatedKey'
2460
- /**
2461
- * No keys are associated with this account.
2462
- **/
2463
- | 'NoKeys'
2464
- /**
2465
- * Key setting account is not live, so it's impossible to associate keys.
2466
- **/
2467
- | 'NoAccount';
2468
-
2469
- export type SpConsensusSlotsSlot = bigint;
2470
-
2471
- export type CumulusPalletXcmpQueueOutboundChannelDetails = {
2472
- recipient: PolkadotParachainPrimitivesPrimitivesId;
2473
- state: CumulusPalletXcmpQueueOutboundState;
2474
- signalsExist: boolean;
2475
- firstIndex: number;
2476
- lastIndex: number;
2477
- };
2478
-
2479
- export type CumulusPalletXcmpQueueOutboundState = 'Ok' | 'Suspended';
2387
+ export type PeopleWestendRuntimeSessionKeys = { aura: SpConsensusAuraSr25519AppSr25519Public };
2480
2388
 
2481
- export type CumulusPalletXcmpQueueQueueConfigData = {
2482
- suspendThreshold: number;
2483
- dropThreshold: number;
2484
- resumeThreshold: number;
2485
- };
2389
+ export type SpConsensusAuraSr25519AppSr25519Public = FixedBytes<32>;
2486
2390
 
2487
2391
  /**
2488
2392
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -2568,174 +2472,37 @@ export type CumulusPalletXcmpQueueCallLike =
2568
2472
  | { name: 'UpdateResumeThreshold'; params: { new: number } };
2569
2473
 
2570
2474
  /**
2571
- * The `Error` enum of this pallet.
2475
+ * Contains a variant per dispatchable extrinsic that this pallet has.
2572
2476
  **/
2573
- export type CumulusPalletXcmpQueueError =
2574
- /**
2575
- * Setting the queue config failed since one of its values was invalid.
2576
- **/
2577
- | 'BadQueueConfig'
2578
- /**
2579
- * The execution is already suspended.
2580
- **/
2581
- | 'AlreadySuspended'
2582
- /**
2583
- * The execution is already resumed.
2584
- **/
2585
- | 'AlreadyResumed'
2586
- /**
2587
- * There are too many active outbound channels.
2588
- **/
2589
- | 'TooManyActiveOutboundChannels'
2477
+ export type PalletXcmCall =
2478
+ | { name: 'Send'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
2590
2479
  /**
2591
- * The message is too big.
2480
+ * Teleport some assets from the local chain to some destination chain.
2481
+ *
2482
+ * **This function is deprecated: Use `limited_teleport_assets` instead.**
2483
+ *
2484
+ * Fee payment on the destination side is made from the asset in the `assets` vector of
2485
+ * index `fee_asset_item`. The weight limit for fees is not provided and thus is unlimited,
2486
+ * with all fees taken as needed from the asset.
2487
+ *
2488
+ * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
2489
+ * - `dest`: Destination context for the assets. Will typically be `[Parent,
2490
+ * Parachain(..)]` to send from parachain to parachain, or `[Parachain(..)]` to send from
2491
+ * relay to parachain.
2492
+ * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will
2493
+ * generally be an `AccountId32` value.
2494
+ * - `assets`: The assets to be withdrawn. This should include the assets used to pay the
2495
+ * fee on the `dest` chain.
2496
+ * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
2497
+ * fees.
2592
2498
  **/
2593
- | 'TooBig';
2594
-
2595
- export type PalletXcmQueryStatus =
2596
2499
  | {
2597
- type: 'Pending';
2598
- value: {
2599
- responder: XcmVersionedLocation;
2600
- maybeMatchQuerier?: XcmVersionedLocation | undefined;
2601
- maybeNotify?: [number, number] | undefined;
2602
- timeout: number;
2603
- };
2604
- }
2605
- | { type: 'VersionNotifier'; value: { origin: XcmVersionedLocation; isActive: boolean } }
2606
- | { type: 'Ready'; value: { response: XcmVersionedResponse; at: number } };
2607
-
2608
- export type XcmVersionedResponse =
2609
- | { type: 'V3'; value: XcmV3Response }
2610
- | { type: 'V4'; value: StagingXcmV4Response }
2611
- | { type: 'V5'; value: StagingXcmV5Response };
2612
-
2613
- export type XcmV3Response =
2614
- | { type: 'Null' }
2615
- | { type: 'Assets'; value: XcmV3MultiassetMultiAssets }
2616
- | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
2617
- | { type: 'Version'; value: number }
2618
- | { type: 'PalletsInfo'; value: Array<XcmV3PalletInfo> }
2619
- | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
2620
-
2621
- export type XcmV3TraitsError =
2622
- | { type: 'Overflow' }
2623
- | { type: 'Unimplemented' }
2624
- | { type: 'UntrustedReserveLocation' }
2625
- | { type: 'UntrustedTeleportLocation' }
2626
- | { type: 'LocationFull' }
2627
- | { type: 'LocationNotInvertible' }
2628
- | { type: 'BadOrigin' }
2629
- | { type: 'InvalidLocation' }
2630
- | { type: 'AssetNotFound' }
2631
- | { type: 'FailedToTransactAsset' }
2632
- | { type: 'NotWithdrawable' }
2633
- | { type: 'LocationCannotHold' }
2634
- | { type: 'ExceedsMaxMessageSize' }
2635
- | { type: 'DestinationUnsupported' }
2636
- | { type: 'Transport' }
2637
- | { type: 'Unroutable' }
2638
- | { type: 'UnknownClaim' }
2639
- | { type: 'FailedToDecode' }
2640
- | { type: 'MaxWeightInvalid' }
2641
- | { type: 'NotHoldingFees' }
2642
- | { type: 'TooExpensive' }
2643
- | { type: 'Trap'; value: bigint }
2644
- | { type: 'ExpectationFalse' }
2645
- | { type: 'PalletNotFound' }
2646
- | { type: 'NameMismatch' }
2647
- | { type: 'VersionIncompatible' }
2648
- | { type: 'HoldingWouldOverflow' }
2649
- | { type: 'ExportError' }
2650
- | { type: 'ReanchorFailed' }
2651
- | { type: 'NoDeal' }
2652
- | { type: 'FeesNotMet' }
2653
- | { type: 'LockError' }
2654
- | { type: 'NoPermission' }
2655
- | { type: 'Unanchored' }
2656
- | { type: 'NotDepositable' }
2657
- | { type: 'UnhandledXcmVersion' }
2658
- | { type: 'WeightLimitReached'; value: SpWeightsWeightV2Weight }
2659
- | { type: 'Barrier' }
2660
- | { type: 'WeightNotComputable' }
2661
- | { type: 'ExceedsStackLimit' };
2662
-
2663
- export type XcmV3PalletInfo = {
2664
- index: number;
2665
- name: Bytes;
2666
- moduleName: Bytes;
2667
- major: number;
2668
- minor: number;
2669
- patch: number;
2670
- };
2671
-
2672
- export type StagingXcmV4Response =
2673
- | { type: 'Null' }
2674
- | { type: 'Assets'; value: StagingXcmV4AssetAssets }
2675
- | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
2676
- | { type: 'Version'; value: number }
2677
- | { type: 'PalletsInfo'; value: Array<StagingXcmV4PalletInfo> }
2678
- | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
2679
-
2680
- export type StagingXcmV4PalletInfo = {
2681
- index: number;
2682
- name: Bytes;
2683
- moduleName: Bytes;
2684
- major: number;
2685
- minor: number;
2686
- patch: number;
2687
- };
2688
-
2689
- export type PalletXcmVersionMigrationStage =
2690
- | { type: 'MigrateSupportedVersion' }
2691
- | { type: 'MigrateVersionNotifiers' }
2692
- | { type: 'NotifyCurrentTargets'; value?: Bytes | undefined }
2693
- | { type: 'MigrateAndNotifyOldTargets' };
2694
-
2695
- export type XcmVersionedAssetId =
2696
- | { type: 'V3'; value: XcmV3MultiassetAssetId }
2697
- | { type: 'V4'; value: StagingXcmV4AssetAssetId }
2698
- | { type: 'V5'; value: StagingXcmV5AssetAssetId };
2699
-
2700
- export type PalletXcmRemoteLockedFungibleRecord = {
2701
- amount: bigint;
2702
- owner: XcmVersionedLocation;
2703
- locker: XcmVersionedLocation;
2704
- consumers: Array<[[], bigint]>;
2705
- };
2706
-
2707
- /**
2708
- * Contains a variant per dispatchable extrinsic that this pallet has.
2709
- **/
2710
- export type PalletXcmCall =
2711
- | { name: 'Send'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
2712
- /**
2713
- * Teleport some assets from the local chain to some destination chain.
2714
- *
2715
- * **This function is deprecated: Use `limited_teleport_assets` instead.**
2716
- *
2717
- * Fee payment on the destination side is made from the asset in the `assets` vector of
2718
- * index `fee_asset_item`. The weight limit for fees is not provided and thus is unlimited,
2719
- * with all fees taken as needed from the asset.
2720
- *
2721
- * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.
2722
- * - `dest`: Destination context for the assets. Will typically be `[Parent,
2723
- * Parachain(..)]` to send from parachain to parachain, or `[Parachain(..)]` to send from
2724
- * relay to parachain.
2725
- * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will
2726
- * generally be an `AccountId32` value.
2727
- * - `assets`: The assets to be withdrawn. This should include the assets used to pay the
2728
- * fee on the `dest` chain.
2729
- * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
2730
- * fees.
2731
- **/
2732
- | {
2733
- name: 'TeleportAssets';
2734
- params: {
2735
- dest: XcmVersionedLocation;
2736
- beneficiary: XcmVersionedLocation;
2737
- assets: XcmVersionedAssets;
2738
- feeAssetItem: number;
2500
+ name: 'TeleportAssets';
2501
+ params: {
2502
+ dest: XcmVersionedLocation;
2503
+ beneficiary: XcmVersionedLocation;
2504
+ assets: XcmVersionedAssets;
2505
+ feeAssetItem: number;
2739
2506
  };
2740
2507
  }
2741
2508
  /**
@@ -3017,7 +2784,31 @@ export type PalletXcmCall =
3017
2784
  customXcmOnDest: XcmVersionedXcm;
3018
2785
  weightLimit: XcmV3WeightLimit;
3019
2786
  };
3020
- };
2787
+ }
2788
+ /**
2789
+ * Authorize another `aliaser` location to alias into the local `origin` making this call.
2790
+ * The `aliaser` is only authorized until the provided `expiry` block number.
2791
+ * The call can also be used for a previously authorized alias in order to update its
2792
+ * `expiry` block number.
2793
+ *
2794
+ * Usually useful to allow your local account to be aliased into from a remote location
2795
+ * also under your control (like your account on another chain).
2796
+ *
2797
+ * WARNING: make sure the caller `origin` (you) trusts the `aliaser` location to act in
2798
+ * their/your name. Once authorized using this call, the `aliaser` can freely impersonate
2799
+ * `origin` in XCM programs executed on the local chain.
2800
+ **/
2801
+ | { name: 'AddAuthorizedAlias'; params: { aliaser: XcmVersionedLocation; expires?: bigint | undefined } }
2802
+ /**
2803
+ * Remove a previously authorized `aliaser` from the list of locations that can alias into
2804
+ * the local `origin` making this call.
2805
+ **/
2806
+ | { name: 'RemoveAuthorizedAlias'; params: { aliaser: XcmVersionedLocation } }
2807
+ /**
2808
+ * Remove all previously authorized `aliaser`s that can alias into the local `origin`
2809
+ * making this call.
2810
+ **/
2811
+ | { name: 'RemoveAllAuthorizedAliases' };
3021
2812
 
3022
2813
  export type PalletXcmCallLike =
3023
2814
  | { name: 'Send'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
@@ -3329,7 +3120,31 @@ export type PalletXcmCallLike =
3329
3120
  customXcmOnDest: XcmVersionedXcm;
3330
3121
  weightLimit: XcmV3WeightLimit;
3331
3122
  };
3332
- };
3123
+ }
3124
+ /**
3125
+ * Authorize another `aliaser` location to alias into the local `origin` making this call.
3126
+ * The `aliaser` is only authorized until the provided `expiry` block number.
3127
+ * The call can also be used for a previously authorized alias in order to update its
3128
+ * `expiry` block number.
3129
+ *
3130
+ * Usually useful to allow your local account to be aliased into from a remote location
3131
+ * also under your control (like your account on another chain).
3132
+ *
3133
+ * WARNING: make sure the caller `origin` (you) trusts the `aliaser` location to act in
3134
+ * their/your name. Once authorized using this call, the `aliaser` can freely impersonate
3135
+ * `origin` in XCM programs executed on the local chain.
3136
+ **/
3137
+ | { name: 'AddAuthorizedAlias'; params: { aliaser: XcmVersionedLocation; expires?: bigint | undefined } }
3138
+ /**
3139
+ * Remove a previously authorized `aliaser` from the list of locations that can alias into
3140
+ * the local `origin` making this call.
3141
+ **/
3142
+ | { name: 'RemoveAuthorizedAlias'; params: { aliaser: XcmVersionedLocation } }
3143
+ /**
3144
+ * Remove all previously authorized `aliaser`s that can alias into the local `origin`
3145
+ * making this call.
3146
+ **/
3147
+ | { name: 'RemoveAllAuthorizedAliases' };
3333
3148
 
3334
3149
  export type XcmVersionedXcm =
3335
3150
  | { type: 'V3'; value: XcmV3Xcm }
@@ -3439,6 +3254,65 @@ export type XcmV3Instruction =
3439
3254
  value: { weightLimit: XcmV3WeightLimit; checkOrigin?: StagingXcmV3MultilocationMultiLocation | undefined };
3440
3255
  };
3441
3256
 
3257
+ export type XcmV3Response =
3258
+ | { type: 'Null' }
3259
+ | { type: 'Assets'; value: XcmV3MultiassetMultiAssets }
3260
+ | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
3261
+ | { type: 'Version'; value: number }
3262
+ | { type: 'PalletsInfo'; value: Array<XcmV3PalletInfo> }
3263
+ | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
3264
+
3265
+ export type XcmV3TraitsError =
3266
+ | { type: 'Overflow' }
3267
+ | { type: 'Unimplemented' }
3268
+ | { type: 'UntrustedReserveLocation' }
3269
+ | { type: 'UntrustedTeleportLocation' }
3270
+ | { type: 'LocationFull' }
3271
+ | { type: 'LocationNotInvertible' }
3272
+ | { type: 'BadOrigin' }
3273
+ | { type: 'InvalidLocation' }
3274
+ | { type: 'AssetNotFound' }
3275
+ | { type: 'FailedToTransactAsset' }
3276
+ | { type: 'NotWithdrawable' }
3277
+ | { type: 'LocationCannotHold' }
3278
+ | { type: 'ExceedsMaxMessageSize' }
3279
+ | { type: 'DestinationUnsupported' }
3280
+ | { type: 'Transport' }
3281
+ | { type: 'Unroutable' }
3282
+ | { type: 'UnknownClaim' }
3283
+ | { type: 'FailedToDecode' }
3284
+ | { type: 'MaxWeightInvalid' }
3285
+ | { type: 'NotHoldingFees' }
3286
+ | { type: 'TooExpensive' }
3287
+ | { type: 'Trap'; value: bigint }
3288
+ | { type: 'ExpectationFalse' }
3289
+ | { type: 'PalletNotFound' }
3290
+ | { type: 'NameMismatch' }
3291
+ | { type: 'VersionIncompatible' }
3292
+ | { type: 'HoldingWouldOverflow' }
3293
+ | { type: 'ExportError' }
3294
+ | { type: 'ReanchorFailed' }
3295
+ | { type: 'NoDeal' }
3296
+ | { type: 'FeesNotMet' }
3297
+ | { type: 'LockError' }
3298
+ | { type: 'NoPermission' }
3299
+ | { type: 'Unanchored' }
3300
+ | { type: 'NotDepositable' }
3301
+ | { type: 'UnhandledXcmVersion' }
3302
+ | { type: 'WeightLimitReached'; value: SpWeightsWeightV2Weight }
3303
+ | { type: 'Barrier' }
3304
+ | { type: 'WeightNotComputable' }
3305
+ | { type: 'ExceedsStackLimit' };
3306
+
3307
+ export type XcmV3PalletInfo = {
3308
+ index: number;
3309
+ name: Bytes;
3310
+ moduleName: Bytes;
3311
+ major: number;
3312
+ minor: number;
3313
+ patch: number;
3314
+ };
3315
+
3442
3316
  export type XcmV3QueryResponseInfo = {
3443
3317
  destination: StagingXcmV3MultilocationMultiLocation;
3444
3318
  queryId: bigint;
@@ -3547,6 +3421,23 @@ export type StagingXcmV4Instruction =
3547
3421
  value: { weightLimit: XcmV3WeightLimit; checkOrigin?: StagingXcmV4Location | undefined };
3548
3422
  };
3549
3423
 
3424
+ export type StagingXcmV4Response =
3425
+ | { type: 'Null' }
3426
+ | { type: 'Assets'; value: StagingXcmV4AssetAssets }
3427
+ | { type: 'ExecutionResult'; value?: [number, XcmV3TraitsError] | undefined }
3428
+ | { type: 'Version'; value: number }
3429
+ | { type: 'PalletsInfo'; value: Array<StagingXcmV4PalletInfo> }
3430
+ | { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
3431
+
3432
+ export type StagingXcmV4PalletInfo = {
3433
+ index: number;
3434
+ name: Bytes;
3435
+ moduleName: Bytes;
3436
+ major: number;
3437
+ minor: number;
3438
+ patch: number;
3439
+ };
3440
+
3550
3441
  export type StagingXcmV4QueryResponseInfo = {
3551
3442
  destination: StagingXcmV4Location;
3552
3443
  queryId: bigint;
@@ -3574,148 +3465,26 @@ export type StagingXcmExecutorAssetTransferTransferType =
3574
3465
  | { type: 'DestinationReserve' }
3575
3466
  | { type: 'RemoteReserve'; value: XcmVersionedLocation };
3576
3467
 
3468
+ export type XcmVersionedAssetId =
3469
+ | { type: 'V3'; value: XcmV3MultiassetAssetId }
3470
+ | { type: 'V4'; value: StagingXcmV4AssetAssetId }
3471
+ | { type: 'V5'; value: StagingXcmV5AssetAssetId };
3472
+
3577
3473
  /**
3578
- * The `Error` enum of this pallet.
3474
+ * Contains a variant per dispatchable extrinsic that this pallet has.
3579
3475
  **/
3580
- export type PalletXcmError =
3581
- /**
3582
- * The desired destination was unreachable, generally because there is a no way of routing
3583
- * to it.
3584
- **/
3585
- | 'Unreachable'
3586
- /**
3587
- * There was some other issue (i.e. not to do with routing) in sending the message.
3588
- * Perhaps a lack of space for buffering the message.
3589
- **/
3590
- | 'SendFailure'
3591
- /**
3592
- * The message execution fails the filter.
3593
- **/
3594
- | 'Filtered'
3476
+ export type CumulusPalletXcmCall = null;
3477
+
3478
+ export type CumulusPalletXcmCallLike = null;
3479
+
3480
+ /**
3481
+ * Contains a variant per dispatchable extrinsic that this pallet has.
3482
+ **/
3483
+ export type PalletMessageQueueCall =
3595
3484
  /**
3596
- * The message's weight could not be determined.
3485
+ * Remove a page which has no more messages remaining to be processed or is stale.
3597
3486
  **/
3598
- | 'UnweighableMessage'
3599
- /**
3600
- * The destination `Location` provided cannot be inverted.
3601
- **/
3602
- | 'DestinationNotInvertible'
3603
- /**
3604
- * The assets to be sent are empty.
3605
- **/
3606
- | 'Empty'
3607
- /**
3608
- * Could not re-anchor the assets to declare the fees for the destination chain.
3609
- **/
3610
- | 'CannotReanchor'
3611
- /**
3612
- * Too many assets have been attempted for transfer.
3613
- **/
3614
- | 'TooManyAssets'
3615
- /**
3616
- * Origin is invalid for sending.
3617
- **/
3618
- | 'InvalidOrigin'
3619
- /**
3620
- * The version of the `Versioned` value used is not able to be interpreted.
3621
- **/
3622
- | 'BadVersion'
3623
- /**
3624
- * The given location could not be used (e.g. because it cannot be expressed in the
3625
- * desired version of XCM).
3626
- **/
3627
- | 'BadLocation'
3628
- /**
3629
- * The referenced subscription could not be found.
3630
- **/
3631
- | 'NoSubscription'
3632
- /**
3633
- * The location is invalid since it already has a subscription from us.
3634
- **/
3635
- | 'AlreadySubscribed'
3636
- /**
3637
- * Could not check-out the assets for teleportation to the destination chain.
3638
- **/
3639
- | 'CannotCheckOutTeleport'
3640
- /**
3641
- * The owner does not own (all) of the asset that they wish to do the operation on.
3642
- **/
3643
- | 'LowBalance'
3644
- /**
3645
- * The asset owner has too many locks on the asset.
3646
- **/
3647
- | 'TooManyLocks'
3648
- /**
3649
- * The given account is not an identifiable sovereign account for any location.
3650
- **/
3651
- | 'AccountNotSovereign'
3652
- /**
3653
- * The operation required fees to be paid which the initiator could not meet.
3654
- **/
3655
- | 'FeesNotMet'
3656
- /**
3657
- * A remote lock with the corresponding data could not be found.
3658
- **/
3659
- | 'LockNotFound'
3660
- /**
3661
- * The unlock operation cannot succeed because there are still consumers of the lock.
3662
- **/
3663
- | 'InUse'
3664
- /**
3665
- * Invalid asset, reserve chain could not be determined for it.
3666
- **/
3667
- | 'InvalidAssetUnknownReserve'
3668
- /**
3669
- * Invalid asset, do not support remote asset reserves with different fees reserves.
3670
- **/
3671
- | 'InvalidAssetUnsupportedReserve'
3672
- /**
3673
- * Too many assets with different reserve locations have been attempted for transfer.
3674
- **/
3675
- | 'TooManyReserves'
3676
- /**
3677
- * Local XCM execution incomplete.
3678
- **/
3679
- | 'LocalExecutionIncomplete';
3680
-
3681
- /**
3682
- * Contains a variant per dispatchable extrinsic that this pallet has.
3683
- **/
3684
- export type CumulusPalletXcmCall = null;
3685
-
3686
- export type CumulusPalletXcmCallLike = null;
3687
-
3688
- export type PalletMessageQueueBookState = {
3689
- begin: number;
3690
- end: number;
3691
- count: number;
3692
- readyNeighbours?: PalletMessageQueueNeighbours | undefined;
3693
- messageCount: bigint;
3694
- size: bigint;
3695
- };
3696
-
3697
- export type PalletMessageQueueNeighbours = {
3698
- prev: CumulusPrimitivesCoreAggregateMessageOrigin;
3699
- next: CumulusPrimitivesCoreAggregateMessageOrigin;
3700
- };
3701
-
3702
- export type PalletMessageQueuePage = {
3703
- remaining: number;
3704
- remainingSize: number;
3705
- firstIndex: number;
3706
- first: number;
3707
- last: number;
3708
- heap: Bytes;
3709
- };
3710
-
3711
- /**
3712
- * Contains a variant per dispatchable extrinsic that this pallet has.
3713
- **/
3714
- export type PalletMessageQueueCall =
3715
- /**
3716
- * Remove a page which has no more messages remaining to be processed or is stale.
3717
- **/
3718
- | { name: 'ReapPage'; params: { messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin; pageIndex: number } }
3487
+ | { name: 'ReapPage'; params: { messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin; pageIndex: number } }
3719
3488
  /**
3720
3489
  * Execute an overweight message.
3721
3490
  *
@@ -3771,53 +3540,6 @@ export type PalletMessageQueueCallLike =
3771
3540
  };
3772
3541
  };
3773
3542
 
3774
- /**
3775
- * The `Error` enum of this pallet.
3776
- **/
3777
- export type PalletMessageQueueError =
3778
- /**
3779
- * Page is not reapable because it has items remaining to be processed and is not old
3780
- * enough.
3781
- **/
3782
- | 'NotReapable'
3783
- /**
3784
- * Page to be reaped does not exist.
3785
- **/
3786
- | 'NoPage'
3787
- /**
3788
- * The referenced message could not be found.
3789
- **/
3790
- | 'NoMessage'
3791
- /**
3792
- * The message was already processed and cannot be processed again.
3793
- **/
3794
- | 'AlreadyProcessed'
3795
- /**
3796
- * The message is queued for future execution.
3797
- **/
3798
- | 'Queued'
3799
- /**
3800
- * There is temporarily not enough weight to continue servicing messages.
3801
- **/
3802
- | 'InsufficientWeight'
3803
- /**
3804
- * This message is temporarily unprocessable.
3805
- *
3806
- * Such errors are expected, but not guaranteed, to resolve themselves eventually through
3807
- * retrying.
3808
- **/
3809
- | 'TemporarilyUnprocessable'
3810
- /**
3811
- * The queue is paused and no message can be executed from it.
3812
- *
3813
- * This can change at any time and may resolve in the future by re-trying.
3814
- **/
3815
- | 'QueuePaused'
3816
- /**
3817
- * Another call is in progress and needs to finish before this call can happen.
3818
- **/
3819
- | 'RecursiveDisallowed';
3820
-
3821
3543
  /**
3822
3544
  * Contains a variant per dispatchable extrinsic that this pallet has.
3823
3545
  **/
@@ -4082,43 +3804,24 @@ export type PalletUtilityCallLike =
4082
3804
  params: { asOrigin: PeopleWestendRuntimeOriginCaller; call: PeopleWestendRuntimeRuntimeCallLike };
4083
3805
  };
4084
3806
 
4085
- export type PeopleWestendRuntimeRuntimeCall =
4086
- | { pallet: 'System'; palletCall: FrameSystemCall }
4087
- | { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCall }
4088
- | { pallet: 'Timestamp'; palletCall: PalletTimestampCall }
4089
- | { pallet: 'ParachainInfo'; palletCall: StagingParachainInfoCall }
4090
- | { pallet: 'Balances'; palletCall: PalletBalancesCall }
4091
- | { pallet: 'CollatorSelection'; palletCall: PalletCollatorSelectionCall }
4092
- | { pallet: 'Session'; palletCall: PalletSessionCall }
4093
- | { pallet: 'XcmpQueue'; palletCall: CumulusPalletXcmpQueueCall }
4094
- | { pallet: 'PolkadotXcm'; palletCall: PalletXcmCall }
4095
- | { pallet: 'CumulusXcm'; palletCall: CumulusPalletXcmCall }
4096
- | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
4097
- | { pallet: 'Utility'; palletCall: PalletUtilityCall }
4098
- | { pallet: 'Multisig'; palletCall: PalletMultisigCall }
4099
- | { pallet: 'Proxy'; palletCall: PalletProxyCall }
4100
- | { pallet: 'Identity'; palletCall: PalletIdentityCall }
4101
- | { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCall }
4102
- | { pallet: 'IdentityMigrator'; palletCall: PolkadotRuntimeCommonIdentityMigratorPalletCall };
3807
+ export type PeopleWestendRuntimeOriginCaller =
3808
+ | { type: 'System'; value: FrameSupportDispatchRawOrigin }
3809
+ | { type: 'PolkadotXcm'; value: PalletXcmOrigin }
3810
+ | { type: 'CumulusXcm'; value: CumulusPalletXcmOrigin };
4103
3811
 
4104
- export type PeopleWestendRuntimeRuntimeCallLike =
4105
- | { pallet: 'System'; palletCall: FrameSystemCallLike }
4106
- | { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCallLike }
4107
- | { pallet: 'Timestamp'; palletCall: PalletTimestampCallLike }
4108
- | { pallet: 'ParachainInfo'; palletCall: StagingParachainInfoCallLike }
4109
- | { pallet: 'Balances'; palletCall: PalletBalancesCallLike }
4110
- | { pallet: 'CollatorSelection'; palletCall: PalletCollatorSelectionCallLike }
4111
- | { pallet: 'Session'; palletCall: PalletSessionCallLike }
4112
- | { pallet: 'XcmpQueue'; palletCall: CumulusPalletXcmpQueueCallLike }
4113
- | { pallet: 'PolkadotXcm'; palletCall: PalletXcmCallLike }
4114
- | { pallet: 'CumulusXcm'; palletCall: CumulusPalletXcmCallLike }
4115
- | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
4116
- | { pallet: 'Utility'; palletCall: PalletUtilityCallLike }
4117
- | { pallet: 'Multisig'; palletCall: PalletMultisigCallLike }
4118
- | { pallet: 'Proxy'; palletCall: PalletProxyCallLike }
4119
- | { pallet: 'Identity'; palletCall: PalletIdentityCallLike }
4120
- | { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCallLike }
4121
- | { pallet: 'IdentityMigrator'; palletCall: PolkadotRuntimeCommonIdentityMigratorPalletCallLike };
3812
+ export type FrameSupportDispatchRawOrigin =
3813
+ | { type: 'Root' }
3814
+ | { type: 'Signed'; value: AccountId32 }
3815
+ | { type: 'None' }
3816
+ | { type: 'Authorized' };
3817
+
3818
+ export type PalletXcmOrigin =
3819
+ | { type: 'Xcm'; value: StagingXcmV5Location }
3820
+ | { type: 'Response'; value: StagingXcmV5Location };
3821
+
3822
+ export type CumulusPalletXcmOrigin =
3823
+ | { type: 'Relay' }
3824
+ | { type: 'SiblingParachain'; value: PolkadotParachainPrimitivesPrimitivesId };
4122
3825
 
4123
3826
  /**
4124
3827
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -4266,6 +3969,25 @@ export type PalletMultisigCall =
4266
3969
  timepoint: PalletMultisigTimepoint;
4267
3970
  callHash: FixedBytes<32>;
4268
3971
  };
3972
+ }
3973
+ /**
3974
+ * Poke the deposit reserved for an existing multisig operation.
3975
+ *
3976
+ * The dispatch origin for this call must be _Signed_ and must be the original depositor of
3977
+ * the multisig operation.
3978
+ *
3979
+ * The transaction fee is waived if the deposit amount has changed.
3980
+ *
3981
+ * - `threshold`: The total number of approvals needed for this multisig.
3982
+ * - `other_signatories`: The accounts (other than the sender) who are part of the
3983
+ * multisig.
3984
+ * - `call_hash`: The hash of the call this deposit is reserved for.
3985
+ *
3986
+ * Emits `DepositPoked` if successful.
3987
+ **/
3988
+ | {
3989
+ name: 'PokeDeposit';
3990
+ params: { threshold: number; otherSignatories: Array<AccountId32>; callHash: FixedBytes<32> };
4269
3991
  };
4270
3992
 
4271
3993
  export type PalletMultisigCallLike =
@@ -4411,6 +4133,25 @@ export type PalletMultisigCallLike =
4411
4133
  timepoint: PalletMultisigTimepoint;
4412
4134
  callHash: FixedBytes<32>;
4413
4135
  };
4136
+ }
4137
+ /**
4138
+ * Poke the deposit reserved for an existing multisig operation.
4139
+ *
4140
+ * The dispatch origin for this call must be _Signed_ and must be the original depositor of
4141
+ * the multisig operation.
4142
+ *
4143
+ * The transaction fee is waived if the deposit amount has changed.
4144
+ *
4145
+ * - `threshold`: The total number of approvals needed for this multisig.
4146
+ * - `other_signatories`: The accounts (other than the sender) who are part of the
4147
+ * multisig.
4148
+ * - `call_hash`: The hash of the call this deposit is reserved for.
4149
+ *
4150
+ * Emits `DepositPoked` if successful.
4151
+ **/
4152
+ | {
4153
+ name: 'PokeDeposit';
4154
+ params: { threshold: number; otherSignatories: Array<AccountId32Like>; callHash: FixedBytes<32> };
4414
4155
  };
4415
4156
 
4416
4157
  /**
@@ -4463,7 +4204,7 @@ export type PalletProxyCall =
4463
4204
  *
4464
4205
  * The dispatch origin for this call must be _Signed_.
4465
4206
  *
4466
- * WARNING: This may be called on accounts created by `pure`, however if done, then
4207
+ * WARNING: This may be called on accounts created by `create_pure`, however if done, then
4467
4208
  * the unreserved fees will be inaccessible. **All access to this account will be lost.**
4468
4209
  **/
4469
4210
  | { name: 'RemoveProxies' }
@@ -4495,16 +4236,16 @@ export type PalletProxyCall =
4495
4236
  * inaccessible.
4496
4237
  *
4497
4238
  * Requires a `Signed` origin, and the sender account must have been created by a call to
4498
- * `pure` with corresponding parameters.
4239
+ * `create_pure` with corresponding parameters.
4499
4240
  *
4500
- * - `spawner`: The account that originally called `pure` to create this account.
4501
- * - `index`: The disambiguation index originally passed to `pure`. Probably `0`.
4502
- * - `proxy_type`: The proxy type originally passed to `pure`.
4503
- * - `height`: The height of the chain when the call to `pure` was processed.
4504
- * - `ext_index`: The extrinsic index in which the call to `pure` was processed.
4241
+ * - `spawner`: The account that originally called `create_pure` to create this account.
4242
+ * - `index`: The disambiguation index originally passed to `create_pure`. Probably `0`.
4243
+ * - `proxy_type`: The proxy type originally passed to `create_pure`.
4244
+ * - `height`: The height of the chain when the call to `create_pure` was processed.
4245
+ * - `ext_index`: The extrinsic index in which the call to `create_pure` was processed.
4505
4246
  *
4506
4247
  * Fails with `NoPermission` in case the caller is not a previously created pure
4507
- * account whose `pure` call has corresponding parameters.
4248
+ * account whose `create_pure` call has corresponding parameters.
4508
4249
  **/
4509
4250
  | {
4510
4251
  name: 'KillPure';
@@ -4581,7 +4322,18 @@ export type PalletProxyCall =
4581
4322
  forceProxyType?: PeopleWestendRuntimeProxyType | undefined;
4582
4323
  call: PeopleWestendRuntimeRuntimeCall;
4583
4324
  };
4584
- };
4325
+ }
4326
+ /**
4327
+ * Poke / Adjust deposits made for proxies and announcements based on current values.
4328
+ * This can be used by accounts to possibly lower their locked amount.
4329
+ *
4330
+ * The dispatch origin for this call must be _Signed_.
4331
+ *
4332
+ * The transaction fee is waived if the deposit amount has changed.
4333
+ *
4334
+ * Emits `DepositPoked` if successful.
4335
+ **/
4336
+ | { name: 'PokeDeposit' };
4585
4337
 
4586
4338
  export type PalletProxyCallLike =
4587
4339
  /**
@@ -4636,7 +4388,7 @@ export type PalletProxyCallLike =
4636
4388
  *
4637
4389
  * The dispatch origin for this call must be _Signed_.
4638
4390
  *
4639
- * WARNING: This may be called on accounts created by `pure`, however if done, then
4391
+ * WARNING: This may be called on accounts created by `create_pure`, however if done, then
4640
4392
  * the unreserved fees will be inaccessible. **All access to this account will be lost.**
4641
4393
  **/
4642
4394
  | { name: 'RemoveProxies' }
@@ -4668,16 +4420,16 @@ export type PalletProxyCallLike =
4668
4420
  * inaccessible.
4669
4421
  *
4670
4422
  * Requires a `Signed` origin, and the sender account must have been created by a call to
4671
- * `pure` with corresponding parameters.
4423
+ * `create_pure` with corresponding parameters.
4672
4424
  *
4673
- * - `spawner`: The account that originally called `pure` to create this account.
4674
- * - `index`: The disambiguation index originally passed to `pure`. Probably `0`.
4675
- * - `proxy_type`: The proxy type originally passed to `pure`.
4676
- * - `height`: The height of the chain when the call to `pure` was processed.
4677
- * - `ext_index`: The extrinsic index in which the call to `pure` was processed.
4425
+ * - `spawner`: The account that originally called `create_pure` to create this account.
4426
+ * - `index`: The disambiguation index originally passed to `create_pure`. Probably `0`.
4427
+ * - `proxy_type`: The proxy type originally passed to `create_pure`.
4428
+ * - `height`: The height of the chain when the call to `create_pure` was processed.
4429
+ * - `ext_index`: The extrinsic index in which the call to `create_pure` was processed.
4678
4430
  *
4679
4431
  * Fails with `NoPermission` in case the caller is not a previously created pure
4680
- * account whose `pure` call has corresponding parameters.
4432
+ * account whose `create_pure` call has corresponding parameters.
4681
4433
  **/
4682
4434
  | {
4683
4435
  name: 'KillPure';
@@ -4754,7 +4506,18 @@ export type PalletProxyCallLike =
4754
4506
  forceProxyType?: PeopleWestendRuntimeProxyType | undefined;
4755
4507
  call: PeopleWestendRuntimeRuntimeCallLike;
4756
4508
  };
4757
- };
4509
+ }
4510
+ /**
4511
+ * Poke / Adjust deposits made for proxies and announcements based on current values.
4512
+ * This can be used by accounts to possibly lower their locked amount.
4513
+ *
4514
+ * The dispatch origin for this call must be _Signed_.
4515
+ *
4516
+ * The transaction fee is waived if the deposit amount has changed.
4517
+ *
4518
+ * Emits `DepositPoked` if successful.
4519
+ **/
4520
+ | { name: 'PokeDeposit' };
4758
4521
 
4759
4522
  /**
4760
4523
  * Identity pallet declaration.
@@ -5406,23 +5169,636 @@ export type PolkadotRuntimeCommonIdentityMigratorPalletCallLike =
5406
5169
  **/
5407
5170
  | { name: 'PokeDeposit'; params: { who: AccountId32Like } };
5408
5171
 
5409
- export type PeopleWestendRuntimeOriginCaller =
5410
- | { type: 'System'; value: FrameSupportDispatchRawOrigin }
5411
- | { type: 'PolkadotXcm'; value: PalletXcmOrigin }
5412
- | { type: 'CumulusXcm'; value: CumulusPalletXcmOrigin };
5172
+ export type SpRuntimeBlakeTwo256 = {};
5413
5173
 
5414
- export type FrameSupportDispatchRawOrigin =
5415
- | { type: 'Root' }
5416
- | { type: 'Signed'; value: AccountId32 }
5417
- | { type: 'None' };
5174
+ export type SpRuntimeBlock = { header: Header; extrinsics: Array<UncheckedExtrinsic> };
5418
5175
 
5419
- export type PalletXcmOrigin =
5420
- | { type: 'Xcm'; value: StagingXcmV5Location }
5421
- | { type: 'Response'; value: StagingXcmV5Location };
5176
+ export type CumulusPalletWeightReclaimStorageWeightReclaim = [
5177
+ FrameSystemExtensionsAuthorizeCall,
5178
+ FrameSystemExtensionsCheckNonZeroSender,
5179
+ FrameSystemExtensionsCheckSpecVersion,
5180
+ FrameSystemExtensionsCheckTxVersion,
5181
+ FrameSystemExtensionsCheckGenesis,
5182
+ FrameSystemExtensionsCheckMortality,
5183
+ FrameSystemExtensionsCheckNonce,
5184
+ FrameSystemExtensionsCheckWeight,
5185
+ PalletTransactionPaymentChargeTransactionPayment,
5186
+ ];
5422
5187
 
5423
- export type CumulusPalletXcmOrigin =
5424
- | { type: 'Relay' }
5425
- | { type: 'SiblingParachain'; value: PolkadotParachainPrimitivesPrimitivesId };
5188
+ export type FrameSystemExtensionsAuthorizeCall = {};
5189
+
5190
+ export type FrameSystemExtensionsCheckNonZeroSender = {};
5191
+
5192
+ export type FrameSystemExtensionsCheckSpecVersion = {};
5193
+
5194
+ export type FrameSystemExtensionsCheckTxVersion = {};
5195
+
5196
+ export type FrameSystemExtensionsCheckGenesis = {};
5197
+
5198
+ export type FrameSystemExtensionsCheckMortality = Era;
5199
+
5200
+ export type FrameSystemExtensionsCheckNonce = number;
5201
+
5202
+ export type FrameSystemExtensionsCheckWeight = {};
5203
+
5204
+ export type PalletTransactionPaymentChargeTransactionPayment = bigint;
5205
+
5206
+ export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
5207
+ usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
5208
+ paraHeadHash?: H256 | undefined;
5209
+ consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
5210
+ };
5211
+
5212
+ export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
5213
+ umpMsgCount: number;
5214
+ umpTotalBytes: number;
5215
+ hrmpOutgoing: Array<
5216
+ [PolkadotParachainPrimitivesPrimitivesId, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate]
5217
+ >;
5218
+ };
5219
+
5220
+ export type CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate = { msgCount: number; totalBytes: number };
5221
+
5222
+ export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
5223
+
5224
+ export type CumulusPalletParachainSystemUnincludedSegmentSegmentTracker = {
5225
+ usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
5226
+ hrmpWatermark?: number | undefined;
5227
+ consumedGoAheadSignal?: PolkadotPrimitivesV8UpgradeGoAhead | undefined;
5228
+ };
5229
+
5230
+ export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
5231
+
5232
+ export type CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot = {
5233
+ dmqMqcHead: H256;
5234
+ relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
5235
+ ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
5236
+ egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AbridgedHrmpChannel]>;
5237
+ };
5238
+
5239
+ export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity = {
5240
+ remainingCount: number;
5241
+ remainingSize: number;
5242
+ };
5243
+
5244
+ export type PolkadotPrimitivesV8AbridgedHrmpChannel = {
5245
+ maxCapacity: number;
5246
+ maxTotalSize: number;
5247
+ maxMessageSize: number;
5248
+ msgCount: number;
5249
+ totalSize: number;
5250
+ mqcHead?: H256 | undefined;
5251
+ };
5252
+
5253
+ export type PolkadotPrimitivesV8AbridgedHostConfiguration = {
5254
+ maxCodeSize: number;
5255
+ maxHeadDataSize: number;
5256
+ maxUpwardQueueCount: number;
5257
+ maxUpwardQueueSize: number;
5258
+ maxUpwardMessageSize: number;
5259
+ maxUpwardMessageNumPerCandidate: number;
5260
+ hrmpMaxMessageNumPerCandidate: number;
5261
+ validationUpgradeCooldown: number;
5262
+ validationUpgradeDelay: number;
5263
+ asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
5264
+ };
5265
+
5266
+ export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
5267
+ maxCandidateDepth: number;
5268
+ allowedAncestryLen: number;
5269
+ };
5270
+
5271
+ export type CumulusPrimitivesParachainInherentMessageQueueChain = H256;
5272
+
5273
+ export type CumulusPalletParachainSystemParachainInherentInboundMessageId = { sentAt: number; reverseIdx: number };
5274
+
5275
+ export type PolkadotCorePrimitivesOutboundHrmpMessage = {
5276
+ recipient: PolkadotParachainPrimitivesPrimitivesId;
5277
+ data: Bytes;
5278
+ };
5279
+
5280
+ /**
5281
+ * The `Error` enum of this pallet.
5282
+ **/
5283
+ export type CumulusPalletParachainSystemError =
5284
+ /**
5285
+ * Attempt to upgrade validation function while existing upgrade pending.
5286
+ **/
5287
+ | 'OverlappingUpgrades'
5288
+ /**
5289
+ * Polkadot currently prohibits this parachain from upgrading its validation function.
5290
+ **/
5291
+ | 'ProhibitedByPolkadot'
5292
+ /**
5293
+ * The supplied validation function has compiled into a blob larger than Polkadot is
5294
+ * willing to run.
5295
+ **/
5296
+ | 'TooBig'
5297
+ /**
5298
+ * The inherent which supplies the validation data did not run this block.
5299
+ **/
5300
+ | 'ValidationDataNotAvailable'
5301
+ /**
5302
+ * The inherent which supplies the host configuration did not run this block.
5303
+ **/
5304
+ | 'HostConfigurationNotAvailable'
5305
+ /**
5306
+ * No validation function upgrade is currently scheduled.
5307
+ **/
5308
+ | 'NotScheduled';
5309
+
5310
+ export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
5311
+
5312
+ export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
5313
+
5314
+ export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
5315
+
5316
+ export type FrameSupportTokensMiscIdAmount = { id: PeopleWestendRuntimeRuntimeHoldReason; amount: bigint };
5317
+
5318
+ export type FrameSupportTokensMiscIdAmount002 = { id: []; amount: bigint };
5319
+
5320
+ /**
5321
+ * The `Error` enum of this pallet.
5322
+ **/
5323
+ export type PalletBalancesError =
5324
+ /**
5325
+ * Vesting balance too high to send value.
5326
+ **/
5327
+ | 'VestingBalance'
5328
+ /**
5329
+ * Account liquidity restrictions prevent withdrawal.
5330
+ **/
5331
+ | 'LiquidityRestrictions'
5332
+ /**
5333
+ * Balance too low to send value.
5334
+ **/
5335
+ | 'InsufficientBalance'
5336
+ /**
5337
+ * Value too low to create account due to existential deposit.
5338
+ **/
5339
+ | 'ExistentialDeposit'
5340
+ /**
5341
+ * Transfer/payment would kill account.
5342
+ **/
5343
+ | 'Expendability'
5344
+ /**
5345
+ * A vesting schedule already exists for this account.
5346
+ **/
5347
+ | 'ExistingVestingSchedule'
5348
+ /**
5349
+ * Beneficiary account must pre-exist.
5350
+ **/
5351
+ | 'DeadAccount'
5352
+ /**
5353
+ * Number of named reserves exceed `MaxReserves`.
5354
+ **/
5355
+ | 'TooManyReserves'
5356
+ /**
5357
+ * Number of holds exceed `VariantCountOf<T::RuntimeHoldReason>`.
5358
+ **/
5359
+ | 'TooManyHolds'
5360
+ /**
5361
+ * Number of freezes exceed `MaxFreezes`.
5362
+ **/
5363
+ | 'TooManyFreezes'
5364
+ /**
5365
+ * The issuance cannot be modified since it is already deactivated.
5366
+ **/
5367
+ | 'IssuanceDeactivated'
5368
+ /**
5369
+ * The delta cannot be zero.
5370
+ **/
5371
+ | 'DeltaZero';
5372
+
5373
+ export type PalletTransactionPaymentReleases = 'V1Ancient' | 'V2';
5374
+
5375
+ export type PalletCollatorSelectionCandidateInfo = { who: AccountId32; deposit: bigint };
5376
+
5377
+ export type FrameSupportPalletId = FixedBytes<8>;
5378
+
5379
+ /**
5380
+ * The `Error` enum of this pallet.
5381
+ **/
5382
+ export type PalletCollatorSelectionError =
5383
+ /**
5384
+ * The pallet has too many candidates.
5385
+ **/
5386
+ | 'TooManyCandidates'
5387
+ /**
5388
+ * Leaving would result in too few candidates.
5389
+ **/
5390
+ | 'TooFewEligibleCollators'
5391
+ /**
5392
+ * Account is already a candidate.
5393
+ **/
5394
+ | 'AlreadyCandidate'
5395
+ /**
5396
+ * Account is not a candidate.
5397
+ **/
5398
+ | 'NotCandidate'
5399
+ /**
5400
+ * There are too many Invulnerables.
5401
+ **/
5402
+ | 'TooManyInvulnerables'
5403
+ /**
5404
+ * Account is already an Invulnerable.
5405
+ **/
5406
+ | 'AlreadyInvulnerable'
5407
+ /**
5408
+ * Account is not an Invulnerable.
5409
+ **/
5410
+ | 'NotInvulnerable'
5411
+ /**
5412
+ * Account has no associated validator ID.
5413
+ **/
5414
+ | 'NoAssociatedValidatorId'
5415
+ /**
5416
+ * Validator ID is not yet registered.
5417
+ **/
5418
+ | 'ValidatorNotRegistered'
5419
+ /**
5420
+ * Could not insert in the candidate list.
5421
+ **/
5422
+ | 'InsertToCandidateListFailed'
5423
+ /**
5424
+ * Could not remove from the candidate list.
5425
+ **/
5426
+ | 'RemoveFromCandidateListFailed'
5427
+ /**
5428
+ * New deposit amount would be below the minimum candidacy bond.
5429
+ **/
5430
+ | 'DepositTooLow'
5431
+ /**
5432
+ * Could not update the candidate list.
5433
+ **/
5434
+ | 'UpdateCandidateListFailed'
5435
+ /**
5436
+ * Deposit amount is too low to take the target's slot in the candidate list.
5437
+ **/
5438
+ | 'InsufficientBond'
5439
+ /**
5440
+ * The target account to be replaced in the candidate list is not a candidate.
5441
+ **/
5442
+ | 'TargetIsNotCandidate'
5443
+ /**
5444
+ * The updated deposit amount is equal to the amount already reserved.
5445
+ **/
5446
+ | 'IdenticalDeposit'
5447
+ /**
5448
+ * Cannot lower candidacy bond while occupying a future collator slot in the list.
5449
+ **/
5450
+ | 'InvalidUnreserve';
5451
+
5452
+ export type SpStakingOffenceOffenceSeverity = Perbill;
5453
+
5454
+ export type SpCoreCryptoKeyTypeId = FixedBytes<4>;
5455
+
5456
+ /**
5457
+ * Error for the session pallet.
5458
+ **/
5459
+ export type PalletSessionError =
5460
+ /**
5461
+ * Invalid ownership proof.
5462
+ **/
5463
+ | 'InvalidProof'
5464
+ /**
5465
+ * No associated validator ID for account.
5466
+ **/
5467
+ | 'NoAssociatedValidatorId'
5468
+ /**
5469
+ * Registered duplicate key.
5470
+ **/
5471
+ | 'DuplicatedKey'
5472
+ /**
5473
+ * No keys are associated with this account.
5474
+ **/
5475
+ | 'NoKeys'
5476
+ /**
5477
+ * Key setting account is not live, so it's impossible to associate keys.
5478
+ **/
5479
+ | 'NoAccount';
5480
+
5481
+ export type SpConsensusSlotsSlot = bigint;
5482
+
5483
+ export type CumulusPalletXcmpQueueOutboundChannelDetails = {
5484
+ recipient: PolkadotParachainPrimitivesPrimitivesId;
5485
+ state: CumulusPalletXcmpQueueOutboundState;
5486
+ signalsExist: boolean;
5487
+ firstIndex: number;
5488
+ lastIndex: number;
5489
+ };
5490
+
5491
+ export type CumulusPalletXcmpQueueOutboundState = 'Ok' | 'Suspended';
5492
+
5493
+ export type CumulusPalletXcmpQueueQueueConfigData = {
5494
+ suspendThreshold: number;
5495
+ dropThreshold: number;
5496
+ resumeThreshold: number;
5497
+ };
5498
+
5499
+ /**
5500
+ * The `Error` enum of this pallet.
5501
+ **/
5502
+ export type CumulusPalletXcmpQueueError =
5503
+ /**
5504
+ * Setting the queue config failed since one of its values was invalid.
5505
+ **/
5506
+ | 'BadQueueConfig'
5507
+ /**
5508
+ * The execution is already suspended.
5509
+ **/
5510
+ | 'AlreadySuspended'
5511
+ /**
5512
+ * The execution is already resumed.
5513
+ **/
5514
+ | 'AlreadyResumed'
5515
+ /**
5516
+ * There are too many active outbound channels.
5517
+ **/
5518
+ | 'TooManyActiveOutboundChannels'
5519
+ /**
5520
+ * The message is too big.
5521
+ **/
5522
+ | 'TooBig';
5523
+
5524
+ export type PalletXcmQueryStatus =
5525
+ | {
5526
+ type: 'Pending';
5527
+ value: {
5528
+ responder: XcmVersionedLocation;
5529
+ maybeMatchQuerier?: XcmVersionedLocation | undefined;
5530
+ maybeNotify?: [number, number] | undefined;
5531
+ timeout: number;
5532
+ };
5533
+ }
5534
+ | { type: 'VersionNotifier'; value: { origin: XcmVersionedLocation; isActive: boolean } }
5535
+ | { type: 'Ready'; value: { response: XcmVersionedResponse; at: number } };
5536
+
5537
+ export type XcmVersionedResponse =
5538
+ | { type: 'V3'; value: XcmV3Response }
5539
+ | { type: 'V4'; value: StagingXcmV4Response }
5540
+ | { type: 'V5'; value: StagingXcmV5Response };
5541
+
5542
+ export type PalletXcmVersionMigrationStage =
5543
+ | { type: 'MigrateSupportedVersion' }
5544
+ | { type: 'MigrateVersionNotifiers' }
5545
+ | { type: 'NotifyCurrentTargets'; value?: Bytes | undefined }
5546
+ | { type: 'MigrateAndNotifyOldTargets' };
5547
+
5548
+ export type PalletXcmRemoteLockedFungibleRecord = {
5549
+ amount: bigint;
5550
+ owner: XcmVersionedLocation;
5551
+ locker: XcmVersionedLocation;
5552
+ consumers: Array<[[], bigint]>;
5553
+ };
5554
+
5555
+ export type PalletXcmAuthorizedAliasesEntry = {
5556
+ aliasers: Array<XcmRuntimeApisAuthorizedAliasesOriginAliaser>;
5557
+ ticket: FrameSupportTokensFungibleHoldConsideration;
5558
+ };
5559
+
5560
+ export type FrameSupportTokensFungibleHoldConsideration = bigint;
5561
+
5562
+ export type PalletXcmMaxAuthorizedAliases = {};
5563
+
5564
+ export type XcmRuntimeApisAuthorizedAliasesOriginAliaser = {
5565
+ location: XcmVersionedLocation;
5566
+ expiry?: bigint | undefined;
5567
+ };
5568
+
5569
+ /**
5570
+ * The `Error` enum of this pallet.
5571
+ **/
5572
+ export type PalletXcmError =
5573
+ /**
5574
+ * The desired destination was unreachable, generally because there is a no way of routing
5575
+ * to it.
5576
+ **/
5577
+ | { name: 'Unreachable' }
5578
+ /**
5579
+ * There was some other issue (i.e. not to do with routing) in sending the message.
5580
+ * Perhaps a lack of space for buffering the message.
5581
+ **/
5582
+ | { name: 'SendFailure' }
5583
+ /**
5584
+ * The message execution fails the filter.
5585
+ **/
5586
+ | { name: 'Filtered' }
5587
+ /**
5588
+ * The message's weight could not be determined.
5589
+ **/
5590
+ | { name: 'UnweighableMessage' }
5591
+ /**
5592
+ * The destination `Location` provided cannot be inverted.
5593
+ **/
5594
+ | { name: 'DestinationNotInvertible' }
5595
+ /**
5596
+ * The assets to be sent are empty.
5597
+ **/
5598
+ | { name: 'Empty' }
5599
+ /**
5600
+ * Could not re-anchor the assets to declare the fees for the destination chain.
5601
+ **/
5602
+ | { name: 'CannotReanchor' }
5603
+ /**
5604
+ * Too many assets have been attempted for transfer.
5605
+ **/
5606
+ | { name: 'TooManyAssets' }
5607
+ /**
5608
+ * Origin is invalid for sending.
5609
+ **/
5610
+ | { name: 'InvalidOrigin' }
5611
+ /**
5612
+ * The version of the `Versioned` value used is not able to be interpreted.
5613
+ **/
5614
+ | { name: 'BadVersion' }
5615
+ /**
5616
+ * The given location could not be used (e.g. because it cannot be expressed in the
5617
+ * desired version of XCM).
5618
+ **/
5619
+ | { name: 'BadLocation' }
5620
+ /**
5621
+ * The referenced subscription could not be found.
5622
+ **/
5623
+ | { name: 'NoSubscription' }
5624
+ /**
5625
+ * The location is invalid since it already has a subscription from us.
5626
+ **/
5627
+ | { name: 'AlreadySubscribed' }
5628
+ /**
5629
+ * Could not check-out the assets for teleportation to the destination chain.
5630
+ **/
5631
+ | { name: 'CannotCheckOutTeleport' }
5632
+ /**
5633
+ * The owner does not own (all) of the asset that they wish to do the operation on.
5634
+ **/
5635
+ | { name: 'LowBalance' }
5636
+ /**
5637
+ * The asset owner has too many locks on the asset.
5638
+ **/
5639
+ | { name: 'TooManyLocks' }
5640
+ /**
5641
+ * The given account is not an identifiable sovereign account for any location.
5642
+ **/
5643
+ | { name: 'AccountNotSovereign' }
5644
+ /**
5645
+ * The operation required fees to be paid which the initiator could not meet.
5646
+ **/
5647
+ | { name: 'FeesNotMet' }
5648
+ /**
5649
+ * A remote lock with the corresponding data could not be found.
5650
+ **/
5651
+ | { name: 'LockNotFound' }
5652
+ /**
5653
+ * The unlock operation cannot succeed because there are still consumers of the lock.
5654
+ **/
5655
+ | { name: 'InUse' }
5656
+ /**
5657
+ * Invalid asset, reserve chain could not be determined for it.
5658
+ **/
5659
+ | { name: 'InvalidAssetUnknownReserve' }
5660
+ /**
5661
+ * Invalid asset, do not support remote asset reserves with different fees reserves.
5662
+ **/
5663
+ | { name: 'InvalidAssetUnsupportedReserve' }
5664
+ /**
5665
+ * Too many assets with different reserve locations have been attempted for transfer.
5666
+ **/
5667
+ | { name: 'TooManyReserves' }
5668
+ /**
5669
+ * Local XCM execution incomplete.
5670
+ **/
5671
+ | { name: 'LocalExecutionIncomplete' }
5672
+ /**
5673
+ * Too many locations authorized to alias origin.
5674
+ **/
5675
+ | { name: 'TooManyAuthorizedAliases' }
5676
+ /**
5677
+ * Expiry block number is in the past.
5678
+ **/
5679
+ | { name: 'ExpiresInPast' }
5680
+ /**
5681
+ * The alias to remove authorization for was not found.
5682
+ **/
5683
+ | { name: 'AliasNotFound' }
5684
+ /**
5685
+ * Local XCM execution incomplete with the actual XCM error and the index of the
5686
+ * instruction that caused the error.
5687
+ **/
5688
+ | { name: 'LocalExecutionIncompleteWithError'; data: { index: number; error: PalletXcmErrorsExecutionError } };
5689
+
5690
+ export type PalletXcmErrorsExecutionError =
5691
+ | 'Overflow'
5692
+ | 'Unimplemented'
5693
+ | 'UntrustedReserveLocation'
5694
+ | 'UntrustedTeleportLocation'
5695
+ | 'LocationFull'
5696
+ | 'LocationNotInvertible'
5697
+ | 'BadOrigin'
5698
+ | 'InvalidLocation'
5699
+ | 'AssetNotFound'
5700
+ | 'FailedToTransactAsset'
5701
+ | 'NotWithdrawable'
5702
+ | 'LocationCannotHold'
5703
+ | 'ExceedsMaxMessageSize'
5704
+ | 'DestinationUnsupported'
5705
+ | 'Transport'
5706
+ | 'Unroutable'
5707
+ | 'UnknownClaim'
5708
+ | 'FailedToDecode'
5709
+ | 'MaxWeightInvalid'
5710
+ | 'NotHoldingFees'
5711
+ | 'TooExpensive'
5712
+ | 'Trap'
5713
+ | 'ExpectationFalse'
5714
+ | 'PalletNotFound'
5715
+ | 'NameMismatch'
5716
+ | 'VersionIncompatible'
5717
+ | 'HoldingWouldOverflow'
5718
+ | 'ExportError'
5719
+ | 'ReanchorFailed'
5720
+ | 'NoDeal'
5721
+ | 'FeesNotMet'
5722
+ | 'LockError'
5723
+ | 'NoPermission'
5724
+ | 'Unanchored'
5725
+ | 'NotDepositable'
5726
+ | 'TooManyAssets'
5727
+ | 'UnhandledXcmVersion'
5728
+ | 'WeightLimitReached'
5729
+ | 'Barrier'
5730
+ | 'WeightNotComputable'
5731
+ | 'ExceedsStackLimit';
5732
+
5733
+ export type PalletMessageQueueBookState = {
5734
+ begin: number;
5735
+ end: number;
5736
+ count: number;
5737
+ readyNeighbours?: PalletMessageQueueNeighbours | undefined;
5738
+ messageCount: bigint;
5739
+ size: bigint;
5740
+ };
5741
+
5742
+ export type PalletMessageQueueNeighbours = {
5743
+ prev: CumulusPrimitivesCoreAggregateMessageOrigin;
5744
+ next: CumulusPrimitivesCoreAggregateMessageOrigin;
5745
+ };
5746
+
5747
+ export type PalletMessageQueuePage = {
5748
+ remaining: number;
5749
+ remainingSize: number;
5750
+ firstIndex: number;
5751
+ first: number;
5752
+ last: number;
5753
+ heap: Bytes;
5754
+ };
5755
+
5756
+ /**
5757
+ * The `Error` enum of this pallet.
5758
+ **/
5759
+ export type PalletMessageQueueError =
5760
+ /**
5761
+ * Page is not reapable because it has items remaining to be processed and is not old
5762
+ * enough.
5763
+ **/
5764
+ | 'NotReapable'
5765
+ /**
5766
+ * Page to be reaped does not exist.
5767
+ **/
5768
+ | 'NoPage'
5769
+ /**
5770
+ * The referenced message could not be found.
5771
+ **/
5772
+ | 'NoMessage'
5773
+ /**
5774
+ * The message was already processed and cannot be processed again.
5775
+ **/
5776
+ | 'AlreadyProcessed'
5777
+ /**
5778
+ * The message is queued for future execution.
5779
+ **/
5780
+ | 'Queued'
5781
+ /**
5782
+ * There is temporarily not enough weight to continue servicing messages.
5783
+ **/
5784
+ | 'InsufficientWeight'
5785
+ /**
5786
+ * This message is temporarily unprocessable.
5787
+ *
5788
+ * Such errors are expected, but not guaranteed, to resolve themselves eventually through
5789
+ * retrying.
5790
+ **/
5791
+ | 'TemporarilyUnprocessable'
5792
+ /**
5793
+ * The queue is paused and no message can be executed from it.
5794
+ *
5795
+ * This can change at any time and may resolve in the future by re-trying.
5796
+ **/
5797
+ | 'QueuePaused'
5798
+ /**
5799
+ * Another call is in progress and needs to finish before this call can happen.
5800
+ **/
5801
+ | 'RecursiveDisallowed';
5426
5802
 
5427
5803
  /**
5428
5804
  * The `Error` enum of this pallet.
@@ -5473,11 +5849,12 @@ export type PalletMultisigError =
5473
5849
  **/
5474
5850
  | 'SenderInSignatories'
5475
5851
  /**
5476
- * Multisig operation not found when attempting to cancel.
5852
+ * Multisig operation not found in storage.
5477
5853
  **/
5478
5854
  | 'NotFound'
5479
5855
  /**
5480
- * Only the account that originally created the multisig is able to cancel it.
5856
+ * Only the account that originally created the multisig is able to cancel it or update
5857
+ * its deposits.
5481
5858
  **/
5482
5859
  | 'NotOwner'
5483
5860
  /**
@@ -5698,39 +6075,8 @@ export type PalletMigrationsError =
5698
6075
  **/
5699
6076
  'Ongoing';
5700
6077
 
5701
- export type CumulusPalletWeightReclaimStorageWeightReclaim = [
5702
- FrameSystemExtensionsCheckNonZeroSender,
5703
- FrameSystemExtensionsCheckSpecVersion,
5704
- FrameSystemExtensionsCheckTxVersion,
5705
- FrameSystemExtensionsCheckGenesis,
5706
- FrameSystemExtensionsCheckMortality,
5707
- FrameSystemExtensionsCheckNonce,
5708
- FrameSystemExtensionsCheckWeight,
5709
- PalletTransactionPaymentChargeTransactionPayment,
5710
- ];
5711
-
5712
- export type FrameSystemExtensionsCheckNonZeroSender = {};
5713
-
5714
- export type FrameSystemExtensionsCheckSpecVersion = {};
5715
-
5716
- export type FrameSystemExtensionsCheckTxVersion = {};
5717
-
5718
- export type FrameSystemExtensionsCheckGenesis = {};
5719
-
5720
- export type FrameSystemExtensionsCheckMortality = Era;
5721
-
5722
- export type FrameSystemExtensionsCheckNonce = number;
5723
-
5724
- export type FrameSystemExtensionsCheckWeight = {};
5725
-
5726
- export type PalletTransactionPaymentChargeTransactionPayment = bigint;
5727
-
5728
- export type PeopleWestendRuntimeRuntime = {};
5729
-
5730
6078
  export type SpConsensusSlotsSlotDuration = bigint;
5731
6079
 
5732
- export type SpRuntimeBlock = { header: Header; extrinsics: Array<UncheckedExtrinsic> };
5733
-
5734
6080
  export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
5735
6081
 
5736
6082
  export type SpCoreOpaqueMetadata = Bytes;
@@ -5821,6 +6167,15 @@ export type XcmRuntimeApisDryRunXcmDryRunEffects = {
5821
6167
 
5822
6168
  export type XcmRuntimeApisConversionsError = 'Unsupported' | 'VersionedConversionFailed';
5823
6169
 
6170
+ export type XcmVersionedAsset =
6171
+ | { type: 'V3'; value: XcmV3MultiassetMultiAsset }
6172
+ | { type: 'V4'; value: StagingXcmV4Asset }
6173
+ | { type: 'V5'; value: StagingXcmV5Asset };
6174
+
6175
+ export type XcmRuntimeApisTrustedQueryError = 'VersionedAssetConversionFailed' | 'VersionedLocationConversionFailed';
6176
+
6177
+ export type XcmRuntimeApisAuthorizedAliasesError = 'LocationVersionConversionFailed';
6178
+
5824
6179
  export type CumulusPrimitivesCoreCollationInfo = {
5825
6180
  upwardMessages: Array<Bytes>;
5826
6181
  horizontalMessages: Array<PolkadotCorePrimitivesOutboundHrmpMessage>;
@@ -5836,12 +6191,27 @@ export type PolkadotPrimitivesVstagingCoreSelector = number;
5836
6191
 
5837
6192
  export type PolkadotPrimitivesVstagingClaimQueueOffset = number;
5838
6193
 
5839
- export type XcmVersionedAsset =
5840
- | { type: 'V3'; value: XcmV3MultiassetMultiAsset }
5841
- | { type: 'V4'; value: StagingXcmV4Asset }
5842
- | { type: 'V5'; value: StagingXcmV5Asset };
6194
+ export type SpStatementStoreRuntimeApiStatementSource = 'Chain' | 'Network' | 'Local';
5843
6195
 
5844
- export type XcmRuntimeApisTrustedQueryError = 'VersionedAssetConversionFailed' | 'VersionedLocationConversionFailed';
6196
+ export type SpStatementStoreStatement = {
6197
+ proof?: SpStatementStoreProof | undefined;
6198
+ decryptionKey?: FixedBytes<32> | undefined;
6199
+ channel?: FixedBytes<32> | undefined;
6200
+ priority?: number | undefined;
6201
+ numTopics: number;
6202
+ topics: FixedArray<FixedBytes<32>, 4>;
6203
+ data?: Bytes | undefined;
6204
+ };
6205
+
6206
+ export type SpStatementStoreProof =
6207
+ | { type: 'Sr25519'; value: { signature: FixedBytes<64>; signer: FixedBytes<32> } }
6208
+ | { type: 'Ed25519'; value: { signature: FixedBytes<64>; signer: FixedBytes<32> } }
6209
+ | { type: 'Secp256k1Ecdsa'; value: { signature: FixedBytes<65>; signer: FixedBytes<33> } }
6210
+ | { type: 'OnChain'; value: { who: FixedBytes<32>; blockHash: FixedBytes<32>; eventIndex: bigint } };
6211
+
6212
+ export type SpStatementStoreRuntimeApiValidStatement = { maxCount: number; maxSize: number };
6213
+
6214
+ export type SpStatementStoreRuntimeApiInvalidStatement = 'BadProof' | 'NoProof' | 'InternalError';
5845
6215
 
5846
6216
  export type PeopleWestendRuntimeRuntimeError =
5847
6217
  | { pallet: 'System'; palletError: FrameSystemError }