@dedot/chaintypes 0.174.0 → 0.176.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.
@@ -1,10 +1,24 @@
1
1
  // Generated by dedot cli
2
2
 
3
3
  import type { GenericChainEvents, GenericPalletEvent, RpcVersion } from 'dedot/types';
4
- import type { DispatchError, AccountId32, H256, FixedBytes, FixedU128, Result, Bytes, Permill } from 'dedot/codecs';
4
+ import type {
5
+ DispatchError,
6
+ AccountId32,
7
+ H256,
8
+ FixedBytes,
9
+ Result,
10
+ EthereumAddress,
11
+ FixedU128,
12
+ Bytes,
13
+ Permill,
14
+ Perbill,
15
+ } from 'dedot/codecs';
5
16
  import type {
6
17
  FrameSystemDispatchEventInfo,
18
+ AssetHubPolkadotRuntimeRuntimeTask,
7
19
  SpWeightsWeightV2Weight,
20
+ AssetHubPolkadotRuntimeRuntimeParametersKey,
21
+ AssetHubPolkadotRuntimeRuntimeParametersValue,
8
22
  FrameSupportTokensMiscBalanceStatus,
9
23
  PalletBalancesUnexpectedKind,
10
24
  StagingXcmV5Location,
@@ -25,8 +39,31 @@ import type {
25
39
  PalletNftsAttributeNamespace,
26
40
  PalletNftsPriceWithDirection,
27
41
  PalletNftsPalletAttributes,
42
+ PolkadotRuntimeCommonImplsVersionedLocatableAsset,
43
+ ParachainsCommonPayVersionedLocatableAccount,
44
+ PalletConvictionVotingVoteAccountVote,
45
+ FrameSupportPreimagesBounded,
46
+ PalletConvictionVotingTally,
47
+ FrameSupportDispatchPostDispatchInfo,
48
+ SpRuntimeDispatchErrorWithPostInfo,
28
49
  PalletStateTrieMigrationMigrationCompute,
29
50
  PalletStateTrieMigrationError,
51
+ PalletNominationPoolsPoolState,
52
+ PalletNominationPoolsCommissionChangeRate,
53
+ PalletNominationPoolsCommissionClaimPermission,
54
+ PalletNominationPoolsClaimPermission,
55
+ PalletStakingAsyncRcClientUnexpectedKind,
56
+ PalletElectionProviderMultiBlockPhase,
57
+ PalletElectionProviderMultiBlockVerifierFeasibilityError,
58
+ SpNposElectionsElectionScore,
59
+ PalletStakingAsyncRewardDestination,
60
+ PalletStakingAsyncValidatorPrefs,
61
+ PalletStakingAsyncForcing,
62
+ PalletStakingAsyncPalletUnexpectedKind,
63
+ PolkadotParachainPrimitivesPrimitivesId,
64
+ PalletAhMigratorMigrationStage,
65
+ PalletAhMigratorPalletEventName,
66
+ PalletRcMigratorQueuePriority,
30
67
  } from './types.js';
31
68
 
32
69
  export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<Rv> {
@@ -74,6 +111,26 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
74
111
  **/
75
112
  Remarked: GenericPalletEvent<Rv, 'System', 'Remarked', { sender: AccountId32; hash: H256 }>;
76
113
 
114
+ /**
115
+ * A [`Task`] has started executing
116
+ **/
117
+ TaskStarted: GenericPalletEvent<Rv, 'System', 'TaskStarted', { task: AssetHubPolkadotRuntimeRuntimeTask }>;
118
+
119
+ /**
120
+ * A [`Task`] has finished executing.
121
+ **/
122
+ TaskCompleted: GenericPalletEvent<Rv, 'System', 'TaskCompleted', { task: AssetHubPolkadotRuntimeRuntimeTask }>;
123
+
124
+ /**
125
+ * A [`Task`] failed during execution.
126
+ **/
127
+ TaskFailed: GenericPalletEvent<
128
+ Rv,
129
+ 'System',
130
+ 'TaskFailed',
131
+ { task: AssetHubPolkadotRuntimeRuntimeTask; err: DispatchError }
132
+ >;
133
+
77
134
  /**
78
135
  * An upgrade was authorized.
79
136
  **/
@@ -148,6 +205,161 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
148
205
  **/
149
206
  [prop: string]: GenericPalletEvent<Rv>;
150
207
  };
208
+ /**
209
+ * Pallet `Preimage`'s events
210
+ **/
211
+ preimage: {
212
+ /**
213
+ * A preimage has been noted.
214
+ **/
215
+ Noted: GenericPalletEvent<Rv, 'Preimage', 'Noted', { hash: H256 }>;
216
+
217
+ /**
218
+ * A preimage has been requested.
219
+ **/
220
+ Requested: GenericPalletEvent<Rv, 'Preimage', 'Requested', { hash: H256 }>;
221
+
222
+ /**
223
+ * A preimage has ben cleared.
224
+ **/
225
+ Cleared: GenericPalletEvent<Rv, 'Preimage', 'Cleared', { hash: H256 }>;
226
+
227
+ /**
228
+ * Generic pallet event
229
+ **/
230
+ [prop: string]: GenericPalletEvent<Rv>;
231
+ };
232
+ /**
233
+ * Pallet `Scheduler`'s events
234
+ **/
235
+ scheduler: {
236
+ /**
237
+ * Scheduled some task.
238
+ **/
239
+ Scheduled: GenericPalletEvent<Rv, 'Scheduler', 'Scheduled', { when: number; index: number }>;
240
+
241
+ /**
242
+ * Canceled some task.
243
+ **/
244
+ Canceled: GenericPalletEvent<Rv, 'Scheduler', 'Canceled', { when: number; index: number }>;
245
+
246
+ /**
247
+ * Dispatched some task.
248
+ **/
249
+ Dispatched: GenericPalletEvent<
250
+ Rv,
251
+ 'Scheduler',
252
+ 'Dispatched',
253
+ { task: [number, number]; id?: FixedBytes<32> | undefined; result: Result<[], DispatchError> }
254
+ >;
255
+
256
+ /**
257
+ * Set a retry configuration for some task.
258
+ **/
259
+ RetrySet: GenericPalletEvent<
260
+ Rv,
261
+ 'Scheduler',
262
+ 'RetrySet',
263
+ { task: [number, number]; id?: FixedBytes<32> | undefined; period: number; retries: number }
264
+ >;
265
+
266
+ /**
267
+ * Cancel a retry configuration for some task.
268
+ **/
269
+ RetryCancelled: GenericPalletEvent<
270
+ Rv,
271
+ 'Scheduler',
272
+ 'RetryCancelled',
273
+ { task: [number, number]; id?: FixedBytes<32> | undefined }
274
+ >;
275
+
276
+ /**
277
+ * The call for the provided hash was not found so the task has been aborted.
278
+ **/
279
+ CallUnavailable: GenericPalletEvent<
280
+ Rv,
281
+ 'Scheduler',
282
+ 'CallUnavailable',
283
+ { task: [number, number]; id?: FixedBytes<32> | undefined }
284
+ >;
285
+
286
+ /**
287
+ * The given task was unable to be renewed since the agenda is full at that block.
288
+ **/
289
+ PeriodicFailed: GenericPalletEvent<
290
+ Rv,
291
+ 'Scheduler',
292
+ 'PeriodicFailed',
293
+ { task: [number, number]; id?: FixedBytes<32> | undefined }
294
+ >;
295
+
296
+ /**
297
+ * The given task was unable to be retried since the agenda is full at that block or there
298
+ * was not enough weight to reschedule it.
299
+ **/
300
+ RetryFailed: GenericPalletEvent<
301
+ Rv,
302
+ 'Scheduler',
303
+ 'RetryFailed',
304
+ { task: [number, number]; id?: FixedBytes<32> | undefined }
305
+ >;
306
+
307
+ /**
308
+ * The given task can never be executed since it is overweight.
309
+ **/
310
+ PermanentlyOverweight: GenericPalletEvent<
311
+ Rv,
312
+ 'Scheduler',
313
+ 'PermanentlyOverweight',
314
+ { task: [number, number]; id?: FixedBytes<32> | undefined }
315
+ >;
316
+
317
+ /**
318
+ * Agenda is incomplete from `when`.
319
+ **/
320
+ AgendaIncomplete: GenericPalletEvent<Rv, 'Scheduler', 'AgendaIncomplete', { when: number }>;
321
+
322
+ /**
323
+ * Generic pallet event
324
+ **/
325
+ [prop: string]: GenericPalletEvent<Rv>;
326
+ };
327
+ /**
328
+ * Pallet `Parameters`'s events
329
+ **/
330
+ parameters: {
331
+ /**
332
+ * A Parameter was set.
333
+ *
334
+ * Is also emitted when the value was not changed.
335
+ **/
336
+ Updated: GenericPalletEvent<
337
+ Rv,
338
+ 'Parameters',
339
+ 'Updated',
340
+ {
341
+ /**
342
+ * The key that was updated.
343
+ **/
344
+ key: AssetHubPolkadotRuntimeRuntimeParametersKey;
345
+
346
+ /**
347
+ * The old value before this call.
348
+ **/
349
+ oldValue?: AssetHubPolkadotRuntimeRuntimeParametersValue | undefined;
350
+
351
+ /**
352
+ * The new value after this call.
353
+ **/
354
+ newValue?: AssetHubPolkadotRuntimeRuntimeParametersValue | undefined;
355
+ }
356
+ >;
357
+
358
+ /**
359
+ * Generic pallet event
360
+ **/
361
+ [prop: string]: GenericPalletEvent<Rv>;
362
+ };
151
363
  /**
152
364
  * Pallet `Balances`'s events
153
365
  **/
@@ -354,6 +566,25 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
354
566
  **/
355
567
  [prop: string]: GenericPalletEvent<Rv>;
356
568
  };
