@polkadot/api-augment 14.0.1 → 14.2.1

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.
Files changed (40) hide show
  1. package/cjs/base.d.ts +2 -0
  2. package/cjs/bundle.d.ts +2 -0
  3. package/cjs/index.d.ts +2 -0
  4. package/cjs/kusama/consts.d.ts +1044 -0
  5. package/cjs/kusama/errors.d.ts +2355 -0
  6. package/cjs/kusama/events.d.ts +2543 -0
  7. package/cjs/kusama/index.d.ts +8 -0
  8. package/cjs/kusama/query.d.ts +2378 -0
  9. package/cjs/kusama/registry.d.ts +3 -0
  10. package/cjs/kusama/runtime.d.ts +683 -0
  11. package/cjs/kusama/tx.d.ts +5778 -0
  12. package/cjs/packageDetect.d.ts +1 -0
  13. package/cjs/packageInfo.d.ts +6 -0
  14. package/cjs/packageInfo.js +1 -1
  15. package/cjs/polkadot/consts.d.ts +864 -0
  16. package/cjs/polkadot/errors.d.ts +1954 -0
  17. package/cjs/polkadot/events.d.ts +2024 -0
  18. package/cjs/polkadot/index.d.ts +8 -0
  19. package/cjs/polkadot/query.d.ts +2133 -0
  20. package/cjs/polkadot/registry.d.ts +2 -0
  21. package/cjs/polkadot/runtime.d.ts +683 -0
  22. package/cjs/polkadot/tx.d.ts +4932 -0
  23. package/cjs/substrate/consts.d.ts +1763 -0
  24. package/cjs/substrate/errors.d.ts +3409 -0
  25. package/cjs/substrate/events.d.ts +4300 -0
  26. package/cjs/substrate/index.d.ts +8 -0
  27. package/cjs/substrate/query.d.ts +2582 -0
  28. package/cjs/substrate/registry.d.ts +1 -0
  29. package/cjs/substrate/runtime.d.ts +577 -0
  30. package/cjs/substrate/tx.d.ts +10200 -0
  31. package/kusama/runtime.d.ts +253 -212
  32. package/package.json +368 -128
  33. package/packageInfo.js +1 -1
  34. package/polkadot/consts.d.ts +50 -66
  35. package/polkadot/errors.d.ts +114 -183
  36. package/polkadot/events.d.ts +83 -144
  37. package/polkadot/query.d.ts +159 -100
  38. package/polkadot/runtime.d.ts +315 -179
  39. package/polkadot/tx.d.ts +2770 -636
  40. package/substrate/runtime.d.ts +217 -175
