@dedot/chaintypes 0.266.0 → 0.267.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.
@@ -77,8 +77,7 @@ export type AssetHubPolkadotRuntimeRuntimeCall =
77
77
  | { pallet: 'MultiBlockElectionSigned'; palletCall: PalletElectionProviderMultiBlockSignedPalletCall }
78
78
  | { pallet: 'Staking'; palletCall: PalletStakingAsyncPalletCall }
79
79
  | { pallet: 'Revive'; palletCall: PalletReviveCall }
80
- | { pallet: 'AhOps'; palletCall: PalletAhOpsCall }
81
- | { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCall };
80
+ | { pallet: 'AhOps'; palletCall: PalletAhOpsCall };
82
81
 
83
82
  export type AssetHubPolkadotRuntimeRuntimeCallLike =
84
83
  | { pallet: 'System'; palletCall: FrameSystemCallLike }
@@ -128,8 +127,7 @@ export type AssetHubPolkadotRuntimeRuntimeCallLike =
128
127
  | { pallet: 'MultiBlockElectionSigned'; palletCall: PalletElectionProviderMultiBlockSignedPalletCallLike }
129
128
  | { pallet: 'Staking'; palletCall: PalletStakingAsyncPalletCallLike }
130
129
  | { pallet: 'Revive'; palletCall: PalletReviveCallLike }
131
- | { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike }
132
- | { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCallLike };
130
+ | { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike };
133
131
 
134
132
  /**
135
133
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -520,7 +518,10 @@ export type PalletSchedulerCall =
520
518
  };
521
519
  }
522
520
  /**
523
- * Cancel an anonymously scheduled task.
521
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
522
+ * execution in, as well as the index of the task in that block's agenda.
523
+ *
524
+ * In the case of a named task, it will remove it from the lookup table as well.
524
525
  **/
525
526
  | { name: 'Cancel'; params: { when: number; index: number } }
526
527
  /**
@@ -578,6 +579,8 @@ export type PalletSchedulerCall =
578
579
  * clones of the original task. Their retry configuration will be derived from the
579
580
  * original task's configuration, but will have a lower value for `remaining` than the
580
581
  * original `total_retries`.
582
+ *
583
+ * This call **cannot** be used to set a retry configuration for a named task.
581
584
  **/
582
585
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
583
586
  /**
@@ -593,6 +596,8 @@ export type PalletSchedulerCall =
593
596
  * clones of the original task. Their retry configuration will be derived from the
594
597
  * original task's configuration, but will have a lower value for `remaining` than the
595
598
  * original `total_retries`.
599
+ *
600
+ * This is the only way to set a retry configuration for a named task.
596
601
  **/
597
602
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
598
603
  /**
@@ -618,7 +623,10 @@ export type PalletSchedulerCallLike =
618
623
  };
619
624
  }
620
625
  /**
621
- * Cancel an anonymously scheduled task.
626
+ * Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for
627
+ * execution in, as well as the index of the task in that block's agenda.
628
+ *
629
+ * In the case of a named task, it will remove it from the lookup table as well.
622
630
  **/
623
631
  | { name: 'Cancel'; params: { when: number; index: number } }
624
632
  /**
@@ -676,6 +684,8 @@ export type PalletSchedulerCallLike =
676
684
  * clones of the original task. Their retry configuration will be derived from the
677
685
  * original task's configuration, but will have a lower value for `remaining` than the
678
686
  * original `total_retries`.
687
+ *
688
+ * This call **cannot** be used to set a retry configuration for a named task.
679
689
  **/
680
690
  | { name: 'SetRetry'; params: { task: [number, number]; retries: number; period: number } }
681
691
  /**
@@ -691,6 +701,8 @@ export type PalletSchedulerCallLike =
691
701
  * clones of the original task. Their retry configuration will be derived from the
692
702
  * original task's configuration, but will have a lower value for `remaining` than the
693
703
  * original `total_retries`.
704
+ *
705
+ * This is the only way to set a retry configuration for a named task.
694
706
  **/
695
707
  | { name: 'SetRetryNamed'; params: { id: FixedBytes<32>; retries: number; period: number } }
696
708
  /**
@@ -1681,14 +1693,16 @@ export type PalletCollatorSelectionCallLike =
1681
1693
  export type PalletSessionCall =
1682
1694
  /**
1683
1695
  * Sets the session key(s) of the function caller to `keys`.
1696
+ *
1684
1697
  * Allows an account to set its session key prior to becoming a validator.
1685
1698
  * This doesn't take effect until the next session.
1686
1699
  *
1687
- * The dispatch origin of this function must be signed.
1688
- *
1689
- * ## Complexity
1690
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1691
- * fixed.
1700
+ * - `origin`: The dispatch origin of this function must be signed.
1701
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1702
+ * setup in the runtime.
1703
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1704
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1705
+ * proof format.
1692
1706
  **/
1693
1707
  | { name: 'SetKeys'; params: { keys: AssetHubPolkadotRuntimeSessionKeys; proof: Bytes } }
1694
1708
  /**
@@ -1700,24 +1714,22 @@ export type PalletSessionCall =
1700
1714
  * convertible to a validator ID using the chain's typical addressing system (this usually
1701
1715
  * means being a controller account) or directly convertible into a validator ID (which
1702
1716
  * usually means being a stash account).
1703
- *
1704
- * ## Complexity
1705
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1706
- * `T::Keys::key_ids()` which is fixed.
1707
1717
  **/
1708
1718
  | { name: 'PurgeKeys' };
1709
1719
 
1710
1720
  export type PalletSessionCallLike =
1711
1721
  /**
1712
1722
  * Sets the session key(s) of the function caller to `keys`.
1723
+ *
1713
1724
  * Allows an account to set its session key prior to becoming a validator.
1714
1725
  * This doesn't take effect until the next session.
1715
1726
  *
1716
- * The dispatch origin of this function must be signed.
1717
- *
1718
- * ## Complexity
1719
- * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1720
- * fixed.
1727
+ * - `origin`: The dispatch origin of this function must be signed.
1728
+ * - `keys`: The new session keys to set. These are the public keys of all sessions keys
1729
+ * setup in the runtime.
1730
+ * - `proof`: The proof that `origin` has access to the private keys of `keys`. See
1731
+ * [`impl_opaque_keys`](sp_runtime::impl_opaque_keys) for more information about the
1732
+ * proof format.
1721
1733
  **/
1722
1734
  | { name: 'SetKeys'; params: { keys: AssetHubPolkadotRuntimeSessionKeys; proof: BytesLike } }
1723
1735
  /**
@@ -1729,10 +1741,6 @@ export type PalletSessionCallLike =
1729
1741
  * convertible to a validator ID using the chain's typical addressing system (this usually
1730
1742
  * means being a controller account) or directly convertible into a validator ID (which
1731
1743
  * usually means being a stash account).
1732
- *
1733
- * ## Complexity
1734
- * - `O(1)` in number of key types. Actual cost depends on the number of length of
1735
- * `T::Keys::key_ids()` which is fixed.
1736
1744
  **/
1737
1745
  | { name: 'PurgeKeys' };
1738
1746
 
@@ -3721,7 +3729,9 @@ export type PalletMultisigCall =
3721
3729
  * Register approval for a dispatch to be made from a deterministic composite account if
3722
3730
  * approved by a total of `threshold - 1` of `other_signatories`.
3723
3731
  *
3724
- * If there are enough, then dispatch the call.
3732
+ * **If the approval threshold is met (including the sender's approval), this will
3733
+ * immediately execute the call.** This is the only way to execute a multisig call -
3734
+ * `approve_as_multi` will never trigger execution.
3725
3735
  *
3726
3736
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3727
3737
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -3737,8 +3747,9 @@ export type PalletMultisigCall =
3737
3747
  * transaction index) of the first approval transaction.
3738
3748
  * - `call`: The call to be executed.
3739
3749
  *
3740
- * NOTE: Unless this is the final approval, you will generally want to use
3741
- * `approve_as_multi` instead, since it only requires a hash of the call.
3750
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
3751
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
3752
+ * efficient.
3742
3753
  *
3743
3754
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
3744
3755
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -3772,6 +3783,13 @@ export type PalletMultisigCall =
3772
3783
  * Register approval for a dispatch to be made from a deterministic composite account if
3773
3784
  * approved by a total of `threshold - 1` of `other_signatories`.
3774
3785
  *
3786
+ * **This function will NEVER execute the call, even if the approval threshold is
3787
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
3788
+ * be called with the full call data by any of the signatories.
3789
+ *
3790
+ * This function is more efficient than `as_multi` for intermediate approvals since it
3791
+ * only requires the call hash, not the full call data.
3792
+ *
3775
3793
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3776
3794
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
3777
3795
  * is cancelled.
@@ -3786,7 +3804,8 @@ export type PalletMultisigCall =
3786
3804
  * transaction index) of the first approval transaction.
3787
3805
  * - `call_hash`: The hash of the call to be executed.
3788
3806
  *
3789
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
3807
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
3808
+ * `as_multi` with the full call data. This function cannot execute the call.
3790
3809
  *
3791
3810
  * ## Complexity
3792
3811
  * - `O(S)`.
@@ -3885,7 +3904,9 @@ export type PalletMultisigCallLike =
3885
3904
  * Register approval for a dispatch to be made from a deterministic composite account if
3886
3905
  * approved by a total of `threshold - 1` of `other_signatories`.
3887
3906
  *
3888
- * If there are enough, then dispatch the call.
3907
+ * **If the approval threshold is met (including the sender's approval), this will
3908
+ * immediately execute the call.** This is the only way to execute a multisig call -
3909
+ * `approve_as_multi` will never trigger execution.
3889
3910
  *
3890
3911
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3891
3912
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
@@ -3901,8 +3922,9 @@ export type PalletMultisigCallLike =
3901
3922
  * transaction index) of the first approval transaction.
3902
3923
  * - `call`: The call to be executed.
3903
3924
  *
3904
- * NOTE: Unless this is the final approval, you will generally want to use
3905
- * `approve_as_multi` instead, since it only requires a hash of the call.
3925
+ * NOTE: For intermediate approvals (not the final approval), you should generally use
3926
+ * `approve_as_multi` instead, since it only requires a hash of the call and is more
3927
+ * efficient.
3906
3928
  *
3907
3929
  * Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise
3908
3930
  * on success, result is `Ok` and the result from the interior call, if it was executed,
@@ -3936,6 +3958,13 @@ export type PalletMultisigCallLike =
3936
3958
  * Register approval for a dispatch to be made from a deterministic composite account if
3937
3959
  * approved by a total of `threshold - 1` of `other_signatories`.
3938
3960
  *
3961
+ * **This function will NEVER execute the call, even if the approval threshold is
3962
+ * reached.** It only registers approval. To actually execute the call, `as_multi` must
3963
+ * be called with the full call data by any of the signatories.
3964
+ *
3965
+ * This function is more efficient than `as_multi` for intermediate approvals since it
3966
+ * only requires the call hash, not the full call data.
3967
+ *
3939
3968
  * Payment: `DepositBase` will be reserved if this is the first approval, plus
3940
3969
  * `threshold` times `DepositFactor`. It is returned once this dispatch happens or
3941
3970
  * is cancelled.
@@ -3950,7 +3979,8 @@ export type PalletMultisigCallLike =
3950
3979
  * transaction index) of the first approval transaction.
3951
3980
  * - `call_hash`: The hash of the call to be executed.
3952
3981
  *
3953
- * NOTE: If this is the final approval, you will want to use `as_multi` instead.
3982
+ * NOTE: To execute the call after approvals are gathered, any signatory must call
3983
+ * `as_multi` with the full call data. This function cannot execute the call.
3954
3984
  *
3955
3985
  * ## Complexity
3956
3986
  * - `O(S)`.
@@ -13791,13 +13821,11 @@ export type PalletStakingAsyncRcClientCall =
13791
13821
  * **Validation on AssetHub:**
13792
13822
  * - Keys are decoded as `T::RelayChainSessionKeys` to ensure they match RC's expected
13793
13823
  * format.
13824
+ * - Ownership proof is validated using `OpaqueKeys::ownership_proof_is_valid`.
13794
13825
  *
13795
13826
  * If validation passes, only the validated keys are sent to RC (with empty proof),
13796
13827
  * since RC trusts AH's validation.
13797
13828
  *
13798
- * Note: Ownership proof validation requires PR #1739 which is not backported to
13799
- * stable2512. The proof parameter will be added when that PR is backported.
13800
- *
13801
13829
  * **Fees:**
13802
13830
  * The actual cost of this call is higher than what the weight-based fee estimate shows.
13803
13831
  * In addition to the local transaction weight fee, the stash account is charged an XCM
@@ -13863,13 +13891,11 @@ export type PalletStakingAsyncRcClientCallLike =
13863
13891
  * **Validation on AssetHub:**
13864
13892
  * - Keys are decoded as `T::RelayChainSessionKeys` to ensure they match RC's expected
13865
13893
  * format.
13894
+ * - Ownership proof is validated using `OpaqueKeys::ownership_proof_is_valid`.
13866
13895
  *
13867
13896
  * If validation passes, only the validated keys are sent to RC (with empty proof),
13868
13897
  * since RC trusts AH's validation.
13869
13898
  *
13870
- * Note: Ownership proof validation requires PR #1739 which is not backported to
13871
- * stable2512. The proof parameter will be added when that PR is backported.
13872
- *
13873
13899
  * **Fees:**
13874
13900
  * The actual cost of this call is higher than what the weight-based fee estimate shows.
13875
13901
  * In addition to the local transaction weight fee, the stash account is charged an XCM
@@ -14321,12 +14347,6 @@ export type PalletStakingAsyncPalletCall =
14321
14347
  * have enough blocks to get a result.
14322
14348
  **/
14323
14349
  | { name: 'ForceNewEra' }