569
+ /**
570
+ * Pallet `Claims`'s events
571
+ **/
572
+ claims: {
573
+ /**
574
+ * Someone claimed some DOTs.
575
+ **/
576
+ Claimed: GenericPalletEvent<
577
+ Rv,
578
+ 'Claims',
579
+ 'Claimed',
580
+ { who: AccountId32; ethereumAddress: EthereumAddress; amount: bigint }
581
+ >;
582
+
583
+ /**
584
+ * Generic pallet event
585
+ **/
586
+ [prop: string]: GenericPalletEvent<Rv>;
587
+ };
357
588
  /**
358
589
  * Pallet `CollatorSelection`'s events
359
590
  **/
@@ -1244,6 +1475,40 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1244
1475
  **/
1245
1476
  [prop: string]: GenericPalletEvent<Rv>;
1246
1477
  };
1478
+ /**
1479
+ * Pallet `Indices`'s events
1480
+ **/
1481
+ indices: {
1482
+ /**
1483
+ * A account index was assigned.
1484
+ **/
1485
+ IndexAssigned: GenericPalletEvent<Rv, 'Indices', 'IndexAssigned', { who: AccountId32; index: number }>;
1486
+
1487
+ /**
1488
+ * A account index has been freed up (unassigned).
1489
+ **/
1490
+ IndexFreed: GenericPalletEvent<Rv, 'Indices', 'IndexFreed', { index: number }>;
1491
+
1492
+ /**
1493
+ * A account index has been frozen to its current account ID.
1494
+ **/
1495
+ IndexFrozen: GenericPalletEvent<Rv, 'Indices', 'IndexFrozen', { index: number; who: AccountId32 }>;
1496
+
1497
+ /**
1498
+ * A deposit to reserve an index has been poked/reconsidered.
1499
+ **/
1500
+ DepositPoked: GenericPalletEvent<
1501
+ Rv,
1502
+ 'Indices',
1503
+ 'DepositPoked',
1504
+ { who: AccountId32; index: number; oldDeposit: bigint; newDeposit: bigint }
1505
+ >;
1506
+
1507
+ /**
1508
+ * Generic pallet event
1509
+ **/
1510
+ [prop: string]: GenericPalletEvent<Rv>;
1511
+ };
1247
1512
  /**
1248
1513
  * Pallet `Assets`'s events
1249
1514
  **/
@@ -2657,34 +2922,1670 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2657
2922
  [prop: string]: GenericPalletEvent<Rv>;
2658
2923
  };
2659
2924
  /**
2660
- * Pallet `StateTrieMigration`'s events
2925
+ * Pallet `Treasury`'s events
2661
2926
  **/