@@ -0,0 +1,2543 @@
1
+ import '@polkadot/api-base/types/events';
2
+ import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
3
+ import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
4
+ import type { ITuple } from '@polkadot/types-codec/types';
5
+ import type { EthereumAddress } from '@polkadot/types/interfaces/eth';
6
+ import type { AccountId32, H256, Perbill, Perquintill } from '@polkadot/types/interfaces/runtime';
7
+ import type { FrameSupportDispatchDispatchInfo, FrameSupportDispatchPostDispatchInfo, FrameSupportMessagesProcessMessageError, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, PalletConvictionVotingTally, PalletElectionProviderMultiPhaseElectionCompute, PalletElectionProviderMultiPhasePhase, PalletMultisigTimepoint, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsCommissionClaimPermission, PalletNominationPoolsPoolState, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletSocietyGroupParams, PalletStakingForcing, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PolkadotParachainPrimitivesPrimitivesHrmpChannelId, PolkadotPrimitivesV7CandidateReceipt, PolkadotRuntimeCommonImplsVersionedLocatableAsset, PolkadotRuntimeParachainsDisputesDisputeLocation, PolkadotRuntimeParachainsDisputesDisputeResult, PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, SpConsensusGrandpaAppPublic, SpNposElectionsElectionScore, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpWeightsWeightV2Weight, StagingKusamaRuntimeProxyType, StagingKusamaRuntimeRuntimeParametersKey, StagingKusamaRuntimeRuntimeParametersValue, StagingXcmV4AssetAssets, StagingXcmV4Location, StagingXcmV4Response, StagingXcmV4TraitsOutcome, StagingXcmV4Xcm, XcmV3TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@polkadot/types/lookup';
8
+ export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
9
+ declare module '@polkadot/api-base/types/events' {
10
+ interface AugmentedEvents<ApiType extends ApiTypes> {
11
+ assetRate: {
12
+ AssetRateCreated: AugmentedEvent<ApiType, [assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset, rate: u128], {
13
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
14
+ rate: u128;
15
+ }>;
16
+ AssetRateRemoved: AugmentedEvent<ApiType, [assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset], {
17
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
18
+ }>;
19
+ AssetRateUpdated: AugmentedEvent<ApiType, [assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset, old: u128, new_: u128], {
20
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
21
+ old: u128;
22
+ new_: u128;
23
+ }>;
24
+ /**
25
+ * Generic event
26
+ **/
27
+ [key: string]: AugmentedEvent<ApiType>;
28
+ };
29
+ auctions: {
30
+ /**
31
+ * An auction ended. All funds become unreserved.
32
+ **/
33
+ AuctionClosed: AugmentedEvent<ApiType, [auctionIndex: u32], {
34
+ auctionIndex: u32;
35
+ }>;
36
+ /**
37
+ * An auction started. Provides its index and the block number where it will begin to
38
+ * close and the first lease period of the quadruplet that is auctioned.
39
+ **/
40
+ AuctionStarted: AugmentedEvent<ApiType, [auctionIndex: u32, leasePeriod: u32, ending: u32], {
41
+ auctionIndex: u32;
42
+ leasePeriod: u32;
43
+ ending: u32;
44
+ }>;
45
+ /**
46
+ * A new bid has been accepted as the current winner.
47
+ **/
48
+ BidAccepted: AugmentedEvent<ApiType, [bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], {
49
+ bidder: AccountId32;
50
+ paraId: u32;
51
+ amount: u128;
52
+ firstSlot: u32;
53
+ lastSlot: u32;
54
+ }>;
55
+ /**
56
+ * Someone attempted to lease the same slot twice for a parachain. The amount is held in
57
+ * reserve but no parachain slot has been leased.
58
+ **/
59
+ ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, amount: u128], {
60
+ paraId: u32;
61
+ leaser: AccountId32;
62
+ amount: u128;
63
+ }>;
64
+ /**
65
+ * Funds were reserved for a winning bid. First balance is the extra amount reserved.
66
+ * Second is the total.
67
+ **/
68
+ Reserved: AugmentedEvent<ApiType, [bidder: AccountId32, extraReserved: u128, totalAmount: u128], {
69
+ bidder: AccountId32;
70
+ extraReserved: u128;
71
+ totalAmount: u128;
72
+ }>;
73
+ /**
74
+ * Funds were unreserved since bidder is no longer active. `[bidder, amount]`
75
+ **/
76
+ Unreserved: AugmentedEvent<ApiType, [bidder: AccountId32, amount: u128], {
77
+ bidder: AccountId32;
78
+ amount: u128;
79
+ }>;
80
+ /**
81
+ * The winning offset was chosen for an auction. This will map into the `Winning` storage
82
+ * map.
83
+ **/
84
+ WinningOffset: AugmentedEvent<ApiType, [auctionIndex: u32, blockNumber: u32], {
85
+ auctionIndex: u32;
86
+ blockNumber: u32;
87
+ }>;
88
+ /**
89
+ * Generic event
90
+ **/
91
+ [key: string]: AugmentedEvent<ApiType>;
92
+ };
93
+ balances: {
94
+ /**
95
+ * A balance was set by root.
96
+ **/
97
+ BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
98
+ who: AccountId32;
99
+ free: u128;
100
+ }>;
101
+ /**
102
+ * Some amount was burned from an account.
103
+ **/
104
+ Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
105
+ who: AccountId32;
106
+ amount: u128;
107
+ }>;
108
+ /**
109
+ * Some amount was deposited (e.g. for transaction fees).
110
+ **/
111
+ Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
112
+ who: AccountId32;
113
+ amount: u128;
114
+ }>;
115
+ /**
116
+ * An account was removed whose balance was non-zero but below ExistentialDeposit,
117
+ * resulting in an outright loss.
118
+ **/
119
+ DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
120
+ account: AccountId32;
121
+ amount: u128;
122
+ }>;
123
+ /**
124
+ * An account was created with some free balance.
125
+ **/
126
+ Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
127
+ account: AccountId32;
128
+ freeBalance: u128;
129
+ }>;
130
+ /**
131
+ * Some balance was frozen.
132
+ **/
133
+ Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
134
+ who: AccountId32;
135
+ amount: u128;
136
+ }>;
137
+ /**
138
+ * Total issuance was increased by `amount`, creating a credit to be balanced.
139
+ **/
140
+ Issued: AugmentedEvent<ApiType, [amount: u128], {
141
+ amount: u128;
142
+ }>;
143
+ /**
144
+ * Some balance was locked.
145
+ **/
146
+ Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
147
+ who: AccountId32;
148
+ amount: u128;
149
+ }>;
150
+ /**
151
+ * Some amount was minted into an account.
152
+ **/
153
+ Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
154
+ who: AccountId32;
155
+ amount: u128;
156
+ }>;
157
+ /**
158
+ * Total issuance was decreased by `amount`, creating a debt to be balanced.
159
+ **/
160
+ Rescinded: AugmentedEvent<ApiType, [amount: u128], {
161
+ amount: u128;
162
+ }>;
163
+ /**
164
+ * Some balance was reserved (moved from free to reserved).
165
+ **/
166
+ Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
167
+ who: AccountId32;
168
+ amount: u128;
169
+ }>;
170
+ /**
171
+ * Some balance was moved from the reserve of the first account to the second account.
172
+ * Final argument indicates the destination balance type.
173
+ **/
174
+ ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
175
+ from: AccountId32;
176
+ to: AccountId32;
177
+ amount: u128;
178
+ destinationStatus: FrameSupportTokensMiscBalanceStatus;
179
+ }>;
180
+ /**
181
+ * Some amount was restored into an account.
182
+ **/
183
+ Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
184
+ who: AccountId32;
185
+ amount: u128;
186
+ }>;
187
+ /**
188
+ * Some amount was removed from the account (e.g. for misbehavior).
189
+ **/
190
+ Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
191
+ who: AccountId32;
192
+ amount: u128;
193
+ }>;
194
+ /**
195
+ * Some amount was suspended from an account (it can be restored later).
196
+ **/
197
+ Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
198
+ who: AccountId32;
199
+ amount: u128;
200
+ }>;
201
+ /**
202
+ * Some balance was thawed.
203
+ **/
204
+ Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
205
+ who: AccountId32;
206
+ amount: u128;
207
+ }>;
208
+ /**
209
+ * The `TotalIssuance` was forcefully changed.
210
+ **/
211
+ TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
212
+ old: u128;
213
+ new_: u128;
214
+ }>;
215
+ /**
216
+ * Transfer succeeded.
217
+ **/
218
+ Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
219
+ from: AccountId32;
220
+ to: AccountId32;
221
+ amount: u128;
222
+ }>;
223
+ /**
224
+ * Some balance was unlocked.
225
+ **/
226
+ Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
227
+ who: AccountId32;
228
+ amount: u128;
229
+ }>;
230
+ /**
231
+ * Some balance was unreserved (moved from reserved to free).
232
+ **/
233
+ Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
234
+ who: AccountId32;
235
+ amount: u128;
236
+ }>;
237
+ /**
238
+ * An account was upgraded.
239
+ **/
240
+ Upgraded: AugmentedEvent<ApiType, [who: AccountId32], {
241
+ who: AccountId32;
242
+ }>;
243
+ /**
244
+ * Some amount was withdrawn from the account (e.g. for transaction fees).
245
+ **/
246
+ Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
247
+ who: AccountId32;
248
+ amount: u128;
249
+ }>;
250
+ /**
251
+ * Generic event
252
+ **/
253
+ [key: string]: AugmentedEvent<ApiType>;
254
+ };
255
+ bounties: {
256
+ /**
257
+ * A bounty is approved.
258
+ **/
259
+ BountyApproved: AugmentedEvent<ApiType, [index: u32], {
260
+ index: u32;
261
+ }>;
262
+ /**
263
+ * A bounty is awarded to a beneficiary.
264
+ **/
265
+ BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: AccountId32], {
266
+ index: u32;
267
+ beneficiary: AccountId32;
268
+ }>;
269
+ /**
270
+ * A bounty proposal is funded and became active.
271
+ **/
272
+ BountyBecameActive: AugmentedEvent<ApiType, [index: u32], {
273
+ index: u32;
274
+ }>;
275
+ /**
276
+ * A bounty is cancelled.
277
+ **/
278
+ BountyCanceled: AugmentedEvent<ApiType, [index: u32], {
279
+ index: u32;
280
+ }>;
281
+ /**
282
+ * A bounty is claimed by beneficiary.
283
+ **/
284
+ BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: AccountId32], {
285
+ index: u32;
286
+ payout: u128;
287
+ beneficiary: AccountId32;
288
+ }>;
289
+ /**
290
+ * A bounty expiry is extended.
291
+ **/
292
+ BountyExtended: AugmentedEvent<ApiType, [index: u32], {
293
+ index: u32;
294
+ }>;
295
+ /**
296
+ * New bounty proposal.
297
+ **/
298
+ BountyProposed: AugmentedEvent<ApiType, [index: u32], {
299
+ index: u32;
300
+ }>;
301
+ /**
302
+ * A bounty proposal was rejected; funds were slashed.
303
+ **/
304
+ BountyRejected: AugmentedEvent<ApiType, [index: u32, bond: u128], {
305
+ index: u32;
306
+ bond: u128;
307
+ }>;
308
+ /**
309
+ * A bounty curator is accepted.
310
+ **/
311
+ CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], {
312
+ bountyId: u32;
313
+ curator: AccountId32;
314
+ }>;
315
+ /**
316
+ * A bounty curator is proposed.
317
+ **/
318
+ CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], {
319
+ bountyId: u32;
320
+ curator: AccountId32;
321
+ }>;
322
+ /**
323
+ * A bounty curator is unassigned.
324
+ **/
325
+ CuratorUnassigned: AugmentedEvent<ApiType, [bountyId: u32], {
326
+ bountyId: u32;
327
+ }>;
328
+ /**
329
+ * Generic event
330
+ **/
331
+ [key: string]: AugmentedEvent<ApiType>;
332
+ };
333
+ childBounties: {
334
+ /**
335
+ * A child-bounty is added.
336
+ **/
337
+ Added: AugmentedEvent<ApiType, [index: u32, childIndex: u32], {
338
+ index: u32;
339
+ childIndex: u32;
340
+ }>;
341
+ /**
342
+ * A child-bounty is awarded to a beneficiary.
343
+ **/
344
+ Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: AccountId32], {
345
+ index: u32;
346
+ childIndex: u32;
347
+ beneficiary: AccountId32;
348
+ }>;
349
+ /**
350
+ * A child-bounty is cancelled.
351
+ **/
352
+ Canceled: AugmentedEvent<ApiType, [index: u32, childIndex: u32], {
353
+ index: u32;
354
+ childIndex: u32;
355
+ }>;
356
+ /**
357
+ * A child-bounty is claimed by beneficiary.
358
+ **/
359
+ Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32], {
360
+ index: u32;
361
+ childIndex: u32;
362
+ payout: u128;
363
+ beneficiary: AccountId32;
364
+ }>;
365
+ /**
366
+ * Generic event
367
+ **/
368
+ [key: string]: AugmentedEvent<ApiType>;
369
+ };
370
+ claims: {
371
+ /**
372
+ * Someone claimed some DOTs.
373
+ **/
374
+ Claimed: AugmentedEvent<ApiType, [who: AccountId32, ethereumAddress: EthereumAddress, amount: u128], {
375
+ who: AccountId32;
376
+ ethereumAddress: EthereumAddress;
377
+ amount: u128;
378
+ }>;
379
+ /**
380
+ * Generic event
381
+ **/
382
+ [key: string]: AugmentedEvent<ApiType>;
383
+ };
384
+ convictionVoting: {
385
+ /**
386
+ * An account has delegated their vote to another account. \[who, target\]
387
+ **/
388
+ Delegated: AugmentedEvent<ApiType, [AccountId32, AccountId32]>;
389
+ /**
390
+ * An \[account\] has cancelled a previous delegation operation.
391
+ **/
392
+ Undelegated: AugmentedEvent<ApiType, [AccountId32]>;
393
+ /**
394
+ * Generic event
395
+ **/
396
+ [key: string]: AugmentedEvent<ApiType>;
397
+ };
398
+ coretime: {
399
+ /**
400
+ * A core has received a new assignment from the broker chain.
401
+ **/
402
+ CoreAssigned: AugmentedEvent<ApiType, [core: u32], {
403
+ core: u32;
404
+ }>;
405
+ /**
406
+ * The broker chain has asked for revenue information for a specific block.
407
+ **/
408
+ RevenueInfoRequested: AugmentedEvent<ApiType, [when: u32], {
409
+ when: u32;
410
+ }>;
411
+ /**
412
+ * Generic event
413
+ **/
414
+ [key: string]: AugmentedEvent<ApiType>;
415
+ };
416
+ crowdloan: {
417
+ /**
418
+ * A parachain has been moved to `NewRaise`
419
+ **/
420
+ AddedToNewRaise: AugmentedEvent<ApiType, [paraId: u32], {
421
+ paraId: u32;
422
+ }>;
423
+ /**
424
+ * All loans in a fund have been refunded.
425
+ **/
426
+ AllRefunded: AugmentedEvent<ApiType, [paraId: u32], {
427
+ paraId: u32;
428
+ }>;
429
+ /**
430
+ * Contributed to a crowd sale.
431
+ **/
432
+ Contributed: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], {
433
+ who: AccountId32;
434
+ fundIndex: u32;
435
+ amount: u128;
436
+ }>;
437
+ /**
438
+ * Create a new crowdloaning campaign.
439
+ **/
440
+ Created: AugmentedEvent<ApiType, [paraId: u32], {
441
+ paraId: u32;
442
+ }>;
443
+ /**
444
+ * Fund is dissolved.
445
+ **/
446
+ Dissolved: AugmentedEvent<ApiType, [paraId: u32], {
447
+ paraId: u32;
448
+ }>;
449
+ /**
450
+ * The configuration to a crowdloan has been edited.
451
+ **/
452
+ Edited: AugmentedEvent<ApiType, [paraId: u32], {
453
+ paraId: u32;
454
+ }>;
455
+ /**
456
+ * The result of trying to submit a new bid to the Slots pallet.
457
+ **/
458
+ HandleBidResult: AugmentedEvent<ApiType, [paraId: u32, result: Result<Null, SpRuntimeDispatchError>], {
459
+ paraId: u32;
460
+ result: Result<Null, SpRuntimeDispatchError>;
461
+ }>;
462
+ /**
463
+ * A memo has been updated.
464
+ **/
465
+ MemoUpdated: AugmentedEvent<ApiType, [who: AccountId32, paraId: u32, memo: Bytes], {
466
+ who: AccountId32;
467
+ paraId: u32;
468
+ memo: Bytes;
469
+ }>;
470
+ /**
471
+ * The loans in a fund have been partially dissolved, i.e. there are some left
472
+ * over child keys that still need to be killed.
473
+ **/
474
+ PartiallyRefunded: AugmentedEvent<ApiType, [paraId: u32], {
475
+ paraId: u32;
476
+ }>;
477
+ /**
478
+ * Withdrew full balance of a contributor.
479
+ **/
480
+ Withdrew: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], {
481
+ who: AccountId32;
482
+ fundIndex: u32;
483
+ amount: u128;
484
+ }>;
485
+ /**
486
+ * Generic event
487
+ **/
488
+ [key: string]: AugmentedEvent<ApiType>;
489
+ };
490
+ electionProviderMultiPhase: {
491
+ /**
492
+ * An election failed.
493
+ *
494
+ * Not much can be said about which computes failed in the process.
495
+ **/
496
+ ElectionFailed: AugmentedEvent<ApiType, []>;
497
+ /**
498
+ * The election has been finalized, with the given computation and score.
499
+ **/
500
+ ElectionFinalized: AugmentedEvent<ApiType, [compute: PalletElectionProviderMultiPhaseElectionCompute, score: SpNposElectionsElectionScore], {
501
+ compute: PalletElectionProviderMultiPhaseElectionCompute;
502
+ score: SpNposElectionsElectionScore;
503
+ }>;
504
+ /**
505
+ * There was a phase transition in a given round.
506
+ **/
507
+ PhaseTransitioned: AugmentedEvent<ApiType, [from: PalletElectionProviderMultiPhasePhase, to: PalletElectionProviderMultiPhasePhase, round: u32], {
508
+ from: PalletElectionProviderMultiPhasePhase;
509
+ to: PalletElectionProviderMultiPhasePhase;
510
+ round: u32;
511
+ }>;
512
+ /**
513
+ * An account has been rewarded for their signed submission being finalized.
514
+ **/
515
+ Rewarded: AugmentedEvent<ApiType, [account: AccountId32, value: u128], {
516
+ account: AccountId32;
517
+ value: u128;
518
+ }>;
519
+ /**
520
+ * An account has been slashed for submitting an invalid signed submission.
521
+ **/
522
+ Slashed: AugmentedEvent<ApiType, [account: AccountId32, value: u128], {
523
+ account: AccountId32;
524
+ value: u128;
525
+ }>;
526
+ /**
527
+ * A solution was stored with the given compute.
528
+ *
529
+ * The `origin` indicates the origin of the solution. If `origin` is `Some(AccountId)`,
530
+ * the stored solution was submitted in the signed phase by a miner with the `AccountId`.
531
+ * Otherwise, the solution was stored either during the unsigned phase or by
532
+ * `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make
533
+ * room for this one.
534
+ **/
535
+ SolutionStored: AugmentedEvent<ApiType, [compute: PalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool], {
536
+ compute: PalletElectionProviderMultiPhaseElectionCompute;
537
+ origin: Option<AccountId32>;
538
+ prevEjected: bool;
539
+ }>;
540
+ /**
541
+ * Generic event
542
+ **/
543
+ [key: string]: AugmentedEvent<ApiType>;
544
+ };
545
+ fastUnstake: {
546
+ /**
547
+ * A batch was partially checked for the given eras, but the process did not finish.
548
+ **/
549
+ BatchChecked: AugmentedEvent<ApiType, [eras: Vec<u32>], {
550
+ eras: Vec<u32>;
551
+ }>;
552
+ /**
553
+ * A batch of a given size was terminated.
554
+ *
555
+ * This is always follows by a number of `Unstaked` or `Slashed` events, marking the end
556
+ * of the batch. A new batch will be created upon next block.
557
+ **/
558
+ BatchFinished: AugmentedEvent<ApiType, [size_: u32], {
559
+ size_: u32;
560
+ }>;
561
+ /**
562
+ * An internal error happened. Operations will be paused now.
563
+ **/
564
+ InternalError: AugmentedEvent<ApiType, []>;
565
+ /**
566
+ * A staker was slashed for requesting fast-unstake whilst being exposed.
567
+ **/
568
+ Slashed: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
569
+ stash: AccountId32;
570
+ amount: u128;
571
+ }>;
572
+ /**
573
+ * A staker was unstaked.
574
+ **/
575
+ Unstaked: AugmentedEvent<ApiType, [stash: AccountId32, result: Result<Null, SpRuntimeDispatchError>], {
576
+ stash: AccountId32;
577
+ result: Result<Null, SpRuntimeDispatchError>;
578
+ }>;
579
+ /**
580
+ * Generic event
581
+ **/
582
+ [key: string]: AugmentedEvent<ApiType>;
583
+ };
584
+ fellowshipCollective: {
585
+ /**
586
+ * A member `who` has been added.
587
+ **/
588
+ MemberAdded: AugmentedEvent<ApiType, [who: AccountId32], {
589
+ who: AccountId32;
590
+ }>;
591
+ /**
592
+ * The member `who` had their `AccountId` changed to `new_who`.
593
+ **/
594
+ MemberExchanged: AugmentedEvent<ApiType, [who: AccountId32, newWho: AccountId32], {
595
+ who: AccountId32;
596
+ newWho: AccountId32;
597
+ }>;
598
+ /**
599
+ * The member `who` of given `rank` has been removed from the collective.
600
+ **/
601
+ MemberRemoved: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], {
602
+ who: AccountId32;
603
+ rank: u16;
604
+ }>;
605
+ /**
606
+ * The member `who`se rank has been changed to the given `rank`.
607
+ **/
608
+ RankChanged: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], {
609
+ who: AccountId32;
610
+ rank: u16;
611
+ }>;
612
+ /**
613
+ * The member `who` has voted for the `poll` with the given `vote` leading to an updated
614
+ * `tally`.
615
+ **/
616
+ Voted: AugmentedEvent<ApiType, [who: AccountId32, poll: u32, vote: PalletRankedCollectiveVoteRecord, tally: PalletRankedCollectiveTally], {
617
+ who: AccountId32;
618
+ poll: u32;
619
+ vote: PalletRankedCollectiveVoteRecord;
620
+ tally: PalletRankedCollectiveTally;
621
+ }>;
622
+ /**
623
+ * Generic event
624
+ **/
625
+ [key: string]: AugmentedEvent<ApiType>;
626
+ };
627
+ fellowshipReferenda: {
628
+ /**
629
+ * A referendum has been approved and its proposal has been scheduled.
630
+ **/
631
+ Approved: AugmentedEvent<ApiType, [index: u32], {
632
+ index: u32;
633
+ }>;
634
+ /**
635
+ * A referendum has been cancelled.
636
+ **/
637
+ Cancelled: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], {
638
+ index: u32;
639
+ tally: PalletRankedCollectiveTally;
640
+ }>;
641
+ ConfirmAborted: AugmentedEvent<ApiType, [index: u32], {
642
+ index: u32;
643
+ }>;
644
+ /**
645
+ * A referendum has ended its confirmation phase and is ready for approval.
646
+ **/
647
+ Confirmed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], {
648
+ index: u32;
649
+ tally: PalletRankedCollectiveTally;
650
+ }>;
651
+ ConfirmStarted: AugmentedEvent<ApiType, [index: u32], {
652
+ index: u32;
653
+ }>;
654
+ /**
655
+ * The decision deposit has been placed.
656
+ **/
657
+ DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
658
+ index: u32;
659
+ who: AccountId32;
660
+ amount: u128;
661
+ }>;
662
+ /**
663
+ * The decision deposit has been refunded.
664
+ **/
665
+ DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
666
+ index: u32;
667
+ who: AccountId32;
668
+ amount: u128;
669
+ }>;
670
+ /**
671
+ * A referendum has moved into the deciding phase.
672
+ **/
673
+ DecisionStarted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletRankedCollectiveTally], {
674
+ index: u32;
675
+ track: u16;
676
+ proposal: FrameSupportPreimagesBounded;
677
+ tally: PalletRankedCollectiveTally;
678
+ }>;
679
+ /**
680
+ * A deposit has been slashed.
681
+ **/
682
+ DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
683
+ who: AccountId32;
684
+ amount: u128;
685
+ }>;
686
+ /**
687
+ * A referendum has been killed.
688
+ **/
689
+ Killed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], {
690
+ index: u32;
691
+ tally: PalletRankedCollectiveTally;
692
+ }>;
693
+ /**
694
+ * Metadata for a referendum has been cleared.
695
+ **/
696
+ MetadataCleared: AugmentedEvent<ApiType, [index: u32, hash_: H256], {
697
+ index: u32;
698
+ hash_: H256;
699
+ }>;
700
+ /**
701
+ * Metadata for a referendum has been set.
702
+ **/
703
+ MetadataSet: AugmentedEvent<ApiType, [index: u32, hash_: H256], {
704
+ index: u32;
705
+ hash_: H256;
706
+ }>;
707
+ /**
708
+ * A proposal has been rejected by referendum.
709
+ **/
710
+ Rejected: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], {
711
+ index: u32;
712
+ tally: PalletRankedCollectiveTally;
713
+ }>;
714
+ /**
715
+ * The submission deposit has been refunded.
716
+ **/
717
+ SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
718
+ index: u32;
719
+ who: AccountId32;
720
+ amount: u128;
721
+ }>;
722
+ /**
723
+ * A referendum has been submitted.
724
+ **/
725
+ Submitted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded], {
726
+ index: u32;
727
+ track: u16;
728
+ proposal: FrameSupportPreimagesBounded;
729
+ }>;
730
+ /**
731
+ * A referendum has been timed out without being decided.
732
+ **/
733
+ TimedOut: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], {
734
+ index: u32;
735
+ tally: PalletRankedCollectiveTally;
736
+ }>;
737
+ /**
738
+ * Generic event
739
+ **/
740
+ [key: string]: AugmentedEvent<ApiType>;
741
+ };
742
+ grandpa: {
743
+ /**
744
+ * New authority set has been applied.
745
+ **/
746
+ NewAuthorities: AugmentedEvent<ApiType, [authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>], {
747
+ authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
748
+ }>;
749
+ /**
750
+ * Current authority set has been paused.
751
+ **/
752
+ Paused: AugmentedEvent<ApiType, []>;
753
+ /**
754
+ * Current authority set has been resumed.
755
+ **/
756
+ Resumed: AugmentedEvent<ApiType, []>;
757
+ /**
758
+ * Generic event
759
+ **/
760
+ [key: string]: AugmentedEvent<ApiType>;
761
+ };
762
+ hrmp: {
763
+ /**
764
+ * HRMP channel closed.
765
+ **/
766
+ ChannelClosed: AugmentedEvent<ApiType, [byParachain: u32, channelId: PolkadotParachainPrimitivesPrimitivesHrmpChannelId], {
767
+ byParachain: u32;
768
+ channelId: PolkadotParachainPrimitivesPrimitivesHrmpChannelId;
769
+ }>;
770
+ /**
771
+ * An HRMP channel was opened via Root origin.
772
+ **/
773
+ HrmpChannelForceOpened: AugmentedEvent<ApiType, [sender: u32, recipient: u32, proposedMaxCapacity: u32, proposedMaxMessageSize: u32], {
774
+ sender: u32;
775
+ recipient: u32;
776
+ proposedMaxCapacity: u32;
777
+ proposedMaxMessageSize: u32;
778
+ }>;
779
+ /**
780
+ * An HRMP channel was opened with a system chain.
781
+ **/
782
+ HrmpSystemChannelOpened: AugmentedEvent<ApiType, [sender: u32, recipient: u32, proposedMaxCapacity: u32, proposedMaxMessageSize: u32], {
783
+ sender: u32;
784
+ recipient: u32;
785
+ proposedMaxCapacity: u32;
786
+ proposedMaxMessageSize: u32;
787
+ }>;
788
+ /**
789
+ * Open HRMP channel accepted.
790
+ **/
791
+ OpenChannelAccepted: AugmentedEvent<ApiType, [sender: u32, recipient: u32], {
792
+ sender: u32;
793
+ recipient: u32;
794
+ }>;
795
+ /**
796
+ * An HRMP channel request sent by the receiver was canceled by either party.
797
+ **/
798
+ OpenChannelCanceled: AugmentedEvent<ApiType, [byParachain: u32, channelId: PolkadotParachainPrimitivesPrimitivesHrmpChannelId], {
799
+ byParachain: u32;
800
+ channelId: PolkadotParachainPrimitivesPrimitivesHrmpChannelId;
801
+ }>;
802
+ /**
803
+ * An HRMP channel's deposits were updated.
804
+ **/
805
+ OpenChannelDepositsUpdated: AugmentedEvent<ApiType, [sender: u32, recipient: u32], {
806
+ sender: u32;
807
+ recipient: u32;
808
+ }>;
809
+ /**
810
+ * Open HRMP channel requested.
811
+ **/
812
+ OpenChannelRequested: AugmentedEvent<ApiType, [sender: u32, recipient: u32, proposedMaxCapacity: u32, proposedMaxMessageSize: u32], {
813
+ sender: u32;
814
+ recipient: u32;
815
+ proposedMaxCapacity: u32;
816
+ proposedMaxMessageSize: u32;
817
+ }>;
818
+ /**
819
+ * Generic event
820
+ **/
821
+ [key: string]: AugmentedEvent<ApiType>;
822
+ };
823
+ indices: {
824
+ /**
825
+ * A account index was assigned.
826
+ **/
827
+ IndexAssigned: AugmentedEvent<ApiType, [who: AccountId32, index: u32], {
828
+ who: AccountId32;
829
+ index: u32;
830
+ }>;
831
+ /**
832
+ * A account index has been freed up (unassigned).
833
+ **/
834
+ IndexFreed: AugmentedEvent<ApiType, [index: u32], {
835
+ index: u32;
836
+ }>;
837
+ /**
838
+ * A account index has been frozen to its current account ID.
839
+ **/
840
+ IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: AccountId32], {
841
+ index: u32;
842
+ who: AccountId32;
843
+ }>;
844
+ /**
845
+ * Generic event
846
+ **/
847
+ [key: string]: AugmentedEvent<ApiType>;
848
+ };
849
+ messageQueue: {
850
+ /**
851
+ * Message placed in overweight queue.
852
+ **/
853
+ OverweightEnqueued: AugmentedEvent<ApiType, [id: U8aFixed, origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, pageIndex: u32, messageIndex: u32], {
854
+ id: U8aFixed;
855
+ origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
856
+ pageIndex: u32;
857
+ messageIndex: u32;
858
+ }>;
859
+ /**
860
+ * This page was reaped.
861
+ **/
862
+ PageReaped: AugmentedEvent<ApiType, [origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, index: u32], {
863
+ origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
864
+ index: u32;
865
+ }>;
866
+ /**
867
+ * Message is processed.
868
+ **/
869
+ Processed: AugmentedEvent<ApiType, [id: H256, origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, weightUsed: SpWeightsWeightV2Weight, success: bool], {
870
+ id: H256;
871
+ origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
872
+ weightUsed: SpWeightsWeightV2Weight;
873
+ success: bool;
874
+ }>;
875
+ /**
876
+ * Message discarded due to an error in the `MessageProcessor` (usually a format error).
877
+ **/
878
+ ProcessingFailed: AugmentedEvent<ApiType, [id: H256, origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin, error: FrameSupportMessagesProcessMessageError], {
879
+ id: H256;
880
+ origin: PolkadotRuntimeParachainsInclusionAggregateMessageOrigin;
881
+ error: FrameSupportMessagesProcessMessageError;
882
+ }>;
883
+ /**
884
+ * Generic event
885
+ **/
886
+ [key: string]: AugmentedEvent<ApiType>;
887
+ };
888
+ multisig: {
889
+ /**
890
+ * A multisig operation has been approved by someone.
891
+ **/
892
+ MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
893
+ approving: AccountId32;
894
+ timepoint: PalletMultisigTimepoint;
895
+ multisig: AccountId32;
896
+ callHash: U8aFixed;
897
+ }>;
898
+ /**
899
+ * A multisig operation has been cancelled.
900
+ **/
901
+ MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
902
+ cancelling: AccountId32;
903
+ timepoint: PalletMultisigTimepoint;
904
+ multisig: AccountId32;
905
+ callHash: U8aFixed;
906
+ }>;
907
+ /**
908
+ * A multisig operation has been executed.
909
+ **/
910
+ MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, SpRuntimeDispatchError>], {
911
+ approving: AccountId32;
912
+ timepoint: PalletMultisigTimepoint;
913
+ multisig: AccountId32;
914
+ callHash: U8aFixed;
915
+ result: Result<Null, SpRuntimeDispatchError>;
916
+ }>;
917
+ /**
918
+ * A new multisig operation has begun.
919
+ **/
920
+ NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], {
921
+ approving: AccountId32;
922
+ multisig: AccountId32;
923
+ callHash: U8aFixed;
924
+ }>;
925
+ /**
926
+ * Generic event
927
+ **/
928
+ [key: string]: AugmentedEvent<ApiType>;
929
+ };
930
+ nis: {
931
+ /**
932
+ * A bid was dropped from a queue because of another, more substantial, bid was present.
933
+ **/
934
+ BidDropped: AugmentedEvent<ApiType, [who: AccountId32, amount: u128, duration: u32], {
935
+ who: AccountId32;
936
+ amount: u128;
937
+ duration: u32;
938
+ }>;
939
+ /**
940
+ * A bid was successfully placed.
941
+ **/
942
+ BidPlaced: AugmentedEvent<ApiType, [who: AccountId32, amount: u128, duration: u32], {
943
+ who: AccountId32;
944
+ amount: u128;
945
+ duration: u32;
946
+ }>;
947
+ /**
948
+ * A bid was successfully removed (before being accepted).
949
+ **/
950
+ BidRetracted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128, duration: u32], {
951
+ who: AccountId32;
952
+ amount: u128;
953
+ duration: u32;
954
+ }>;
955
+ /**
956
+ * An automatic funding of the deficit was made.
957
+ **/
958
+ Funded: AugmentedEvent<ApiType, [deficit: u128], {
959
+ deficit: u128;
960
+ }>;
961
+ /**
962
+ * A bid was accepted. The balance may not be released until expiry.
963
+ **/
964
+ Issued: AugmentedEvent<ApiType, [index: u32, expiry: u32, who: AccountId32, proportion: Perquintill, amount: u128], {
965
+ index: u32;
966
+ expiry: u32;
967
+ who: AccountId32;
968
+ proportion: Perquintill;
969
+ amount: u128;
970
+ }>;
971
+ /**
972
+ * An receipt has been (at least partially) thawed.
973
+ **/
974
+ Thawed: AugmentedEvent<ApiType, [index: u32, who: AccountId32, proportion: Perquintill, amount: u128, dropped: bool], {
975
+ index: u32;
976
+ who: AccountId32;
977
+ proportion: Perquintill;
978
+ amount: u128;
979
+ dropped: bool;
980
+ }>;
981
+ /**
982
+ * A receipt was transferred.
983
+ **/
984
+ Transferred: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, index: u32], {
985
+ from: AccountId32;
986
+ to: AccountId32;
987
+ index: u32;
988
+ }>;
989
+ /**
990
+ * Generic event
991
+ **/
992
+ [key: string]: AugmentedEvent<ApiType>;
993
+ };
994
+ nisCounterpartBalances: {
995
+ /**
996
+ * A balance was set by root.
997
+ **/
998
+ BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
999
+ who: AccountId32;
1000
+ free: u128;
1001
+ }>;
1002
+ /**
1003
+ * Some amount was burned from an account.
1004
+ **/
1005
+ Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1006
+ who: AccountId32;
1007
+ amount: u128;
1008
+ }>;
1009
+ /**
1010
+ * Some amount was deposited (e.g. for transaction fees).
1011
+ **/
1012
+ Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1013
+ who: AccountId32;
1014
+ amount: u128;
1015
+ }>;
1016
+ /**
1017
+ * An account was removed whose balance was non-zero but below ExistentialDeposit,
1018
+ * resulting in an outright loss.
1019
+ **/
1020
+ DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
1021
+ account: AccountId32;
1022
+ amount: u128;
1023
+ }>;
1024
+ /**
1025
+ * An account was created with some free balance.
1026
+ **/
1027
+ Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
1028
+ account: AccountId32;
1029
+ freeBalance: u128;
1030
+ }>;
1031
+ /**
1032
+ * Some balance was frozen.
1033
+ **/
1034
+ Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1035
+ who: AccountId32;
1036
+ amount: u128;
1037
+ }>;
1038
+ /**
1039
+ * Total issuance was increased by `amount`, creating a credit to be balanced.
1040
+ **/
1041
+ Issued: AugmentedEvent<ApiType, [amount: u128], {
1042
+ amount: u128;
1043
+ }>;
1044
+ /**
1045
+ * Some balance was locked.
1046
+ **/
1047
+ Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1048
+ who: AccountId32;
1049
+ amount: u128;
1050
+ }>;
1051
+ /**
1052
+ * Some amount was minted into an account.
1053
+ **/
1054
+ Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1055
+ who: AccountId32;
1056
+ amount: u128;
1057
+ }>;
1058
+ /**
1059
+ * Total issuance was decreased by `amount`, creating a debt to be balanced.
1060
+ **/
1061
+ Rescinded: AugmentedEvent<ApiType, [amount: u128], {
1062
+ amount: u128;
1063
+ }>;
1064
+ /**
1065
+ * Some balance was reserved (moved from free to reserved).
1066
+ **/
1067
+ Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1068
+ who: AccountId32;
1069
+ amount: u128;
1070
+ }>;
1071
+ /**
1072
+ * Some balance was moved from the reserve of the first account to the second account.
1073
+ * Final argument indicates the destination balance type.
1074
+ **/
1075
+ ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
1076
+ from: AccountId32;
1077
+ to: AccountId32;
1078
+ amount: u128;
1079
+ destinationStatus: FrameSupportTokensMiscBalanceStatus;
1080
+ }>;
1081
+ /**
1082
+ * Some amount was restored into an account.
1083
+ **/
1084
+ Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1085
+ who: AccountId32;
1086
+ amount: u128;
1087
+ }>;
1088
+ /**
1089
+ * Some amount was removed from the account (e.g. for misbehavior).
1090
+ **/
1091
+ Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1092
+ who: AccountId32;
1093
+ amount: u128;
1094
+ }>;
1095
+ /**
1096
+ * Some amount was suspended from an account (it can be restored later).
1097
+ **/
1098
+ Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1099
+ who: AccountId32;
1100
+ amount: u128;
1101
+ }>;
1102
+ /**
1103
+ * Some balance was thawed.
1104
+ **/
1105
+ Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1106
+ who: AccountId32;
1107
+ amount: u128;
1108
+ }>;
1109
+ /**
1110
+ * The `TotalIssuance` was forcefully changed.
1111
+ **/
1112
+ TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
1113
+ old: u128;
1114
+ new_: u128;
1115
+ }>;
1116
+ /**
1117
+ * Transfer succeeded.
1118
+ **/
1119
+ Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
1120
+ from: AccountId32;
1121
+ to: AccountId32;
1122
+ amount: u128;
1123
+ }>;
1124
+ /**
1125
+ * Some balance was unlocked.
1126
+ **/
1127
+ Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1128
+ who: AccountId32;
1129
+ amount: u128;
1130
+ }>;
1131
+ /**
1132
+ * Some balance was unreserved (moved from reserved to free).
1133
+ **/
1134
+ Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1135
+ who: AccountId32;
1136
+ amount: u128;
1137
+ }>;
1138
+ /**
1139
+ * An account was upgraded.
1140
+ **/
1141
+ Upgraded: AugmentedEvent<ApiType, [who: AccountId32], {
1142
+ who: AccountId32;
1143
+ }>;
1144
+ /**
1145
+ * Some amount was withdrawn from the account (e.g. for transaction fees).
1146
+ **/
1147
+ Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1148
+ who: AccountId32;
1149
+ amount: u128;
1150
+ }>;
1151
+ /**
1152
+ * Generic event
1153
+ **/
1154
+ [key: string]: AugmentedEvent<ApiType>;
1155
+ };
1156
+ nominationPools: {
1157
+ /**
1158
+ * A member has became bonded in a pool.
1159
+ **/
1160
+ Bonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, bonded: u128, joined: bool], {
1161
+ member: AccountId32;
1162
+ poolId: u32;
1163
+ bonded: u128;
1164
+ joined: bool;
1165
+ }>;
1166
+ /**
1167
+ * A pool has been created.
1168
+ **/
1169
+ Created: AugmentedEvent<ApiType, [depositor: AccountId32, poolId: u32], {
1170
+ depositor: AccountId32;
1171
+ poolId: u32;
1172
+ }>;
1173
+ /**
1174
+ * A pool has been destroyed.
1175
+ **/
1176
+ Destroyed: AugmentedEvent<ApiType, [poolId: u32], {
1177
+ poolId: u32;
1178
+ }>;
1179
+ /**
1180
+ * A member has been removed from a pool.
1181
+ *
1182
+ * The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
1183
+ **/
1184
+ MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: AccountId32], {
1185
+ poolId: u32;
1186
+ member: AccountId32;
1187
+ }>;
1188
+ /**
1189
+ * Topped up deficit in frozen ED of the reward pool.
1190
+ **/
1191
+ MinBalanceDeficitAdjusted: AugmentedEvent<ApiType, [poolId: u32, amount: u128], {
1192
+ poolId: u32;
1193
+ amount: u128;
1194
+ }>;
1195
+ /**
1196
+ * Claimed excess frozen ED of af the reward pool.
1197
+ **/
1198
+ MinBalanceExcessAdjusted: AugmentedEvent<ApiType, [poolId: u32, amount: u128], {
1199
+ poolId: u32;
1200
+ amount: u128;
1201
+ }>;
1202
+ /**
1203
+ * A payout has been made to a member.
1204
+ **/
1205
+ PaidOut: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, payout: u128], {
1206
+ member: AccountId32;
1207
+ poolId: u32;
1208
+ payout: u128;
1209
+ }>;
1210
+ /**
1211
+ * A pool's commission `change_rate` has been changed.
1212
+ **/
1213
+ PoolCommissionChangeRateUpdated: AugmentedEvent<ApiType, [poolId: u32, changeRate: PalletNominationPoolsCommissionChangeRate], {
1214
+ poolId: u32;
1215
+ changeRate: PalletNominationPoolsCommissionChangeRate;
1216
+ }>;
1217
+ /**
1218
+ * Pool commission has been claimed.
1219
+ **/
1220
+ PoolCommissionClaimed: AugmentedEvent<ApiType, [poolId: u32, commission: u128], {
1221
+ poolId: u32;
1222
+ commission: u128;
1223
+ }>;
1224
+ /**
1225
+ * Pool commission claim permission has been updated.
1226
+ **/
1227
+ PoolCommissionClaimPermissionUpdated: AugmentedEvent<ApiType, [poolId: u32, permission: Option<PalletNominationPoolsCommissionClaimPermission>], {
1228
+ poolId: u32;
1229
+ permission: Option<PalletNominationPoolsCommissionClaimPermission>;
1230
+ }>;
1231
+ /**
1232
+ * A pool's commission setting has been changed.
1233
+ **/
1234
+ PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>>], {
1235
+ poolId: u32;
1236
+ current: Option<ITuple<[Perbill, AccountId32]>>;
1237
+ }>;
1238
+ /**
1239
+ * A pool's maximum commission setting has been changed.
1240
+ **/
1241
+ PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: Perbill], {
1242
+ poolId: u32;
1243
+ maxCommission: Perbill;
1244
+ }>;
1245
+ /**
1246
+ * The active balance of pool `pool_id` has been slashed to `balance`.
1247
+ **/
1248
+ PoolSlashed: AugmentedEvent<ApiType, [poolId: u32, balance: u128], {
1249
+ poolId: u32;
1250
+ balance: u128;
1251
+ }>;
1252
+ /**
1253
+ * The roles of a pool have been updated to the given new roles. Note that the depositor
1254
+ * can never change.
1255
+ **/
1256
+ RolesUpdated: AugmentedEvent<ApiType, [root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32>], {
1257
+ root: Option<AccountId32>;
1258
+ bouncer: Option<AccountId32>;
1259
+ nominator: Option<AccountId32>;
1260
+ }>;
1261
+ /**
1262
+ * The state of a pool has changed
1263
+ **/
1264
+ StateChanged: AugmentedEvent<ApiType, [poolId: u32, newState: PalletNominationPoolsPoolState], {
1265
+ poolId: u32;
1266
+ newState: PalletNominationPoolsPoolState;
1267
+ }>;
1268
+ /**
1269
+ * A member has unbonded from their pool.
1270
+ *
1271
+ * - `balance` is the corresponding balance of the number of points that has been
1272
+ * requested to be unbonded (the argument of the `unbond` transaction) from the bonded
1273
+ * pool.
1274
+ * - `points` is the number of points that are issued as a result of `balance` being
1275
+ * dissolved into the corresponding unbonding pool.
1276
+ * - `era` is the era in which the balance will be unbonded.
1277
+ * In the absence of slashing, these values will match. In the presence of slashing, the
1278
+ * number of points that are issued in the unbonding pool will be less than the amount
1279
+ * requested to be unbonded.
1280
+ **/
1281
+ Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32], {
1282
+ member: AccountId32;
1283
+ poolId: u32;
1284
+ balance: u128;
1285
+ points: u128;
1286
+ era: u32;
1287
+ }>;
1288
+ /**
1289
+ * The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
1290
+ **/
1291
+ UnbondingPoolSlashed: AugmentedEvent<ApiType, [poolId: u32, era: u32, balance: u128], {
1292
+ poolId: u32;
1293
+ era: u32;
1294
+ balance: u128;
1295
+ }>;
1296
+ /**
1297
+ * A member has withdrawn from their pool.
1298
+ *
1299
+ * The given number of `points` have been dissolved in return of `balance`.
1300
+ *
1301
+ * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
1302
+ * will be 1.
1303
+ **/
1304
+ Withdrawn: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128], {
1305
+ member: AccountId32;
1306
+ poolId: u32;
1307
+ balance: u128;
1308
+ points: u128;
1309
+ }>;
1310
+ /**
1311
+ * Generic event
1312
+ **/
1313
+ [key: string]: AugmentedEvent<ApiType>;
1314
+ };
1315
+ offences: {
1316
+ /**
1317
+ * There is an offence reported of the given `kind` happened at the `session_index` and
1318
+ * (kind-specific) time slot. This event is not deposited for duplicate slashes.
1319
+ * \[kind, timeslot\].
1320
+ **/
1321
+ Offence: AugmentedEvent<ApiType, [kind: U8aFixed, timeslot: Bytes], {
1322
+ kind: U8aFixed;
1323
+ timeslot: Bytes;
1324
+ }>;
1325
+ /**
1326
+ * Generic event
1327
+ **/
1328
+ [key: string]: AugmentedEvent<ApiType>;
1329
+ };
1330
+ onDemandAssignmentProvider: {
1331
+ /**
1332
+ * An order was placed at some spot price amount by orderer ordered_by
1333
+ **/
1334
+ OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: AccountId32], {
1335
+ paraId: u32;
1336
+ spotPrice: u128;
1337
+ orderedBy: AccountId32;
1338
+ }>;
1339
+ /**
1340
+ * The value of the spot price has likely changed
1341
+ **/
1342
+ SpotPriceSet: AugmentedEvent<ApiType, [spotPrice: u128], {
1343
+ spotPrice: u128;
1344
+ }>;
1345
+ /**
1346
+ * Generic event
1347
+ **/
1348
+ [key: string]: AugmentedEvent<ApiType>;
1349
+ };
1350
+ paraInclusion: {
1351
+ /**
1352
+ * A candidate was backed. `[candidate, head_data]`
1353
+ **/
1354
+ CandidateBacked: AugmentedEvent<ApiType, [PolkadotPrimitivesV7CandidateReceipt, Bytes, u32, u32]>;
1355
+ /**
1356
+ * A candidate was included. `[candidate, head_data]`
1357
+ **/
1358
+ CandidateIncluded: AugmentedEvent<ApiType, [PolkadotPrimitivesV7CandidateReceipt, Bytes, u32, u32]>;
1359
+ /**
1360
+ * A candidate timed out. `[candidate, head_data]`
1361
+ **/
1362
+ CandidateTimedOut: AugmentedEvent<ApiType, [PolkadotPrimitivesV7CandidateReceipt, Bytes, u32]>;
1363
+ /**
1364
+ * Some upward messages have been received and will be processed.
1365
+ **/
1366
+ UpwardMessagesReceived: AugmentedEvent<ApiType, [from: u32, count: u32], {
1367
+ from: u32;
1368
+ count: u32;
1369
+ }>;
1370
+ /**
1371
+ * Generic event
1372
+ **/
1373
+ [key: string]: AugmentedEvent<ApiType>;
1374
+ };
1375
+ parameters: {
1376
+ /**
1377
+ * A Parameter was set.
1378
+ *
1379
+ * Is also emitted when the value was not changed.
1380
+ **/
1381
+ Updated: AugmentedEvent<ApiType, [key: StagingKusamaRuntimeRuntimeParametersKey, oldValue: Option<StagingKusamaRuntimeRuntimeParametersValue>, newValue: Option<StagingKusamaRuntimeRuntimeParametersValue>], {
1382
+ key: StagingKusamaRuntimeRuntimeParametersKey;
1383
+ oldValue: Option<StagingKusamaRuntimeRuntimeParametersValue>;
1384
+ newValue: Option<StagingKusamaRuntimeRuntimeParametersValue>;
1385
+ }>;
1386
+ /**
1387
+ * Generic event
1388
+ **/
1389
+ [key: string]: AugmentedEvent<ApiType>;
1390
+ };
1391
+ paras: {
1392
+ /**
1393
+ * A para has been queued to execute pending actions. `para_id`
1394
+ **/
1395
+ ActionQueued: AugmentedEvent<ApiType, [u32, u32]>;
1396
+ /**
1397
+ * A code upgrade has been scheduled for a Para. `para_id`
1398
+ **/
1399
+ CodeUpgradeScheduled: AugmentedEvent<ApiType, [u32]>;
1400
+ /**
1401
+ * Current code has been updated for a Para. `para_id`
1402
+ **/
1403
+ CurrentCodeUpdated: AugmentedEvent<ApiType, [u32]>;
1404
+ /**
1405
+ * Current head has been updated for a Para. `para_id`
1406
+ **/
1407
+ CurrentHeadUpdated: AugmentedEvent<ApiType, [u32]>;
1408
+ /**
1409
+ * A new head has been noted for a Para. `para_id`
1410
+ **/
1411
+ NewHeadNoted: AugmentedEvent<ApiType, [u32]>;
1412
+ /**
1413
+ * The given validation code was accepted by the PVF pre-checking vote.
1414
+ * `code_hash` `para_id`
1415
+ **/
1416
+ PvfCheckAccepted: AugmentedEvent<ApiType, [H256, u32]>;
1417
+ /**
1418
+ * The given validation code was rejected by the PVF pre-checking vote.
1419
+ * `code_hash` `para_id`
1420
+ **/
1421
+ PvfCheckRejected: AugmentedEvent<ApiType, [H256, u32]>;
1422
+ /**
1423
+ * The given para either initiated or subscribed to a PVF check for the given validation
1424
+ * code. `code_hash` `para_id`
1425
+ **/
1426
+ PvfCheckStarted: AugmentedEvent<ApiType, [H256, u32]>;
1427
+ /**
1428
+ * Generic event
1429
+ **/
1430
+ [key: string]: AugmentedEvent<ApiType>;
1431
+ };
1432
+ parasDisputes: {
1433
+ /**
1434
+ * A dispute has concluded for or against a candidate.
1435
+ * `\[para id, candidate hash, dispute result\]`
1436
+ **/
1437
+ DisputeConcluded: AugmentedEvent<ApiType, [H256, PolkadotRuntimeParachainsDisputesDisputeResult]>;
1438
+ /**
1439
+ * A dispute has been initiated. \[candidate hash, dispute location\]
1440
+ **/
1441
+ DisputeInitiated: AugmentedEvent<ApiType, [H256, PolkadotRuntimeParachainsDisputesDisputeLocation]>;
1442
+ /**
1443
+ * A dispute has concluded with supermajority against a candidate.
1444
+ * Block authors should no longer build on top of this head and should
1445
+ * instead revert the block at the given height. This should be the
1446
+ * number of the child of the last known valid block in the chain.
1447
+ **/
1448
+ Revert: AugmentedEvent<ApiType, [u32]>;
1449
+ /**
1450
+ * Generic event
1451
+ **/
1452
+ [key: string]: AugmentedEvent<ApiType>;
1453
+ };
1454
+ preimage: {
1455
+ /**
1456
+ * A preimage has ben cleared.
1457
+ **/
1458
+ Cleared: AugmentedEvent<ApiType, [hash_: H256], {
1459
+ hash_: H256;
1460
+ }>;
1461
+ /**
1462
+ * A preimage has been noted.
1463
+ **/
1464
+ Noted: AugmentedEvent<ApiType, [hash_: H256], {
1465
+ hash_: H256;
1466
+ }>;
1467
+ /**
1468
+ * A preimage has been requested.
1469
+ **/
1470
+ Requested: AugmentedEvent<ApiType, [hash_: H256], {
1471
+ hash_: H256;
1472
+ }>;
1473
+ /**
1474
+ * Generic event
1475
+ **/
1476
+ [key: string]: AugmentedEvent<ApiType>;
1477
+ };
1478
+ proxy: {
1479
+ /**
1480
+ * An announcement was placed to make a call in the future.
1481
+ **/
1482
+ Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], {
1483
+ real: AccountId32;
1484
+ proxy: AccountId32;
1485
+ callHash: H256;
1486
+ }>;
1487
+ /**
1488
+ * A proxy was added.
1489
+ **/
1490
+ ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: StagingKusamaRuntimeProxyType, delay: u32], {
1491
+ delegator: AccountId32;
1492
+ delegatee: AccountId32;
1493
+ proxyType: StagingKusamaRuntimeProxyType;
1494
+ delay: u32;
1495
+ }>;
1496
+ /**
1497
+ * A proxy was executed correctly, with the given.
1498
+ **/
1499
+ ProxyExecuted: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
1500
+ result: Result<Null, SpRuntimeDispatchError>;
1501
+ }>;
1502
+ /**
1503
+ * A proxy was removed.
1504
+ **/
1505
+ ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: StagingKusamaRuntimeProxyType, delay: u32], {
1506
+ delegator: AccountId32;
1507
+ delegatee: AccountId32;
1508
+ proxyType: StagingKusamaRuntimeProxyType;
1509
+ delay: u32;
1510
+ }>;
1511
+ /**
1512
+ * A pure account has been created by new proxy with given
1513
+ * disambiguation index and proxy type.
1514
+ **/
1515
+ PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: StagingKusamaRuntimeProxyType, disambiguationIndex: u16], {
1516
+ pure: AccountId32;
1517
+ who: AccountId32;
1518
+ proxyType: StagingKusamaRuntimeProxyType;
1519
+ disambiguationIndex: u16;
1520
+ }>;
1521
+ /**
1522
+ * Generic event
1523
+ **/
1524
+ [key: string]: AugmentedEvent<ApiType>;
1525
+ };
1526
+ recovery: {
1527
+ /**
1528
+ * Lost account has been successfully recovered by rescuer account.
1529
+ **/
1530
+ AccountRecovered: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], {
1531
+ lostAccount: AccountId32;
1532
+ rescuerAccount: AccountId32;
1533
+ }>;
1534
+ /**
1535
+ * A recovery process for lost account by rescuer account has been closed.
1536
+ **/
1537
+ RecoveryClosed: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], {
1538
+ lostAccount: AccountId32;
1539
+ rescuerAccount: AccountId32;
1540
+ }>;
1541
+ /**
1542
+ * A recovery process has been set up for an account.
1543
+ **/
1544
+ RecoveryCreated: AugmentedEvent<ApiType, [account: AccountId32], {
1545
+ account: AccountId32;
1546
+ }>;
1547
+ /**
1548
+ * A recovery process has been initiated for lost account by rescuer account.
1549
+ **/
1550
+ RecoveryInitiated: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], {
1551
+ lostAccount: AccountId32;
1552
+ rescuerAccount: AccountId32;
1553
+ }>;
1554
+ /**
1555
+ * A recovery process has been removed for an account.
1556
+ **/
1557
+ RecoveryRemoved: AugmentedEvent<ApiType, [lostAccount: AccountId32], {
1558
+ lostAccount: AccountId32;
1559
+ }>;
1560
+ /**
1561
+ * A recovery process for lost account by rescuer account has been vouched for by sender.
1562
+ **/
1563
+ RecoveryVouched: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32, sender: AccountId32], {
1564
+ lostAccount: AccountId32;
1565
+ rescuerAccount: AccountId32;
1566
+ sender: AccountId32;
1567
+ }>;
1568
+ /**
1569
+ * Generic event
1570
+ **/
1571
+ [key: string]: AugmentedEvent<ApiType>;
1572
+ };
1573
+ referenda: {
1574
+ /**
1575
+ * A referendum has been approved and its proposal has been scheduled.
1576
+ **/
1577
+ Approved: AugmentedEvent<ApiType, [index: u32], {
1578
+ index: u32;
1579
+ }>;
1580
+ /**
1581
+ * A referendum has been cancelled.
1582
+ **/
1583
+ Cancelled: AugmentedEvent<ApiType, [index: u32, tally: PalletConvictionVotingTally], {
1584
+ index: u32;
1585
+ tally: PalletConvictionVotingTally;
1586
+ }>;
1587
+ ConfirmAborted: AugmentedEvent<ApiType, [index: u32], {
1588
+ index: u32;
1589
+ }>;
1590
+ /**
1591
+ * A referendum has ended its confirmation phase and is ready for approval.
1592
+ **/
1593
+ Confirmed: AugmentedEvent<ApiType, [index: u32, tally: PalletConvictionVotingTally], {
1594
+ index: u32;
1595
+ tally: PalletConvictionVotingTally;
1596
+ }>;
1597
+ ConfirmStarted: AugmentedEvent<ApiType, [index: u32], {
1598
+ index: u32;
1599
+ }>;
1600
+ /**
1601
+ * The decision deposit has been placed.
1602
+ **/
1603
+ DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1604
+ index: u32;
1605
+ who: AccountId32;
1606
+ amount: u128;
1607
+ }>;
1608
+ /**
1609
+ * The decision deposit has been refunded.
1610
+ **/
1611
+ DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1612
+ index: u32;
1613
+ who: AccountId32;
1614
+ amount: u128;
1615
+ }>;
1616
+ /**
1617
+ * A referendum has moved into the deciding phase.
1618
+ **/
1619
+ DecisionStarted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletConvictionVotingTally], {
1620
+ index: u32;
1621
+ track: u16;
1622
+ proposal: FrameSupportPreimagesBounded;
1623
+ tally: PalletConvictionVotingTally;
1624
+ }>;
1625
+ /**
1626
+ * A deposit has been slashed.
1627
+ **/
1628
+ DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1629
+ who: AccountId32;
1630
+ amount: u128;
1631
+ }>;
1632
+ /**
1633
+ * A referendum has been killed.
1634
+ **/
1635
+ Killed: AugmentedEvent<ApiType, [index: u32, tally: PalletConvictionVotingTally], {
1636
+ index: u32;
1637
+ tally: PalletConvictionVotingTally;
1638
+ }>;
1639
+ /**
1640
+ * Metadata for a referendum has been cleared.
1641
+ **/
1642
+ MetadataCleared: AugmentedEvent<ApiType, [index: u32, hash_: H256], {
1643
+ index: u32;
1644
+ hash_: H256;
1645
+ }>;
1646
+ /**
1647
+ * Metadata for a referendum has been set.
1648
+ **/
1649
+ MetadataSet: AugmentedEvent<ApiType, [index: u32, hash_: H256], {
1650
+ index: u32;
1651
+ hash_: H256;
1652
+ }>;
1653
+ /**
1654
+ * A proposal has been rejected by referendum.
1655
+ **/
1656
+ Rejected: AugmentedEvent<ApiType, [index: u32, tally: PalletConvictionVotingTally], {
1657
+ index: u32;
1658
+ tally: PalletConvictionVotingTally;
1659
+ }>;
1660
+ /**
1661
+ * The submission deposit has been refunded.
1662
+ **/
1663
+ SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1664
+ index: u32;
1665
+ who: AccountId32;
1666
+ amount: u128;
1667
+ }>;
1668
+ /**
1669
+ * A referendum has been submitted.
1670
+ **/
1671
+ Submitted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded], {
1672
+ index: u32;
1673
+ track: u16;
1674
+ proposal: FrameSupportPreimagesBounded;
1675
+ }>;
1676
+ /**
1677
+ * A referendum has been timed out without being decided.
1678
+ **/
1679
+ TimedOut: AugmentedEvent<ApiType, [index: u32, tally: PalletConvictionVotingTally], {
1680
+ index: u32;
1681
+ tally: PalletConvictionVotingTally;
1682
+ }>;
1683
+ /**
1684
+ * Generic event
1685
+ **/
1686
+ [key: string]: AugmentedEvent<ApiType>;
1687
+ };
1688
+ registrar: {
1689
+ Deregistered: AugmentedEvent<ApiType, [paraId: u32], {
1690
+ paraId: u32;
1691
+ }>;
1692
+ Registered: AugmentedEvent<ApiType, [paraId: u32, manager: AccountId32], {
1693
+ paraId: u32;
1694
+ manager: AccountId32;
1695
+ }>;
1696
+ Reserved: AugmentedEvent<ApiType, [paraId: u32, who: AccountId32], {
1697
+ paraId: u32;
1698
+ who: AccountId32;
1699
+ }>;
1700
+ Swapped: AugmentedEvent<ApiType, [paraId: u32, otherId: u32], {
1701
+ paraId: u32;
1702
+ otherId: u32;
1703
+ }>;
1704
+ /**
1705
+ * Generic event
1706
+ **/
1707
+ [key: string]: AugmentedEvent<ApiType>;
1708
+ };
1709
+ scheduler: {
1710
+ /**
1711
+ * The call for the provided hash was not found so the task has been aborted.
1712
+ **/
1713
+ CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], {
1714
+ task: ITuple<[u32, u32]>;
1715
+ id: Option<U8aFixed>;
1716
+ }>;
1717
+ /**
1718
+ * Canceled some task.
1719
+ **/
1720
+ Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], {
1721
+ when: u32;
1722
+ index: u32;
1723
+ }>;
1724
+ /**
1725
+ * Dispatched some task.
1726
+ **/
1727
+ Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], {
1728
+ task: ITuple<[u32, u32]>;
1729
+ id: Option<U8aFixed>;
1730
+ result: Result<Null, SpRuntimeDispatchError>;
1731
+ }>;
1732
+ /**
1733
+ * The given task was unable to be renewed since the agenda is full at that block.
1734
+ **/
1735
+ PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], {
1736
+ task: ITuple<[u32, u32]>;
1737
+ id: Option<U8aFixed>;
1738
+ }>;
1739
+ /**
1740
+ * The given task can never be executed since it is overweight.
1741
+ **/
1742
+ PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], {
1743
+ task: ITuple<[u32, u32]>;
1744
+ id: Option<U8aFixed>;
1745
+ }>;
1746
+ /**
1747
+ * Cancel a retry configuration for some task.
1748
+ **/
1749
+ RetryCancelled: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], {
1750
+ task: ITuple<[u32, u32]>;
1751
+ id: Option<U8aFixed>;
1752
+ }>;
1753
+ /**
1754
+ * The given task was unable to be retried since the agenda is full at that block or there
1755
+ * was not enough weight to reschedule it.
1756
+ **/
1757
+ RetryFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], {
1758
+ task: ITuple<[u32, u32]>;
1759
+ id: Option<U8aFixed>;
1760
+ }>;
1761
+ /**
1762
+ * Set a retry configuration for some task.
1763
+ **/
1764
+ RetrySet: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, period: u32, retries: u8], {
1765
+ task: ITuple<[u32, u32]>;
1766
+ id: Option<U8aFixed>;
1767
+ period: u32;
1768
+ retries: u8;
1769
+ }>;
1770
+ /**
1771
+ * Scheduled some task.
1772
+ **/
1773
+ Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], {
1774
+ when: u32;
1775
+ index: u32;
1776
+ }>;
1777
+ /**
1778
+ * Generic event
1779
+ **/
1780
+ [key: string]: AugmentedEvent<ApiType>;
1781
+ };
1782
+ session: {
1783
+ /**
1784
+ * New session has happened. Note that the argument is the session index, not the
1785
+ * block number as the type might suggest.
1786
+ **/
1787
+ NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], {
1788
+ sessionIndex: u32;
1789
+ }>;
1790
+ /**
1791
+ * Generic event
1792
+ **/
1793
+ [key: string]: AugmentedEvent<ApiType>;
1794
+ };
1795
+ slots: {
1796
+ /**
1797
+ * A para has won the right to a continuous set of lease periods as a parachain.
1798
+ * First balance is any extra amount reserved on top of the para's existing deposit.
1799
+ * Second balance is the total amount reserved.
1800
+ **/
1801
+ Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], {
1802
+ paraId: u32;
1803
+ leaser: AccountId32;
1804
+ periodBegin: u32;
1805
+ periodCount: u32;
1806
+ extraReserved: u128;
1807
+ totalAmount: u128;
1808
+ }>;
1809
+ /**
1810
+ * A new `[lease_period]` is beginning.
1811
+ **/
1812
+ NewLeasePeriod: AugmentedEvent<ApiType, [leasePeriod: u32], {
1813
+ leasePeriod: u32;
1814
+ }>;
1815
+ /**
1816
+ * Generic event
1817
+ **/
1818
+ [key: string]: AugmentedEvent<ApiType>;
1819
+ };
1820
+ society: {
1821
+ /**
1822
+ * A candidate was dropped (due to an excess of bids in the system).
1823
+ **/
1824
+ AutoUnbid: AugmentedEvent<ApiType, [candidate: AccountId32], {
1825
+ candidate: AccountId32;
1826
+ }>;
1827
+ /**
1828
+ * A membership bid just happened. The given account is the candidate's ID and their offer
1829
+ * is the second.
1830
+ **/
1831
+ Bid: AugmentedEvent<ApiType, [candidateId: AccountId32, offer: u128], {
1832
+ candidateId: AccountId32;
1833
+ offer: u128;
1834
+ }>;
1835
+ /**
1836
+ * A candidate has been suspended
1837
+ **/
1838
+ CandidateSuspended: AugmentedEvent<ApiType, [candidate: AccountId32], {
1839
+ candidate: AccountId32;
1840
+ }>;
1841
+ /**
1842
+ * A member has been challenged
1843
+ **/
1844
+ Challenged: AugmentedEvent<ApiType, [member: AccountId32], {
1845
+ member: AccountId32;
1846
+ }>;
1847
+ /**
1848
+ * A vote has been placed for a defending member
1849
+ **/
1850
+ DefenderVote: AugmentedEvent<ApiType, [voter: AccountId32, vote: bool], {
1851
+ voter: AccountId32;
1852
+ vote: bool;
1853
+ }>;
1854
+ /**
1855
+ * Some funds were deposited into the society account.
1856
+ **/
1857
+ Deposit: AugmentedEvent<ApiType, [value: u128], {
1858
+ value: u128;
1859
+ }>;
1860
+ /**
1861
+ * A \[member\] got elevated to \[rank\].
1862
+ **/
1863
+ Elevated: AugmentedEvent<ApiType, [member: AccountId32, rank: u32], {
1864
+ member: AccountId32;
1865
+ rank: u32;
1866
+ }>;
1867
+ /**
1868
+ * The society is founded by the given identity.
1869
+ **/
1870
+ Founded: AugmentedEvent<ApiType, [founder: AccountId32], {
1871
+ founder: AccountId32;
1872
+ }>;
1873
+ /**
1874
+ * A group of candidates have been inducted. The batch's primary is the first value, the
1875
+ * batch in full is the second.
1876
+ **/
1877
+ Inducted: AugmentedEvent<ApiType, [primary: AccountId32, candidates: Vec<AccountId32>], {
1878
+ primary: AccountId32;
1879
+ candidates: Vec<AccountId32>;
1880
+ }>;
1881
+ /**
1882
+ * A member has been suspended
1883
+ **/
1884
+ MemberSuspended: AugmentedEvent<ApiType, [member: AccountId32], {
1885
+ member: AccountId32;
1886
+ }>;
1887
+ /**
1888
+ * A new set of \[params\] has been set for the group.
1889
+ **/
1890
+ NewParams: AugmentedEvent<ApiType, [params: PalletSocietyGroupParams], {
1891
+ params: PalletSocietyGroupParams;
1892
+ }>;
1893
+ /**
1894
+ * A suspended member has been judged.
1895
+ **/
1896
+ SuspendedMemberJudgement: AugmentedEvent<ApiType, [who: AccountId32, judged: bool], {
1897
+ who: AccountId32;
1898
+ judged: bool;
1899
+ }>;
1900
+ /**
1901
+ * A candidate was dropped (by their request).
1902
+ **/
1903
+ Unbid: AugmentedEvent<ApiType, [candidate: AccountId32], {
1904
+ candidate: AccountId32;
1905
+ }>;
1906
+ /**
1907
+ * Society is unfounded.
1908
+ **/
1909
+ Unfounded: AugmentedEvent<ApiType, [founder: AccountId32], {
1910
+ founder: AccountId32;
1911
+ }>;
1912
+ /**
1913
+ * A candidate was dropped (by request of who vouched for them).
1914
+ **/
1915
+ Unvouch: AugmentedEvent<ApiType, [candidate: AccountId32], {
1916
+ candidate: AccountId32;
1917
+ }>;
1918
+ /**
1919
+ * A vote has been placed
1920
+ **/
1921
+ Vote: AugmentedEvent<ApiType, [candidate: AccountId32, voter: AccountId32, vote: bool], {
1922
+ candidate: AccountId32;
1923
+ voter: AccountId32;
1924
+ vote: bool;
1925
+ }>;
1926
+ /**
1927
+ * A membership bid just happened by vouching. The given account is the candidate's ID and
1928
+ * their offer is the second. The vouching party is the third.
1929
+ **/
1930
+ Vouch: AugmentedEvent<ApiType, [candidateId: AccountId32, offer: u128, vouching: AccountId32], {
1931
+ candidateId: AccountId32;
1932
+ offer: u128;
1933
+ vouching: AccountId32;
1934
+ }>;
1935
+ /**
1936
+ * Generic event
1937
+ **/
1938
+ [key: string]: AugmentedEvent<ApiType>;
1939
+ };
1940
+ staking: {
1941
+ /**
1942
+ * An account has bonded this amount. \[stash, amount\]
1943
+ *
1944
+ * NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
1945
+ * it will not be emitted for staking rewards when they are added to stake.
1946
+ **/
1947
+ Bonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
1948
+ stash: AccountId32;
1949
+ amount: u128;
1950
+ }>;
1951
+ /**
1952
+ * An account has stopped participating as either a validator or nominator.
1953
+ **/
1954
+ Chilled: AugmentedEvent<ApiType, [stash: AccountId32], {
1955
+ stash: AccountId32;
1956
+ }>;
1957
+ /**
1958
+ * Report of a controller batch deprecation.
1959
+ **/
1960
+ ControllerBatchDeprecated: AugmentedEvent<ApiType, [failures: u32], {
1961
+ failures: u32;
1962
+ }>;
1963
+ /**
1964
+ * The era payout has been set; the first balance is the validator-payout; the second is
1965
+ * the remainder from the maximum amount of reward.
1966
+ **/
1967
+ EraPaid: AugmentedEvent<ApiType, [eraIndex: u32, validatorPayout: u128, remainder: u128], {
1968
+ eraIndex: u32;
1969
+ validatorPayout: u128;
1970
+ remainder: u128;
1971
+ }>;
1972
+ /**
1973
+ * A new force era mode was set.
1974
+ **/
1975
+ ForceEra: AugmentedEvent<ApiType, [mode: PalletStakingForcing], {
1976
+ mode: PalletStakingForcing;
1977
+ }>;
1978
+ /**
1979
+ * A nominator has been kicked from a validator.
1980
+ **/
1981
+ Kicked: AugmentedEvent<ApiType, [nominator: AccountId32, stash: AccountId32], {
1982
+ nominator: AccountId32;
1983
+ stash: AccountId32;
1984
+ }>;
1985
+ /**
1986
+ * An old slashing report from a prior era was discarded because it could
1987
+ * not be processed.
1988
+ **/
1989
+ OldSlashingReportDiscarded: AugmentedEvent<ApiType, [sessionIndex: u32], {
1990
+ sessionIndex: u32;
1991
+ }>;
1992
+ /**
1993
+ * The stakers' rewards are getting paid.
1994
+ **/
1995
+ PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: AccountId32], {
1996
+ eraIndex: u32;
1997
+ validatorStash: AccountId32;
1998
+ }>;
1999
+ /**
2000
+ * The nominator has been rewarded by this amount to this destination.
2001
+ **/
2002
+ Rewarded: AugmentedEvent<ApiType, [stash: AccountId32, dest: PalletStakingRewardDestination, amount: u128], {
2003
+ stash: AccountId32;
2004
+ dest: PalletStakingRewardDestination;
2005
+ amount: u128;
2006
+ }>;
2007
+ /**
2008
+ * A staker (validator or nominator) has been slashed by the given amount.
2009
+ **/
2010
+ Slashed: AugmentedEvent<ApiType, [staker: AccountId32, amount: u128], {
2011
+ staker: AccountId32;
2012
+ amount: u128;
2013
+ }>;
2014
+ /**
2015
+ * A slash for the given validator, for the given percentage of their stake, at the given
2016
+ * era as been reported.
2017
+ **/
2018
+ SlashReported: AugmentedEvent<ApiType, [validator: AccountId32, fraction: Perbill, slashEra: u32], {
2019
+ validator: AccountId32;
2020
+ fraction: Perbill;
2021
+ slashEra: u32;
2022
+ }>;
2023
+ /**
2024
+ * Targets size limit reached.
2025
+ **/
2026
+ SnapshotTargetsSizeExceeded: AugmentedEvent<ApiType, [size_: u32], {
2027
+ size_: u32;
2028
+ }>;
2029
+ /**
2030
+ * Voters size limit reached.
2031
+ **/
2032
+ SnapshotVotersSizeExceeded: AugmentedEvent<ApiType, [size_: u32], {
2033
+ size_: u32;
2034
+ }>;
2035
+ /**
2036
+ * A new set of stakers was elected.
2037
+ **/
2038
+ StakersElected: AugmentedEvent<ApiType, []>;
2039
+ /**
2040
+ * The election failed. No new era is planned.
2041
+ **/
2042
+ StakingElectionFailed: AugmentedEvent<ApiType, []>;
2043
+ /**
2044
+ * An account has unbonded this amount.
2045
+ **/
2046
+ Unbonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
2047
+ stash: AccountId32;
2048
+ amount: u128;
2049
+ }>;
2050
+ /**
2051
+ * A validator has set their preferences.
2052
+ **/
2053
+ ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: AccountId32, prefs: PalletStakingValidatorPrefs], {
2054
+ stash: AccountId32;
2055
+ prefs: PalletStakingValidatorPrefs;
2056
+ }>;
2057
+ /**
2058
+ * An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
2059
+ * from the unlocking queue.
2060
+ **/
2061
+ Withdrawn: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
2062
+ stash: AccountId32;
2063
+ amount: u128;
2064
+ }>;
2065
+ /**
2066
+ * Generic event
2067
+ **/
2068
+ [key: string]: AugmentedEvent<ApiType>;
2069
+ };
2070
+ system: {
2071
+ /**
2072
+ * `:code` was updated.
2073
+ **/
2074
+ CodeUpdated: AugmentedEvent<ApiType, []>;
2075
+ /**
2076
+ * An extrinsic failed.
2077
+ **/
2078
+ ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], {
2079
+ dispatchError: SpRuntimeDispatchError;
2080
+ dispatchInfo: FrameSupportDispatchDispatchInfo;
2081
+ }>;
2082
+ /**
2083
+ * An extrinsic completed successfully.
2084
+ **/
2085
+ ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], {
2086
+ dispatchInfo: FrameSupportDispatchDispatchInfo;
2087
+ }>;
2088
+ /**
2089
+ * An account was reaped.
2090
+ **/
2091
+ KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], {
2092
+ account: AccountId32;
2093
+ }>;
2094
+ /**
2095
+ * A new account was created.
2096
+ **/
2097
+ NewAccount: AugmentedEvent<ApiType, [account: AccountId32], {
2098
+ account: AccountId32;
2099
+ }>;
2100
+ /**
2101
+ * On on-chain remark happened.
2102
+ **/
2103
+ Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], {
2104
+ sender: AccountId32;
2105
+ hash_: H256;
2106
+ }>;
2107
+ /**
2108
+ * An upgrade was authorized.
2109
+ **/
2110
+ UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256, checkVersion: bool], {
2111
+ codeHash: H256;
2112
+ checkVersion: bool;
2113
+ }>;
2114
+ /**
2115
+ * Generic event
2116
+ **/
2117
+ [key: string]: AugmentedEvent<ApiType>;
2118
+ };
2119
+ transactionPayment: {
2120
+ /**
2121
+ * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
2122
+ * has been paid by `who`.
2123
+ **/
2124
+ TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], {
2125
+ who: AccountId32;
2126
+ actualFee: u128;
2127
+ tip: u128;
2128
+ }>;
2129
+ /**
2130
+ * Generic event
2131
+ **/
2132
+ [key: string]: AugmentedEvent<ApiType>;
2133
+ };
2134
+ treasury: {
2135
+ /**
2136
+ * A new asset spend proposal has been approved.
2137
+ **/
2138
+ AssetSpendApproved: AugmentedEvent<ApiType, [index: u32, assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset, amount: u128, beneficiary: XcmVersionedLocation, validFrom: u32, expireAt: u32], {
2139
+ index: u32;
2140
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
2141
+ amount: u128;
2142
+ beneficiary: XcmVersionedLocation;
2143
+ validFrom: u32;
2144
+ expireAt: u32;
2145
+ }>;
2146
+ /**
2147
+ * An approved spend was voided.
2148
+ **/
2149
+ AssetSpendVoided: AugmentedEvent<ApiType, [index: u32], {
2150
+ index: u32;
2151
+ }>;
2152
+ /**
2153
+ * Some funds have been allocated.
2154
+ **/
2155
+ Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], {
2156
+ proposalIndex: u32;
2157
+ award: u128;
2158
+ account: AccountId32;
2159
+ }>;
2160
+ /**
2161
+ * Some of our funds have been burnt.
2162
+ **/
2163
+ Burnt: AugmentedEvent<ApiType, [burntFunds: u128], {
2164
+ burntFunds: u128;
2165
+ }>;
2166
+ /**
2167
+ * Some funds have been deposited.
2168
+ **/
2169
+ Deposit: AugmentedEvent<ApiType, [value: u128], {
2170
+ value: u128;
2171
+ }>;
2172
+ /**
2173
+ * A payment happened.
2174
+ **/
2175
+ Paid: AugmentedEvent<ApiType, [index: u32, paymentId: u64], {
2176
+ index: u32;
2177
+ paymentId: u64;
2178
+ }>;
2179
+ /**
2180
+ * A payment failed and can be retried.
2181
+ **/
2182
+ PaymentFailed: AugmentedEvent<ApiType, [index: u32, paymentId: u64], {
2183
+ index: u32;
2184
+ paymentId: u64;
2185
+ }>;
2186
+ /**
2187
+ * Spending has finished; this is the amount that rolls over until next spend.
2188
+ **/
2189
+ Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], {
2190
+ rolloverBalance: u128;
2191
+ }>;
2192
+ /**
2193
+ * A new spend proposal has been approved.
2194
+ **/
2195
+ SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], {
2196
+ proposalIndex: u32;
2197
+ amount: u128;
2198
+ beneficiary: AccountId32;
2199
+ }>;
2200
+ /**
2201
+ * We have ended a spend period and will now allocate funds.
2202
+ **/
2203
+ Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], {
2204
+ budgetRemaining: u128;
2205
+ }>;
2206
+ /**
2207
+ * A spend was processed and removed from the storage. It might have been successfully
2208
+ * paid or it may have expired.
2209
+ **/
2210
+ SpendProcessed: AugmentedEvent<ApiType, [index: u32], {
2211
+ index: u32;
2212
+ }>;
2213
+ /**
2214
+ * The inactive funds of the pallet have been updated.
2215
+ **/
2216
+ UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], {
2217
+ reactivated: u128;
2218
+ deactivated: u128;
2219
+ }>;
2220
+ /**
2221
+ * Generic event
2222
+ **/
2223
+ [key: string]: AugmentedEvent<ApiType>;
2224
+ };
2225
+ utility: {
2226
+ /**
2227
+ * Batch of dispatches completed fully with no error.
2228
+ **/
2229
+ BatchCompleted: AugmentedEvent<ApiType, []>;
2230
+ /**
2231
+ * Batch of dispatches completed but has errors.
2232
+ **/
2233
+ BatchCompletedWithErrors: AugmentedEvent<ApiType, []>;
2234
+ /**
2235
+ * Batch of dispatches did not complete fully. Index of first failing dispatch given, as
2236
+ * well as the error.
2237
+ **/
2238
+ BatchInterrupted: AugmentedEvent<ApiType, [index: u32, error: SpRuntimeDispatchError], {
2239
+ index: u32;
2240
+ error: SpRuntimeDispatchError;
2241
+ }>;
2242
+ /**
2243
+ * A call was dispatched.
2244
+ **/
2245
+ DispatchedAs: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
2246
+ result: Result<Null, SpRuntimeDispatchError>;
2247
+ }>;
2248
+ /**
2249
+ * A single item within a Batch of dispatches has completed with no error.
2250
+ **/
2251
+ ItemCompleted: AugmentedEvent<ApiType, []>;
2252
+ /**
2253
+ * A single item within a Batch of dispatches has completed with error.
2254
+ **/
2255
+ ItemFailed: AugmentedEvent<ApiType, [error: SpRuntimeDispatchError], {
2256
+ error: SpRuntimeDispatchError;
2257
+ }>;
2258
+ /**
2259
+ * Generic event
2260
+ **/
2261
+ [key: string]: AugmentedEvent<ApiType>;
2262
+ };
2263
+ vesting: {
2264
+ /**
2265
+ * An \[account\] has become fully vested.
2266
+ **/
2267
+ VestingCompleted: AugmentedEvent<ApiType, [account: AccountId32], {
2268
+ account: AccountId32;
2269
+ }>;
2270
+ /**
2271
+ * The amount vested has been updated. This could indicate a change in funds available.
2272
+ * The balance given is the amount which is left unvested (and thus locked).
2273
+ **/
2274
+ VestingUpdated: AugmentedEvent<ApiType, [account: AccountId32, unvested: u128], {
2275
+ account: AccountId32;
2276
+ unvested: u128;
2277
+ }>;
2278
+ /**
2279
+ * Generic event
2280
+ **/
2281
+ [key: string]: AugmentedEvent<ApiType>;
2282
+ };
2283
+ voterList: {
2284
+ /**
2285
+ * Moved an account from one bag to another.
2286
+ **/
2287
+ Rebagged: AugmentedEvent<ApiType, [who: AccountId32, from: u64, to: u64], {
2288
+ who: AccountId32;
2289
+ from: u64;
2290
+ to: u64;
2291
+ }>;
2292
+ /**
2293
+ * Updated the score of some account to the given amount.
2294
+ **/
2295
+ ScoreUpdated: AugmentedEvent<ApiType, [who: AccountId32, newScore: u64], {
2296
+ who: AccountId32;
2297
+ newScore: u64;
2298
+ }>;
2299
+ /**
2300
+ * Generic event
2301
+ **/
2302
+ [key: string]: AugmentedEvent<ApiType>;
2303
+ };
2304
+ whitelist: {
2305
+ CallWhitelisted: AugmentedEvent<ApiType, [callHash: H256], {
2306
+ callHash: H256;
2307
+ }>;
2308
+ WhitelistedCallDispatched: AugmentedEvent<ApiType, [callHash: H256, result: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo>], {
2309
+ callHash: H256;
2310
+ result: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo>;
2311
+ }>;
2312
+ WhitelistedCallRemoved: AugmentedEvent<ApiType, [callHash: H256], {
2313
+ callHash: H256;
2314
+ }>;
2315
+ /**
2316
+ * Generic event
2317
+ **/
2318
+ [key: string]: AugmentedEvent<ApiType>;
2319
+ };
2320
+ xcmPallet: {
2321
+ /**
2322
+ * Some assets have been claimed from an asset trap
2323
+ **/
2324
+ AssetsClaimed: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV4Location, assets: XcmVersionedAssets], {
2325
+ hash_: H256;
2326
+ origin: StagingXcmV4Location;
2327
+ assets: XcmVersionedAssets;
2328
+ }>;
2329
+ /**
2330
+ * Some assets have been placed in an asset trap.
2331
+ **/
2332
+ AssetsTrapped: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV4Location, assets: XcmVersionedAssets], {
2333
+ hash_: H256;
2334
+ origin: StagingXcmV4Location;
2335
+ assets: XcmVersionedAssets;
2336
+ }>;
2337
+ /**
2338
+ * Execution of an XCM message was attempted.
2339
+ **/
2340
+ Attempted: AugmentedEvent<ApiType, [outcome: StagingXcmV4TraitsOutcome], {
2341
+ outcome: StagingXcmV4TraitsOutcome;
2342
+ }>;
2343
+ /**
2344
+ * Fees were paid from a location for an operation (often for using `SendXcm`).
2345
+ **/
2346
+ FeesPaid: AugmentedEvent<ApiType, [paying: StagingXcmV4Location, fees: StagingXcmV4AssetAssets], {
2347
+ paying: StagingXcmV4Location;
2348
+ fees: StagingXcmV4AssetAssets;
2349
+ }>;
2350
+ /**
2351
+ * Expected query response has been received but the querier location of the response does
2352
+ * not match the expected. The query remains registered for a later, valid, response to
2353
+ * be received and acted upon.
2354
+ **/
2355
+ InvalidQuerier: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64, expectedQuerier: StagingXcmV4Location, maybeActualQuerier: Option<StagingXcmV4Location>], {
2356
+ origin: StagingXcmV4Location;
2357
+ queryId: u64;
2358
+ expectedQuerier: StagingXcmV4Location;
2359
+ maybeActualQuerier: Option<StagingXcmV4Location>;
2360
+ }>;
2361
+ /**
2362
+ * Expected query response has been received but the expected querier location placed in
2363
+ * storage by this runtime previously cannot be decoded. The query remains registered.
2364
+ *
2365
+ * This is unexpected (since a location placed in storage in a previously executing
2366
+ * runtime should be readable prior to query timeout) and dangerous since the possibly
2367
+ * valid response will be dropped. Manual governance intervention is probably going to be
2368
+ * needed.
2369
+ **/
2370
+ InvalidQuerierVersion: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
2371
+ origin: StagingXcmV4Location;
2372
+ queryId: u64;
2373
+ }>;
2374
+ /**
2375
+ * Expected query response has been received but the origin location of the response does
2376
+ * not match that expected. The query remains registered for a later, valid, response to
2377
+ * be received and acted upon.
2378
+ **/
2379
+ InvalidResponder: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64, expectedLocation: Option<StagingXcmV4Location>], {
2380
+ origin: StagingXcmV4Location;
2381
+ queryId: u64;
2382
+ expectedLocation: Option<StagingXcmV4Location>;
2383
+ }>;
2384
+ /**
2385
+ * Expected query response has been received but the expected origin location placed in
2386
+ * storage by this runtime previously cannot be decoded. The query remains registered.
2387
+ *
2388
+ * This is unexpected (since a location placed in storage in a previously executing
2389
+ * runtime should be readable prior to query timeout) and dangerous since the possibly
2390
+ * valid response will be dropped. Manual governance intervention is probably going to be
2391
+ * needed.
2392
+ **/
2393
+ InvalidResponderVersion: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
2394
+ origin: StagingXcmV4Location;
2395
+ queryId: u64;
2396
+ }>;
2397
+ /**
2398
+ * Query response has been received and query is removed. The registered notification has
2399
+ * been dispatched and executed successfully.
2400
+ **/
2401
+ Notified: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
2402
+ queryId: u64;
2403
+ palletIndex: u8;
2404
+ callIndex: u8;
2405
+ }>;
2406
+ /**
2407
+ * Query response has been received and query is removed. The dispatch was unable to be
2408
+ * decoded into a `Call`; this might be due to dispatch function having a signature which
2409
+ * is not `(origin, QueryId, Response)`.
2410
+ **/
2411
+ NotifyDecodeFailed: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
2412
+ queryId: u64;
2413
+ palletIndex: u8;
2414
+ callIndex: u8;
2415
+ }>;
2416
+ /**
2417
+ * Query response has been received and query is removed. There was a general error with
2418
+ * dispatching the notification call.
2419
+ **/
2420
+ NotifyDispatchError: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
2421
+ queryId: u64;
2422
+ palletIndex: u8;
2423
+ callIndex: u8;
2424
+ }>;
2425
+ /**
2426
+ * Query response has been received and query is removed. The registered notification
2427
+ * could not be dispatched because the dispatch weight is greater than the maximum weight
2428
+ * originally budgeted by this runtime for the query result.
2429
+ **/
2430
+ NotifyOverweight: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8, actualWeight: SpWeightsWeightV2Weight, maxBudgetedWeight: SpWeightsWeightV2Weight], {
2431
+ queryId: u64;
2432
+ palletIndex: u8;
2433
+ callIndex: u8;
2434
+ actualWeight: SpWeightsWeightV2Weight;
2435
+ maxBudgetedWeight: SpWeightsWeightV2Weight;
2436
+ }>;
2437
+ /**
2438
+ * A given location which had a version change subscription was dropped owing to an error
2439
+ * migrating the location to our new XCM format.
2440
+ **/
2441
+ NotifyTargetMigrationFail: AugmentedEvent<ApiType, [location: XcmVersionedLocation, queryId: u64], {
2442
+ location: XcmVersionedLocation;
2443
+ queryId: u64;
2444
+ }>;
2445
+ /**
2446
+ * A given location which had a version change subscription was dropped owing to an error
2447
+ * sending the notification to it.
2448
+ **/
2449
+ NotifyTargetSendFail: AugmentedEvent<ApiType, [location: StagingXcmV4Location, queryId: u64, error: XcmV3TraitsError], {
2450
+ location: StagingXcmV4Location;
2451
+ queryId: u64;
2452
+ error: XcmV3TraitsError;
2453
+ }>;
2454
+ /**
2455
+ * Query response has been received and is ready for taking with `take_response`. There is
2456
+ * no registered notification call.
2457
+ **/
2458
+ ResponseReady: AugmentedEvent<ApiType, [queryId: u64, response: StagingXcmV4Response], {
2459
+ queryId: u64;
2460
+ response: StagingXcmV4Response;
2461
+ }>;
2462
+ /**
2463
+ * Received query response has been read and removed.
2464
+ **/
2465
+ ResponseTaken: AugmentedEvent<ApiType, [queryId: u64], {
2466
+ queryId: u64;
2467
+ }>;
2468
+ /**
2469
+ * A XCM message was sent.
2470
+ **/
2471
+ Sent: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, destination: StagingXcmV4Location, message: StagingXcmV4Xcm, messageId: U8aFixed], {
2472
+ origin: StagingXcmV4Location;
2473
+ destination: StagingXcmV4Location;
2474
+ message: StagingXcmV4Xcm;
2475
+ messageId: U8aFixed;
2476
+ }>;
2477
+ /**
2478
+ * The supported version of a location has been changed. This might be through an
2479
+ * automatic notification or a manual intervention.
2480
+ **/
2481
+ SupportedVersionChanged: AugmentedEvent<ApiType, [location: StagingXcmV4Location, version: u32], {
2482
+ location: StagingXcmV4Location;
2483
+ version: u32;
2484
+ }>;
2485
+ /**
2486
+ * Query response received which does not match a registered query. This may be because a
2487
+ * matching query was never registered, it may be because it is a duplicate response, or
2488
+ * because the query timed out.
2489
+ **/
2490
+ UnexpectedResponse: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
2491
+ origin: StagingXcmV4Location;
2492
+ queryId: u64;
2493
+ }>;
2494
+ /**
2495
+ * An XCM version change notification message has been attempted to be sent.
2496
+ *
2497
+ * The cost of sending it (borne by the chain) is included.
2498
+ **/
2499
+ VersionChangeNotified: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, result: u32, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
2500
+ destination: StagingXcmV4Location;
2501
+ result: u32;
2502
+ cost: StagingXcmV4AssetAssets;
2503
+ messageId: U8aFixed;
2504
+ }>;
2505
+ /**
2506
+ * A XCM version migration finished.
2507
+ **/
2508
+ VersionMigrationFinished: AugmentedEvent<ApiType, [version: u32], {
2509
+ version: u32;
2510
+ }>;
2511
+ /**
2512
+ * We have requested that a remote chain send us XCM version change notifications.
2513
+ **/
2514
+ VersionNotifyRequested: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
2515
+ destination: StagingXcmV4Location;
2516
+ cost: StagingXcmV4AssetAssets;
2517
+ messageId: U8aFixed;
2518
+ }>;
2519
+ /**
2520
+ * A remote has requested XCM version change notification from us and we have honored it.
2521
+ * A version information message is sent to them and its cost is included.
2522
+ **/
2523
+ VersionNotifyStarted: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
2524
+ destination: StagingXcmV4Location;
2525
+ cost: StagingXcmV4AssetAssets;
2526
+ messageId: U8aFixed;
2527
+ }>;
2528
+ /**
2529
+ * We have requested that a remote chain stops sending us XCM version change
2530
+ * notifications.
2531
+ **/
2532
+ VersionNotifyUnrequested: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
2533
+ destination: StagingXcmV4Location;
2534
+ cost: StagingXcmV4AssetAssets;
2535
+ messageId: U8aFixed;
2536
+ }>;
2537
+ /**
2538
+ * Generic event
2539
+ **/
2540
+ [key: string]: AugmentedEvent<ApiType>;
2541
+ };
2542
+ }
2543
+ }