14324
- /**
14325
- * Set the validators who cannot be slashed (if any).
14326
- *
14327
- * The dispatch origin must be Root.
14328
- **/
14329
- | { name: 'SetInvulnerables'; params: { invulnerables: Array<AccountId32> } }
14330
14350
  /**
14331
14351
  * Force a current staker to become completely unstaked, immediately.
14332
14352
  *
@@ -14508,7 +14528,7 @@ export type PalletStakingAsyncPalletCall =
14508
14528
  *
14509
14529
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
14510
14530
  * them, then the list of nominators is paged, with each page being capped at
14511
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
14531
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
14512
14532
  * the call needs to be made for each page separately in order for all the nominators
14513
14533
  * backing a validator to receive the reward. The nominators are not sorted across pages
14514
14534
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -14783,12 +14803,6 @@ export type PalletStakingAsyncPalletCallLike =
14783
14803
  * have enough blocks to get a result.
14784
14804
  **/
14785
14805
  | { name: 'ForceNewEra' }
14786
- /**
14787
- * Set the validators who cannot be slashed (if any).
14788
- *
14789
- * The dispatch origin must be Root.
14790
- **/
14791
- | { name: 'SetInvulnerables'; params: { invulnerables: Array<AccountId32Like> } }
14792
14806
  /**
14793
14807
  * Force a current staker to become completely unstaked, immediately.
14794
14808
  *
@@ -14970,7 +14984,7 @@ export type PalletStakingAsyncPalletCallLike =
14970
14984
  *
14971
14985
  * If a validator has more than [`Config::MaxExposurePageSize`] nominators backing
14972
14986
  * them, then the list of nominators is paged, with each page being capped at
14973
- * [`Config::MaxExposurePageSize`.] If a validator has more than one page of nominators,
14987
+ * [`Config::MaxExposurePageSize`]. If a validator has more than one page of nominators,
14974
14988
  * the call needs to be made for each page separately in order for all the nominators
14975
14989
  * backing a validator to receive the reward. The nominators are not sorted across pages
14976
14990
  * and so it should not be assumed the highest staker would be on the topmost page and vice
@@ -15756,1007 +15770,220 @@ export type PalletAhOpsCallLike =
15756
15770
  };
15757
15771
  };
15758
15772
 
15773
+ export type FrameSystemExtensionsAuthorizeCall = {};
15774
+
15775
+ export type FrameSystemExtensionsCheckNonZeroSender = {};
15776
+
15777
+ export type FrameSystemExtensionsCheckSpecVersion = {};
15778
+
15779
+ export type FrameSystemExtensionsCheckTxVersion = {};
15780
+
15781
+ export type FrameSystemExtensionsCheckGenesis = {};
15782
+
15783
+ export type FrameSystemExtensionsCheckMortality = Era;
15784
+
15785
+ export type FrameSystemExtensionsCheckNonce = number;
15786
+
15787
+ export type FrameSystemExtensionsCheckWeight = {};
15788
+
15789
+ export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
15790
+ tip: bigint;
15791
+ assetId?: StagingXcmV5Location | undefined;
15792
+ };
15793
+
15794
+ export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
15795
+
15796
+ export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
15797
+
15798
+ export type PalletReviveEvmTxExtensionSetOrigin = {};
15799
+
15800
+ export type FrameSystemAccountInfo = {
15801
+ nonce: number;
15802
+ consumers: number;
15803
+ providers: number;
15804
+ sufficients: number;
15805
+ data: PalletBalancesAccountData;
15806
+ };
15807
+
15808
+ export type PalletBalancesAccountData = {
15809
+ free: bigint;
15810
+ reserved: bigint;
15811
+ frozen: bigint;
15812
+ flags: PalletBalancesExtraFlags;
15813
+ };
15814
+
15815
+ export type PalletBalancesExtraFlags = bigint;
15816
+
15817
+ export type FrameSupportDispatchPerDispatchClass = {
15818
+ normal: SpWeightsWeightV2Weight;
15819
+ operational: SpWeightsWeightV2Weight;
15820
+ mandatory: SpWeightsWeightV2Weight;
15821
+ };
15822
+
15823
+ export type FrameSystemEventRecord = { phase: Phase; event: AssetHubPolkadotRuntimeRuntimeEvent; topics: Array<H256> };
15824
+
15825
+ export type AssetHubPolkadotRuntimeRuntimeEvent =
15826
+ | { pallet: 'System'; palletEvent: FrameSystemEvent }
15827
+ | { pallet: 'ParachainSystem'; palletEvent: CumulusPalletParachainSystemEvent }
15828
+ | { pallet: 'Preimage'; palletEvent: PalletPreimageEvent }
15829
+ | { pallet: 'Scheduler'; palletEvent: PalletSchedulerEvent }
15830
+ | { pallet: 'Parameters'; palletEvent: PalletParametersEvent }
15831
+ | { pallet: 'MultiBlockMigrations'; palletEvent: PalletMigrationsEvent }
15832
+ | { pallet: 'Balances'; palletEvent: PalletBalancesEvent }
15833
+ | { pallet: 'TransactionPayment'; palletEvent: PalletTransactionPaymentEvent }
15834
+ | { pallet: 'AssetTxPayment'; palletEvent: PalletAssetConversionTxPaymentEvent }
15835
+ | { pallet: 'Vesting'; palletEvent: PalletVestingEvent }
15836
+ | { pallet: 'Claims'; palletEvent: PolkadotRuntimeCommonClaimsPalletEvent }
15837
+ | { pallet: 'CollatorSelection'; palletEvent: PalletCollatorSelectionEvent }
15838
+ | { pallet: 'Session'; palletEvent: PalletSessionEvent }
15839
+ | { pallet: 'XcmpQueue'; palletEvent: CumulusPalletXcmpQueueEvent }
15840
+ | { pallet: 'PolkadotXcm'; palletEvent: PalletXcmEvent }
15841
+ | { pallet: 'CumulusXcm'; palletEvent: CumulusPalletXcmEvent }
15842
+ | { pallet: 'ToKusamaXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
15843
+ | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
15844
+ | { pallet: 'SnowbridgeSystemFrontend'; palletEvent: SnowbridgePalletSystemFrontendEvent }
15845
+ | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
15846
+ | { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
15847
+ | { pallet: 'Proxy'; palletEvent: PalletProxyEvent }
15848
+ | { pallet: 'Indices'; palletEvent: PalletIndicesEvent }
15849
+ | { pallet: 'Assets'; palletEvent: PalletAssetsEvent }
15850
+ | { pallet: 'Uniques'; palletEvent: PalletUniquesEvent }
15851
+ | { pallet: 'Nfts'; palletEvent: PalletNftsEvent }
15852
+ | { pallet: 'ForeignAssets'; palletEvent: PalletAssetsEvent002 }
15853
+ | { pallet: 'PoolAssets'; palletEvent: PalletAssetsEvent }
15854
+ | { pallet: 'AssetConversion'; palletEvent: PalletAssetConversionEvent }
15855
+ | { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
15856
+ | { pallet: 'ConvictionVoting'; palletEvent: PalletConvictionVotingEvent }
15857
+ | { pallet: 'Referenda'; palletEvent: PalletReferendaEvent }
15858
+ | { pallet: 'Whitelist'; palletEvent: PalletWhitelistEvent }
15859
+ | { pallet: 'Bounties'; palletEvent: PalletBountiesEvent }
15860
+ | { pallet: 'ChildBounties'; palletEvent: PalletChildBountiesEvent }
15861
+ | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
15862
+ | { pallet: 'MultiAssetBounties'; palletEvent: PalletMultiAssetBountiesEvent }
15863
+ | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
15864
+ | { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
15865
+ | { pallet: 'VoterList'; palletEvent: PalletBagsListEvent }
15866
+ | { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
15867
+ | { pallet: 'StakingRcClient'; palletEvent: PalletStakingAsyncRcClientEvent }
15868
+ | { pallet: 'MultiBlockElection'; palletEvent: PalletElectionProviderMultiBlockEvent }
15869
+ | { pallet: 'MultiBlockElectionVerifier'; palletEvent: PalletElectionProviderMultiBlockVerifierImplsPalletEvent }
15870
+ | { pallet: 'MultiBlockElectionSigned'; palletEvent: PalletElectionProviderMultiBlockSignedPalletEvent }
15871
+ | { pallet: 'Staking'; palletEvent: PalletStakingAsyncPalletEvent }
15872
+ | { pallet: 'Revive'; palletEvent: PalletReviveEvent }
15873
+ | { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent };
15874
+
15759
15875
  /**
15760
- * Contains a variant per dispatchable extrinsic that this pallet has.
15876
+ * Event for the System pallet.
15761
15877
  **/
15762
- export type PalletAhMigratorCall =
15878
+ export type FrameSystemEvent =
15763
15879
  /**
15764
- * Receive accounts from the Relay Chain.
15765
- *
15766
- * The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
15880
+ * An extrinsic completed successfully.
15767
15881
  **/
15768
- | { name: 'ReceiveAccounts'; params: { accounts: Array<PalletRcMigratorAccountsAccount> } }
15882
+ | { name: 'ExtrinsicSuccess'; data: { dispatchInfo: FrameSystemDispatchEventInfo } }
15769
15883
  /**
15770
- * Receive multisigs from the Relay Chain.
15771
- *
15772
- * This will be called from an XCM `Transact` inside a DMP from the relay chain. The
15773
- * multisigs were prepared by
15774
- * `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
15884
+ * An extrinsic failed.
15775
15885
  **/
15776
- | { name: 'ReceiveMultisigs'; params: { accounts: Array<PalletRcMigratorMultisigRcMultisig> } }
15886
+ | { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo } }
15777
15887
  /**
15778
- * Receive proxies from the Relay Chain.
15888
+ * `:code` was updated.
15779
15889
  **/
15780
- | { name: 'ReceiveProxyProxies'; params: { proxies: Array<PalletRcMigratorProxyRcProxy> } }
15890
+ | { name: 'CodeUpdated' }
15781
15891
  /**
15782
- * Receive proxy announcements from the Relay Chain.
15892
+ * A new account was created.
15783
15893
  **/
15784
- | { name: 'ReceiveProxyAnnouncements'; params: { announcements: Array<PalletRcMigratorProxyRcProxyAnnouncement> } }
15785
- | { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
15786
- | {
15787
- name: 'ReceivePreimageRequestStatus';
15788
- params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusPortableRequestStatus> };
15789
- }
15790
- | {
15791
- name: 'ReceivePreimageLegacyStatus';
15792
- params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
15793
- }
15794
- | { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
15795
- | { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
15894
+ | { name: 'NewAccount'; data: { account: AccountId32 } }
15796
15895
  /**
15797
- * Receive referendum counts, deciding counts, votes for the track queue.
15896
+ * An account was reaped.
15798
15897
  **/
15799
- | { name: 'ReceiveReferendaValues'; params: { values: Array<PalletRcMigratorReferendaReferendaMessage> } }
15898
+ | { name: 'KilledAccount'; data: { account: AccountId32 } }
15800
15899
  /**
15801
- * Receive referendums from the Relay Chain.
15900
+ * On on-chain remark happened.
15802
15901
  **/
15803
- | { name: 'ReceiveReferendums'; params: { referendums: Array<[number, PalletReferendaReferendumInfo]> } }
15804
- | { name: 'ReceiveClaims'; params: { messages: Array<PalletRcMigratorClaimsRcClaimsMessage> } }
15805
- | {
15806
- name: 'ReceiveBagsListMessages';
15807
- params: { messages: Array<PalletRcMigratorStakingBagsListPortableBagsListMessage> };
15808
- }
15809
- | { name: 'ReceiveSchedulerMessages'; params: { messages: Array<PalletRcMigratorSchedulerRcSchedulerMessage> } }
15810
- | { name: 'ReceiveIndices'; params: { indices: Array<PalletRcMigratorIndicesRcIndicesIndex> } }
15811
- | {
15812
- name: 'ReceiveConvictionVotingMessages';
15813
- params: { messages: Array<PalletRcMigratorConvictionVotingRcConvictionVotingMessage> };
15814
- }
15815
- | { name: 'ReceiveBountiesMessages'; params: { messages: Array<PalletRcMigratorBountiesRcBountiesMessage> } }
15816
- | {
15817
- name: 'ReceiveAssetRates';
15818
- params: { rates: Array<[PolkadotRuntimeCommonImplsVersionedLocatableAsset, FixedU128]> };
15819
- }
15820
- | { name: 'ReceiveCrowdloanMessages'; params: { messages: Array<PalletRcMigratorCrowdloanRcCrowdloanMessage> } }
15821
- | { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
15822
- | { name: 'ReceiveTreasuryMessages'; params: { messages: Array<PalletRcMigratorTreasuryPortableTreasuryMessage> } }
15823
- | {
15824
- name: 'ReceiveSchedulerAgendaMessages';
15825
- params: { messages: Array<PalletRcMigratorSchedulerSchedulerAgendaMessage> };
15826
- }
15827
- | {
15828
- name: 'ReceiveDelegatedStakingMessages';
15829
- params: { messages: Array<PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage> };
15830
- }
15831
- | {
15832
- name: 'ReceiveChildBountiesMessages';
15833
- params: { messages: Array<PalletRcMigratorChildBountiesPortableChildBountiesMessage> };
15834
- }
15835
- | {
15836
- name: 'ReceiveStakingMessages';
15837
- params: { messages: Array<PalletRcMigratorStakingMessagePortableStakingMessage> };
15838
- }
15902
+ | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } }
15839
15903
  /**
15840
- * Set the migration stage.
15841
- *
15842
- * This call is intended for emergency use only and is guarded by the
15843
- * [`Config::AdminOrigin`].
15904
+ * A [`Task`] has started executing
15844
15905
  **/
15845
- | { name: 'ForceSetStage'; params: { stage: PalletAhMigratorMigrationStage } }
15906
+ | { name: 'TaskStarted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
15846
15907
  /**
15847
- * Start the data migration.
15848
- *
15849
- * This is typically called by the Relay Chain to start the migration on the Asset Hub and
15850
- * receive a handshake message indicating the Asset Hub's readiness.
15908
+ * A [`Task`] has finished executing.
15851
15909
  **/
15852
- | { name: 'StartMigration' }
15910
+ | { name: 'TaskCompleted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
15853
15911
  /**
15854
- * Set the DMP queue priority configuration.
15855
- *
15856
- * Can only be called by the `AdminOrigin`.
15912
+ * A [`Task`] failed during execution.
15857
15913
  **/
15858
- | { name: 'SetDmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
15914
+ | { name: 'TaskFailed'; data: { task: AssetHubPolkadotRuntimeRuntimeTask; err: DispatchError } }
15859
15915
  /**
15860
- * Set the manager account id.
15861
- *
15862
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
15863
- * can not set the manager account id via `set_manager` call.
15916
+ * An upgrade was authorized.
15864
15917
  **/
15865
- | { name: 'SetManager'; params: { new?: AccountId32 | undefined } }
15918
+ | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } }
15866
15919
  /**
15867
- * Finish the migration.
15868
- *
15869
- * This is typically called by the Relay Chain to signal the migration has finished.
15870
- *
15871
- * The `data` parameter might be `None` if we are running the migration for a second time
15872
- * for some pallets and have already performed the checking account balance correction,
15873
- * so we do not need to do it this time.
15920
+ * An invalid authorized upgrade was rejected while trying to apply it.
15874
15921
  **/
15875
- | {
15876
- name: 'FinishMigration';
15877
- params: { data?: PalletRcMigratorMigrationFinishedData | undefined; coolOffEndAt: number };
15878
- }
15922
+ | { name: 'RejectedInvalidAuthorizedUpgrade'; data: { codeHash: H256; error: DispatchError } };
15923
+
15924
+ export type FrameSystemDispatchEventInfo = {
15925
+ weight: SpWeightsWeightV2Weight;
15926
+ class: FrameSupportDispatchDispatchClass;
15927
+ paysFee: FrameSupportDispatchPays;
15928
+ };
15929
+
15930
+ export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
15931
+
15932
+ export type FrameSupportDispatchPays = 'Yes' | 'No';
15933
+
15934
+ export type SpRuntimeProvingTrieTrieError =
15935
+ | 'InvalidStateRoot'
15936
+ | 'IncompleteDatabase'
15937
+ | 'ValueAtIncompleteKey'
15938
+ | 'DecoderError'
15939
+ | 'InvalidHash'
15940
+ | 'DuplicateKey'
15941
+ | 'ExtraneousNode'
15942
+ | 'ExtraneousValue'
15943
+ | 'ExtraneousHashReference'
15944
+ | 'InvalidChildReference'
15945
+ | 'ValueMismatch'
15946
+ | 'IncompleteProof'
15947
+ | 'RootMismatch'
15948
+ | 'DecodeError';
15949
+
15950
+ /**
15951
+ * The `Event` enum of this pallet
15952
+ **/
15953
+ export type CumulusPalletParachainSystemEvent =
15879
15954
  /**
15880
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
15881
- * [Config::SendXcm] router which will be able to send messages to the Relay Chain during
15882
- * the migration.
15955
+ * The validation function has been scheduled to apply.
15883
15956
  **/
15884
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } };
15885
-
15886
- export type PalletAhMigratorCallLike =
15957
+ | { name: 'ValidationFunctionStored' }
15887
15958
  /**
15888
- * Receive accounts from the Relay Chain.
15889
- *
15890
- * The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
15959
+ * The validation function was applied as of the contained relay chain block number.
15891
15960
  **/