2662
- stateTrieMigration: {
2927
+ treasury: {
2663
2928
  /**
2664
- * Given number of `(top, child)` keys were migrated respectively, with the given
2665
- * `compute`.
2929
+ * We have ended a spend period and will now allocate funds.
2666
2930
  **/
2667
- Migrated: GenericPalletEvent<
2931
+ Spending: GenericPalletEvent<Rv, 'Treasury', 'Spending', { budgetRemaining: bigint }>;
2932
+
2933
+ /**
2934
+ * Some funds have been allocated.
2935
+ **/
2936
+ Awarded: GenericPalletEvent<
2668
2937
  Rv,
2669
- 'StateTrieMigration',
2670
- 'Migrated',
2671
- { top: number; child: number; compute: PalletStateTrieMigrationMigrationCompute }
2938
+ 'Treasury',
2939
+ 'Awarded',
2940
+ { proposalIndex: number; award: bigint; account: AccountId32 }
2672
2941
  >;
2673
2942
 
2674
2943
  /**
2675
- * Some account got slashed by the given amount.
2944
+ * Some of our funds have been burnt.
2676
2945
  **/
2677
- Slashed: GenericPalletEvent<Rv, 'StateTrieMigration', 'Slashed', { who: AccountId32; amount: bigint }>;
2946
+ Burnt: GenericPalletEvent<Rv, 'Treasury', 'Burnt', { burntFunds: bigint }>;
2678
2947
 
2679
2948
  /**
2680
- * The auto migration task finished.
2949
+ * Spending has finished; this is the amount that rolls over until next spend.
2681
2950
  **/
2682
- AutoMigrationFinished: GenericPalletEvent<Rv, 'StateTrieMigration', 'AutoMigrationFinished', null>;
2951
+ Rollover: GenericPalletEvent<Rv, 'Treasury', 'Rollover', { rolloverBalance: bigint }>;
2683
2952
 
2684
2953
  /**
2685
- * Migration got halted due to an error or miss-configuration.
2954
+ * Some funds have been deposited.
2686
2955
  **/
2687
- Halted: GenericPalletEvent<Rv, 'StateTrieMigration', 'Halted', { error: PalletStateTrieMigrationError }>;
2956
+ Deposit: GenericPalletEvent<Rv, 'Treasury', 'Deposit', { value: bigint }>;
2957
+
2958
+ /**
2959
+ * A new spend proposal has been approved.
2960
+ **/
2961
+ SpendApproved: GenericPalletEvent<
2962
+ Rv,
2963
+ 'Treasury',
2964
+ 'SpendApproved',
2965
+ { proposalIndex: number; amount: bigint; beneficiary: AccountId32 }
2966
+ >;
2967
+
2968
+ /**
2969
+ * The inactive funds of the pallet have been updated.
2970
+ **/
2971
+ UpdatedInactive: GenericPalletEvent<
2972
+ Rv,
2973
+ 'Treasury',
2974
+ 'UpdatedInactive',
2975
+ { reactivated: bigint; deactivated: bigint }
2976
+ >;
2977
+
2978
+ /**
2979
+ * A new asset spend proposal has been approved.
2980
+ **/
2981
+ AssetSpendApproved: GenericPalletEvent<
2982
+ Rv,
2983
+ 'Treasury',
2984
+ 'AssetSpendApproved',
2985
+ {
2986
+ index: number;
2987
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
2988
+ amount: bigint;
2989
+ beneficiary: ParachainsCommonPayVersionedLocatableAccount;
2990
+ validFrom: number;
2991
+ expireAt: number;
2992
+ }
2993
+ >;
2994
+
2995
+ /**
2996
+ * An approved spend was voided.
2997
+ **/
2998
+ AssetSpendVoided: GenericPalletEvent<Rv, 'Treasury', 'AssetSpendVoided', { index: number }>;
2999
+
3000
+ /**
3001
+ * A payment happened.
3002
+ **/
3003
+ Paid: GenericPalletEvent<Rv, 'Treasury', 'Paid', { index: number; paymentId: bigint }>;
3004
+
3005
+ /**
3006
+ * A payment failed and can be retried.
3007
+ **/
3008
+ PaymentFailed: GenericPalletEvent<Rv, 'Treasury', 'PaymentFailed', { index: number; paymentId: bigint }>;
3009
+
3010
+ /**
3011
+ * A spend was processed and removed from the storage. It might have been successfully
3012
+ * paid or it may have expired.
3013
+ **/
3014
+ SpendProcessed: GenericPalletEvent<Rv, 'Treasury', 'SpendProcessed', { index: number }>;
3015
+
3016
+ /**
3017
+ * Generic pallet event
3018
+ **/
3019
+ [prop: string]: GenericPalletEvent<Rv>;
3020
+ };
3021
+ /**
3022
+ * Pallet `ConvictionVoting`'s events
3023
+ **/
3024
+ convictionVoting: {
3025
+ /**
3026
+ * An account has delegated their vote to another account. \[who, target\]
3027
+ **/
3028
+ Delegated: GenericPalletEvent<Rv, 'ConvictionVoting', 'Delegated', [AccountId32, AccountId32]>;
3029
+
3030
+ /**
3031
+ * An \[account\] has cancelled a previous delegation operation.
3032
+ **/
3033
+ Undelegated: GenericPalletEvent<Rv, 'ConvictionVoting', 'Undelegated', AccountId32>;
3034
+
3035
+ /**
3036
+ * An account has voted
3037
+ **/
3038
+ Voted: GenericPalletEvent<
3039
+ Rv,
3040
+ 'ConvictionVoting',
3041
+ 'Voted',
3042
+ { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
3043
+ >;
3044
+
3045
+ /**
3046
+ * A vote has been removed
3047
+ **/
3048
+ VoteRemoved: GenericPalletEvent<
3049
+ Rv,
3050
+ 'ConvictionVoting',
3051
+ 'VoteRemoved',
3052
+ { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
3053
+ >;
3054
+
3055
+ /**
3056
+ * The lockup period of a conviction vote expired, and the funds have been unlocked.
3057
+ **/
3058
+ VoteUnlocked: GenericPalletEvent<Rv, 'ConvictionVoting', 'VoteUnlocked', { who: AccountId32; class: number }>;
3059
+
3060
+ /**
3061
+ * Generic pallet event
3062
+ **/
3063
+ [prop: string]: GenericPalletEvent<Rv>;
3064
+ };
3065
+ /**
3066
+ * Pallet `Referenda`'s events
3067
+ **/
3068
+ referenda: {
3069
+ /**
3070
+ * A referendum has been submitted.
3071
+ **/
3072
+ Submitted: GenericPalletEvent<
3073
+ Rv,
3074
+ 'Referenda',
3075
+ 'Submitted',
3076
+ {
3077
+ /**
3078
+ * Index of the referendum.
3079
+ **/
3080
+ index: number;
3081
+
3082
+ /**
3083
+ * The track (and by extension proposal dispatch origin) of this referendum.
3084
+ **/
3085
+ track: number;
3086
+
3087
+ /**
3088
+ * The proposal for the referendum.
3089
+ **/
3090
+ proposal: FrameSupportPreimagesBounded;
3091
+ }
3092
+ >;
3093
+
3094
+ /**
3095
+ * The decision deposit has been placed.
3096
+ **/
3097
+ DecisionDepositPlaced: GenericPalletEvent<
3098
+ Rv,
3099
+ 'Referenda',
3100
+ 'DecisionDepositPlaced',
3101
+ {
3102
+ /**
3103
+ * Index of the referendum.
3104
+ **/
3105
+ index: number;
3106
+
3107
+ /**
3108
+ * The account who placed the deposit.
3109
+ **/
3110
+ who: AccountId32;
3111
+
3112
+ /**
3113
+ * The amount placed by the account.
3114
+ **/
3115
+ amount: bigint;
3116
+ }
3117
+ >;
3118
+
3119
+ /**
3120
+ * The decision deposit has been refunded.
3121
+ **/
3122
+ DecisionDepositRefunded: GenericPalletEvent<
3123
+ Rv,
3124
+ 'Referenda',
3125
+ 'DecisionDepositRefunded',
3126
+ {
3127
+ /**
3128
+ * Index of the referendum.
3129
+ **/
3130
+ index: number;
3131
+
3132
+ /**
3133
+ * The account who placed the deposit.
3134
+ **/
3135
+ who: AccountId32;
3136
+
3137
+ /**
3138
+ * The amount placed by the account.
3139
+ **/
3140
+ amount: bigint;
3141
+ }
3142
+ >;
3143
+
3144
+ /**
3145
+ * A deposit has been slashed.
3146
+ **/
3147
+ DepositSlashed: GenericPalletEvent<
3148
+ Rv,
3149
+ 'Referenda',
3150
+ 'DepositSlashed',
3151
+ {
3152
+ /**
3153
+ * The account who placed the deposit.
3154
+ **/
3155
+ who: AccountId32;
3156
+
3157
+ /**
3158
+ * The amount placed by the account.
3159
+ **/
3160
+ amount: bigint;
3161
+ }
3162
+ >;
3163
+
3164
+ /**
3165
+ * A referendum has moved into the deciding phase.
3166
+ **/
3167
+ DecisionStarted: GenericPalletEvent<
3168
+ Rv,
3169
+ 'Referenda',
3170
+ 'DecisionStarted',
3171
+ {
3172
+ /**
3173
+ * Index of the referendum.
3174
+ **/
3175
+ index: number;
3176
+
3177
+ /**
3178
+ * The track (and by extension proposal dispatch origin) of this referendum.
3179
+ **/
3180
+ track: number;
3181
+
3182
+ /**
3183
+ * The proposal for the referendum.
3184
+ **/
3185
+ proposal: FrameSupportPreimagesBounded;
3186
+
3187
+ /**
3188
+ * The current tally of votes in this referendum.
3189
+ **/
3190
+ tally: PalletConvictionVotingTally;
3191
+ }
3192
+ >;
3193
+ ConfirmStarted: GenericPalletEvent<
3194
+ Rv,
3195
+ 'Referenda',
3196
+ 'ConfirmStarted',
3197
+ {
3198
+ /**
3199
+ * Index of the referendum.
3200
+ **/
3201
+ index: number;
3202
+ }
3203
+ >;
3204
+ ConfirmAborted: GenericPalletEvent<
3205
+ Rv,
3206
+ 'Referenda',
3207
+ 'ConfirmAborted',
3208
+ {
3209
+ /**
3210
+ * Index of the referendum.
3211
+ **/
3212
+ index: number;
3213
+ }
3214
+ >;
3215
+
3216
+ /**
3217
+ * A referendum has ended its confirmation phase and is ready for approval.
3218
+ **/
3219
+ Confirmed: GenericPalletEvent<
3220
+ Rv,
3221
+ 'Referenda',
3222
+ 'Confirmed',
3223
+ {
3224
+ /**
3225
+ * Index of the referendum.
3226
+ **/
3227
+ index: number;
3228
+
3229
+ /**
3230
+ * The final tally of votes in this referendum.
3231
+ **/
3232
+ tally: PalletConvictionVotingTally;
3233
+ }
3234
+ >;
3235
+
3236
+ /**
3237
+ * A referendum has been approved and its proposal has been scheduled.
3238
+ **/
3239
+ Approved: GenericPalletEvent<
3240
+ Rv,
3241
+ 'Referenda',
3242
+ 'Approved',
3243
+ {
3244
+ /**
3245
+ * Index of the referendum.
3246
+ **/
3247
+ index: number;
3248
+ }
3249
+ >;
3250
+
3251
+ /**
3252
+ * A proposal has been rejected by referendum.
3253
+ **/
3254
+ Rejected: GenericPalletEvent<
3255
+ Rv,
3256
+ 'Referenda',
3257
+ 'Rejected',
3258
+ {
3259
+ /**
3260
+ * Index of the referendum.
3261
+ **/
3262
+ index: number;
3263
+
3264
+ /**
3265
+ * The final tally of votes in this referendum.
3266
+ **/
3267
+ tally: PalletConvictionVotingTally;
3268
+ }
3269
+ >;
3270
+
3271
+ /**
3272
+ * A referendum has been timed out without being decided.
3273
+ **/
3274
+ TimedOut: GenericPalletEvent<
3275
+ Rv,
3276
+ 'Referenda',
3277
+ 'TimedOut',
3278
+ {
3279
+ /**
3280
+ * Index of the referendum.
3281
+ **/
3282
+ index: number;
3283
+
3284
+ /**
3285
+ * The final tally of votes in this referendum.
3286
+ **/
3287
+ tally: PalletConvictionVotingTally;
3288
+ }
3289
+ >;
3290
+
3291
+ /**
3292
+ * A referendum has been cancelled.
3293
+ **/
3294
+ Cancelled: GenericPalletEvent<
3295
+ Rv,
3296
+ 'Referenda',
3297
+ 'Cancelled',
3298
+ {
3299
+ /**
3300
+ * Index of the referendum.
3301
+ **/
3302
+ index: number;
3303
+
3304
+ /**
3305
+ * The final tally of votes in this referendum.
3306
+ **/
3307
+ tally: PalletConvictionVotingTally;
3308
+ }
3309
+ >;
3310
+
3311
+ /**
3312
+ * A referendum has been killed.
3313
+ **/
3314
+ Killed: GenericPalletEvent<
3315
+ Rv,
3316
+ 'Referenda',
3317
+ 'Killed',
3318
+ {
3319
+ /**
3320
+ * Index of the referendum.
3321
+ **/
3322
+ index: number;
3323
+
3324
+ /**
3325
+ * The final tally of votes in this referendum.
3326
+ **/
3327
+ tally: PalletConvictionVotingTally;
3328
+ }
3329
+ >;
3330
+
3331
+ /**
3332
+ * The submission deposit has been refunded.
3333
+ **/
3334
+ SubmissionDepositRefunded: GenericPalletEvent<
3335
+ Rv,
3336
+ 'Referenda',
3337
+ 'SubmissionDepositRefunded',
3338
+ {
3339
+ /**
3340
+ * Index of the referendum.
3341
+ **/
3342
+ index: number;
3343
+
3344
+ /**
3345
+ * The account who placed the deposit.
3346
+ **/
3347
+ who: AccountId32;
3348
+
3349
+ /**
3350
+ * The amount placed by the account.
3351
+ **/
3352
+ amount: bigint;
3353
+ }
3354
+ >;
3355
+
3356
+ /**
3357
+ * Metadata for a referendum has been set.
3358
+ **/
3359
+ MetadataSet: GenericPalletEvent<
3360
+ Rv,
3361
+ 'Referenda',
3362
+ 'MetadataSet',
3363
+ {
3364
+ /**
3365
+ * Index of the referendum.
3366
+ **/
3367
+ index: number;
3368
+
3369
+ /**
3370
+ * Preimage hash.
3371
+ **/
3372
+ hash: H256;
3373
+ }
3374
+ >;
3375
+
3376
+ /**
3377
+ * Metadata for a referendum has been cleared.
3378
+ **/
3379
+ MetadataCleared: GenericPalletEvent<
3380
+ Rv,
3381
+ 'Referenda',
3382
+ 'MetadataCleared',
3383
+ {
3384
+ /**
3385
+ * Index of the referendum.
3386
+ **/
3387
+ index: number;
3388
+
3389
+ /**
3390
+ * Preimage hash.
3391
+ **/
3392
+ hash: H256;
3393
+ }
3394
+ >;
3395
+
3396
+ /**
3397
+ * Generic pallet event
3398
+ **/
3399
+ [prop: string]: GenericPalletEvent<Rv>;
3400
+ };
3401
+ /**
3402
+ * Pallet `Whitelist`'s events
3403
+ **/
3404
+ whitelist: {
3405
+ CallWhitelisted: GenericPalletEvent<Rv, 'Whitelist', 'CallWhitelisted', { callHash: H256 }>;
3406
+ WhitelistedCallRemoved: GenericPalletEvent<Rv, 'Whitelist', 'WhitelistedCallRemoved', { callHash: H256 }>;
3407
+ WhitelistedCallDispatched: GenericPalletEvent<
3408
+ Rv,
3409
+ 'Whitelist',
3410
+ 'WhitelistedCallDispatched',
3411
+ { callHash: H256; result: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo> }
3412
+ >;
3413
+
3414
+ /**
3415
+ * Generic pallet event
3416
+ **/
3417
+ [prop: string]: GenericPalletEvent<Rv>;
3418
+ };
3419
+ /**
3420
+ * Pallet `Bounties`'s events
3421
+ **/
3422
+ bounties: {
3423
+ /**
3424
+ * New bounty proposal.
3425
+ **/
3426
+ BountyProposed: GenericPalletEvent<Rv, 'Bounties', 'BountyProposed', { index: number }>;
3427
+
3428
+ /**
3429
+ * A bounty proposal was rejected; funds were slashed.
3430
+ **/
3431
+ BountyRejected: GenericPalletEvent<Rv, 'Bounties', 'BountyRejected', { index: number; bond: bigint }>;
3432
+
3433
+ /**
3434
+ * A bounty proposal is funded and became active.
3435
+ **/
3436
+ BountyBecameActive: GenericPalletEvent<Rv, 'Bounties', 'BountyBecameActive', { index: number }>;
3437
+
3438
+ /**
3439
+ * A bounty is awarded to a beneficiary.
3440
+ **/
3441
+ BountyAwarded: GenericPalletEvent<Rv, 'Bounties', 'BountyAwarded', { index: number; beneficiary: AccountId32 }>;
3442
+
3443
+ /**
3444
+ * A bounty is claimed by beneficiary.
3445
+ **/
3446
+ BountyClaimed: GenericPalletEvent<
3447
+ Rv,
3448
+ 'Bounties',
3449
+ 'BountyClaimed',
3450
+ { index: number; payout: bigint; beneficiary: AccountId32 }
3451
+ >;
3452
+
3453
+ /**
3454
+ * A bounty is cancelled.
3455
+ **/
3456
+ BountyCanceled: GenericPalletEvent<Rv, 'Bounties', 'BountyCanceled', { index: number }>;
3457
+
3458
+ /**
3459
+ * A bounty expiry is extended.
3460
+ **/
3461
+ BountyExtended: GenericPalletEvent<Rv, 'Bounties', 'BountyExtended', { index: number }>;
3462
+
3463
+ /**
3464
+ * A bounty is approved.
3465
+ **/
3466
+ BountyApproved: GenericPalletEvent<Rv, 'Bounties', 'BountyApproved', { index: number }>;
3467
+
3468
+ /**
3469
+ * A bounty curator is proposed.
3470
+ **/
3471
+ CuratorProposed: GenericPalletEvent<Rv, 'Bounties', 'CuratorProposed', { bountyId: number; curator: AccountId32 }>;
3472
+
3473
+ /**
3474
+ * A bounty curator is unassigned.
3475
+ **/
3476
+ CuratorUnassigned: GenericPalletEvent<Rv, 'Bounties', 'CuratorUnassigned', { bountyId: number }>;
3477
+
3478
+ /**
3479
+ * A bounty curator is accepted.
3480
+ **/
3481
+ CuratorAccepted: GenericPalletEvent<Rv, 'Bounties', 'CuratorAccepted', { bountyId: number; curator: AccountId32 }>;
3482
+
3483
+ /**
3484
+ * A bounty deposit has been poked.
3485
+ **/
3486
+ DepositPoked: GenericPalletEvent<
3487
+ Rv,
3488
+ 'Bounties',
3489
+ 'DepositPoked',
3490
+ { bountyId: number; proposer: AccountId32; oldDeposit: bigint; newDeposit: bigint }
3491
+ >;
3492
+
3493
+ /**
3494
+ * Generic pallet event
3495
+ **/
3496
+ [prop: string]: GenericPalletEvent<Rv>;
3497
+ };
3498
+ /**
3499
+ * Pallet `ChildBounties`'s events
3500
+ **/
3501
+ childBounties: {
3502
+ /**
3503
+ * A child-bounty is added.
3504
+ **/
3505
+ Added: GenericPalletEvent<Rv, 'ChildBounties', 'Added', { index: number; childIndex: number }>;
3506
+
3507
+ /**
3508
+ * A child-bounty is awarded to a beneficiary.
3509
+ **/
3510
+ Awarded: GenericPalletEvent<
3511
+ Rv,
3512
+ 'ChildBounties',
3513
+ 'Awarded',
3514
+ { index: number; childIndex: number; beneficiary: AccountId32 }
3515
+ >;
3516
+
3517
+ /**
3518
+ * A child-bounty is claimed by beneficiary.
3519
+ **/
3520
+ Claimed: GenericPalletEvent<
3521
+ Rv,
3522
+ 'ChildBounties',
3523
+ 'Claimed',
3524
+ { index: number; childIndex: number; payout: bigint; beneficiary: AccountId32 }
3525
+ >;
3526
+
3527
+ /**
3528
+ * A child-bounty is cancelled.
3529
+ **/
3530
+ Canceled: GenericPalletEvent<Rv, 'ChildBounties', 'Canceled', { index: number; childIndex: number }>;
3531
+
3532
+ /**
3533
+ * Generic pallet event
3534
+ **/
3535
+ [prop: string]: GenericPalletEvent<Rv>;
3536
+ };
3537
+ /**
3538
+ * Pallet `AssetRate`'s events
3539
+ **/
3540
+ assetRate: {
3541
+ AssetRateCreated: GenericPalletEvent<
3542
+ Rv,
3543
+ 'AssetRate',
3544
+ 'AssetRateCreated',
3545
+ { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; rate: FixedU128 }
3546
+ >;
3547
+ AssetRateRemoved: GenericPalletEvent<
3548
+ Rv,
3549
+ 'AssetRate',
3550
+ 'AssetRateRemoved',
3551
+ { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset }
3552
+ >;
3553
+ AssetRateUpdated: GenericPalletEvent<
3554
+ Rv,
3555
+ 'AssetRate',
3556
+ 'AssetRateUpdated',
3557
+ { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; old: FixedU128; new: FixedU128 }
3558
+ >;
3559
+
3560
+ /**
3561
+ * Generic pallet event
3562
+ **/
3563
+ [prop: string]: GenericPalletEvent<Rv>;
3564
+ };
3565
+ /**
3566
+ * Pallet `StateTrieMigration`'s events
3567
+ **/
3568
+ stateTrieMigration: {
3569
+ /**
3570
+ * Given number of `(top, child)` keys were migrated respectively, with the given
3571
+ * `compute`.
3572
+ **/
3573
+ Migrated: GenericPalletEvent<
3574
+ Rv,
3575
+ 'StateTrieMigration',
3576
+ 'Migrated',
3577
+ { top: number; child: number; compute: PalletStateTrieMigrationMigrationCompute }
3578
+ >;
3579
+
3580
+ /**
3581
+ * Some account got slashed by the given amount.
3582
+ **/
3583
+ Slashed: GenericPalletEvent<Rv, 'StateTrieMigration', 'Slashed', { who: AccountId32; amount: bigint }>;
3584
+
3585
+ /**
3586
+ * The auto migration task finished.
3587
+ **/
3588
+ AutoMigrationFinished: GenericPalletEvent<Rv, 'StateTrieMigration', 'AutoMigrationFinished', null>;
3589
+
3590
+ /**
3591
+ * Migration got halted due to an error or miss-configuration.
3592
+ **/
3593
+ Halted: GenericPalletEvent<Rv, 'StateTrieMigration', 'Halted', { error: PalletStateTrieMigrationError }>;
3594
+
3595
+ /**
3596
+ * Generic pallet event
3597
+ **/
3598
+ [prop: string]: GenericPalletEvent<Rv>;
3599
+ };
3600
+ /**
3601
+ * Pallet `NominationPools`'s events
3602
+ **/
3603
+ nominationPools: {
3604
+ /**
3605
+ * A pool has been created.
3606
+ **/
3607
+ Created: GenericPalletEvent<Rv, 'NominationPools', 'Created', { depositor: AccountId32; poolId: number }>;
3608
+
3609
+ /**
3610
+ * A member has became bonded in a pool.
3611
+ **/
3612
+ Bonded: GenericPalletEvent<
3613
+ Rv,
3614
+ 'NominationPools',
3615
+ 'Bonded',
3616
+ { member: AccountId32; poolId: number; bonded: bigint; joined: boolean }
3617
+ >;
3618
+
3619
+ /**
3620
+ * A payout has been made to a member.
3621
+ **/
3622
+ PaidOut: GenericPalletEvent<
3623
+ Rv,
3624
+ 'NominationPools',
3625
+ 'PaidOut',
3626
+ { member: AccountId32; poolId: number; payout: bigint }
3627
+ >;
3628
+
3629
+ /**
3630
+ * A member has unbonded from their pool.
3631
+ *
3632
+ * - `balance` is the corresponding balance of the number of points that has been
3633
+ * requested to be unbonded (the argument of the `unbond` transaction) from the bonded
3634
+ * pool.
3635
+ * - `points` is the number of points that are issued as a result of `balance` being
3636
+ * dissolved into the corresponding unbonding pool.
3637
+ * - `era` is the era in which the balance will be unbonded.
3638
+ * In the absence of slashing, these values will match. In the presence of slashing, the
3639
+ * number of points that are issued in the unbonding pool will be less than the amount
3640
+ * requested to be unbonded.
3641
+ **/
3642
+ Unbonded: GenericPalletEvent<
3643
+ Rv,
3644
+ 'NominationPools',
3645
+ 'Unbonded',
3646
+ { member: AccountId32; poolId: number; balance: bigint; points: bigint; era: number }
3647
+ >;
3648
+
3649
+ /**
3650
+ * A member has withdrawn from their pool.
3651
+ *
3652
+ * The given number of `points` have been dissolved in return of `balance`.
3653
+ *
3654
+ * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
3655
+ * will be 1.
3656
+ **/
3657
+ Withdrawn: GenericPalletEvent<
3658
+ Rv,
3659
+ 'NominationPools',
3660
+ 'Withdrawn',
3661
+ { member: AccountId32; poolId: number; balance: bigint; points: bigint }
3662
+ >;
3663
+
3664
+ /**
3665
+ * A pool has been destroyed.
3666
+ **/
3667
+ Destroyed: GenericPalletEvent<Rv, 'NominationPools', 'Destroyed', { poolId: number }>;
3668
+
3669
+ /**
3670
+ * The state of a pool has changed
3671
+ **/
3672
+ StateChanged: GenericPalletEvent<
3673
+ Rv,
3674
+ 'NominationPools',
3675
+ 'StateChanged',
3676
+ { poolId: number; newState: PalletNominationPoolsPoolState }
3677
+ >;
3678
+
3679
+ /**
3680
+ * A member has been removed from a pool.
3681
+ *
3682
+ * The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
3683
+ * Any funds that are still delegated (i.e. dangling delegation) are released and are
3684
+ * represented by `released_balance`.
3685
+ **/
3686
+ MemberRemoved: GenericPalletEvent<
3687
+ Rv,
3688
+ 'NominationPools',
3689
+ 'MemberRemoved',
3690
+ { poolId: number; member: AccountId32; releasedBalance: bigint }
3691
+ >;
3692
+
3693
+ /**
3694
+ * The roles of a pool have been updated to the given new roles. Note that the depositor
3695
+ * can never change.
3696
+ **/
3697
+ RolesUpdated: GenericPalletEvent<
3698
+ Rv,
3699
+ 'NominationPools',
3700
+ 'RolesUpdated',
3701
+ { root?: AccountId32 | undefined; bouncer?: AccountId32 | undefined; nominator?: AccountId32 | undefined }
3702
+ >;
3703
+
3704
+ /**
3705
+ * The active balance of pool `pool_id` has been slashed to `balance`.
3706
+ **/
3707
+ PoolSlashed: GenericPalletEvent<Rv, 'NominationPools', 'PoolSlashed', { poolId: number; balance: bigint }>;
3708
+
3709
+ /**
3710
+ * The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
3711
+ **/
3712
+ UnbondingPoolSlashed: GenericPalletEvent<
3713
+ Rv,
3714
+ 'NominationPools',
3715
+ 'UnbondingPoolSlashed',
3716
+ { poolId: number; era: number; balance: bigint }
3717
+ >;
3718
+
3719
+ /**
3720
+ * A pool's commission setting has been changed.
3721
+ **/
3722
+ PoolCommissionUpdated: GenericPalletEvent<
3723
+ Rv,
3724
+ 'NominationPools',
3725
+ 'PoolCommissionUpdated',
3726
+ { poolId: number; current?: [Perbill, AccountId32] | undefined }
3727
+ >;
3728
+
3729
+ /**
3730
+ * A pool's maximum commission setting has been changed.
3731
+ **/
3732
+ PoolMaxCommissionUpdated: GenericPalletEvent<
3733
+ Rv,
3734
+ 'NominationPools',
3735
+ 'PoolMaxCommissionUpdated',
3736
+ { poolId: number; maxCommission: Perbill }
3737
+ >;
3738
+
3739
+ /**
3740
+ * A pool's commission `change_rate` has been changed.
3741
+ **/
3742
+ PoolCommissionChangeRateUpdated: GenericPalletEvent<
3743
+ Rv,
3744
+ 'NominationPools',
3745
+ 'PoolCommissionChangeRateUpdated',
3746
+ { poolId: number; changeRate: PalletNominationPoolsCommissionChangeRate }
3747
+ >;
3748
+
3749
+ /**
3750
+ * Pool commission claim permission has been updated.
3751
+ **/
3752
+ PoolCommissionClaimPermissionUpdated: GenericPalletEvent<
3753
+ Rv,
3754
+ 'NominationPools',
3755
+ 'PoolCommissionClaimPermissionUpdated',
3756
+ { poolId: number; permission?: PalletNominationPoolsCommissionClaimPermission | undefined }
3757
+ >;
3758
+
3759
+ /**
3760
+ * Pool commission has been claimed.
3761
+ **/
3762
+ PoolCommissionClaimed: GenericPalletEvent<
3763
+ Rv,
3764
+ 'NominationPools',
3765
+ 'PoolCommissionClaimed',
3766
+ { poolId: number; commission: bigint }
3767
+ >;
3768
+
3769
+ /**
3770
+ * Topped up deficit in frozen ED of the reward pool.
3771
+ **/
3772
+ MinBalanceDeficitAdjusted: GenericPalletEvent<
3773
+ Rv,
3774
+ 'NominationPools',
3775
+ 'MinBalanceDeficitAdjusted',
3776
+ { poolId: number; amount: bigint }
3777
+ >;
3778
+
3779
+ /**
3780
+ * Claimed excess frozen ED of af the reward pool.
3781
+ **/
3782
+ MinBalanceExcessAdjusted: GenericPalletEvent<
3783
+ Rv,
3784
+ 'NominationPools',
3785
+ 'MinBalanceExcessAdjusted',
3786
+ { poolId: number; amount: bigint }
3787
+ >;
3788
+
3789
+ /**
3790
+ * A pool member's claim permission has been updated.
3791
+ **/
3792
+ MemberClaimPermissionUpdated: GenericPalletEvent<
3793
+ Rv,
3794
+ 'NominationPools',
3795
+ 'MemberClaimPermissionUpdated',
3796
+ { member: AccountId32; permission: PalletNominationPoolsClaimPermission }
3797
+ >;
3798
+
3799
+ /**
3800
+ * A pool's metadata was updated.
3801
+ **/
3802
+ MetadataUpdated: GenericPalletEvent<
3803
+ Rv,
3804
+ 'NominationPools',
3805
+ 'MetadataUpdated',
3806
+ { poolId: number; caller: AccountId32 }
3807
+ >;
3808
+
3809
+ /**
3810
+ * A pool's nominating account (or the pool's root account) has nominated a validator set
3811
+ * on behalf of the pool.
3812
+ **/
3813
+ PoolNominationMade: GenericPalletEvent<
3814
+ Rv,
3815
+ 'NominationPools',
3816
+ 'PoolNominationMade',
3817
+ { poolId: number; caller: AccountId32 }
3818
+ >;
3819
+
3820
+ /**
3821
+ * The pool is chilled i.e. no longer nominating.
3822
+ **/
3823
+ PoolNominatorChilled: GenericPalletEvent<
3824
+ Rv,
3825
+ 'NominationPools',
3826
+ 'PoolNominatorChilled',
3827
+ { poolId: number; caller: AccountId32 }
3828
+ >;
3829
+
3830
+ /**
3831
+ * Global parameters regulating nomination pools have been updated.
3832
+ **/
3833
+ GlobalParamsUpdated: GenericPalletEvent<
3834
+ Rv,
3835
+ 'NominationPools',
3836
+ 'GlobalParamsUpdated',
3837
+ {
3838
+ minJoinBond: bigint;
3839
+ minCreateBond: bigint;
3840
+ maxPools?: number | undefined;
3841
+ maxMembers?: number | undefined;
3842
+ maxMembersPerPool?: number | undefined;
3843
+ globalMaxCommission?: Perbill | undefined;
3844
+ }
3845
+ >;
3846
+
3847
+ /**
3848
+ * Generic pallet event
3849
+ **/
3850
+ [prop: string]: GenericPalletEvent<Rv>;
3851
+ };
3852
+ /**
3853
+ * Pallet `VoterList`'s events
3854
+ **/
3855
+ voterList: {
3856
+ /**
3857
+ * Moved an account from one bag to another.
3858
+ **/
3859
+ Rebagged: GenericPalletEvent<Rv, 'VoterList', 'Rebagged', { who: AccountId32; from: bigint; to: bigint }>;
3860
+
3861
+ /**
3862
+ * Updated the score of some account to the given amount.
3863
+ **/
3864
+ ScoreUpdated: GenericPalletEvent<Rv, 'VoterList', 'ScoreUpdated', { who: AccountId32; newScore: bigint }>;
3865
+
3866
+ /**
3867
+ * Generic pallet event
3868
+ **/
3869
+ [prop: string]: GenericPalletEvent<Rv>;
3870
+ };
3871
+ /**
3872
+ * Pallet `DelegatedStaking`'s events
3873
+ **/
3874
+ delegatedStaking: {
3875
+ /**
3876
+ * Funds delegated by a delegator.
3877
+ **/
3878
+ Delegated: GenericPalletEvent<
3879
+ Rv,
3880
+ 'DelegatedStaking',
3881
+ 'Delegated',
3882
+ { agent: AccountId32; delegator: AccountId32; amount: bigint }
3883
+ >;
3884
+
3885
+ /**
3886
+ * Funds released to a delegator.
3887
+ **/
3888
+ Released: GenericPalletEvent<
3889
+ Rv,
3890
+ 'DelegatedStaking',
3891
+ 'Released',
3892
+ { agent: AccountId32; delegator: AccountId32; amount: bigint }
3893
+ >;
3894
+
3895
+ /**
3896
+ * Funds slashed from a delegator.
3897
+ **/
3898
+ Slashed: GenericPalletEvent<
3899
+ Rv,
3900
+ 'DelegatedStaking',
3901
+ 'Slashed',
3902
+ { agent: AccountId32; delegator: AccountId32; amount: bigint }
3903
+ >;
3904
+
3905
+ /**
3906
+ * Unclaimed delegation funds migrated to delegator.
3907
+ **/
3908
+ MigratedDelegation: GenericPalletEvent<
3909
+ Rv,
3910
+ 'DelegatedStaking',
3911
+ 'MigratedDelegation',
3912
+ { agent: AccountId32; delegator: AccountId32; amount: bigint }
3913
+ >;
3914
+
3915
+ /**
3916
+ * Generic pallet event
3917
+ **/
3918
+ [prop: string]: GenericPalletEvent<Rv>;
3919
+ };
3920
+ /**
3921
+ * Pallet `StakingRcClient`'s events
3922
+ **/
3923
+ stakingRcClient: {
3924
+ /**
3925
+ * A said session report was received.
3926
+ **/
3927
+ SessionReportReceived: GenericPalletEvent<
3928
+ Rv,
3929
+ 'StakingRcClient',
3930
+ 'SessionReportReceived',
3931
+ {
3932
+ endIndex: number;
3933
+ activationTimestamp?: [bigint, number] | undefined;
3934
+ validatorPointsCounts: number;
3935
+ leftover: boolean;
3936
+ }
3937
+ >;
3938
+
3939
+ /**
3940
+ * A new offence was reported.
3941
+ **/
3942
+ OffenceReceived: GenericPalletEvent<
3943
+ Rv,
3944
+ 'StakingRcClient',
3945
+ 'OffenceReceived',
3946
+ { slashSession: number; offencesCount: number }
3947
+ >;
3948
+
3949
+ /**
3950
+ * Something occurred that should never happen under normal operation.
3951
+ * Logged as an event for fail-safe observability.
3952
+ **/
3953
+ Unexpected: GenericPalletEvent<Rv, 'StakingRcClient', 'Unexpected', PalletStakingAsyncRcClientUnexpectedKind>;
3954
+
3955
+ /**
3956
+ * Generic pallet event
3957
+ **/
3958
+ [prop: string]: GenericPalletEvent<Rv>;
3959
+ };
3960
+ /**
3961
+ * Pallet `MultiBlockElection`'s events
3962
+ **/
3963
+ multiBlockElection: {
3964
+ /**
3965
+ * A phase transition happened. Only checks major changes in the variants, not minor inner
3966
+ * values.
3967
+ **/
3968
+ PhaseTransitioned: GenericPalletEvent<
3969
+ Rv,
3970
+ 'MultiBlockElection',
3971
+ 'PhaseTransitioned',
3972
+ {
3973
+ /**
3974
+ * the source phase
3975
+ **/
3976
+ from: PalletElectionProviderMultiBlockPhase;
3977
+
3978
+ /**
3979
+ * The target phase
3980
+ **/
3981
+ to: PalletElectionProviderMultiBlockPhase;
3982
+ }
3983
+ >;
3984
+
3985
+ /**
3986
+ * Target snapshot creation failed
3987
+ **/
3988
+ UnexpectedTargetSnapshotFailed: GenericPalletEvent<
3989
+ Rv,
3990
+ 'MultiBlockElection',
3991
+ 'UnexpectedTargetSnapshotFailed',
3992
+ null
3993
+ >;
3994
+
3995
+ /**
3996
+ * Voter snapshot creation failed
3997
+ **/
3998
+ UnexpectedVoterSnapshotFailed: GenericPalletEvent<Rv, 'MultiBlockElection', 'UnexpectedVoterSnapshotFailed', null>;
3999
+
4000
+ /**
4001
+ * Generic pallet event
4002
+ **/
4003
+ [prop: string]: GenericPalletEvent<Rv>;
4004
+ };
4005
+ /**
4006
+ * Pallet `MultiBlockElectionVerifier`'s events
4007
+ **/
4008
+ multiBlockElectionVerifier: {
4009
+ /**
4010
+ * A verification failed at the given page.
4011
+ *
4012
+ * NOTE: if the index is 0, then this could mean either the feasibility of the last page
4013
+ * was wrong, or the final checks of `finalize_verification` failed.
4014
+ **/
4015
+ VerificationFailed: GenericPalletEvent<
4016
+ Rv,
4017
+ 'MultiBlockElectionVerifier',
4018
+ 'VerificationFailed',
4019
+ [number, PalletElectionProviderMultiBlockVerifierFeasibilityError]
4020
+ >;
4021
+
4022
+ /**
4023
+ * The given page of a solution has been verified, with the given number of winners being
4024
+ * found in it.
4025
+ **/
4026
+ Verified: GenericPalletEvent<Rv, 'MultiBlockElectionVerifier', 'Verified', [number, number]>;
4027
+
4028
+ /**
4029
+ * A solution with the given score has replaced our current best solution.
4030
+ **/
4031
+ Queued: GenericPalletEvent<
4032
+ Rv,
4033
+ 'MultiBlockElectionVerifier',
4034
+ 'Queued',
4035
+ [SpNposElectionsElectionScore, SpNposElectionsElectionScore | undefined]
4036
+ >;
4037
+
4038
+ /**
4039
+ * Generic pallet event
4040
+ **/
4041
+ [prop: string]: GenericPalletEvent<Rv>;
4042
+ };
4043
+ /**
4044
+ * Pallet `MultiBlockElectionSigned`'s events
4045
+ **/
4046
+ multiBlockElectionSigned: {
4047
+ /**
4048
+ * Upcoming submission has been registered for the given account, with the given score.
4049
+ **/
4050
+ Registered: GenericPalletEvent<
4051
+ Rv,
4052
+ 'MultiBlockElectionSigned',
4053
+ 'Registered',
4054
+ [number, AccountId32, SpNposElectionsElectionScore]
4055
+ >;
4056
+
4057
+ /**
4058
+ * A page of solution solution with the given index has been stored for the given account.
4059
+ **/
4060
+ Stored: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Stored', [number, AccountId32, number]>;
4061
+
4062
+ /**
4063
+ * The given account has been rewarded with the given amount.
4064
+ **/
4065
+ Rewarded: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Rewarded', [number, AccountId32, bigint]>;
4066
+
4067
+ /**
4068
+ * The given account has been slashed with the given amount.
4069
+ **/
4070
+ Slashed: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Slashed', [number, AccountId32, bigint]>;
4071
+
4072
+ /**
4073
+ * The given solution, for the given round, was ejected.
4074
+ **/
4075
+ Ejected: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Ejected', [number, AccountId32]>;
4076
+
4077
+ /**
4078
+ * The given account has been discarded.
4079
+ **/
4080
+ Discarded: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Discarded', [number, AccountId32]>;
4081
+
4082
+ /**
4083
+ * The given account has bailed.
4084
+ **/
4085
+ Bailed: GenericPalletEvent<Rv, 'MultiBlockElectionSigned', 'Bailed', [number, AccountId32]>;
4086
+
4087
+ /**
4088
+ * Generic pallet event
4089
+ **/
4090
+ [prop: string]: GenericPalletEvent<Rv>;
4091
+ };
4092
+ /**
4093
+ * Pallet `Staking`'s events
4094
+ **/
4095
+ staking: {
4096
+ /**
4097
+ * The era payout has been set; the first balance is the validator-payout; the second is
4098
+ * the remainder from the maximum amount of reward.
4099
+ **/
4100
+ EraPaid: GenericPalletEvent<
4101
+ Rv,
4102
+ 'Staking',
4103
+ 'EraPaid',
4104
+ { eraIndex: number; validatorPayout: bigint; remainder: bigint }
4105
+ >;
4106
+
4107
+ /**
4108
+ * The nominator has been rewarded by this amount to this destination.
4109
+ **/
4110
+ Rewarded: GenericPalletEvent<
4111
+ Rv,
4112
+ 'Staking',
4113
+ 'Rewarded',
4114
+ { stash: AccountId32; dest: PalletStakingAsyncRewardDestination; amount: bigint }
4115
+ >;
4116
+
4117
+ /**
4118
+ * A staker (validator or nominator) has been slashed by the given amount.
4119
+ **/
4120
+ Slashed: GenericPalletEvent<Rv, 'Staking', 'Slashed', { staker: AccountId32; amount: bigint }>;
4121
+
4122
+ /**
4123
+ * An old slashing report from a prior era was discarded because it could
4124
+ * not be processed.
4125
+ **/
4126
+ OldSlashingReportDiscarded: GenericPalletEvent<
4127
+ Rv,
4128
+ 'Staking',
4129
+ 'OldSlashingReportDiscarded',
4130
+ { sessionIndex: number }
4131
+ >;
4132
+
4133
+ /**
4134
+ * An account has bonded this amount. \[stash, amount\]
4135
+ *
4136
+ * NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
4137
+ * it will not be emitted for staking rewards when they are added to stake.
4138
+ **/
4139
+ Bonded: GenericPalletEvent<Rv, 'Staking', 'Bonded', { stash: AccountId32; amount: bigint }>;
4140
+
4141
+ /**
4142
+ * An account has unbonded this amount.
4143
+ **/
4144
+ Unbonded: GenericPalletEvent<Rv, 'Staking', 'Unbonded', { stash: AccountId32; amount: bigint }>;
4145
+
4146
+ /**
4147
+ * An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
4148
+ * from the unlocking queue.
4149
+ **/
4150
+ Withdrawn: GenericPalletEvent<Rv, 'Staking', 'Withdrawn', { stash: AccountId32; amount: bigint }>;
4151
+
4152
+ /**
4153
+ * A subsequent event of `Withdrawn`, indicating that `stash` was fully removed from the
4154
+ * system.
4155
+ **/
4156
+ StakerRemoved: GenericPalletEvent<Rv, 'Staking', 'StakerRemoved', { stash: AccountId32 }>;
4157
+
4158
+ /**
4159
+ * A nominator has been kicked from a validator.
4160
+ **/
4161
+ Kicked: GenericPalletEvent<Rv, 'Staking', 'Kicked', { nominator: AccountId32; stash: AccountId32 }>;
4162
+
4163
+ /**
4164
+ * An account has stopped participating as either a validator or nominator.
4165
+ **/
4166
+ Chilled: GenericPalletEvent<Rv, 'Staking', 'Chilled', { stash: AccountId32 }>;
4167
+
4168
+ /**
4169
+ * A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed.
4170
+ **/
4171
+ PayoutStarted: GenericPalletEvent<
4172
+ Rv,
4173
+ 'Staking',
4174
+ 'PayoutStarted',
4175
+ { eraIndex: number; validatorStash: AccountId32; page: number; next?: number | undefined }
4176
+ >;
4177
+
4178
+ /**
4179
+ * A validator has set their preferences.
4180
+ **/
4181
+ ValidatorPrefsSet: GenericPalletEvent<
4182
+ Rv,
4183
+ 'Staking',
4184
+ 'ValidatorPrefsSet',
4185
+ { stash: AccountId32; prefs: PalletStakingAsyncValidatorPrefs }
4186
+ >;
4187
+
4188
+ /**
4189
+ * Voters size limit reached.
4190
+ **/
4191
+ SnapshotVotersSizeExceeded: GenericPalletEvent<Rv, 'Staking', 'SnapshotVotersSizeExceeded', { size: number }>;
4192
+
4193
+ /**
4194
+ * Targets size limit reached.
4195
+ **/
4196
+ SnapshotTargetsSizeExceeded: GenericPalletEvent<Rv, 'Staking', 'SnapshotTargetsSizeExceeded', { size: number }>;
4197
+ ForceEra: GenericPalletEvent<Rv, 'Staking', 'ForceEra', { mode: PalletStakingAsyncForcing }>;
4198
+
4199
+ /**
4200
+ * Report of a controller batch deprecation.
4201
+ **/
4202
+ ControllerBatchDeprecated: GenericPalletEvent<Rv, 'Staking', 'ControllerBatchDeprecated', { failures: number }>;
4203
+
4204
+ /**
4205
+ * Staking balance migrated from locks to holds, with any balance that could not be held
4206
+ * is force withdrawn.
4207
+ **/
4208
+ CurrencyMigrated: GenericPalletEvent<
4209
+ Rv,
4210
+ 'Staking',
4211
+ 'CurrencyMigrated',
4212
+ { stash: AccountId32; forceWithdraw: bigint }
4213
+ >;
4214
+
4215
+ /**
4216
+ * A page from a multi-page election was fetched. A number of these are followed by
4217
+ * `StakersElected`.
4218
+ *
4219
+ * `Ok(count)` indicates the give number of stashes were added.
4220
+ * `Err(index)` indicates that the stashes after index were dropped.
4221
+ * `Err(0)` indicates that an error happened but no stashes were dropped nor added.
4222
+ *
4223
+ * The error indicates that a number of validators were dropped due to excess size, but
4224
+ * the overall election will continue.
4225
+ **/
4226
+ PagedElectionProceeded: GenericPalletEvent<
4227
+ Rv,
4228
+ 'Staking',
4229
+ 'PagedElectionProceeded',
4230
+ { page: number; result: Result<number, number> }
4231
+ >;
4232
+
4233
+ /**
4234
+ * An offence for the given validator, for the given percentage of their stake, at the
4235
+ * given era as been reported.
4236
+ **/
4237
+ OffenceReported: GenericPalletEvent<
4238
+ Rv,
4239
+ 'Staking',
4240
+ 'OffenceReported',
4241
+ { offenceEra: number; validator: AccountId32; fraction: Perbill }
4242
+ >;
4243
+
4244
+ /**
4245
+ * An offence has been processed and the corresponding slash has been computed.
4246
+ **/
4247
+ SlashComputed: GenericPalletEvent<
4248
+ Rv,
4249
+ 'Staking',
4250
+ 'SlashComputed',
4251
+ { offenceEra: number; slashEra: number; offender: AccountId32; page: number }
4252
+ >;
4253
+
4254
+ /**
4255
+ * An unapplied slash has been cancelled.
4256
+ **/
4257
+ SlashCancelled: GenericPalletEvent<Rv, 'Staking', 'SlashCancelled', { slashEra: number; validator: AccountId32 }>;
4258
+
4259
+ /**
4260
+ * Session change has been triggered.
4261
+ *
4262
+ * If planned_era is one era ahead of active_era, it implies new era is being planned and
4263
+ * election is ongoing.
4264
+ **/
4265
+ SessionRotated: GenericPalletEvent<
4266
+ Rv,
4267
+ 'Staking',
4268
+ 'SessionRotated',
4269
+ { startingSession: number; activeEra: number; plannedEra: number }
4270
+ >;
4271
+
4272
+ /**
4273
+ * Something occurred that should never happen under normal operation.
4274
+ * Logged as an event for fail-safe observability.
4275
+ **/
4276
+ Unexpected: GenericPalletEvent<Rv, 'Staking', 'Unexpected', PalletStakingAsyncPalletUnexpectedKind>;
4277
+
4278
+ /**
4279
+ * An offence was reported that was too old to be processed, and thus was dropped.
4280
+ **/
4281
+ OffenceTooOld: GenericPalletEvent<
4282
+ Rv,
4283
+ 'Staking',
4284
+ 'OffenceTooOld',
4285
+ { offenceEra: number; validator: AccountId32; fraction: Perbill }
4286
+ >;
4287
+
4288
+ /**
4289
+ * An old era with the given index was pruned.
4290
+ **/
4291
+ EraPruned: GenericPalletEvent<Rv, 'Staking', 'EraPruned', { index: number }>;
4292
+
4293
+ /**
4294
+ * Generic pallet event
4295
+ **/
4296
+ [prop: string]: GenericPalletEvent<Rv>;
4297
+ };
4298
+ /**
4299
+ * Pallet `AhOps`'s events
4300
+ **/
4301
+ ahOps: {
4302
+ /**
4303
+ * Some lease reserve could not be unreserved and needs manual cleanup.
4304
+ **/
4305
+ LeaseUnreserveRemaining: GenericPalletEvent<
4306
+ Rv,
4307
+ 'AhOps',
4308
+ 'LeaseUnreserveRemaining',
4309
+ { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint }
4310
+ >;
4311
+
4312
+ /**
4313
+ * Some amount for a crowdloan reserve could not be unreserved and needs manual cleanup.
4314
+ **/
4315
+ CrowdloanUnreserveRemaining: GenericPalletEvent<
4316
+ Rv,
4317
+ 'AhOps',
4318
+ 'CrowdloanUnreserveRemaining',
4319
+ { depositor: AccountId32; paraId: PolkadotParachainPrimitivesPrimitivesId; remaining: bigint }
4320
+ >;
4321
+
4322
+ /**
4323
+ * A sovereign parachain account has been migrated from its child to sibling
4324
+ * representation.
4325
+ **/
4326
+ SovereignMigrated: GenericPalletEvent<
4327
+ Rv,
4328
+ 'AhOps',
4329
+ 'SovereignMigrated',
4330
+ {
4331
+ /**
4332
+ * The parachain ID that had its account migrated.
4333
+ **/
4334
+ paraId: PolkadotParachainPrimitivesPrimitivesId;
4335
+
4336
+ /**
4337
+ * The old account that was migrated out of.
4338
+ **/
4339
+ from: AccountId32;
4340
+
4341
+ /**
4342
+ * The new account that was migrated into.
4343
+ **/
4344
+ to: AccountId32;
4345
+
4346
+ /**
4347
+ * Set if this account was derived from a para sovereign account.
4348
+ **/
4349
+ derivationIndex?: number | undefined;
4350
+ }
4351
+ >;
4352
+
4353
+ /**
4354
+ * Generic pallet event
4355
+ **/
4356
+ [prop: string]: GenericPalletEvent<Rv>;
4357
+ };
4358
+ /**
4359
+ * Pallet `AhMigrator`'s events
4360
+ **/
4361
+ ahMigrator: {
4362
+ /**
4363
+ * A stage transition has occurred.
4364
+ **/
4365
+ StageTransition: GenericPalletEvent<
4366
+ Rv,
4367
+ 'AhMigrator',
4368
+ 'StageTransition',
4369
+ {
4370
+ /**
4371
+ * The old stage before the transition.
4372
+ **/
4373
+ old: PalletAhMigratorMigrationStage;
4374
+
4375
+ /**
4376
+ * The new stage after the transition.
4377
+ **/
4378
+ new: PalletAhMigratorMigrationStage;
4379
+ }
4380
+ >;
4381
+
4382
+ /**
4383
+ * We received a batch of messages that will be integrated into a pallet.
4384
+ **/
4385
+ BatchReceived: GenericPalletEvent<
4386
+ Rv,
4387
+ 'AhMigrator',
4388
+ 'BatchReceived',
4389
+ { pallet: PalletAhMigratorPalletEventName; count: number }
4390
+ >;
4391
+
4392
+ /**
4393
+ * We processed a batch of messages for this pallet.
4394
+ **/
4395
+ BatchProcessed: GenericPalletEvent<
4396
+ Rv,
4397
+ 'AhMigrator',
4398
+ 'BatchProcessed',
4399
+ { pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number }
4400
+ >;
4401
+
4402
+ /**
4403
+ * The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
4404
+ * emitted.
4405
+ *
4406
+ * This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
4407
+ * easier to understand. The activation is immediate and affects all events happening
4408
+ * afterwards.
4409
+ **/
4410
+ AssetHubMigrationStarted: GenericPalletEvent<Rv, 'AhMigrator', 'AssetHubMigrationStarted', null>;
4411
+
4412
+ /**
4413
+ * The Asset Hub Migration finished.
4414
+ *
4415
+ * This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
4416
+ * to understand. The finishing is immediate and affects all events happening
4417
+ * afterwards.
4418
+ **/
4419
+ AssetHubMigrationFinished: GenericPalletEvent<Rv, 'AhMigrator', 'AssetHubMigrationFinished', null>;
4420
+
4421
+ /**
4422
+ * Whether the DMP queue was prioritized for the next block.
4423
+ **/
4424
+ DmpQueuePrioritySet: GenericPalletEvent<
4425
+ Rv,
4426
+ 'AhMigrator',
4427
+ 'DmpQueuePrioritySet',
4428
+ {
4429
+ /**
4430
+ * Indicates if DMP queue was successfully set as priority.
4431
+ * If `false`, it means we're in the round-robin phase of our priority pattern
4432
+ * (see [`Config::DmpQueuePriorityPattern`]), where no queue gets priority.
4433
+ **/
4434
+ prioritized: boolean;
4435
+
4436
+ /**
4437
+ * Current block number within the pattern cycle (1 to period).
4438
+ **/
4439
+ cycleBlock: number;
4440
+
4441
+ /**
4442
+ * Total number of blocks in the pattern cycle
4443
+ **/
4444
+ cyclePeriod: number;
4445
+ }
4446
+ >;
4447
+
4448
+ /**
4449
+ * The DMP queue priority config was set.
4450
+ **/
4451
+ DmpQueuePriorityConfigSet: GenericPalletEvent<
4452
+ Rv,
4453
+ 'AhMigrator',
4454
+ 'DmpQueuePriorityConfigSet',
4455
+ {
4456
+ /**
4457
+ * The old priority pattern.
4458
+ **/
4459
+ old: PalletRcMigratorQueuePriority;
4460
+
4461
+ /**
4462
+ * The new priority pattern.
4463
+ **/
4464
+ new: PalletRcMigratorQueuePriority;
4465
+ }
4466
+ >;
4467
+
4468
+ /**
4469
+ * The balances before the migration were recorded.
4470
+ **/
4471
+ BalancesBeforeRecordSet: GenericPalletEvent<
4472
+ Rv,
4473
+ 'AhMigrator',
4474
+ 'BalancesBeforeRecordSet',
4475
+ { checkingAccount: bigint; totalIssuance: bigint }
4476
+ >;
4477
+
4478
+ /**
4479
+ * The balances before the migration were consumed.
4480
+ **/
4481
+ BalancesBeforeRecordConsumed: GenericPalletEvent<
4482
+ Rv,
4483
+ 'AhMigrator',
4484
+ 'BalancesBeforeRecordConsumed',
4485
+ { checkingAccount: bigint; totalIssuance: bigint }
4486
+ >;
4487
+
4488
+ /**
4489
+ * A referendum was cancelled because it could not be mapped.
4490
+ **/
4491
+ ReferendumCanceled: GenericPalletEvent<Rv, 'AhMigrator', 'ReferendumCanceled', { id: number }>;
4492
+
4493
+ /**
4494
+ * The manager account id was set.
4495
+ **/
4496
+ ManagerSet: GenericPalletEvent<
4497
+ Rv,
4498
+ 'AhMigrator',
4499
+ 'ManagerSet',
4500
+ {
4501
+ /**
4502
+ * The old manager account id.
4503
+ **/
4504
+ old?: AccountId32 | undefined;
4505
+
4506
+ /**
4507
+ * The new manager account id.
4508
+ **/
4509
+ new?: AccountId32 | undefined;
4510
+ }
4511
+ >;
4512
+ AccountTranslatedParachainSovereign: GenericPalletEvent<
4513
+ Rv,
4514
+ 'AhMigrator',
4515
+ 'AccountTranslatedParachainSovereign',
4516
+ { from: AccountId32; to: AccountId32 }
4517
+ >;
4518
+ AccountTranslatedParachainSovereignDerived: GenericPalletEvent<
4519
+ Rv,
4520
+ 'AhMigrator',
4521
+ 'AccountTranslatedParachainSovereignDerived',
4522
+ { from: AccountId32; to: AccountId32; derivationIndex: number }
4523
+ >;
4524
+
4525
+ /**
4526
+ * An XCM message was sent.
4527
+ **/
4528
+ XcmSent: GenericPalletEvent<
4529
+ Rv,
4530
+ 'AhMigrator',
4531
+ 'XcmSent',
4532
+ {
4533
+ origin: StagingXcmV5Location;
4534
+ destination: StagingXcmV5Location;
4535
+ message: StagingXcmV5Xcm;
4536
+ messageId: FixedBytes<32>;
4537
+ }
4538
+ >;
4539
+
4540
+ /**
4541
+ * Failed to unreserve a multisig deposit.
4542
+ **/
4543
+ FailedToUnreserveMultisigDeposit: GenericPalletEvent<
4544
+ Rv,
4545
+ 'AhMigrator',
4546
+ 'FailedToUnreserveMultisigDeposit',
4547
+ {
4548
+ /**
4549
+ * The expected amount of the deposit that was expected to be unreserved.
4550
+ **/
4551
+ expectedAmount: bigint;
4552
+
4553
+ /**
4554
+ * The missing amount of the deposit.
4555
+ **/
4556
+ missingAmount: bigint;
4557
+
4558
+ /**
4559
+ * The account that the deposit was unreserved from.
4560
+ **/
4561
+ account: AccountId32;
4562
+ }
4563
+ >;
4564
+
4565
+ /**
4566
+ * Failed to unreserve a legacy status preimage deposit.
4567
+ **/
4568
+ FailedToUnreservePreimageDeposit: GenericPalletEvent<
4569
+ Rv,
4570
+ 'AhMigrator',
4571
+ 'FailedToUnreservePreimageDeposit',
4572
+ {
4573
+ /**
4574
+ * The expected amount of the deposit that was expected to be unreserved.
4575
+ **/
4576
+ expectedAmount: bigint;
4577
+
4578
+ /**
4579
+ * The missing amount of the deposit.
4580
+ **/
4581
+ missingAmount: bigint;
4582
+
4583
+ /**
4584
+ * The account that the deposit was unreserved from.
4585
+ **/
4586
+ account: AccountId32;
4587
+ }
4588
+ >;
2688
4589
 
2689
4590
  /**
2690
4591
  * Generic pallet event