@dedot/chaintypes 0.175.0 → 0.177.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.
@@ -82,6 +82,7 @@ export type PolkadotRuntimeRuntimeEvent =
82
82
  | { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
83
83
  | { pallet: 'FastUnstake'; palletEvent: PalletFastUnstakeEvent }
84
84
  | { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
85
+ | { pallet: 'StakingAhClient'; palletEvent: PalletStakingAsyncAhClientEvent }
85
86
  | { pallet: 'ParaInclusion'; palletEvent: PolkadotRuntimeParachainsInclusionPalletEvent }
86
87
  | { pallet: 'Paras'; palletEvent: PolkadotRuntimeParachainsParasPalletEvent }
87
88
  | { pallet: 'Hrmp'; palletEvent: PolkadotRuntimeParachainsHrmpPalletEvent }
@@ -95,7 +96,8 @@ export type PolkadotRuntimeRuntimeEvent =
95
96
  | { pallet: 'StateTrieMigration'; palletEvent: PalletStateTrieMigrationEvent }
96
97
  | { pallet: 'XcmPallet'; palletEvent: PalletXcmEvent }
97
98
  | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
98
- | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent };
99
+ | { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
100
+ | { pallet: 'RcMigrator'; palletEvent: PalletRcMigratorEvent };
99
101
 
100
102
  /**
101
103
  * Event for the System pallet.
@@ -1116,6 +1118,7 @@ export type PolkadotRuntimeRuntimeCall =
1116
1118
  | { pallet: 'VoterList'; palletCall: PalletBagsListCall }
1117
1119
  | { pallet: 'NominationPools'; palletCall: PalletNominationPoolsCall }
1118
1120
  | { pallet: 'FastUnstake'; palletCall: PalletFastUnstakeCall }
1121
+ | { pallet: 'StakingAhClient'; palletCall: PalletStakingAsyncAhClientCall }
1119
1122
  | { pallet: 'Configuration'; palletCall: PolkadotRuntimeParachainsConfigurationPalletCall }
1120
1123
  | { pallet: 'ParasShared'; palletCall: PolkadotRuntimeParachainsSharedPalletCall }
1121
1124
  | { pallet: 'ParaInclusion'; palletCall: PolkadotRuntimeParachainsInclusionPalletCall }
@@ -1135,7 +1138,8 @@ export type PolkadotRuntimeRuntimeCall =
1135
1138
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCall }
1136
1139
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
1137
1140
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCall }
1138
- | { pallet: 'Beefy'; palletCall: PalletBeefyCall };
1141
+ | { pallet: 'Beefy'; palletCall: PalletBeefyCall }
1142
+ | { pallet: 'RcMigrator'; palletCall: PalletRcMigratorCall };
1139
1143
 
1140
1144
  export type PolkadotRuntimeRuntimeCallLike =
1141
1145
  | { pallet: 'System'; palletCall: FrameSystemCallLike }
@@ -1163,6 +1167,7 @@ export type PolkadotRuntimeRuntimeCallLike =
1163
1167
  | { pallet: 'VoterList'; palletCall: PalletBagsListCallLike }
1164
1168
  | { pallet: 'NominationPools'; palletCall: PalletNominationPoolsCallLike }
1165
1169
  | { pallet: 'FastUnstake'; palletCall: PalletFastUnstakeCallLike }
1170
+ | { pallet: 'StakingAhClient'; palletCall: PalletStakingAsyncAhClientCallLike }
1166
1171
  | { pallet: 'Configuration'; palletCall: PolkadotRuntimeParachainsConfigurationPalletCallLike }
1167
1172
  | { pallet: 'ParasShared'; palletCall: PolkadotRuntimeParachainsSharedPalletCallLike }
1168
1173
  | { pallet: 'ParaInclusion'; palletCall: PolkadotRuntimeParachainsInclusionPalletCallLike }
@@ -1182,7 +1187,8 @@ export type PolkadotRuntimeRuntimeCallLike =
1182
1187
  | { pallet: 'XcmPallet'; palletCall: PalletXcmCallLike }
1183
1188
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
1184
1189
  | { pallet: 'AssetRate'; palletCall: PalletAssetRateCallLike }
1185
- | { pallet: 'Beefy'; palletCall: PalletBeefyCallLike };
1190
+ | { pallet: 'Beefy'; palletCall: PalletBeefyCallLike }
1191
+ | { pallet: 'RcMigrator'; palletCall: PalletRcMigratorCallLike };
1186
1192
 
1187
1193
  /**
1188
1194
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -7291,6 +7297,40 @@ export type PalletFastUnstakeCallLike =
7291
7297
  **/
7292
7298
  | { name: 'Control'; params: { erasToCheck: number } };
7293
7299
 
7300
+ /**
7301
+ * Contains a variant per dispatchable extrinsic that this pallet has.
7302
+ **/
7303
+ export type PalletStakingAsyncAhClientCall =
7304
+ | { name: 'ValidatorSet'; params: { report: PalletStakingAsyncRcClientValidatorSetReport } }
7305
+ /**
7306
+ * Allows governance to force set the operating mode of the pallet.
7307
+ **/
7308
+ | { name: 'SetMode'; params: { mode: PalletStakingAsyncAhClientOperatingMode } }
7309
+ /**
7310
+ * manually do what this pallet was meant to do at the end of the migration.
7311
+ **/
7312
+ | { name: 'ForceOnMigrationEnd' };
7313
+
7314
+ export type PalletStakingAsyncAhClientCallLike =
7315
+ | { name: 'ValidatorSet'; params: { report: PalletStakingAsyncRcClientValidatorSetReport } }
7316
+ /**
7317
+ * Allows governance to force set the operating mode of the pallet.
7318
+ **/
7319
+ | { name: 'SetMode'; params: { mode: PalletStakingAsyncAhClientOperatingMode } }
7320
+ /**
7321
+ * manually do what this pallet was meant to do at the end of the migration.
7322
+ **/
7323
+ | { name: 'ForceOnMigrationEnd' };
7324
+
7325
+ export type PalletStakingAsyncRcClientValidatorSetReport = {
7326
+ newValidatorSet: Array<AccountId32>;
7327
+ id: number;
7328
+ pruneUpTo?: number | undefined;
7329
+ leftover: boolean;
7330
+ };
7331
+
7332
+ export type PalletStakingAsyncAhClientOperatingMode = 'Passive' | 'Buffered' | 'Active';
7333
+
7294
7334
  /**
7295
7335
  * Contains a variant per dispatchable extrinsic that this pallet has.
7296
7336
  **/
@@ -11086,6 +11126,461 @@ export type SpMmrPrimitivesAncestryProof = {
11086
11126
 
11087
11127
  export type SpConsensusBeefyFutureBlockVotingProof = { vote: SpConsensusBeefyVoteMessage };
11088
11128
 
11129
+ /**
11130
+ * Contains a variant per dispatchable extrinsic that this pallet has.
11131
+ **/
11132
+ export type PalletRcMigratorCall =
11133
+ /**
11134
+ * Set the migration stage.
11135
+ *
11136
+ * This call is intended for emergency use only and is guarded by the
11137
+ * [`Config::AdminOrigin`].
11138
+ **/
11139
+ | { name: 'ForceSetStage'; params: { stage: PalletRcMigratorMigrationStage } }
11140
+ /**
11141
+ * Schedule the migration to start at a given moment.
11142
+ *
11143
+ * ### Parameters:
11144
+ * - `start`: The block number at which the migration will start. `DispatchTime` calculated
11145
+ * at the moment of the extrinsic execution.
11146
+ * - `warm_up`: Duration or timepoint that will be used to prepare for the migration. Calls
11147
+ * are filtered during this period. It is intended to give enough time for UMP and DMP
11148
+ * queues to empty. `DispatchTime` calculated at the moment of the transition to the
11149
+ * warm-up stage.
11150
+ * - `cool_off`: The block number at which the post migration cool-off period will end. The
11151
+ * `DispatchTime` calculated at the moment of the transition to the cool-off stage.
11152
+ * - `unsafe_ignore_staking_lock_check`: ONLY FOR TESTING. Ignore the check whether the
11153
+ * scheduled time point is far enough in the future.
11154
+ *
11155
+ * Note: If the staking election for next era is already complete, and the next
11156
+ * validator set is queued in `pallet-session`, we want to avoid starting the data
11157
+ * migration at this point as it can lead to some missed validator rewards. To address
11158
+ * this, we stop staking election at the start of migration and must wait atleast 1
11159
+ * session (set via warm_up) before starting the data migration.
11160
+ *
11161
+ * Read [`MigrationStage::Scheduled`] documentation for more details.
11162
+ **/
11163
+ | {
11164
+ name: 'ScheduleMigration';
11165
+ params: {
11166
+ start: FrameSupportScheduleDispatchTime;
11167
+ warmUp: FrameSupportScheduleDispatchTime;
11168
+ coolOff: FrameSupportScheduleDispatchTime;
11169
+ unsafeIgnoreStakingLockCheck: boolean;
11170
+ };
11171
+ }
11172
+ /**
11173
+ * Start the data migration.
11174
+ *
11175
+ * This is typically called by the Asset Hub to indicate it's readiness to receive the
11176
+ * migration data.
11177
+ **/
11178
+ | { name: 'StartDataMigration' }
11179
+ /**
11180
+ * Receive a query response from the Asset Hub for a previously sent xcm message.
11181
+ **/
11182
+ | { name: 'ReceiveQueryResponse'; params: { queryId: bigint; response: StagingXcmV5Response } }
11183
+ /**
11184
+ * Resend a previously sent and unconfirmed XCM message.
11185
+ **/
11186
+ | { name: 'ResendXcm'; params: { queryId: bigint } }
11187
+ /**
11188
+ * Set the unprocessed message buffer size.
11189
+ *
11190
+ * `None` means to use the configuration value.
11191
+ **/
11192
+ | { name: 'SetUnprocessedMsgBuffer'; params: { new?: number | undefined } }
11193
+ /**
11194
+ * Set the AH UMP queue priority configuration.
11195
+ *
11196
+ * Can only be called by the `AdminOrigin`.
11197
+ **/
11198
+ | { name: 'SetAhUmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
11199
+ /**
11200
+ * Set the manager account id.
11201
+ *
11202
+ * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
11203
+ * can not set the manager account id via `set_manager` call.
11204
+ **/
11205
+ | { name: 'SetManager'; params: { new?: AccountId32 | undefined } }
11206
+ /**
11207
+ * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
11208
+ * [Config::SendXcm] router which will be able to send messages to the Asset Hub during
11209
+ * the migration.
11210
+ **/
11211
+ | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
11212
+ /**
11213
+ * Set the accounts to be preserved on Relay Chain during the migration.
11214
+ *
11215
+ * The accounts must have no consumers references.
11216
+ **/
11217
+ | { name: 'PreserveAccounts'; params: { accounts: Array<AccountId32> } }
11218
+ /**
11219
+ * Set the canceller account id.
11220
+ *
11221
+ * The canceller can only stop scheduled migration.
11222
+ **/
11223
+ | { name: 'SetCanceller'; params: { new?: AccountId32 | undefined } }
11224
+ /**
11225
+ * Pause the migration.
11226
+ **/
11227
+ | { name: 'PauseMigration' }
11228
+ /**
11229
+ * Cancel the migration.
11230
+ *
11231
+ * Migration can only be cancelled if it is in the [`MigrationStage::Scheduled`] state.
11232
+ **/
11233
+ | { name: 'CancelMigration' }
11234
+ /**
11235
+ * Vote on behalf of any of the members in `MultisigMembers`.
11236
+ *
11237
+ * Unsigned extrinsic, requiring the `payload` to be signed.
11238
+ *
11239
+ * Upon each call, a new entry is created in `ManagerMultisigs` map the `payload.call` to
11240
+ * be dispatched. Once `MultisigThreshold` is reached, the entire map is deleted, and we
11241
+ * move on to the next round.
11242
+ *
11243
+ * The round system ensures that signatures from older round cannot be reused.
11244
+ **/
11245
+ | {
11246
+ name: 'VoteManagerMultisig';
11247
+ params: { payload: PalletRcMigratorManagerMultisigVote; sig: SpRuntimeMultiSignature };
11248
+ }
11249
+ /**
11250
+ * Set the migration settings. Can only be done by admin or manager.
11251
+ **/
11252
+ | { name: 'SetSettings'; params: { settings?: PalletRcMigratorMigrationSettings | undefined } };
11253
+
11254
+ export type PalletRcMigratorCallLike =
11255
+ /**
11256
+ * Set the migration stage.
11257
+ *
11258
+ * This call is intended for emergency use only and is guarded by the
11259
+ * [`Config::AdminOrigin`].
11260
+ **/
11261
+ | { name: 'ForceSetStage'; params: { stage: PalletRcMigratorMigrationStage } }
11262
+ /**
11263
+ * Schedule the migration to start at a given moment.
11264
+ *
11265
+ * ### Parameters:
11266
+ * - `start`: The block number at which the migration will start. `DispatchTime` calculated
11267
+ * at the moment of the extrinsic execution.
11268
+ * - `warm_up`: Duration or timepoint that will be used to prepare for the migration. Calls
11269
+ * are filtered during this period. It is intended to give enough time for UMP and DMP
11270
+ * queues to empty. `DispatchTime` calculated at the moment of the transition to the
11271
+ * warm-up stage.
11272
+ * - `cool_off`: The block number at which the post migration cool-off period will end. The
11273
+ * `DispatchTime` calculated at the moment of the transition to the cool-off stage.
11274
+ * - `unsafe_ignore_staking_lock_check`: ONLY FOR TESTING. Ignore the check whether the
11275
+ * scheduled time point is far enough in the future.
11276
+ *
11277
+ * Note: If the staking election for next era is already complete, and the next
11278
+ * validator set is queued in `pallet-session`, we want to avoid starting the data
11279
+ * migration at this point as it can lead to some missed validator rewards. To address
11280
+ * this, we stop staking election at the start of migration and must wait atleast 1
11281
+ * session (set via warm_up) before starting the data migration.
11282
+ *
11283
+ * Read [`MigrationStage::Scheduled`] documentation for more details.
11284
+ **/
11285
+ | {
11286
+ name: 'ScheduleMigration';
11287
+ params: {
11288
+ start: FrameSupportScheduleDispatchTime;
11289
+ warmUp: FrameSupportScheduleDispatchTime;
11290
+ coolOff: FrameSupportScheduleDispatchTime;
11291
+ unsafeIgnoreStakingLockCheck: boolean;
11292
+ };
11293
+ }
11294
+ /**
11295
+ * Start the data migration.
11296
+ *
11297
+ * This is typically called by the Asset Hub to indicate it's readiness to receive the
11298
+ * migration data.
11299
+ **/
11300
+ | { name: 'StartDataMigration' }
11301
+ /**
11302
+ * Receive a query response from the Asset Hub for a previously sent xcm message.
11303
+ **/
11304
+ | { name: 'ReceiveQueryResponse'; params: { queryId: bigint; response: StagingXcmV5Response } }
11305
+ /**
11306
+ * Resend a previously sent and unconfirmed XCM message.
11307
+ **/
11308
+ | { name: 'ResendXcm'; params: { queryId: bigint } }
11309
+ /**
11310
+ * Set the unprocessed message buffer size.
11311
+ *
11312
+ * `None` means to use the configuration value.
11313
+ **/
11314
+ | { name: 'SetUnprocessedMsgBuffer'; params: { new?: number | undefined } }
11315
+ /**
11316
+ * Set the AH UMP queue priority configuration.
11317
+ *
11318
+ * Can only be called by the `AdminOrigin`.
11319
+ **/
11320
+ | { name: 'SetAhUmpQueuePriority'; params: { new: PalletRcMigratorQueuePriority } }
11321
+ /**
11322
+ * Set the manager account id.
11323
+ *
11324
+ * The manager has the similar to [`Config::AdminOrigin`] privileges except that it
11325
+ * can not set the manager account id via `set_manager` call.
11326
+ **/
11327
+ | { name: 'SetManager'; params: { new?: AccountId32Like | undefined } }
11328
+ /**
11329
+ * XCM send call identical to the [`pallet_xcm::Pallet::send`] call but with the
11330
+ * [Config::SendXcm] router which will be able to send messages to the Asset Hub during
11331
+ * the migration.
11332
+ **/
11333
+ | { name: 'SendXcmMessage'; params: { dest: XcmVersionedLocation; message: XcmVersionedXcm } }
11334
+ /**
11335
+ * Set the accounts to be preserved on Relay Chain during the migration.
11336
+ *
11337
+ * The accounts must have no consumers references.
11338
+ **/
11339
+ | { name: 'PreserveAccounts'; params: { accounts: Array<AccountId32Like> } }
11340
+ /**
11341
+ * Set the canceller account id.
11342
+ *
11343
+ * The canceller can only stop scheduled migration.
11344
+ **/
11345
+ | { name: 'SetCanceller'; params: { new?: AccountId32Like | undefined } }
11346
+ /**
11347
+ * Pause the migration.
11348
+ **/
11349
+ | { name: 'PauseMigration' }
11350
+ /**
11351
+ * Cancel the migration.
11352
+ *
11353
+ * Migration can only be cancelled if it is in the [`MigrationStage::Scheduled`] state.
11354
+ **/
11355
+ | { name: 'CancelMigration' }
11356
+ /**
11357
+ * Vote on behalf of any of the members in `MultisigMembers`.
11358
+ *
11359
+ * Unsigned extrinsic, requiring the `payload` to be signed.
11360
+ *
11361
+ * Upon each call, a new entry is created in `ManagerMultisigs` map the `payload.call` to
11362
+ * be dispatched. Once `MultisigThreshold` is reached, the entire map is deleted, and we
11363
+ * move on to the next round.
11364
+ *
11365
+ * The round system ensures that signatures from older round cannot be reused.
11366
+ **/
11367
+ | {
11368
+ name: 'VoteManagerMultisig';
11369
+ params: { payload: PalletRcMigratorManagerMultisigVote; sig: SpRuntimeMultiSignature };
11370
+ }
11371
+ /**
11372
+ * Set the migration settings. Can only be done by admin or manager.
11373
+ **/
11374
+ | { name: 'SetSettings'; params: { settings?: PalletRcMigratorMigrationSettings | undefined } };
11375
+
11376
+ export type PalletRcMigratorMigrationStage =
11377
+ | { type: 'Pending' }
11378
+ | { type: 'MigrationPaused' }
11379
+ | { type: 'Scheduled'; value: { start: number } }
11380
+ | { type: 'WaitingForAh' }
11381
+ | { type: 'WarmUp'; value: { endAt: number } }
11382
+ | { type: 'Starting' }
11383
+ | { type: 'PureProxyCandidatesMigrationInit' }
11384
+ | { type: 'AccountsMigrationInit' }
11385
+ | { type: 'AccountsMigrationOngoing'; value: { lastKey?: AccountId32 | undefined } }
11386
+ | { type: 'AccountsMigrationDone' }
11387
+ | { type: 'MultisigMigrationInit' }
11388
+ | { type: 'MultisigMigrationOngoing'; value: { lastKey?: [AccountId32, FixedBytes<32>] | undefined } }
11389
+ | { type: 'MultisigMigrationDone' }
11390
+ | { type: 'ClaimsMigrationInit' }
11391
+ | { type: 'ClaimsMigrationOngoing'; value: { currentKey?: PalletRcMigratorClaimsClaimsStage | undefined } }
11392
+ | { type: 'ClaimsMigrationDone' }
11393
+ | { type: 'ProxyMigrationInit' }
11394
+ | { type: 'ProxyMigrationProxies'; value: { lastKey?: AccountId32 | undefined } }
11395
+ | { type: 'ProxyMigrationAnnouncements'; value: { lastKey?: AccountId32 | undefined } }
11396
+ | { type: 'ProxyMigrationDone' }
11397
+ | { type: 'PreimageMigrationInit' }
11398
+ | { type: 'PreimageMigrationChunksOngoing'; value: { lastKey?: [[H256, number], number] | undefined } }
11399
+ | { type: 'PreimageMigrationChunksDone' }
11400
+ | { type: 'PreimageMigrationRequestStatusOngoing'; value: { nextKey?: H256 | undefined } }
11401
+ | { type: 'PreimageMigrationRequestStatusDone' }
11402
+ | { type: 'PreimageMigrationLegacyRequestStatusInit' }
11403
+ | { type: 'PreimageMigrationLegacyRequestStatusOngoing'; value: { nextKey?: H256 | undefined } }
11404
+ | { type: 'PreimageMigrationLegacyRequestStatusDone' }
11405
+ | { type: 'PreimageMigrationDone' }
11406
+ | { type: 'NomPoolsMigrationInit' }
11407
+ | { type: 'NomPoolsMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingNomPoolsNomPoolsStage | undefined } }
11408
+ | { type: 'NomPoolsMigrationDone' }
11409
+ | { type: 'VestingMigrationInit' }
11410
+ | { type: 'VestingMigrationOngoing'; value: { nextKey?: AccountId32 | undefined } }
11411
+ | { type: 'VestingMigrationDone' }
11412
+ | { type: 'DelegatedStakingMigrationInit' }
11413
+ | {
11414
+ type: 'DelegatedStakingMigrationOngoing';
11415
+ value: { nextKey?: PalletRcMigratorStakingDelegatedStakingDelegatedStakingStage | undefined };
11416
+ }
11417
+ | { type: 'DelegatedStakingMigrationDone' }
11418
+ | { type: 'IndicesMigrationInit' }
11419
+ | { type: 'IndicesMigrationOngoing'; value: { nextKey?: [] | undefined } }
11420
+ | { type: 'IndicesMigrationDone' }
11421
+ | { type: 'ReferendaMigrationInit' }
11422
+ | { type: 'ReferendaMigrationOngoing'; value: { lastKey?: PalletRcMigratorReferendaReferendaStage | undefined } }
11423
+ | { type: 'ReferendaMigrationDone' }
11424
+ | { type: 'BagsListMigrationInit' }
11425
+ | { type: 'BagsListMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingBagsListBagsListStage | undefined } }
11426
+ | { type: 'BagsListMigrationDone' }
11427
+ | { type: 'SchedulerMigrationInit' }
11428
+ | { type: 'SchedulerMigrationOngoing'; value: { lastKey?: PalletRcMigratorSchedulerSchedulerStage | undefined } }
11429
+ | { type: 'SchedulerAgendaMigrationOngoing'; value: { lastKey?: number | undefined } }
11430
+ | { type: 'SchedulerMigrationDone' }
11431
+ | { type: 'ConvictionVotingMigrationInit' }
11432
+ | {
11433
+ type: 'ConvictionVotingMigrationOngoing';
11434
+ value: { lastKey?: PalletRcMigratorConvictionVotingConvictionVotingStage | undefined };
11435
+ }
11436
+ | { type: 'ConvictionVotingMigrationDone' }
11437
+ | { type: 'BountiesMigrationInit' }
11438
+ | { type: 'BountiesMigrationOngoing'; value: { lastKey?: PalletRcMigratorBountiesBountiesStage | undefined } }
11439
+ | { type: 'BountiesMigrationDone' }
11440
+ | { type: 'ChildBountiesMigrationInit' }
11441
+ | {
11442
+ type: 'ChildBountiesMigrationOngoing';
11443
+ value: { lastKey?: PalletRcMigratorChildBountiesChildBountiesStage | undefined };
11444
+ }
11445
+ | { type: 'ChildBountiesMigrationDone' }
11446
+ | { type: 'AssetRateMigrationInit' }
11447
+ | {
11448
+ type: 'AssetRateMigrationOngoing';
11449
+ value: { lastKey?: PolkadotRuntimeCommonImplsVersionedLocatableAsset | undefined };
11450
+ }
11451
+ | { type: 'AssetRateMigrationDone' }
11452
+ | { type: 'CrowdloanMigrationInit' }
11453
+ | { type: 'CrowdloanMigrationOngoing'; value: { lastKey?: PalletRcMigratorCrowdloanCrowdloanStage | undefined } }
11454
+ | { type: 'CrowdloanMigrationDone' }
11455
+ | { type: 'TreasuryMigrationInit' }
11456
+ | { type: 'TreasuryMigrationOngoing'; value: { lastKey?: PalletRcMigratorTreasuryTreasuryStage | undefined } }
11457
+ | { type: 'TreasuryMigrationDone' }
11458
+ | { type: 'StakingMigrationInit' }
11459
+ | { type: 'StakingMigrationOngoing'; value: { nextKey?: PalletRcMigratorStakingStakingImplStakingStage | undefined } }
11460
+ | { type: 'StakingMigrationDone' }
11461
+ | { type: 'CoolOff'; value: { endAt: number } }
11462
+ | { type: 'SignalMigrationFinish' }
11463
+ | { type: 'MigrationDone' };
11464
+
11465
+ export type PalletRcMigratorClaimsClaimsStage =
11466
+ | { type: 'StorageValues' }
11467
+ | { type: 'Claims'; value?: EthereumAddress | undefined }
11468
+ | { type: 'Vesting'; value?: EthereumAddress | undefined }
11469
+ | { type: 'Signing'; value?: EthereumAddress | undefined }
11470
+ | { type: 'Preclaims'; value?: AccountId32 | undefined }
11471
+ | { type: 'Finished' };
11472
+
11473
+ export type PalletRcMigratorStakingNomPoolsNomPoolsStage =
11474
+ | { type: 'StorageValues' }
11475
+ | { type: 'PoolMembers'; value?: AccountId32 | undefined }
11476
+ | { type: 'BondedPools'; value?: number | undefined }
11477
+ | { type: 'RewardPools'; value?: number | undefined }
11478
+ | { type: 'SubPoolsStorage'; value?: number | undefined }
11479
+ | { type: 'Metadata'; value?: number | undefined }
11480
+ | { type: 'ReversePoolIdLookup'; value?: AccountId32 | undefined }
11481
+ | { type: 'ClaimPermissions'; value?: AccountId32 | undefined }
11482
+ | { type: 'Finished' };
11483
+
11484
+ export type PalletRcMigratorStakingDelegatedStakingDelegatedStakingStage =
11485
+ | { type: 'Delegators'; value?: AccountId32 | undefined }
11486
+ | { type: 'Agents'; value?: AccountId32 | undefined }
11487
+ | { type: 'Finished' };
11488
+
11489
+ export type PalletRcMigratorReferendaReferendaStage =
11490
+ | { type: 'StorageValues' }
11491
+ | { type: 'Metadata'; value?: number | undefined }
11492
+ | { type: 'ReferendumInfo'; value?: number | undefined };
11493
+
11494
+ export type PalletRcMigratorStakingBagsListBagsListStage =
11495
+ | { type: 'ListNodes'; value?: AccountId32 | undefined }
11496
+ | { type: 'ListBags'; value?: bigint | undefined }
11497
+ | { type: 'Finished' };
11498
+
11499
+ export type PalletRcMigratorSchedulerSchedulerStage =
11500
+ | { type: 'IncompleteSince' }
11501
+ | { type: 'Retries'; value?: [number, number] | undefined }
11502
+ | { type: 'Lookup'; value?: FixedBytes<32> | undefined }
11503
+ | { type: 'Finished' };
11504
+
11505
+ export type PalletRcMigratorConvictionVotingConvictionVotingStage =
11506
+ | { type: 'VotingFor'; value?: [AccountId32, number] | undefined }
11507
+ | { type: 'ClassLocksFor'; value?: AccountId32 | undefined }
11508
+ | { type: 'Finished' };
11509
+
11510
+ export type PalletRcMigratorBountiesBountiesStage =
11511
+ | { type: 'BountyCount' }
11512
+ | { type: 'BountyApprovals' }
11513
+ | { type: 'BountyDescriptions'; value: { lastKey?: number | undefined } }
11514
+ | { type: 'Bounties'; value: { lastKey?: number | undefined } }
11515
+ | { type: 'Finished' };
11516
+
11517
+ export type PalletRcMigratorChildBountiesChildBountiesStage =
11518
+ | { type: 'ChildBountyCount' }
11519
+ | { type: 'ParentChildBounties'; value: { parentId?: number | undefined } }
11520
+ | { type: 'ParentTotalChildBounties'; value: { parentId?: number | undefined } }
11521
+ | { type: 'ChildBounties'; value: { ids?: [number, number] | undefined } }
11522
+ | { type: 'ChildBountyDescriptionsV1'; value: { ids?: [number, number] | undefined } }
11523
+ | { type: 'V0ToV1ChildBountyIds'; value: { childId?: number | undefined } }
11524
+ | { type: 'ChildrenCuratorFees'; value: { childId?: number | undefined } }
11525
+ | { type: 'Finished' };
11526
+
11527
+ export type PalletRcMigratorCrowdloanCrowdloanStage =
11528
+ | { type: 'Setup' }
11529
+ | { type: 'LeaseReserve'; value: { lastKey?: PolkadotParachainPrimitivesPrimitivesId | undefined } }
11530
+ | { type: 'CrowdloanContribution'; value: { lastKey?: PolkadotParachainPrimitivesPrimitivesId | undefined } }
11531
+ | { type: 'CrowdloanReserve' }
11532
+ | { type: 'Finished' };
11533
+
11534
+ export type PalletRcMigratorTreasuryTreasuryStage =
11535
+ | { type: 'ProposalCount' }
11536
+ | { type: 'Proposals'; value?: number | undefined }
11537
+ | { type: 'Approvals' }
11538
+ | { type: 'SpendCount' }
11539
+ | { type: 'Spends'; value?: number | undefined }
11540
+ | { type: 'LastSpendPeriod' }
11541
+ | { type: 'Funds' }
11542
+ | { type: 'Finished' };
11543
+
11544
+ export type PalletRcMigratorStakingStakingImplStakingStage =
11545
+ | { type: 'Values' }
11546
+ | { type: 'Invulnerables' }
11547
+ | { type: 'Bonded'; value?: AccountId32 | undefined }
11548
+ | { type: 'Ledger'; value?: AccountId32 | undefined }
11549
+ | { type: 'Payee'; value?: AccountId32 | undefined }
11550
+ | { type: 'Validators'; value?: AccountId32 | undefined }
11551
+ | { type: 'Nominators'; value?: AccountId32 | undefined }
11552
+ | { type: 'VirtualStakers'; value?: AccountId32 | undefined }
11553
+ | { type: 'ErasStakersOverview'; value?: [number, AccountId32] | undefined }
11554
+ | { type: 'ErasStakersPaged'; value?: [number, AccountId32, number] | undefined }
11555
+ | { type: 'ClaimedRewards'; value?: [number, AccountId32] | undefined }
11556
+ | { type: 'ErasValidatorPrefs'; value?: [number, AccountId32] | undefined }
11557
+ | { type: 'ErasValidatorReward'; value?: number | undefined }
11558
+ | { type: 'ErasRewardPoints'; value?: number | undefined }
11559
+ | { type: 'ErasTotalStake'; value?: number | undefined }
11560
+ | { type: 'UnappliedSlashes'; value?: number | undefined }
11561
+ | { type: 'BondedEras' }
11562
+ | { type: 'ValidatorSlashInEra'; value?: [number, AccountId32] | undefined }
11563
+ | { type: 'NominatorSlashInEra'; value?: [number, AccountId32] | undefined }
11564
+ | { type: 'SlashingSpans'; value?: AccountId32 | undefined }
11565
+ | { type: 'SpanSlash'; value?: [AccountId32, number] | undefined }
11566
+ | { type: 'Finished' };
11567
+
11568
+ export type PalletRcMigratorQueuePriority =
11569
+ | { type: 'Config' }
11570
+ | { type: 'OverrideConfig'; value: [number, number] }
11571
+ | { type: 'Disabled' };
11572
+
11573
+ export type PalletRcMigratorManagerMultisigVote = {
11574
+ who: SpRuntimeMultiSigner;
11575
+ call: PolkadotRuntimeRuntimeCall;
11576
+ round: number;
11577
+ };
11578
+
11579
+ export type PalletRcMigratorMigrationSettings = {
11580
+ maxAccountsPerBlock?: number | undefined;
11581
+ maxItemsPerBlock?: number | undefined;
11582
+ };
11583
+
11089
11584
  export type SpRuntimeBlakeTwo256 = {};
11090
11585
 
11091
11586
  export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
@@ -11642,6 +12137,43 @@ export type PalletDelegatedStakingEvent =
11642
12137
  **/
11643
12138
  | { name: 'MigratedDelegation'; data: { agent: AccountId32; delegator: AccountId32; amount: bigint } };
11644
12139
 
12140
+ /**
12141
+ * The `Event` enum of this pallet
12142
+ **/
12143
+ export type PalletStakingAsyncAhClientEvent =
12144
+ /**
12145
+ * A new validator set has been received.
12146
+ **/
12147
+ | {
12148
+ name: 'ValidatorSetReceived';
12149
+ data: { id: number; newValidatorSetCount: number; pruneUpTo?: number | undefined; leftover: boolean };
12150
+ }
12151
+ /**
12152
+ * We could not merge, and therefore dropped a buffered message.
12153
+ *
12154
+ * Note that this event is more resembling an error, but we use an event because in this
12155
+ * pallet we need to mutate storage upon some failures.
12156
+ **/
12157
+ | { name: 'CouldNotMergeAndDropped' }
12158
+ /**
12159
+ * The validator set received is way too small, as per
12160
+ * [`Config::MinimumValidatorSetSize`].
12161
+ **/
12162
+ | { name: 'SetTooSmallAndDropped' }
12163
+ /**
12164
+ * Something occurred that should never happen under normal operation. Logged as an event
12165
+ * for fail-safe observability.
12166
+ **/
12167
+ | { name: 'Unexpected'; data: PalletStakingAsyncAhClientUnexpectedKind };
12168
+
12169
+ export type PalletStakingAsyncAhClientUnexpectedKind =
12170
+ | 'ReceivedValidatorSetWhilePassive'
12171
+ | 'UnexpectedModeTransition'
12172
+ | 'SessionReportSendFailed'
12173
+ | 'SessionReportDropped'
12174
+ | 'OffenceSendFailed'
12175
+ | 'ValidatorPointDropped';
12176
+
11645
12177
  /**
11646
12178
  * The `Event` enum of this pallet
11647
12179
  **/
@@ -12471,6 +13003,260 @@ export type PalletAssetRateEvent =
12471
13003
  data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; old: FixedU128; new: FixedU128 };
12472
13004
  };
12473
13005
 
13006
+ /**
13007
+ * The `Event` enum of this pallet
13008
+ **/
13009
+ export type PalletRcMigratorEvent =
13010
+ /**
13011
+ * A stage transition has occurred.
13012
+ **/
13013
+ | {
13014
+ name: 'StageTransition';
13015
+ data: {
13016
+ /**
13017
+ * The old stage before the transition.
13018
+ **/
13019
+ old: PalletRcMigratorMigrationStage;
13020
+
13021
+ /**
13022
+ * The new stage after the transition.
13023
+ **/
13024
+ new: PalletRcMigratorMigrationStage;
13025
+ };
13026
+ }
13027
+ /**
13028
+ * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
13029
+ * emitted.
13030
+ *
13031
+ * This event is equivalent to `StageTransition { new: Initializing, .. }` but is easier
13032
+ * to understand. The activation is immediate and affects all events happening
13033
+ * afterwards.
13034
+ **/
13035
+ | { name: 'AssetHubMigrationStarted' }
13036
+ /**
13037
+ * The Asset Hub Migration finished.
13038
+ *
13039
+ * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
13040
+ * to understand. The finishing is immediate and affects all events happening
13041
+ * afterwards.
13042
+ **/
13043
+ | { name: 'AssetHubMigrationFinished' }
13044
+ /**
13045
+ * A query response has been received.
13046
+ **/
13047
+ | {
13048
+ name: 'QueryResponseReceived';
13049
+ data: {
13050
+ /**
13051
+ * The query ID.
13052
+ **/
13053
+ queryId: bigint;
13054
+
13055
+ /**
13056
+ * The response.
13057
+ **/
13058
+ response: XcmV3MaybeErrorCode;
13059
+ };
13060
+ }
13061
+ /**
13062
+ * A XCM message has been resent.
13063
+ **/
13064
+ | {
13065
+ name: 'XcmResendAttempt';
13066
+ data: {
13067
+ /**
13068
+ * The query ID.
13069
+ **/
13070
+ queryId: bigint;
13071
+
13072
+ /**
13073
+ * The error message.
13074
+ **/
13075
+ sendError?: XcmV3TraitsSendError | undefined;
13076
+ };
13077
+ }
13078
+ /**
13079
+ * The unprocessed message buffer size has been set.
13080
+ **/
13081
+ | {
13082
+ name: 'UnprocessedMsgBufferSet';
13083
+ data: {
13084
+ /**
13085
+ * The new size.
13086
+ **/
13087
+ new: number;
13088
+
13089
+ /**
13090
+ * The old size.
13091
+ **/
13092
+ old: number;
13093
+ };
13094
+ }
13095
+ /**
13096
+ * Whether the AH UMP queue was prioritized for the next block.
13097
+ **/
13098
+ | {
13099
+ name: 'AhUmpQueuePrioritySet';
13100
+ data: {
13101
+ /**
13102
+ * Indicates if AH UMP queue was successfully set as priority.
13103
+ * If `false`, it means we're in the round-robin phase of our priority pattern
13104
+ * (see [`Config::AhUmpQueuePriorityPattern`]), where no queue gets priority.
13105
+ **/
13106
+ prioritized: boolean;
13107
+
13108
+ /**
13109
+ * Current block number within the pattern cycle (1 to period).
13110
+ **/
13111
+ cycleBlock: number;
13112
+
13113
+ /**
13114
+ * Total number of blocks in the pattern cycle
13115
+ **/
13116
+ cyclePeriod: number;
13117
+ };
13118
+ }
13119
+ /**
13120
+ * The AH UMP queue priority config was set.
13121
+ **/
13122
+ | {
13123
+ name: 'AhUmpQueuePriorityConfigSet';
13124
+ data: {
13125
+ /**
13126
+ * The old priority pattern.
13127
+ **/
13128
+ old: PalletRcMigratorQueuePriority;
13129
+
13130
+ /**
13131
+ * The new priority pattern.
13132
+ **/
13133
+ new: PalletRcMigratorQueuePriority;
13134
+ };
13135
+ }
13136
+ /**
13137
+ * The total issuance was recorded.
13138
+ **/
13139
+ | { name: 'MigratedBalanceRecordSet'; data: { kept: bigint; migrated: bigint } }
13140
+ /**
13141
+ * The RC kept balance was consumed.
13142
+ **/
13143
+ | { name: 'MigratedBalanceConsumed'; data: { kept: bigint; migrated: bigint } }
13144
+ /**
13145
+ * The manager account id was set.
13146
+ **/
13147
+ | {
13148
+ name: 'ManagerSet';
13149
+ data: {
13150
+ /**
13151
+ * The old manager account id.
13152
+ **/
13153
+ old?: AccountId32 | undefined;
13154
+
13155
+ /**
13156
+ * The new manager account id.
13157
+ **/
13158
+ new?: AccountId32 | undefined;
13159
+ };
13160
+ }
13161
+ /**
13162
+ * An XCM message was sent.
13163
+ **/
13164
+ | {
13165
+ name: 'XcmSent';
13166
+ data: {
13167
+ origin: StagingXcmV5Location;
13168
+ destination: StagingXcmV5Location;
13169
+ message: StagingXcmV5Xcm;
13170
+ messageId: FixedBytes<32>;
13171
+ };
13172
+ }
13173
+ /**
13174
+ * The staking elections were paused.
13175
+ **/
13176
+ | { name: 'StakingElectionsPaused' }
13177
+ /**
13178
+ * The accounts to be preserved on Relay Chain were set.
13179
+ **/
13180
+ | {
13181
+ name: 'AccountsPreserved';
13182
+ data: {
13183
+ /**
13184
+ * The accounts that will be preserved.
13185
+ **/
13186
+ accounts: Array<AccountId32>;
13187
+ };
13188
+ }
13189
+ /**
13190
+ * The canceller account id was set.
13191
+ **/
13192
+ | {
13193
+ name: 'CancellerSet';
13194
+ data: {
13195
+ /**
13196
+ * The old canceller account id.
13197
+ **/
13198
+ old?: AccountId32 | undefined;
13199
+
13200
+ /**
13201
+ * The new canceller account id.
13202
+ **/
13203
+ new?: AccountId32 | undefined;
13204
+ };
13205
+ }
13206
+ /**
13207
+ * The migration was paused.
13208
+ **/
13209
+ | {
13210
+ name: 'MigrationPaused';
13211
+ data: {
13212
+ /**
13213
+ * The stage at which the migration was paused.
13214
+ **/
13215
+ pauseStage: PalletRcMigratorMigrationStage;
13216
+ };
13217
+ }
13218
+ /**
13219
+ * The migration was cancelled.
13220
+ **/
13221
+ | { name: 'MigrationCancelled' }
13222
+ /**
13223
+ * Some pure accounts were indexed for possibly receiving free `Any` proxies.
13224
+ **/
13225
+ | {
13226
+ name: 'PureAccountsIndexed';
13227
+ data: {
13228
+ /**
13229
+ * The number of indexed pure accounts.
13230
+ **/
13231
+ numPureAccounts: number;
13232
+ };
13233
+ }
13234
+ /**
13235
+ * The manager multisig dispatched something.
13236
+ **/
13237
+ | { name: 'ManagerMultisigDispatched'; data: { res: Result<[], DispatchError> } }
13238
+ /**
13239
+ * The manager multisig received a vote.
13240
+ **/
13241
+ | { name: 'ManagerMultisigVoted'; data: { votes: number } }
13242
+ /**
13243
+ * The migration settings were set.
13244
+ **/
13245
+ | {
13246
+ name: 'MigrationSettingsSet';
13247
+ data: {
13248
+ /**
13249
+ * The old migration settings.
13250
+ **/
13251
+ old?: PalletRcMigratorMigrationSettings | undefined;
13252
+
13253
+ /**
13254
+ * The new migration settings.
13255
+ **/
13256
+ new?: PalletRcMigratorMigrationSettings | undefined;
13257
+ };
13258
+ };
13259
+
12474
13260
  export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
12475
13261
 
12476
13262
  export type FrameSystemCodeUpgradeAuthorization = { codeHash: H256; checkVersion: boolean };
@@ -14079,6 +14865,28 @@ export type PalletDelegatedStakingError =
14079
14865
  **/
14080
14866
  | 'NotSupported';
14081
14867
 
14868
+ export type PalletStakingAsyncRcClientSessionReport = {
14869
+ endIndex: number;
14870
+ validatorPoints: Array<[AccountId32, number]>;
14871
+ activationTimestamp?: [bigint, number] | undefined;
14872
+ leftover: boolean;
14873
+ };
14874
+
14875
+ export type PalletStakingAsyncRcClientOffence = {
14876
+ offender: AccountId32;
14877
+ reporters: Array<AccountId32>;
14878
+ slashFraction: Perbill;
14879
+ };
14880
+
14881
+ /**
14882
+ * The `Error` enum of this pallet.
14883
+ **/
14884
+ export type PalletStakingAsyncAhClientError =
14885
+ /**
14886
+ * Could not process incoming message because incoming messages are blocked.
14887
+ **/
14888
+ 'Blocked';
14889
+
14082
14890
  export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
14083
14891
  maxCodeSize: number;
14084
14892
  maxHeadDataSize: number;
@@ -15268,6 +16076,90 @@ export type PalletBeefyError =
15268
16076
 
15269
16077
  export type SpConsensusBeefyMmrBeefyAuthoritySet = { id: bigint; len: number; keysetCommitment: H256 };
15270
16078
 
16079
+ export type PalletRcMigratorAccountsAccountState =
16080
+ | { type: 'Migrate' }
16081
+ | { type: 'Preserve' }
16082
+ | { type: 'Part'; value: { free: bigint; reserved: bigint; consumers: number } };
16083
+
16084
+ export type PalletRcMigratorAccountsMigratedBalances = { kept: bigint; migrated: bigint };
16085
+
16086
+ /**
16087
+ * The `Error` enum of this pallet.
16088
+ **/
16089
+ export type PalletRcMigratorError =
16090
+ | 'Unreachable'
16091
+ | 'OutOfWeight'
16092
+ /**
16093
+ * Failed to send XCM message to AH.
16094
+ **/
16095
+ | 'XcmError'
16096
+ /**
16097
+ * Failed to withdraw account from RC for migration to AH.
16098
+ **/
16099
+ | 'FailedToWithdrawAccount'
16100
+ /**
16101
+ * Indicates that the specified block number is in the past.
16102
+ **/
16103
+ | 'PastBlockNumber'
16104
+ /**
16105
+ * Indicates that there is not enough time for staking to lock.
16106
+ *
16107
+ * Schedule the migration at least two sessions before the current era ends.
16108
+ **/
16109
+ | 'EraEndsTooSoon'
16110
+ /**
16111
+ * Balance accounting overflow.
16112
+ **/
16113
+ | 'BalanceOverflow'
16114
+ /**
16115
+ * Balance accounting underflow.
16116
+ **/
16117
+ | 'BalanceUnderflow'
16118
+ /**
16119
+ * The query response is invalid.
16120
+ **/
16121
+ | 'InvalidQueryResponse'
16122
+ /**
16123
+ * The xcm query was not found.
16124
+ **/
16125
+ | 'QueryNotFound'
16126
+ /**
16127
+ * Failed to send XCM message.
16128
+ **/
16129
+ | 'XcmSendError'
16130
+ /**
16131
+ * The migration stage is not reachable from the current stage.
16132
+ **/
16133
+ | 'UnreachableStage'
16134
+ /**
16135
+ * Invalid parameter.
16136
+ **/
16137
+ | 'InvalidParameter'
16138
+ /**
16139
+ * The AH UMP queue priority configuration is already set.
16140
+ **/
16141
+ | 'AhUmpQueuePriorityAlreadySet'
16142
+ /**
16143
+ * The account is referenced by some other pallet. It might have freezes or holds.
16144
+ **/
16145
+ | 'AccountReferenced'
16146
+ /**
16147
+ * The XCM version is invalid.
16148
+ **/
16149
+ | 'BadXcmVersion'
16150
+ /**
16151
+ * The origin is invalid.
16152
+ **/
16153
+ | 'InvalidOrigin'
16154
+ /**
16155
+ * The stage transition is invalid.
16156
+ **/
16157
+ | 'InvalidStageTransition'
16158
+ /**
16159
+ * Unsigned validation failed.
16160
+ **/
16161
+ | 'UnsignedValidationFailed';
16162
+
15271
16163
  export type RelayCommonApisInflationInfo = { inflation: Perquintill; nextMint: [bigint, bigint] };
15272
16164
 
15273
16165
  export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
@@ -15499,6 +16391,13 @@ export type SpConsensusBabeEpoch = {
15499
16391
 
15500
16392
  export type SpConsensusBabeOpaqueKeyOwnershipProof = Bytes;
15501
16393
 
16394
+ export type FrameSupportViewFunctionsViewFunctionId = { prefix: FixedBytes<16>; suffix: FixedBytes<16> };
16395
+
16396
+ export type FrameSupportViewFunctionsViewFunctionDispatchError =
16397
+ | { type: 'NotImplemented' }
16398
+ | { type: 'NotFound'; value: FrameSupportViewFunctionsViewFunctionId }
16399
+ | { type: 'Codec' };
16400
+
15502
16401
  export type PalletTransactionPaymentRuntimeDispatchInfo = {
15503
16402
  weight: SpWeightsWeightV2Weight;
15504
16403
  class: FrameSupportDispatchDispatchClass;
@@ -15563,6 +16462,7 @@ export type PolkadotRuntimeRuntimeError =
15563
16462
  | { pallet: 'NominationPools'; palletError: PalletNominationPoolsError }
15564
16463
  | { pallet: 'FastUnstake'; palletError: PalletFastUnstakeError }
15565
16464
  | { pallet: 'DelegatedStaking'; palletError: PalletDelegatedStakingError }
16465
+ | { pallet: 'StakingAhClient'; palletError: PalletStakingAsyncAhClientError }
15566
16466
  | { pallet: 'Configuration'; palletError: PolkadotRuntimeParachainsConfigurationPalletError }
15567
16467
  | { pallet: 'ParaInclusion'; palletError: PolkadotRuntimeParachainsInclusionPalletError }
15568
16468
  | { pallet: 'ParaInherent'; palletError: PolkadotRuntimeParachainsParasInherentPalletError }
@@ -15581,4 +16481,5 @@ export type PolkadotRuntimeRuntimeError =
15581
16481
  | { pallet: 'XcmPallet'; palletError: PalletXcmError }
15582
16482
  | { pallet: 'MessageQueue'; palletError: PalletMessageQueueError }
15583
16483
  | { pallet: 'AssetRate'; palletError: PalletAssetRateError }
15584
- | { pallet: 'Beefy'; palletError: PalletBeefyError };
16484
+ | { pallet: 'Beefy'; palletError: PalletBeefyError }
16485
+ | { pallet: 'RcMigrator'; palletError: PalletRcMigratorError };