15892
- | { name: 'ReceiveAccounts'; params: { accounts: Array<PalletRcMigratorAccountsAccount> } }
15961
+ | { name: 'ValidationFunctionApplied'; data: { relayChainBlockNum: number } }
15893
15962
  /**
15894
- * Receive multisigs from the Relay Chain.
15895
- *
15896
- * This will be called from an XCM `Transact` inside a DMP from the relay chain. The
15897
- * multisigs were prepared by
15898
- * `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
15963
+ * The relay-chain aborted the upgrade process.
15899
15964
  **/
15900
- | { name: 'ReceiveMultisigs'; params: { accounts: Array<PalletRcMigratorMultisigRcMultisig> } }
15965
+ | { name: 'ValidationFunctionDiscarded' }
15901
15966
  /**
15902
- * Receive proxies from the Relay Chain.
15967
+ * Some downward messages have been received and will be processed.
15903
15968
  **/
15904
- | { name: 'ReceiveProxyProxies'; params: { proxies: Array<PalletRcMigratorProxyRcProxy> } }
15969
+ | { name: 'DownwardMessagesReceived'; data: { count: number } }
15905
15970
  /**
15906
- * Receive proxy announcements from the Relay Chain.
15971
+ * Downward messages were processed using the given weight.
15907
15972
  **/
15908
- | { name: 'ReceiveProxyAnnouncements'; params: { announcements: Array<PalletRcMigratorProxyRcProxyAnnouncement> } }
15909
- | { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
15910
- | {
15911
- name: 'ReceivePreimageRequestStatus';
15912
- params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusPortableRequestStatus> };
15913
- }
15914
- | {
15915
- name: 'ReceivePreimageLegacyStatus';
15916
- params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
15917
- }
15918
- | { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
15919
- | { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
15973
+ | { name: 'DownwardMessagesProcessed'; data: { weightUsed: SpWeightsWeightV2Weight; dmqHead: H256 } }
15920
15974
  /**
15921
- * Receive referendum counts, deciding counts, votes for the track queue.
15975
+ * An upward message was sent to the relay chain.
15922
15976
  **/
15923
- | { name: 'ReceiveReferendaValues'; params: { values: Array<PalletRcMigratorReferendaReferendaMessage> } }
15977
+ | { name: 'UpwardMessageSent'; data: { messageHash?: FixedBytes<32> | undefined } };
15978
+
15979
+ /**
15980
+ * The `Event` enum of this pallet
15981
+ **/
15982
+ export type PalletPreimageEvent =
15924
15983
  /**
15925
- * Receive referendums from the Relay Chain.
15984
+ * A preimage has been noted.
15926
15985
  **/
15927
- | { name: 'ReceiveReferendums'; params: { referendums: Array<[number, PalletReferendaReferendumInfo]> } }
15928
- | { name: 'ReceiveClaims'; params: { messages: Array<PalletRcMigratorClaimsRcClaimsMessage> } }
15929
- | {
15930
- name: 'ReceiveBagsListMessages';
15931
- params: { messages: Array<PalletRcMigratorStakingBagsListPortableBagsListMessage> };
15932
- }
15933
- | { name: 'ReceiveSchedulerMessages'; params: { messages: Array<PalletRcMigratorSchedulerRcSchedulerMessage> } }
15934
- | { name: 'ReceiveIndices'; params: { indices: Array<PalletRcMigratorIndicesRcIndicesIndex> } }
15935
- | {
15936
- name: 'ReceiveConvictionVotingMessages';
15937
- params: { messages: Array<PalletRcMigratorConvictionVotingRcConvictionVotingMessage> };
15938
- }
15939
- | { name: 'ReceiveBountiesMessages'; params: { messages: Array<PalletRcMigratorBountiesRcBountiesMessage> } }
15940
- | {
15941
- name: 'ReceiveAssetRates';
15942
- params: { rates: Array<[PolkadotRuntimeCommonImplsVersionedLocatableAsset, FixedU128]> };
15943
- }
15944
- | { name: 'ReceiveCrowdloanMessages'; params: { messages: Array<PalletRcMigratorCrowdloanRcCrowdloanMessage> } }
15945
- | { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
15946
- | { name: 'ReceiveTreasuryMessages'; params: { messages: Array<PalletRcMigratorTreasuryPortableTreasuryMessage> } }
15947
- | {
15948
- name: 'ReceiveSchedulerAgendaMessages';
15949
- params: { messages: Array<PalletRcMigratorSchedulerSchedulerAgendaMessage> };
15950
- }
15951
- | {
15952
- name: 'ReceiveDelegatedStakingMessages';
15953
- params: { messages: Array<PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage> };
15954
- }
15955
- | {
15956
- name: 'ReceiveChildBountiesMessages';
15957
- params: { messages: Array<PalletRcMigratorChildBountiesPortableChildBountiesMessage> };
15958
- }
15959
- | {
15960
- name: 'ReceiveStakingMessages';
15961
- params: { messages: Array<PalletRcMigratorStakingMessagePortableStakingMessage> };
15962
- }
15963
- /**
15964
- * Set the migration stage.
15965
- *
15966
- * This call is intended for emergency use only and is guarded by the
15967
- * [`Config::AdminOrigin`].
15968
- **/
15969
- | { name: 'ForceSetStage'; params: { stage: PalletAhMigratorMigrationStage } }
15970
- /**
15971
- * Start the data migration.
15972
- *
15973
- * This is typically called by the Relay Chain to start the migration on the Asset Hub and
15974
- * receive a handshake message indicating the Asset Hub's readiness.
15975
- **/
15976
- | { name: 'StartMigration' }
15977
- /**
15978
- * Set the DMP queue priority configuration.
15979
- *
15980
- * Can only be called by the `AdminOrigin`.
15981
- **/
15982
- | { name: 'SetDmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
15983
- /**
15984
- * Set the manager account id.
15985
- *
15986
- * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
15987
- * can not set the manager account id via `set_manager` call.
15988
- **/
15989
- | { name: 'SetManager'; params: { new?: AccountId32Like | undefined } }
15990
- /**
15991
- * Finish the migration.
15992
- *
15993
- * This is typically called by the Relay Chain to signal the migration has finished.
15994
- *
15995
- * The `data` parameter might be `None` if we are running the migration for a second time
15996
- * for some pallets and have already performed the checking account balance correction,
15997
- * so we do not need to do it this time.
15998
- **/
15999
- | {
16000
- name: 'FinishMigration';
16001
- params: { data?: PalletRcMigratorMigrationFinishedData | undefined; coolOffEndAt: number };
16002
- }
16003
- /**
16004
- * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
16005
- * [Config::SendXcm] router which will be able to send messages to the Relay Chain during
16006
- * the migration.
16007
- **/
16008
- | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } };
16009
-
16010
- export type PalletRcMigratorAccountsAccount = {
16011
- who: AccountId32;
16012
- free: bigint;
16013
- reserved: bigint;
16014
- frozen: bigint;
16015
- holds: Array<FrameSupportTokensMiscIdAmount>;
16016
- freezes: Array<FrameSupportTokensMiscIdAmountPortableFreezeReason>;
16017
- locks: Array<PalletBalancesBalanceLock>;
16018
- unnamedReserve: bigint;
16019
- consumers: number;
16020
- providers: number;
16021
- };
16022
-
16023
- export type PalletRcMigratorPortableHoldReason =
16024
- | { type: 'Preimage'; value: PalletPreimageHoldReason }
16025
- | { type: 'Staking'; value: PalletStakingPalletHoldReason }
16026
- | { type: 'StateTrieMigration'; value: PalletStateTrieMigrationHoldReason }
16027
- | { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
16028
- | { type: 'Session'; value: PalletSessionHoldReason }
16029
- | { type: 'XcmPallet'; value: PalletXcmHoldReason };
16030
-
16031
- export type PalletPreimageHoldReason = 'Preimage';
16032
-
16033
- export type PalletStakingPalletHoldReason = 'Staking';
16034
-
16035
- export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
16036
-
16037
- export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
16038
-
16039
- export type PalletSessionHoldReason = 'Keys';
16040
-
16041
- export type PalletXcmHoldReason = 'AuthorizeAlias';
16042
-
16043
- export type PalletRcMigratorPortableFreezeReason = {
16044
- type: 'NominationPools';
16045
- value: PalletNominationPoolsFreezeReason;
16046
- };
16047
-
16048
- export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
16049
-
16050
- export type FrameSupportTokensMiscIdAmount = { id: PalletRcMigratorPortableHoldReason; amount: bigint };
16051
-
16052
- export type FrameSupportTokensMiscIdAmountPortableFreezeReason = {
16053
- id: PalletRcMigratorPortableFreezeReason;
16054
- amount: bigint;
16055
- };
16056
-
16057
- export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
16058
-
16059
- export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
16060
-
16061
- export type PalletRcMigratorMultisigRcMultisig = { creator: AccountId32; deposit: bigint };
16062
-
16063
- export type PalletRcMigratorProxyRcProxy = {
16064
- delegator: AccountId32;
16065
- deposit: bigint;
16066
- proxies: Array<PalletProxyProxyDefinition>;
16067
- };
16068
-
16069
- export type PolkadotRuntimeConstantsProxyProxyType =
16070
- | 'Any'
16071
- | 'NonTransfer'
16072
- | 'Governance'
16073
- | 'Staking'
16074
- | 'CancelProxy'
16075
- | 'Auction'
16076
- | 'NominationPools'
16077
- | 'ParaRegistration';
16078
-
16079
- export type PalletProxyProxyDefinition = {
16080
- delegate: AccountId32;
16081
- proxyType: PolkadotRuntimeConstantsProxyProxyType;
16082
- delay: number;
16083
- };
16084
-
16085
- export type PalletRcMigratorProxyRcProxyAnnouncement = { depositor: AccountId32; deposit: bigint };
16086
-
16087
- export type PalletRcMigratorPreimageChunksRcPreimageChunk = {
16088
- preimageHash: H256;
16089
- preimageLen: number;
16090
- chunkByteOffset: number;
16091
- chunkBytes: Bytes;
16092
- };
16093
-
16094
- export type PalletRcMigratorPreimageRequestStatusPortableRequestStatus = {
16095
- hash: H256;
16096
- requestStatus: PalletRcMigratorPreimageRequestStatusPortableRequestStatusInner;
16097
- };
16098
-
16099
- export type PalletRcMigratorPreimageRequestStatusPortableRequestStatusInner =
16100
- | { type: 'Unrequested'; value: { ticket: [AccountId32, Bytes]; len: number } }
16101
- | {
16102
- type: 'Requested';
16103
- value: { maybeTicket?: [AccountId32, Bytes] | undefined; count: number; maybeLen?: number | undefined };
16104
- };
16105
-
16106
- export type PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus = {
16107
- hash: H256;
16108
- depositor: AccountId32;
16109
- deposit: bigint;
16110
- };
16111
-
16112
- export type PalletRcMigratorStakingNomPoolsRcNomPoolsMessage =
16113
- | { type: 'StorageValues'; value: { values: PalletRcMigratorStakingNomPoolsNomPoolsStorageValues } }
16114
- | { type: 'PoolMembers'; value: { member: [AccountId32, PalletNominationPoolsPoolMember] } }
16115
- | { type: 'BondedPools'; value: { pool: [number, PalletNominationPoolsBondedPoolInner] } }
16116
- | { type: 'RewardPools'; value: { rewards: [number, PalletRcMigratorStakingNomPoolsAliasRewardPool] } }
16117
- | { type: 'SubPoolsStorage'; value: { subPools: [number, PalletRcMigratorStakingNomPoolsAliasSubPools] } }
16118
- | { type: 'Metadata'; value: { meta: [number, Bytes] } }
16119
- | { type: 'ReversePoolIdLookup'; value: { lookups: [AccountId32, number] } }
16120
- | { type: 'ClaimPermissions'; value: { perms: [AccountId32, PalletNominationPoolsClaimPermission] } };
16121
-
16122
- export type PalletRcMigratorStakingNomPoolsNomPoolsStorageValues = {
16123
- totalValueLocked?: bigint | undefined;
16124
- minJoinBond?: bigint | undefined;
16125
- minCreateBond?: bigint | undefined;
16126
- maxPools?: number | undefined;
16127
- maxPoolMembers?: number | undefined;
16128
- maxPoolMembersPerPool?: number | undefined;
16129
- globalMaxCommission?: Perbill | undefined;
16130
- lastPoolId?: number | undefined;
16131
- };
16132
-
16133
- export type PalletNominationPoolsPoolMember = {
16134
- poolId: number;
16135
- points: bigint;
16136
- lastRecordedRewardCounter: FixedU128;
16137
- unbondingEras: Array<[number, bigint]>;
16138
- };
16139
-
16140
- export type PalletNominationPoolsBondedPoolInner = {
16141
- commission: PalletNominationPoolsCommission;
16142
- memberCounter: number;
16143
- points: bigint;
16144
- roles: PalletNominationPoolsPoolRoles;
16145
- state: PalletNominationPoolsPoolState;
16146
- };
16147
-
16148
- export type PalletNominationPoolsCommission = {
16149
- current?: [Perbill, AccountId32] | undefined;
16150
- max?: Perbill | undefined;
16151
- changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
16152
- throttleFrom?: number | undefined;
16153
- claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
16154
- };
16155
-
16156
- export type PalletNominationPoolsPoolRoles = {
16157
- depositor: AccountId32;
16158
- root?: AccountId32 | undefined;
16159
- nominator?: AccountId32 | undefined;
16160
- bouncer?: AccountId32 | undefined;
16161
- };
16162
-
16163
- export type PalletRcMigratorStakingNomPoolsAliasRewardPool = {
16164
- lastRecordedRewardCounter: FixedU128;
16165
- lastRecordedTotalPayouts: bigint;
16166
- totalRewardsClaimed: bigint;
16167
- totalCommissionPending: bigint;
16168
- totalCommissionClaimed: bigint;
16169
- };
16170
-
16171
- export type PalletRcMigratorStakingNomPoolsAliasSubPools = {
16172
- noEra: PalletRcMigratorStakingNomPoolsAliasUnbondPool;
16173
- withEra: Array<[number, PalletRcMigratorStakingNomPoolsAliasUnbondPool]>;
16174
- };
16175
-
16176
- export type PalletRcMigratorStakingNomPoolsAliasUnbondPool = { points: bigint; balance: bigint };
16177
-
16178
- export type PalletRcMigratorVestingRcVestingSchedule = { who: AccountId32; schedules: Array<PalletVestingVestingInfo> };
16179
-
16180
- export type PalletRcMigratorReferendaReferendaMessage = {
16181
- referendumCount?: number | undefined;
16182
- decidingCount: Array<[number, number]>;
16183
- trackQueue: Array<[number, Array<[number, bigint]>]>;
16184
- };
16185
-
16186
- export type PalletReferendaReferendumInfo =
16187
- | { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
16188
- | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
16189
- | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
16190
- | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
16191
- | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
16192
- | { type: 'Killed'; value: number };
16193
-
16194
- export type AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin =
16195
- | { type: 'System'; value: FrameSupportDispatchRawOrigin }
16196
- | { type: 'Origins'; value: AssetHubPolkadotRuntimeGovernanceOriginsPalletCustomOriginsOrigin };
16197
-
16198
- export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
16199
-
16200
- export type PalletReferendaReferendumStatus = {
16201
- track: number;
16202
- origin: AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin;
16203
- proposal: FrameSupportPreimagesBounded;
16204
- enactment: FrameSupportScheduleDispatchTime;
16205
- submitted: number;
16206
- submissionDeposit: PalletReferendaDeposit;
16207
- decisionDeposit?: PalletReferendaDeposit | undefined;
16208
- deciding?: PalletReferendaDecidingStatus | undefined;
16209
- tally: PalletConvictionVotingTally;
16210
- inQueue: boolean;
16211
- alarm?: [number, [number, number]] | undefined;
16212
- };
16213
-
16214
- export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
16215
-
16216
- export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
16217
-
16218
- export type PalletRcMigratorClaimsRcClaimsMessage =
16219
- | { type: 'StorageValues'; value: { total: bigint } }
16220
- | { type: 'Claims'; value: [EthereumAddress, bigint] }
16221
- | { type: 'Vesting'; value: { who: EthereumAddress; schedule: [bigint, bigint, number] } }
16222
- | { type: 'Signing'; value: [EthereumAddress, PolkadotRuntimeCommonClaimsStatementKind] }
16223
- | { type: 'Preclaims'; value: [AccountId32, EthereumAddress] };
16224
-
16225
- export type PalletRcMigratorStakingBagsListPortableBagsListMessage =
16226
- | { type: 'Node'; value: { id: AccountId32; node: PalletRcMigratorStakingBagsListPortableNode } }
16227
- | { type: 'Bag'; value: { score: bigint; bag: PalletRcMigratorStakingBagsListPortableBag } };
16228
-
16229
- export type PalletRcMigratorStakingBagsListPortableNode = {
16230
- id: AccountId32;
16231
- prev?: AccountId32 | undefined;
16232
- next?: AccountId32 | undefined;
16233
- bagUpper: bigint;
16234
- score: bigint;
16235
- };
16236
-
16237
- export type PalletRcMigratorStakingBagsListPortableBag = {
16238
- head?: AccountId32 | undefined;
16239
- tail?: AccountId32 | undefined;
16240
- bagUpper: bigint;
16241
- };
16242
-
16243
- export type PalletRcMigratorSchedulerRcSchedulerMessage =
16244
- | { type: 'IncompleteSince'; value: number }
16245
- | { type: 'Retries'; value: [[number, number], PalletSchedulerRetryConfig] }
16246
- | { type: 'Lookup'; value: [FixedBytes<32>, [number, number]] };
16247
-
16248
- export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
16249
-
16250
- export type PalletRcMigratorIndicesRcIndicesIndex = {
16251
- index: number;
16252
- who: AccountId32;
16253
- deposit: bigint;
16254
- frozen: boolean;
16255
- };
16256
-
16257
- export type PalletRcMigratorConvictionVotingRcConvictionVotingMessage =
16258
- | { type: 'VotingFor'; value: [AccountId32, number, PalletConvictionVotingVoteVoting] }
16259
- | { type: 'ClassLocksFor'; value: [AccountId32, Array<[number, bigint]>] };
16260
-
16261
- export type PalletConvictionVotingVoteVoting =
16262
- | { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
16263
- | { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
16264
-
16265
- export type PalletConvictionVotingVoteCasting = {
16266
- votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
16267
- delegations: PalletConvictionVotingDelegations;
16268
- prior: PalletConvictionVotingVotePriorLock;
16269
- };
16270
-
16271
- export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
16272
-
16273
- export type PalletConvictionVotingVotePriorLock = [number, bigint];
16274
-
16275
- export type PalletConvictionVotingVoteDelegating = {
16276
- balance: bigint;
16277
- target: AccountId32;
16278
- conviction: PalletConvictionVotingConviction;
16279
- delegations: PalletConvictionVotingDelegations;
16280
- prior: PalletConvictionVotingVotePriorLock;
16281
- };
16282
-
16283
- export type PalletRcMigratorBountiesRcBountiesMessage =
16284
- | { type: 'BountyCount'; value: number }
16285
- | { type: 'BountyApprovals'; value: Array<number> }
16286
- | { type: 'BountyDescriptions'; value: [number, Bytes] }
16287
- | { type: 'Bounties'; value: [number, PalletRcMigratorBountiesAliasBounty] };
16288
-
16289
- export type PalletRcMigratorBountiesAliasBounty = {
16290
- proposer: AccountId32;
16291
- value: bigint;
16292
- fee: bigint;
16293
- curatorDeposit: bigint;
16294
- bond: bigint;
16295
- status: PalletBountiesBountyStatus;
16296
- };
16297
-
16298
- export type PalletBountiesBountyStatus =
16299
- | { type: 'Proposed' }
16300
- | { type: 'Approved' }
16301
- | { type: 'Funded' }
16302
- | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
16303
- | { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
16304
- | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
16305
- | { type: 'ApprovedWithCurator'; value: { curator: AccountId32 } };
16306
-
16307
- export type PalletRcMigratorCrowdloanRcCrowdloanMessage =
16308
- | {
16309
- type: 'LeaseReserve';
16310
- value: {
16311
- unreserveBlock: number;
16312
- account: AccountId32;
16313
- paraId: PolkadotParachainPrimitivesPrimitivesId;
16314
- amount: bigint;
16315
- };
16316
- }
16317
- | {
16318
- type: 'CrowdloanContribution';
16319
- value: {
16320
- withdrawBlock: number;
16321
- contributor: AccountId32;
16322
- paraId: PolkadotParachainPrimitivesPrimitivesId;
16323
- amount: bigint;
16324
- crowdloanAccount: AccountId32;
16325
- };
16326
- }
16327
- | {
16328
- type: 'CrowdloanReserve';
16329
- value: {
16330
- unreserveBlock: number;
16331
- depositor: AccountId32;
16332
- paraId: PolkadotParachainPrimitivesPrimitivesId;
16333
- amount: bigint;
16334
- };
16335
- };
16336
-
16337
- export type PalletRcMigratorTreasuryPortableTreasuryMessage =
16338
- | { type: 'ProposalCount'; value: number }
16339
- | { type: 'Proposals'; value: [number, PalletTreasuryProposal] }
16340
- | { type: 'Approvals'; value: Array<number> }
16341
- | { type: 'SpendCount'; value: number }
16342
- | { type: 'Spends'; value: { id: number; status: PalletRcMigratorTreasuryPortableSpendStatus } }
16343
- | { type: 'LastSpendPeriod'; value?: number | undefined }
16344
- | { type: 'Funds' };
16345
-
16346
- export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; beneficiary: AccountId32; bond: bigint };
16347
-
16348
- export type PalletRcMigratorTreasuryPortableSpendStatus = {
16349
- assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
16350
- amount: bigint;
16351
- beneficiary: XcmVersionedLocation;
16352
- validFrom: number;
16353
- expireAt: number;
16354
- status: PalletRcMigratorTreasuryPortablePaymentState;
16355
- };
16356
-
16357
- export type PalletRcMigratorTreasuryPortablePaymentState =
16358
- | { type: 'Pending' }
16359
- | { type: 'Attempted'; value: { id: bigint } }
16360
- | { type: 'Failed' };
16361
-
16362
- export type PalletRcMigratorSchedulerSchedulerAgendaMessage = {
16363
- block: number;
16364
- agenda: Array<PalletRcMigratorSchedulerAliasScheduled | undefined>;
16365
- };
16366
-
16367
- export type PalletRcMigratorSchedulerAliasScheduled = {
16368
- maybeId?: FixedBytes<32> | undefined;
16369
- priority: number;
16370
- call: FrameSupportPreimagesBounded;
16371
- maybePeriodic?: [number, number] | undefined;
16372
- origin: AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin;
16373
- };
16374
-
16375
- export type PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage =
16376
- | { type: 'Delegators'; value: { delegator: AccountId32; agent: AccountId32; amount: bigint } }
16377
- | {
16378
- type: 'Agents';
16379
- value: {
16380
- agent: AccountId32;
16381
- payee: AccountId32;
16382
- totalDelegated: bigint;
16383
- unclaimedWithdrawals: bigint;
16384
- pendingSlash: bigint;
16385
- };
16386
- };
16387
-
16388
- export type PalletRcMigratorChildBountiesPortableChildBountiesMessage =
16389
- | { type: 'ChildBountyCount'; value: number }
16390
- | { type: 'ParentChildBounties'; value: [number, number] }
16391
- | { type: 'ParentTotalChildBounties'; value: [number, number] }
16392
- | {
16393
- type: 'ChildBounty';
16394
- value: { parentId: number; childId: number; childBounty: PalletRcMigratorChildBountiesPortableChildBounty };
16395
- }
16396
- | { type: 'ChildBountyDescriptionsV1'; value: { parentId: number; childId: number; description: Bytes } }
16397
- | { type: 'V0ToV1ChildBountyIds'; value: { v0ChildId: number; parentId: number; v1ChildId: number } }
16398
- | { type: 'ChildrenCuratorFees'; value: { childId: number; amount: bigint } };
16399
-
16400
- export type PalletRcMigratorChildBountiesPortableChildBounty = {
16401
- parentBounty: number;
16402
- value: bigint;
16403
- fee: bigint;
16404
- curatorDeposit: bigint;
16405
- status: PalletRcMigratorChildBountiesPortableChildBountyStatus;
16406
- };
16407
-
16408
- export type PalletRcMigratorChildBountiesPortableChildBountyStatus =
16409
- | { type: 'Added' }
16410
- | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
16411
- | { type: 'Active'; value: { curator: AccountId32 } }
16412
- | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } };
16413
-
16414
- export type PalletRcMigratorStakingMessagePortableStakingMessage =
16415
- | { type: 'Values'; value: PalletRcMigratorStakingMessageStakingValues }
16416
- | { type: 'Invulnerables'; value: Array<AccountId32> }
16417
- | { type: 'Bonded'; value: { stash: AccountId32; controller: AccountId32 } }
16418
- | { type: 'Ledger'; value: { controller: AccountId32; ledger: PalletRcMigratorStakingMessagePortableStakingLedger } }
16419
- | { type: 'Payee'; value: { stash: AccountId32; payment: PalletRcMigratorStakingMessagePortableRewardDestination } }
16420
- | {
16421
- type: 'Validators';
16422
- value: { stash: AccountId32; validators: PalletRcMigratorStakingMessagePortableValidatorPrefs };
16423
- }
16424
- | {
16425
- type: 'Nominators';
16426
- value: { stash: AccountId32; nominations: PalletRcMigratorStakingMessagePortableNominations };
16427
- }
16428
- | { type: 'VirtualStakers'; value: AccountId32 }
16429
- | {
16430
- type: 'ErasStakersOverview';
16431
- value: {
16432
- era: number;
16433
- validator: AccountId32;
16434
- exposure: PalletRcMigratorStakingMessagePortablePagedExposureMetadata;
16435
- };
16436
- }
16437
- | {
16438
- type: 'ErasStakersPaged';
16439
- value: {
16440
- era: number;
16441
- validator: AccountId32;
16442
- page: number;
16443
- exposure: PalletRcMigratorStakingMessagePortableExposurePage;
16444
- };
16445
- }
16446
- | { type: 'ClaimedRewards'; value: { era: number; validator: AccountId32; rewards: Array<number> } }
16447
- | {
16448
- type: 'ErasValidatorPrefs';
16449
- value: { era: number; validator: AccountId32; prefs: PalletRcMigratorStakingMessagePortableValidatorPrefs };
16450
- }
16451
- | { type: 'ErasValidatorReward'; value: { era: number; reward: bigint } }
16452
- | { type: 'ErasRewardPoints'; value: { era: number; points: PalletRcMigratorStakingMessagePortableEraRewardPoints } }
16453
- | { type: 'ErasTotalStake'; value: { era: number; totalStake: bigint } }
16454
- | { type: 'UnappliedSlashes'; value: { era: number; slash: PalletRcMigratorStakingMessagePortableUnappliedSlash } }
16455
- | { type: 'BondedEras'; value: Array<[number, number]> }
16456
- | { type: 'ValidatorSlashInEra'; value: { era: number; validator: AccountId32; slash: [Perbill, bigint] } };
16457
-
16458
- export type PalletRcMigratorStakingMessageStakingValues = {
16459
- validatorCount?: number | undefined;
16460
- minValidatorCount?: number | undefined;
16461
- minNominatorBond?: bigint | undefined;
16462
- minValidatorBond?: bigint | undefined;
16463
- minActiveStake?: bigint | undefined;
16464
- minCommission?: Perbill | undefined;
16465
- maxValidatorsCount?: number | undefined;
16466
- maxNominatorsCount?: number | undefined;
16467
- currentEra?: number | undefined;
16468
- activeEra?: PalletRcMigratorStakingMessagePortableActiveEraInfo | undefined;
16469
- forceEra?: PalletRcMigratorStakingMessagePortableForcing | undefined;
16470
- maxStakedRewards?: Percent | undefined;
16471
- slashRewardFraction?: Perbill | undefined;
16472
- canceledSlashPayout?: bigint | undefined;
16473
- currentPlannedSession?: number | undefined;
16474
- chillThreshold?: Percent | undefined;
16475
- };
16476
-
16477
- export type PalletRcMigratorStakingMessagePortableActiveEraInfo = { index: number; start?: bigint | undefined };
16478
-
16479
- export type PalletRcMigratorStakingMessagePortableForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
16480
-
16481
- export type PalletRcMigratorStakingMessagePortableStakingLedger = {
16482
- stash: AccountId32;
16483
- total: bigint;
16484
- active: bigint;
16485
- unlocking: Array<PalletRcMigratorStakingMessagePortableUnlockChunk>;
16486
- };
16487
-
16488
- export type PalletRcMigratorStakingMessagePortableUnlockChunk = { value: bigint; era: number };
16489
-
16490
- export type PalletRcMigratorStakingMessagePortableRewardDestination =
16491
- | { type: 'Staked' }
16492
- | { type: 'Stash' }
16493
- | { type: 'Controller' }
16494
- | { type: 'Account'; value: AccountId32 }
16495
- | { type: 'None' };
16496
-
16497
- export type PalletRcMigratorStakingMessagePortableValidatorPrefs = { commission: Perbill; blocked: boolean };
16498
-
16499
- export type PalletRcMigratorStakingMessagePortableNominations = {
16500
- targets: Array<AccountId32>;
16501
- submittedIn: number;
16502
- suppressed: boolean;
16503
- };
16504
-
16505
- export type PalletRcMigratorStakingMessagePortablePagedExposureMetadata = {
16506
- total: bigint;
16507
- own: bigint;
16508
- nominatorCount: number;
16509
- pageCount: number;
16510
- };
16511
-
16512
- export type PalletRcMigratorStakingMessagePortableExposurePage = {
16513
- pageTotal: bigint;
16514
- others: Array<PalletRcMigratorStakingMessagePortableIndividualExposure>;
16515
- };
16516
-
16517
- export type PalletRcMigratorStakingMessagePortableIndividualExposure = { who: AccountId32; value: bigint };
16518
-
16519
- export type PalletRcMigratorStakingMessagePortableEraRewardPoints = {
16520
- total: number;
16521
- individual: Array<[AccountId32, number]>;
16522
- };
16523
-
16524
- export type PalletRcMigratorStakingMessagePortableUnappliedSlash = {
16525
- validator: AccountId32;
16526
- own: bigint;
16527
- others: Array<[AccountId32, bigint]>;
16528
- reporters: Array<AccountId32>;
16529
- payout: bigint;
16530
- };
16531
-
16532
- export type PalletAhMigratorMigrationStage =
16533
- | { type: 'Pending' }
16534
- | { type: 'DataMigrationOngoing' }
16535
- | { type: 'MigrationDone' }
16536
- | { type: 'CoolOff'; value: { endAt: number } };
16537
-
16538
- export type PalletRcMigratorQueuePriority =
16539
- | { type: 'Config' }
16540
- | { type: 'OverrideConfig'; value: [number, number] }
16541
- | { type: 'Disabled' };
16542
-
16543
- export type PalletRcMigratorMigrationFinishedData = { rcBalanceKept: bigint };
16544
-
16545
- export type FrameSystemExtensionsAuthorizeCall = {};
16546
-
16547
- export type FrameSystemExtensionsCheckNonZeroSender = {};
16548
-
16549
- export type FrameSystemExtensionsCheckSpecVersion = {};
16550
-
16551
- export type FrameSystemExtensionsCheckTxVersion = {};
16552
-
16553
- export type FrameSystemExtensionsCheckGenesis = {};
16554
-
16555
- export type FrameSystemExtensionsCheckMortality = Era;
16556
-
16557
- export type FrameSystemExtensionsCheckNonce = number;
16558
-
16559
- export type FrameSystemExtensionsCheckWeight = {};
16560
-
16561
- export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
16562
- tip: bigint;
16563
- assetId?: StagingXcmV5Location | undefined;
16564
- };
16565
-
16566
- export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
16567
-
16568
- export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
16569
-
16570
- export type PalletReviveEvmTxExtensionSetOrigin = {};
16571
-
16572
- export type FrameSystemAccountInfo = {
16573
- nonce: number;
16574
- consumers: number;
16575
- providers: number;
16576
- sufficients: number;
16577
- data: PalletBalancesAccountData;
16578
- };
16579
-
16580
- export type PalletBalancesAccountData = {
16581
- free: bigint;
16582
- reserved: bigint;
16583
- frozen: bigint;
16584
- flags: PalletBalancesExtraFlags;
16585
- };
16586
-
16587
- export type PalletBalancesExtraFlags = bigint;
16588
-
16589
- export type FrameSupportDispatchPerDispatchClass = {
16590
- normal: SpWeightsWeightV2Weight;
16591
- operational: SpWeightsWeightV2Weight;
16592
- mandatory: SpWeightsWeightV2Weight;
16593
- };
16594
-
16595
- export type FrameSystemEventRecord = { phase: Phase; event: AssetHubPolkadotRuntimeRuntimeEvent; topics: Array<H256> };
16596
-
16597
- export type AssetHubPolkadotRuntimeRuntimeEvent =
16598
- | { pallet: 'System'; palletEvent: FrameSystemEvent }
16599
- | { pallet: 'ParachainSystem'; palletEvent: CumulusPalletParachainSystemEvent }
16600
- | { pallet: 'Preimage'; palletEvent: PalletPreimageEvent }
16601
- | { pallet: 'Scheduler'; palletEvent: PalletSchedulerEvent }
16602
- | { pallet: 'Parameters'; palletEvent: PalletParametersEvent }
16603
- | { pallet: 'MultiBlockMigrations'; palletEvent: PalletMigrationsEvent }
16604
- | { pallet: 'Balances'; palletEvent: PalletBalancesEvent }
16605
- | { pallet: 'TransactionPayment'; palletEvent: PalletTransactionPaymentEvent }
16606
- | { pallet: 'AssetTxPayment'; palletEvent: PalletAssetConversionTxPaymentEvent }
16607
- | { pallet: 'Vesting'; palletEvent: PalletVestingEvent }
16608
- | { pallet: 'Claims'; palletEvent: PolkadotRuntimeCommonClaimsPalletEvent }
16609
- | { pallet: 'CollatorSelection'; palletEvent: PalletCollatorSelectionEvent }
16610
- | { pallet: 'Session'; palletEvent: PalletSessionEvent }
16611
- | { pallet: 'XcmpQueue'; palletEvent: CumulusPalletXcmpQueueEvent }
16612
- | { pallet: 'PolkadotXcm'; palletEvent: PalletXcmEvent }
16613
- | { pallet: 'CumulusXcm'; palletEvent: CumulusPalletXcmEvent }
16614
- | { pallet: 'ToKusamaXcmRouter'; palletEvent: PalletXcmBridgeHubRouterEvent }
16615
- | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
16616
- | { pallet: 'SnowbridgeSystemFrontend'; palletEvent: SnowbridgePalletSystemFrontendEvent }
16617
- | { pallet: 'Utility'; palletEvent: PalletUtilityEvent }
16618
- | { pallet: 'Multisig'; palletEvent: PalletMultisigEvent }
16619
- | { pallet: 'Proxy'; palletEvent: PalletProxyEvent }
16620
- | { pallet: 'Indices'; palletEvent: PalletIndicesEvent }
16621
- | { pallet: 'Assets'; palletEvent: PalletAssetsEvent }
16622
- | { pallet: 'Uniques'; palletEvent: PalletUniquesEvent }
16623
- | { pallet: 'Nfts'; palletEvent: PalletNftsEvent }
16624
- | { pallet: 'ForeignAssets'; palletEvent: PalletAssetsEvent002 }
16625
- | { pallet: 'PoolAssets'; palletEvent: PalletAssetsEvent }
16626
- | { pallet: 'AssetConversion'; palletEvent: PalletAssetConversionEvent }
16627
- | { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
16628
- | { pallet: 'ConvictionVoting'; palletEvent: PalletConvictionVotingEvent }
16629
- | { pallet: 'Referenda'; palletEvent: PalletReferendaEvent }
16630
- | { pallet: 'Whitelist'; palletEvent: PalletWhitelistEvent }
16631
- | { pallet: 'Bounties'; palletEvent: PalletBountiesEvent }
16632
- | { pallet: 'ChildBounties'; palletEvent: PalletChildBountiesEvent }
16633
- | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
16634
- | { pallet: 'MultiAssetBounties'; palletEvent: PalletMultiAssetBountiesEvent }
16635
- | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
16636
- | { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
16637
- | { pallet: 'VoterList'; palletEvent: PalletBagsListEvent }
16638
- | { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
16639
- | { pallet: 'StakingRcClient'; palletEvent: PalletStakingAsyncRcClientEvent }
16640
- | { pallet: 'MultiBlockElection'; palletEvent: PalletElectionProviderMultiBlockEvent }
16641
- | { pallet: 'MultiBlockElectionVerifier'; palletEvent: PalletElectionProviderMultiBlockVerifierImplsPalletEvent }
16642
- | { pallet: 'MultiBlockElectionSigned'; palletEvent: PalletElectionProviderMultiBlockSignedPalletEvent }
16643
- | { pallet: 'Staking'; palletEvent: PalletStakingAsyncPalletEvent }
16644
- | { pallet: 'Revive'; palletEvent: PalletReviveEvent }
16645
- | { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent }
16646
- | { pallet: 'AhMigrator'; palletEvent: PalletAhMigratorEvent };
16647
-
16648
- /**
16649
- * Event for the System pallet.
16650
- **/
16651
- export type FrameSystemEvent =
16652
- /**
16653
- * An extrinsic completed successfully.
16654
- **/
16655
- | { name: 'ExtrinsicSuccess'; data: { dispatchInfo: FrameSystemDispatchEventInfo } }
16656
- /**
16657
- * An extrinsic failed.
16658
- **/
16659
- | { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo } }
16660
- /**
16661
- * `:code` was updated.
16662
- **/
16663
- | { name: 'CodeUpdated' }
16664
- /**
16665
- * A new account was created.
16666
- **/
16667
- | { name: 'NewAccount'; data: { account: AccountId32 } }
16668
- /**
16669
- * An account was reaped.
16670
- **/
16671
- | { name: 'KilledAccount'; data: { account: AccountId32 } }
16672
- /**
16673
- * On on-chain remark happened.
16674
- **/
16675
- | { name: 'Remarked'; data: { sender: AccountId32; hash: H256 } }
16676
- /**
16677
- * A [`Task`] has started executing
16678
- **/
16679
- | { name: 'TaskStarted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
16680
- /**
16681
- * A [`Task`] has finished executing.
16682
- **/
16683
- | { name: 'TaskCompleted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
16684
- /**
16685
- * A [`Task`] failed during execution.
16686
- **/
16687
- | { name: 'TaskFailed'; data: { task: AssetHubPolkadotRuntimeRuntimeTask; err: DispatchError } }
16688
- /**
16689
- * An upgrade was authorized.
16690
- **/
16691
- | { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } }
16692
- /**
16693
- * An invalid authorized upgrade was rejected while trying to apply it.
16694
- **/
16695
- | { name: 'RejectedInvalidAuthorizedUpgrade'; data: { codeHash: H256; error: DispatchError } };
16696
-
16697
- export type FrameSystemDispatchEventInfo = {
16698
- weight: SpWeightsWeightV2Weight;
16699
- class: FrameSupportDispatchDispatchClass;
16700
- paysFee: FrameSupportDispatchPays;
16701
- };
16702
-
16703
- export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
16704
-
16705
- export type FrameSupportDispatchPays = 'Yes' | 'No';
16706
-
16707
- export type SpRuntimeProvingTrieTrieError =
16708
- | 'InvalidStateRoot'
16709
- | 'IncompleteDatabase'
16710
- | 'ValueAtIncompleteKey'
16711
- | 'DecoderError'
16712
- | 'InvalidHash'
16713
- | 'DuplicateKey'
16714
- | 'ExtraneousNode'
16715
- | 'ExtraneousValue'
16716
- | 'ExtraneousHashReference'
16717
- | 'InvalidChildReference'
16718
- | 'ValueMismatch'
16719
- | 'IncompleteProof'
16720
- | 'RootMismatch'
16721
- | 'DecodeError';
16722
-
16723
- /**
16724
- * The `Event` enum of this pallet
16725
- **/
16726
- export type CumulusPalletParachainSystemEvent =
16727
- /**
16728
- * The validation function has been scheduled to apply.
16729
- **/
16730
- | { name: 'ValidationFunctionStored' }
16731
- /**
16732
- * The validation function was applied as of the contained relay chain block number.
16733
- **/
16734
- | { name: 'ValidationFunctionApplied'; data: { relayChainBlockNum: number } }
16735
- /**
16736
- * The relay-chain aborted the upgrade process.
16737
- **/
16738
- | { name: 'ValidationFunctionDiscarded' }
16739
- /**
16740
- * Some downward messages have been received and will be processed.
16741
- **/
16742
- | { name: 'DownwardMessagesReceived'; data: { count: number } }
16743
- /**
16744
- * Downward messages were processed using the given weight.
16745
- **/
16746
- | { name: 'DownwardMessagesProcessed'; data: { weightUsed: SpWeightsWeightV2Weight; dmqHead: H256 } }
16747
- /**
16748
- * An upward message was sent to the relay chain.
16749
- **/
16750
- | { name: 'UpwardMessageSent'; data: { messageHash?: FixedBytes<32> | undefined } };
16751
-
16752
- /**
16753
- * The `Event` enum of this pallet
16754
- **/
16755
- export type PalletPreimageEvent =
16756
- /**
16757
- * A preimage has been noted.
16758
- **/
16759
- | { name: 'Noted'; data: { hash: H256 } }
15986
+ | { name: 'Noted'; data: { hash: H256 } }
16760
15987
  /**
16761
15988
  * A preimage has been requested.
16762
15989
  **/
@@ -17167,8 +16394,18 @@ export type AssetHubPolkadotRuntimeRuntimeHoldReason =
17167
16394
  | { type: 'Staking'; value: PalletStakingAsyncPalletHoldReason }
17168
16395
  | { type: 'Revive'; value: PalletReviveHoldReason };
17169
16396
 
16397
+ export type PalletPreimageHoldReason = 'Preimage';
16398
+
16399
+ export type PalletSessionHoldReason = 'Keys';
16400
+
16401
+ export type PalletXcmHoldReason = 'AuthorizeAlias';
16402
+
17170
16403
  export type PalletMultiAssetBountiesHoldReason = 'CuratorDeposit';
17171
16404
 
16405
+ export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
16406
+
16407
+ export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
16408
+
17172
16409
  export type PalletStakingAsyncRcClientHoldReason = 'Keys';
17173
16410
 
17174
16411
  export type PalletElectionProviderMultiBlockSignedPalletHoldReason = 'SignedSubmission';
@@ -18028,7 +17265,23 @@ export type PalletAssetsEvent =
18028
17265
  /**
18029
17266
  * Reserve information was removed for `asset_id`.
18030
17267
  **/
18031
- | { name: 'ReservesRemoved'; data: { assetId: number } };
17268
+ | { name: 'ReservesRemoved'; data: { assetId: number } }
17269
+ /**
17270
+ * Some assets were issued as Credit (no owner yet).
17271
+ **/
17272
+ | { name: 'IssuedCredit'; data: { assetId: number; amount: bigint } }
17273
+ /**
17274
+ * Some assets Credit was destroyed.
17275
+ **/
17276
+ | { name: 'BurnedCredit'; data: { assetId: number; amount: bigint } }
17277
+ /**
17278
+ * Some assets were burned and a Debt was created.
17279
+ **/
17280
+ | { name: 'IssuedDebt'; data: { assetId: number; amount: bigint } }
17281
+ /**
17282
+ * Some assets Debt was destroyed (and assets issued).
17283
+ **/
17284
+ | { name: 'BurnedDebt'; data: { assetId: number; amount: bigint } };
18032
17285
 
18033
17286
  /**
18034
17287
  * The `Event` enum of this pallet
@@ -18538,7 +17791,23 @@ export type PalletAssetsEvent002 =
18538
17791
  /**
18539
17792
  * Reserve information was removed for `asset_id`.
18540
17793
  **/
18541
- | { name: 'ReservesRemoved'; data: { assetId: StagingXcmV5Location } };
17794
+ | { name: 'ReservesRemoved'; data: { assetId: StagingXcmV5Location } }
17795
+ /**
17796
+ * Some assets were issued as Credit (no owner yet).
17797
+ **/
17798
+ | { name: 'IssuedCredit'; data: { assetId: StagingXcmV5Location; amount: bigint } }
17799
+ /**
17800
+ * Some assets Credit was destroyed.
17801
+ **/
17802
+ | { name: 'BurnedCredit'; data: { assetId: StagingXcmV5Location; amount: bigint } }
17803
+ /**
17804
+ * Some assets were burned and a Debt was created.
17805
+ **/
17806
+ | { name: 'IssuedDebt'; data: { assetId: StagingXcmV5Location; amount: bigint } }
17807
+ /**
17808
+ * Some assets Debt was destroyed (and assets issued).
17809
+ **/
17810
+ | { name: 'BurnedDebt'; data: { assetId: StagingXcmV5Location; amount: bigint } };
18542
17811
 
18543
17812
  /**
18544
17813
  * The `Event` enum of this pallet
@@ -19112,6 +18381,8 @@ export type PalletReferendaEvent =
19112
18381
  };
19113
18382
  };
19114
18383
 
18384
+ export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
18385
+
19115
18386
  /**
19116
18387
  * The `Event` enum of this pallet
19117
18388
  **/
@@ -19589,13 +18860,32 @@ export type PalletElectionProviderMultiBlockEvent =
19589
18860
  };
19590
18861
  }
19591
18862
  /**
19592
- * Target snapshot creation failed
18863
+ * Target snapshot creation failed.
19593
18864
  **/
19594
18865
  | { name: 'UnexpectedTargetSnapshotFailed' }
19595
18866
  /**
19596
- * Voter snapshot creation failed
18867
+ * Voter snapshot creation failed.
18868
+ **/
18869
+ | { name: 'UnexpectedVoterSnapshotFailed' }
18870
+ /**
18871
+ * Phase transition could not proceed due to being out of weight.
18872
+ **/
18873
+ | {
18874
+ name: 'UnexpectedPhaseTransitionOutOfWeight';
18875
+ data: {
18876
+ from: PalletElectionProviderMultiBlockPhase;
18877
+ to: PalletElectionProviderMultiBlockPhase;
18878
+ required: SpWeightsWeightV2Weight;
18879
+ had: SpWeightsWeightV2Weight;
18880
+ };
18881
+ }
18882
+ /**
18883
+ * Phase transition could not even begin becaseu of being out of weight.
19597
18884
  **/
19598
- | { name: 'UnexpectedVoterSnapshotFailed' };
18885
+ | {
18886
+ name: 'UnexpectedPhaseTransitionHalt';
18887
+ data: { required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight };
18888
+ };
19599
18889
 
19600
18890
  /**
19601
18891
  * The `Event` enum of this pallet
@@ -19804,307 +19094,106 @@ export type PalletStakingAsyncPalletEvent =
19804
19094
 
19805
19095
  export type PalletStakingAsyncForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
19806
19096
 
19807
- export type PalletStakingAsyncPalletUnexpectedKind = 'EraDurationBoundExceeded' | 'UnknownValidatorActivation';
19808
-
19809
- /**
19810
- * The `Event` enum of this pallet
19811
- **/
19812
- export type PalletReviveEvent =
19813
- /**
19814
- * A custom event emitted by the contract.
19815
- **/
19816
- | {
19817
- name: 'ContractEmitted';
19818
- data: {
19819
- /**
19820
- * The contract that emitted the event.
19821
- **/
19822
- contract: H160;
19823
-
19824
- /**
19825
- * Data supplied by the contract. Metadata generated during contract compilation
19826
- * is needed to decode it.
19827
- **/
19828
- data: Bytes;
19829
-
19830
- /**
19831
- * A list of topics used to index the event.
19832
- * Number of topics is capped by [`limits::NUM_EVENT_TOPICS`].
19833
- **/
19834
- topics: Array<H256>;
19835
- };
19836
- }
19837
- /**
19838
- * Contract deployed by deployer at the specified address.
19839
- **/
19840
- | { name: 'Instantiated'; data: { deployer: H160; contract: H160 } }
19841
- /**
19842
- * Emitted when an Ethereum transaction reverts.
19843
- *
19844
- * Ethereum transactions always complete successfully at the extrinsic level,
19845
- * as even reverted calls must store their `ReceiptInfo`.
19846
- * To distinguish reverted calls from successful ones, this event is emitted
19847
- * for failed Ethereum transactions.
19848
- **/
19849
- | { name: 'EthExtrinsicRevert'; data: { dispatchError: DispatchError } };
19850
-
19851
- /**
19852
- * The `Event` enum of this pallet
19853
- **/
19854
- export type PalletAhOpsEvent =
19855
- /**
19856
- * Some lease reserve could not be unreserved and needs manual cleanup.
19857
- **/
19858
- | {
19859
- name: 'LeaseUnreserveRemaining';
19860
- data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
19861
- }
19862
- /**
19863
- * Some amount for a crowdloan reserve could not be unreserved and needs manual cleanup.
19864
- **/
19865
- | {
19866
- name: 'CrowdloanUnreserveRemaining';
19867
- data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
19868
- }
19869
- /**
19870
- * A sovereign parachain account has been migrated from its child to sibling
19871
- * representation.
19872
- **/
19097
+ export type PalletStakingAsyncPalletUnexpectedKind =
19098
+ | { type: 'EraDurationBoundExceeded' }
19099
+ | { type: 'UnknownValidatorActivation' }
19873
19100
  | {
19874
- name: 'SovereignMigrated';
19875
- data: {
19876
- /**
19877
- * The parachain ID that had its account migrated.
19878
- **/
19879
- paraId: number;
19880
-
19881
- /**
19882
- * The old account that was migrated out of.
19883
- **/
19884
- from: AccountId32;
19885
-
19886
- /**
19887
- * The new account that was migrated into.
19888
- **/
19889
- to: AccountId32;
19890
-
19891
- /**
19892
- * The derivation path that was used to translate the account.
19893
- **/
19894
- derivationPath: Array<number>;
19895
- };
19896
- }
19897
- /**
19898
- * Failed to re-bond some migrated funds.
19899
- **/
19900
- | { name: 'FailedToBond'; data: { account: AccountId32; amount: bigint } };
19101
+ type: 'PagedElectionOutOfWeight';
19102
+ value: { page: number; required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight };
19103
+ };
19901
19104
 
19902
19105
  /**
19903
19106
  * The `Event` enum of this pallet
19904
19107
  **/
19905
- export type PalletAhMigratorEvent =
19906
- /**
19907
- * A stage transition has occurred.
19908
- **/
19909
- | {
19910
- name: 'StageTransition';
19911
- data: {
19912
- /**
19913
- * The old stage before the transition.
19914
- **/
19915
- old: PalletAhMigratorMigrationStage;
19916
-
19917
- /**
19918
- * The new stage after the transition.
19919
- **/
19920
- new: PalletAhMigratorMigrationStage;
19921
- };
19922
- }
19923
- /**
19924
- * We received a batch of messages that will be integrated into a pallet.
19925
- **/
19926
- | { name: 'BatchReceived'; data: { pallet: PalletAhMigratorPalletEventName; count: number } }
19927
- /**
19928
- * We processed a batch of messages for this pallet.
19929
- **/
19930
- | { name: 'BatchProcessed'; data: { pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number } }
19931
- /**
19932
- * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
19933
- * emitted.
19934
- *
19935
- * This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
19936
- * easier to understand. The activation is immediate and affects all events happening
19937
- * afterwards.
19938
- **/
19939
- | { name: 'AssetHubMigrationStarted' }
19940
- /**
19941
- * The Asset Hub Migration finished.
19942
- *
19943
- * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
19944
- * to understand. The finishing is immediate and affects all events happening
19945
- * afterwards.
19946
- **/
19947
- | { name: 'AssetHubMigrationFinished' }
19948
- /**
19949
- * Whether the DMP queue was prioritized for the next block.
19950
- **/
19951
- | {
19952
- name: 'DmpQueuePrioritySet';
19953
- data: {
19954
- /**
19955
- * Indicates if DMP queue was successfully set as priority.
19956
- * If `false`, it means we're in the round-robin phase of our priority pattern
19957
- * (see [`Config::DmpQueuePriorityPattern`]), where no queue gets priority.
19958
- **/
19959
- prioritized: boolean;
19960
-
19961
- /**
19962
- * Current block number within the pattern cycle (1 to period).
19963
- **/
19964
- cycleBlock: number;
19965
-
19966
- /**
19967
- * Total number of blocks in the pattern cycle
19968
- **/
19969
- cyclePeriod: number;
19970
- };
19971
- }
19108
+ export type PalletReviveEvent =
19972
19109
  /**
19973
- * The DMP queue priority config was set.
19110
+ * A custom event emitted by the contract.
19974
19111
  **/
19975
19112
  | {
19976
- name: 'DmpQueuePriorityConfigSet';
19113
+ name: 'ContractEmitted';
19977
19114
  data: {
19978
19115
  /**
19979
- * The old priority pattern.
19116
+ * The contract that emitted the event.
19117
+ **/
19118
+ contract: H160;
19119
+
19120
+ /**
19121
+ * Data supplied by the contract. Metadata generated during contract compilation
19122
+ * is needed to decode it.
19980
19123
  **/
19981
- old: PalletRcMigratorQueuePriority;
19124
+ data: Bytes;
19982
19125
 
19983
19126
  /**
19984
- * The new priority pattern.
19127
+ * A list of topics used to index the event.
19128
+ * Number of topics is capped by [`limits::NUM_EVENT_TOPICS`].
19985
19129
  **/
19986
- new: PalletRcMigratorQueuePriority;
19130
+ topics: Array<H256>;
19987
19131
  };
19988
19132
  }
19989
19133
  /**
19990
- * The balances before the migration were recorded.
19991
- **/
19992
- | { name: 'BalancesBeforeRecordSet'; data: { checkingAccount: bigint; totalIssuance: bigint } }
19993
- /**
19994
- * The balances before the migration were consumed.
19134
+ * Contract deployed by deployer at the specified address.
19995
19135
  **/
19996
- | { name: 'BalancesBeforeRecordConsumed'; data: { checkingAccount: bigint; totalIssuance: bigint } }
19136
+ | { name: 'Instantiated'; data: { deployer: H160; contract: H160 } }
19997
19137
  /**
19998
- * A referendum was cancelled because it could not be mapped.
19138
+ * Emitted when an Ethereum transaction reverts.
19139
+ *
19140
+ * Ethereum transactions always complete successfully at the extrinsic level,
19141
+ * as even reverted calls must store their `ReceiptInfo`.
19142
+ * To distinguish reverted calls from successful ones, this event is emitted
19143
+ * for failed Ethereum transactions.
19999
19144
  **/
20000
- | { name: 'ReferendumCanceled'; data: { id: number } }
19145
+ | { name: 'EthExtrinsicRevert'; data: { dispatchError: DispatchError } };
19146
+
19147
+ /**
19148
+ * The `Event` enum of this pallet
19149
+ **/
19150
+ export type PalletAhOpsEvent =
20001
19151
  /**
20002
- * The manager account id was set.
19152
+ * Some lease reserve could not be unreserved and needs manual cleanup.
20003
19153
  **/
20004
19154
  | {
20005
- name: 'ManagerSet';
20006
- data: {
20007
- /**
20008
- * The old manager account id.
20009
- **/
20010
- old?: AccountId32 | undefined;
20011
-
20012
- /**
20013
- * The new manager account id.
20014
- **/
20015
- new?: AccountId32 | undefined;
20016
- };
20017
- }
20018
- | { name: 'AccountTranslatedParachainSovereign'; data: { from: AccountId32; to: AccountId32 } }
20019
- | {
20020
- name: 'AccountTranslatedParachainSovereignDerived';
20021
- data: { from: AccountId32; to: AccountId32; derivationIndex: number };
19155
+ name: 'LeaseUnreserveRemaining';
19156
+ data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
20022
19157
  }
20023
19158
  /**
20024
- * An XCM message was sent.
19159
+ * Some amount for a crowdloan reserve could not be unreserved and needs manual cleanup.
20025
19160
  **/
20026
19161
  | {
20027
- name: 'XcmSent';
20028
- data: {
20029
- origin: StagingXcmV5Location;
20030
- destination: StagingXcmV5Location;
20031
- message: StagingXcmV5Xcm;
20032
- messageId: FixedBytes<32>;
20033
- };
19162
+ name: 'CrowdloanUnreserveRemaining';
19163
+ data: { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint };
20034
19164
  }
20035
19165
  /**
20036
- * Failed to unreserve a multisig deposit.
19166
+ * A sovereign parachain account has been migrated from its child to sibling
19167
+ * representation.
20037
19168
  **/
20038
19169
  | {
20039
- name: 'FailedToUnreserveMultisigDeposit';
19170
+ name: 'SovereignMigrated';
20040
19171
  data: {
20041
19172
  /**
20042
- * The expected amount of the deposit that was expected to be unreserved.
20043
- **/
20044
- expectedAmount: bigint;
20045
-
20046
- /**
20047
- * The missing amount of the deposit.
19173
+ * The parachain ID that had its account migrated.
20048
19174
  **/
20049
- missingAmount: bigint;
19175
+ paraId: number;
20050
19176
 
20051
19177
  /**
20052
- * The account that the deposit was unreserved from.
20053
- **/
20054
- account: AccountId32;
20055
- };
20056
- }
20057
- /**
20058
- * Failed to unreserve a legacy status preimage deposit.
20059
- **/
20060
- | {
20061
- name: 'FailedToUnreservePreimageDeposit';
20062
- data: {
20063
- /**
20064
- * The expected amount of the deposit that was expected to be unreserved.
19178
+ * The old account that was migrated out of.
20065
19179
  **/
20066
- expectedAmount: bigint;
19180
+ from: AccountId32;
20067
19181
 
20068
19182
  /**
20069
- * The missing amount of the deposit.
19183
+ * The new account that was migrated into.
20070
19184
  **/
20071
- missingAmount: bigint;
19185
+ to: AccountId32;
20072
19186
 
20073
19187
  /**
20074
- * The account that the deposit was unreserved from.
19188
+ * The derivation path that was used to translate the account.
20075
19189
  **/
20076
- account: AccountId32;
19190
+ derivationPath: Array<number>;
20077
19191
  };
20078
- };
20079
-
20080
- export type PalletAhMigratorPalletEventName =
20081
- | 'AssetRates'
20082
- | 'BagsList'
20083
- | 'Balances'
20084
- | 'Bounties'
20085
- | 'ChildBounties'
20086
- | 'Claims'
20087
- | 'ConvictionVoting'
20088
- | 'Crowdloan'
20089
- | 'DelegatedStaking'
20090
- | 'Indices'
20091
- | 'Multisig'
20092
- | 'NomPools'
20093
- | 'PreimageChunk'
20094
- | 'PreimageLegacyStatus'
20095
- | 'PreimageRequestStatus'
20096
- | 'ProxyAnnouncements'
20097
- | 'ProxyProxies'
20098
- | 'Recovery'
20099
- | 'ReferendaMetadata'
20100
- | 'ReferendaReferendums'
20101
- | 'ReferendaValues'
20102
- | 'Scheduler'
20103
- | 'SchedulerAgenda'
20104
- | 'Staking'
20105
- | 'Treasury'
20106
- | 'Vesting'
20107
- | 'Society';
19192
+ }
19193
+ /**
19194
+ * Failed to re-bond some migrated funds.
19195
+ **/
19196
+ | { name: 'FailedToBond'; data: { account: AccountId32; amount: bigint } };
20108
19197
 
20109
19198
  export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
20110
19199
 
@@ -20129,7 +19218,10 @@ export type FrameSystemLimitsWeightsPerClass = {
20129
19218
  reserved?: SpWeightsWeightV2Weight | undefined;
20130
19219
  };
20131
19220
 
20132
- export type FrameSystemLimitsBlockLength = { max: FrameSupportDispatchPerDispatchClassU32 };
19221
+ export type FrameSystemLimitsBlockLength = {
19222
+ max: FrameSupportDispatchPerDispatchClassU32;
19223
+ maxHeaderSize?: number | undefined;
19224
+ };
20133
19225
 
20134
19226
  export type FrameSupportDispatchPerDispatchClassU32 = { normal: number; operational: number; mandatory: number };
20135
19227
 
@@ -20204,6 +19296,14 @@ export type CumulusPalletWeightReclaimStorageWeightReclaim = [
20204
19296
  PalletReviveEvmTxExtensionSetOrigin,
20205
19297
  ];
20206
19298
 
19299
+ export type CumulusPalletParachainSystemBlockWeightBlockWeightMode =
19300
+ | { type: 'FullCore'; value: { context: number } }
19301
+ | {
19302
+ type: 'PotentialFullCore';
19303
+ value: { context: number; firstTransactionIndex?: number | undefined; targetWeight: SpWeightsWeightV2Weight };
19304
+ }
19305
+ | { type: 'FractionOfCore'; value: { context: number; firstTransactionIndex?: number | undefined } };
19306
+
20207
19307
  export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
20208
19308
  usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
20209
19309
  paraHeadHash?: H256 | undefined;
@@ -20278,6 +19378,14 @@ export type PolkadotCorePrimitivesOutboundHrmpMessage = {
20278
19378
  data: Bytes;
20279
19379
  };
20280
19380
 
19381
+ export type CumulusPalletParachainSystemPoVMessages = {
19382
+ relayStorageRootOrHash: H256;
19383
+ coreSelector: number;
19384
+ bundleIndex: number;
19385
+ umpMsgCount: number;
19386
+ hrmpOutboundCount: number;
19387
+ };
19388
+
20281
19389
  /**
20282
19390
  * The `Error` enum of this pallet.
20283
19391
  **/
@@ -20373,6 +19481,8 @@ export type PalletSchedulerScheduled = {
20373
19481
  origin: AssetHubPolkadotRuntimeOriginCaller;
20374
19482
  };
20375
19483
 
19484
+ export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
19485
+
20376
19486
  /**
20377
19487
  * The `Error` enum of this pallet.
20378
19488
  **/
@@ -20407,13 +19517,29 @@ export type PalletMigrationsError =
20407
19517
  **/
20408
19518
  'Ongoing';
20409
19519
 
20410
- export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
19520
+ export type PalletMigrationsMbmIsOngoing = 'Yes' | 'No' | 'Stuck';
20411
19521
 
20412
- export type FrameSupportTokensMiscIdAmountRuntimeHoldReason = {
20413
- id: AssetHubPolkadotRuntimeRuntimeHoldReason;
20414
- amount: bigint;
19522
+ export type PalletMigrationsMbmProgress = {
19523
+ currentMigration: number;
19524
+ totalMigrations: number;
19525
+ currentMigrationSteps: number;
19526
+ currentMigrationMaxSteps?: number | undefined;
19527
+ };
19528
+
19529
+ export type PalletMigrationsMbmStatus = {
19530
+ ongoing: PalletMigrationsMbmIsOngoing;
19531
+ progress?: PalletMigrationsMbmProgress | undefined;
19532
+ prefixes: Array<Bytes>;
20415
19533
  };
20416
19534
 
19535
+ export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
19536
+
19537
+ export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
19538
+
19539
+ export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
19540
+
19541
+ export type FrameSupportTokensMiscIdAmount = { id: AssetHubPolkadotRuntimeRuntimeHoldReason; amount: bigint };
19542
+
20417
19543
  export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = {
20418
19544
  id: AssetHubPolkadotRuntimeRuntimeFreezeReason;
20419
19545
  amount: bigint;
@@ -20424,6 +19550,8 @@ export type AssetHubPolkadotRuntimeRuntimeFreezeReason = {
20424
19550
  value: PalletNominationPoolsFreezeReason;
20425
19551
  };
20426
19552
 
19553
+ export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
19554
+
20427
19555
  /**
20428
19556
  * The `Error` enum of this pallet.
20429
19557
  **/
@@ -20655,10 +19783,13 @@ export type CumulusPalletXcmpQueueOutboundChannelDetails = {
20655
19783
  signalsExist: boolean;
20656
19784
  firstIndex: number;
20657
19785
  lastIndex: number;
19786
+ flags: CumulusPalletXcmpQueueOutboundChannelFlags;
20658
19787
  };
20659
19788
 
20660
19789
  export type CumulusPalletXcmpQueueOutboundState = 'Ok' | 'Suspended';
20661
19790
 
19791
+ export type CumulusPalletXcmpQueueOutboundChannelFlags = { bits: number };
19792
+
20662
19793
  export type CumulusPalletXcmpQueueQueueConfigData = {
20663
19794
  suspendThreshold: number;
20664
19795
  dropThreshold: number;
@@ -21105,7 +20236,7 @@ export type PalletMultisigError =
21105
20236
  **/
21106
20237
  | 'AlreadyStored';
21107
20238
 
21108
- export type PalletProxyProxyDefinitionProxyType = {
20239
+ export type PalletProxyProxyDefinition = {
21109
20240
  delegate: AccountId32;
21110
20241
  proxyType: AssetHubPolkadotRuntimeProxyType;
21111
20242
  delay: number;
@@ -21766,6 +20897,8 @@ export type PalletAssetConversionError =
21766
20897
  **/
21767
20898
  | 'BelowMinimum';
21768
20899
 
20900
+ export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; beneficiary: AccountId32; bond: bigint };
20901
+
21769
20902
  export type PalletTreasurySpendStatus = {
21770
20903
  assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
21771
20904
  amount: bigint;
@@ -21830,6 +20963,28 @@ export type PalletTreasuryError =
21830
20963
  **/
21831
20964
  | 'Inconclusive';
21832
20965
 
20966
+ export type PalletConvictionVotingVoteVoting =
20967
+ | { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
20968
+ | { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
20969
+
20970
+ export type PalletConvictionVotingVoteCasting = {
20971
+ votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
20972
+ delegations: PalletConvictionVotingDelegations;
20973
+ prior: PalletConvictionVotingVotePriorLock;
20974
+ };
20975
+
20976
+ export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
20977
+
20978
+ export type PalletConvictionVotingVotePriorLock = [number, bigint];
20979
+
20980
+ export type PalletConvictionVotingVoteDelegating = {
20981
+ balance: bigint;
20982
+ target: AccountId32;
20983
+ conviction: PalletConvictionVotingConviction;
20984
+ delegations: PalletConvictionVotingDelegations;
20985
+ prior: PalletConvictionVotingVotePriorLock;
20986
+ };
20987
+
21833
20988
  /**
21834
20989
  * The `Error` enum of this pallet.
21835
20990
  **/
@@ -21884,15 +21039,15 @@ export type PalletConvictionVotingError =
21884
21039
  **/
21885
21040
  | 'BadClass';
21886
21041
 
21887
- export type PalletReferendaReferendumInfoOriginCaller =
21888
- | { type: 'Ongoing'; value: PalletReferendaReferendumStatusOriginCaller }
21042
+ export type PalletReferendaReferendumInfo =
21043
+ | { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
21889
21044
  | { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
21890
21045
  | { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
21891
21046
  | { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
21892
21047
  | { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
21893
21048
  | { type: 'Killed'; value: number };
21894
21049
 
21895
- export type PalletReferendaReferendumStatusOriginCaller = {
21050
+ export type PalletReferendaReferendumStatus = {
21896
21051
  track: number;
21897
21052
  origin: AssetHubPolkadotRuntimeOriginCaller;
21898
21053
  proposal: FrameSupportPreimagesBounded;
@@ -21906,6 +21061,10 @@ export type PalletReferendaReferendumStatusOriginCaller = {
21906
21061
  alarm?: [number, [number, number]] | undefined;
21907
21062
  };
21908
21063
 
21064
+ export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
21065
+
21066
+ export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
21067
+
21909
21068
  export type PalletReferendaTrackDetails = {
21910
21069
  name: string;
21911
21070
  maxDeciding: number;
@@ -22018,6 +21177,15 @@ export type PalletBountiesBounty = {
22018
21177
  status: PalletBountiesBountyStatus;
22019
21178
  };
22020
21179
 
21180
+ export type PalletBountiesBountyStatus =
21181
+ | { type: 'Proposed' }
21182
+ | { type: 'Approved' }
21183
+ | { type: 'Funded' }
21184
+ | { type: 'CuratorProposed'; value: { curator: AccountId32 } }
21185
+ | { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
21186
+ | { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
21187
+ | { type: 'ApprovedWithCurator'; value: { curator: AccountId32 } };
21188
+
22021
21189
  /**
22022
21190
  * The `Error` enum of this pallet.
22023
21191
  **/
@@ -22235,6 +21403,36 @@ export type PalletMultiAssetBountiesError =
22235
21403
  **/
22236
21404
  | 'PreimageNotExist';
22237
21405
 
21406
+ export type PalletNominationPoolsPoolMember = {
21407
+ poolId: number;
21408
+ points: bigint;
21409
+ lastRecordedRewardCounter: FixedU128;
21410
+ unbondingEras: Array<[number, bigint]>;
21411
+ };
21412
+
21413
+ export type PalletNominationPoolsBondedPoolInner = {
21414
+ commission: PalletNominationPoolsCommission;
21415
+ memberCounter: number;
21416
+ points: bigint;
21417
+ roles: PalletNominationPoolsPoolRoles;
21418
+ state: PalletNominationPoolsPoolState;
21419
+ };
21420
+
21421
+ export type PalletNominationPoolsCommission = {
21422
+ current?: [Perbill, AccountId32] | undefined;
21423
+ max?: Perbill | undefined;
21424
+ changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
21425
+ throttleFrom?: number | undefined;
21426
+ claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
21427
+ };
21428
+
21429
+ export type PalletNominationPoolsPoolRoles = {
21430
+ depositor: AccountId32;
21431
+ root?: AccountId32 | undefined;
21432
+ nominator?: AccountId32 | undefined;
21433
+ bouncer?: AccountId32 | undefined;
21434
+ };
21435
+
22238
21436
  export type PalletNominationPoolsRewardPool = {
22239
21437
  lastRecordedRewardCounter: FixedU128;
22240
21438
  lastRecordedTotalPayouts: bigint;
@@ -22544,7 +21742,7 @@ export type PalletStakingAsyncRcClientError =
22544
21742
  **/
22545
21743
  | 'InvalidKeys'
22546
21744
  /**
22547
- * The ownership proof for the session keys is invalid.
21745
+ * Invalid ownership proof for the session keys.
22548
21746
  **/
22549
21747
  | 'InvalidProof'
22550
21748
  /**
@@ -22932,7 +22130,6 @@ export type PalletReviveEvmApiRpcTypesGenTransaction7702Unsigned = {
22932
22130
  authorizationList: Array<PalletReviveEvmApiRpcTypesGenAuthorizationListEntry>;
22933
22131
  chainId: U256;
22934
22132
  gas: U256;
22935
- gasPrice: U256;
22936
22133
  input: PalletReviveEvmApiByteBytes;
22937
22134
  maxFeePerGas: U256;
22938
22135
  maxPriorityFeePerGas: U256;
@@ -23072,6 +22269,7 @@ export type PalletReviveDebugDebugSettings = {
23072
22269
  allowUnlimitedContractSize: boolean;
23073
22270
  bypassEip3607: boolean;
23074
22271
  pvmLogs: boolean;
22272
+ disableExecutionTracing: boolean;
23075
22273
  };
23076
22274
 
23077
22275
  /**
@@ -23332,6 +22530,43 @@ export type PalletReviveError =
23332
22530
  **/
23333
22531
  | 'EcdsaRecoveryFailed';
23334
22532
 
22533
+ /**
22534
+ * Error types for the permit pallet.
22535
+ **/
22536
+ export type PalletAssetsPrecompilesPermitPalletError =
22537
+ /**
22538
+ * The permit signature is invalid.
22539
+ **/
22540
+ | 'InvalidSignature'
22541
+ /**
22542
+ * The signer does not match the owner.
22543
+ **/
22544
+ | 'SignerMismatch'
22545
+ /**
22546
+ * The permit has expired (deadline passed).
22547
+ **/
22548
+ | 'PermitExpired'
22549
+ /**
22550
+ * The signature's `s` value is too high (malleability protection).
22551
+ **/
22552
+ | 'SignatureSValueTooHigh'
22553
+ /**
22554
+ * The signature's `v` value is invalid.
22555
+ **/
22556
+ | 'InvalidVValue'
22557
+ /**
22558
+ * Nonce overflow - account has used too many permits.
22559
+ **/
22560
+ | 'NonceOverflow'
22561
+ /**
22562
+ * The owner address is invalid (e.g., zero address).
22563
+ **/
22564
+ | 'InvalidOwner'
22565
+ /**
22566
+ * The spender address is invalid (e.g., zero address).
22567
+ **/
22568
+ | 'InvalidSpender';
22569
+
23335
22570
  /**
23336
22571
  * The `Error` enum of this pallet.
23337
22572
  **/
@@ -23397,89 +22632,6 @@ export type PalletAhOpsError =
23397
22632
  **/
23398
22633
  | 'FailedToForceUnstake';
23399
22634
 
23400
- export type PalletAhMigratorBalancesBefore = { checkingAccount: bigint; totalIssuance: bigint };
23401
-
23402
- /**
23403
- * The `Error` enum of this pallet.
23404
- **/
23405
- export type PalletAhMigratorError =
23406
- /**
23407
- * Failed to unreserve deposit.
23408
- **/
23409
- | 'FailedToUnreserveDeposit'
23410
- /**
23411
- * Failed to process an account data from RC.
23412
- **/
23413
- | 'FailedToProcessAccount'
23414
- /**
23415
- * Some item could not be inserted because it already exists.
23416
- **/
23417
- | 'InsertConflict'
23418
- /**
23419
- * Failed to convert RC type to AH type.
23420
- **/
23421
- | 'FailedToConvertType'
23422
- /**
23423
- * Failed to fetch preimage.
23424
- **/
23425
- | 'PreimageNotFound'
23426
- /**
23427
- * Failed to convert RC call to AH call.
23428
- **/
23429
- | 'FailedToConvertCall'
23430
- /**
23431
- * Failed to bound a call.
23432
- **/
23433
- | 'FailedToBoundCall'
23434
- /**
23435
- * Failed to send XCM message.
23436
- **/
23437
- | 'XcmError'
23438
- /**
23439
- * Failed to integrate a vesting schedule.
23440
- **/
23441
- | 'FailedToIntegrateVestingSchedule'
23442
- /**
23443
- * Checking account overflow or underflow.
23444
- **/
23445
- | 'FailedToCalculateCheckingAccount'
23446
- /**
23447
- * Vector did not fit into its compile-time bound.
23448
- **/
23449
- | 'FailedToBoundVector'
23450
- /**
23451
- * The DMP queue priority is already set to the same value.
23452
- **/
23453
- | 'DmpQueuePriorityAlreadySet'
23454
- /**
23455
- * Invalid parameter.
23456
- **/
23457
- | 'InvalidParameter'
23458
- /**
23459
- * Preimage missing.
23460
- **/
23461
- | 'PreimageMissing'
23462
- /**
23463
- * Preimage too big.
23464
- **/
23465
- | 'PreimageTooBig'
23466
- /**
23467
- * Preimage chunk missing.
23468
- **/
23469
- | 'PreimageChunkMissing'
23470
- /**
23471
- * Preimage status invalid.
23472
- **/
23473
- | 'PreimageStatusInvalid'
23474
- /**
23475
- * The XCM version is invalid.
23476
- **/
23477
- | 'BadXcmVersion'
23478
- /**
23479
- * The origin is invalid.
23480
- **/
23481
- | 'InvalidOrigin';
23482
-
23483
22635
  export type SpConsensusSlotsSlotDuration = bigint;
23484
22636
 
23485
22637
  export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
@@ -23528,6 +22680,8 @@ export type SpRuntimeTransactionValidityValidTransaction = {
23528
22680
  propagate: boolean;
23529
22681
  };
23530
22682
 
22683
+ export type SpSessionRuntimeApiOpaqueGeneratedSessionKeys = { keys: Bytes; proof: Bytes };
22684
+
23531
22685
  export type FrameSupportViewFunctionsViewFunctionId = { prefix: FixedBytes<16>; suffix: FixedBytes<16> };
23532
22686
 
23533
22687
  export type FrameSupportViewFunctionsViewFunctionDispatchError =
@@ -23682,7 +22836,8 @@ export type PalletRevivePrimitivesContractAccessError =
23682
22836
 
23683
22837
  export type PalletReviveEvmApiDebugRpcTypesTracerType =
23684
22838
  | { type: 'CallTracer'; value?: PalletReviveEvmApiDebugRpcTypesCallTracerConfig | undefined }
23685
- | { type: 'PrestateTracer'; value?: PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig | undefined };
22839
+ | { type: 'PrestateTracer'; value?: PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig | undefined }
22840
+ | { type: 'ExecutionTracer'; value?: PalletReviveEvmApiDebugRpcTypesExecutionTracerConfig | undefined };
23686
22841
 
23687
22842
  export type PalletReviveEvmApiDebugRpcTypesCallTracerConfig = { withLogs: boolean; onlyTopCall: boolean };
23688
22843
 
@@ -23692,14 +22847,25 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig = {
23692
22847
  disableCode: boolean;
23693
22848
  };
23694
22849
 
22850
+ export type PalletReviveEvmApiDebugRpcTypesExecutionTracerConfig = {
22851
+ enableMemory: boolean;
22852
+ disableStack: boolean;
22853
+ disableStorage: boolean;
22854
+ enableReturnData: boolean;
22855
+ disableSyscallDetails: boolean;
22856
+ limit?: bigint | undefined;
22857
+ memoryWordLimit: number;
22858
+ };
22859
+
23695
22860
  export type PalletReviveEvmApiDebugRpcTypesTrace =
23696
22861
  | { type: 'Call'; value: PalletReviveEvmApiDebugRpcTypesCallTrace }
23697
- | { type: 'Prestate'; value: PalletReviveEvmApiDebugRpcTypesPrestateTrace };
22862
+ | { type: 'Prestate'; value: PalletReviveEvmApiDebugRpcTypesPrestateTrace }
22863
+ | { type: 'Execution'; value: PalletReviveEvmApiDebugRpcTypesExecutionTrace };
23698
22864
 
23699
22865
  export type PalletReviveEvmApiDebugRpcTypesCallTrace = {
23700
22866
  from: H160;
23701
- gas: U256;
23702
- gasUsed: U256;
22867
+ gas: bigint;
22868
+ gasUsed: bigint;
23703
22869
  to: H160;
23704
22870
  input: PalletReviveEvmApiByteBytes;
23705
22871
  output: PalletReviveEvmApiByteBytes;
@@ -23744,6 +22910,38 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo = {
23744
22910
  storage: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes | undefined]>;
23745
22911
  };
23746
22912
 
22913
+ export type PalletReviveEvmApiDebugRpcTypesExecutionTrace = {
22914
+ gas: bigint;
22915
+ weightConsumed: SpWeightsWeightV2Weight;
22916
+ baseCallWeight: SpWeightsWeightV2Weight;
22917
+ failed: boolean;
22918
+ returnValue: PalletReviveEvmApiByteBytes;
22919
+ structLogs: Array<PalletReviveEvmApiDebugRpcTypesExecutionStep>;
22920
+ };
22921
+
22922
+ export type PalletReviveEvmApiDebugRpcTypesExecutionStep = {
22923
+ gas: bigint;
22924
+ gasCost: bigint;
22925
+ weightCost: SpWeightsWeightV2Weight;
22926
+ depth: number;
22927
+ returnData: PalletReviveEvmApiByteBytes;
22928
+ error?: string | undefined;
22929
+ kind: PalletReviveEvmApiDebugRpcTypesExecutionStepKind;
22930
+ };
22931
+
22932
+ export type PalletReviveEvmApiDebugRpcTypesExecutionStepKind =
22933
+ | {
22934
+ type: 'EvmOpcode';
22935
+ value: {
22936
+ pc: number;
22937
+ op: number;
22938
+ stack: Array<PalletReviveEvmApiByteBytes>;
22939
+ memory: Array<PalletReviveEvmApiByteBytes>;
22940
+ storage?: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes]> | undefined;
22941
+ };
22942
+ }
22943
+ | { type: 'PvmSyscall'; value: { op: number; args: Array<bigint>; returned?: bigint | undefined } };
22944
+
23747
22945
  export type PalletRevivePrimitivesBalanceConversionError = 'Value' | 'Dust';
23748
22946
 
23749
22947
  export type AssetHubPolkadotRuntimeRuntimeError =
@@ -23788,5 +22986,5 @@ export type AssetHubPolkadotRuntimeRuntimeError =
23788
22986
  | { pallet: 'MultiBlockElectionSigned'; palletError: PalletElectionProviderMultiBlockSignedPalletError }
23789
22987
  | { pallet: 'Staking'; palletError: PalletStakingAsyncPalletError }
23790
22988
  | { pallet: 'Revive'; palletError: PalletReviveError }
23791
- | { pallet: 'AhOps'; palletError: PalletAhOpsError }
23792
- | { pallet: 'AhMigrator'; palletError: PalletAhMigratorError };
22989
+ | { pallet: 'AssetsPrecompilesPermit'; palletError: PalletAssetsPrecompilesPermitPalletError }
22990
+ | { pallet: 'AhOps'; palletError: PalletAhOpsError };