@webb-tools/tangle-substrate-types 0.5.12 → 0.9.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.
Files changed (36) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +15 -17
  3. package/build/index.cjs +2 -0
  4. package/build/index.d.ts +20826 -0
  5. package/build/index.mjs +1 -0
  6. package/package.json +57 -1
  7. package/examples/job_and_result_submission.d.ts +0 -1
  8. package/examples/job_and_result_submission.js +0 -230
  9. package/index.d.ts +0 -3
  10. package/index.js +0 -5
  11. package/interfaces/augment-api-consts.d.ts +0 -1045
  12. package/interfaces/augment-api-consts.js +0 -3
  13. package/interfaces/augment-api-errors.d.ts +0 -2001
  14. package/interfaces/augment-api-errors.js +0 -3
  15. package/interfaces/augment-api-events.d.ts +0 -3268
  16. package/interfaces/augment-api-events.js +0 -3
  17. package/interfaces/augment-api-query.d.ts +0 -2117
  18. package/interfaces/augment-api-query.js +0 -3
  19. package/interfaces/augment-api-rpc.d.ts +0 -679
  20. package/interfaces/augment-api-rpc.js +0 -3
  21. package/interfaces/augment-api-runtime.d.ts +0 -363
  22. package/interfaces/augment-api-runtime.js +0 -3
  23. package/interfaces/augment-api-tx.d.ts +0 -4118
  24. package/interfaces/augment-api-tx.js +0 -3
  25. package/interfaces/augment-api.d.ts +0 -7
  26. package/interfaces/augment-api.js +0 -9
  27. package/interfaces/augment-types.d.ts +0 -1249
  28. package/interfaces/augment-types.js +0 -3
  29. package/interfaces/lookup.d.ts +0 -6240
  30. package/interfaces/lookup.js +0 -6248
  31. package/interfaces/registry.d.ts +0 -413
  32. package/interfaces/registry.js +0 -3
  33. package/interfaces/types-lookup.d.ts +0 -6157
  34. package/interfaces/types-lookup.js +0 -3
  35. package/metadata/static-latest.d.ts +0 -2
  36. package/metadata/static-latest.js +0 -7
@@ -1,3268 +0,0 @@
1
- import "@polkadot/api-base/types/events";
2
- import type { ApiTypes, AugmentedEvent } from "@polkadot/api-base/types";
3
- import type { Bytes, Null, Option, Result, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec";
4
- import type { ITuple } from "@polkadot/types-codec/types";
5
- import type { AccountId32, H160, H256, Perbill, Percent, Permill } from "@polkadot/types/interfaces/runtime";
6
- import { FrameSupportTokensMiscBalanceStatus, PalletAirdropClaimsUtilsMultiAddress, SpRuntimeDispatchError, PalletDemocracyMetadataOwner, PalletDemocracyVoteThreshold, PalletDemocracyVoteAccountVote, PalletElectionProviderMultiPhaseElectionCompute, SpNposElectionsElectionScore, PalletElectionProviderMultiPhasePhase, EvmCoreErrorExitReason, EthereumLog, SpConsensusGrandpaAppPublic, PalletImOnlineSr25519AppSr25519Public, SpStakingExposure, PalletTangleLstCommissionCommissionChangeRate, PalletTangleLstCommissionCommissionClaimPermission, PalletTangleLstPoolsPoolState, PalletMultiAssetDelegationRewardsAssetAction, PalletMultisigTimepoint, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsCommissionClaimPermission, PalletNominationPoolsPoolState, TangleTestnetRuntimeProxyType, TanglePrimitivesServicesApprovalPrefrence, TanglePrimitivesServicesField, TanglePrimitivesServicesPriceTargets, TanglePrimitivesServicesOperatorPreferences, PalletStakingForcing, PalletStakingRewardDestination, PalletStakingValidatorPrefs, StagingXcmV4AssetAssetId, SygmaTraitsTransferType, SygmaFeeHandlerRouterFeeHandlerType, FrameSupportDispatchDispatchInfo } from "@polkadot/types/lookup";
7
- export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
8
- declare module "@polkadot/api-base/types/events" {
9
- interface AugmentedEvents<ApiType extends ApiTypes> {
10
- assets: {
11
- /**
12
- * Accounts were destroyed for given asset.
13
- **/
14
- AccountsDestroyed: AugmentedEvent<ApiType, [
15
- assetId: u128,
16
- accountsDestroyed: u32,
17
- accountsRemaining: u32
18
- ], {
19
- assetId: u128;
20
- accountsDestroyed: u32;
21
- accountsRemaining: u32;
22
- }>;
23
- /**
24
- * An approval for account `delegate` was cancelled by `owner`.
25
- **/
26
- ApprovalCancelled: AugmentedEvent<ApiType, [
27
- assetId: u128,
28
- owner: AccountId32,
29
- delegate: AccountId32
30
- ], {
31
- assetId: u128;
32
- owner: AccountId32;
33
- delegate: AccountId32;
34
- }>;
35
- /**
36
- * Approvals were destroyed for given asset.
37
- **/
38
- ApprovalsDestroyed: AugmentedEvent<ApiType, [
39
- assetId: u128,
40
- approvalsDestroyed: u32,
41
- approvalsRemaining: u32
42
- ], {
43
- assetId: u128;
44
- approvalsDestroyed: u32;
45
- approvalsRemaining: u32;
46
- }>;
47
- /**
48
- * (Additional) funds have been approved for transfer to a destination account.
49
- **/
50
- ApprovedTransfer: AugmentedEvent<ApiType, [
51
- assetId: u128,
52
- source: AccountId32,
53
- delegate: AccountId32,
54
- amount: u128
55
- ], {
56
- assetId: u128;
57
- source: AccountId32;
58
- delegate: AccountId32;
59
- amount: u128;
60
- }>;
61
- /**
62
- * Some asset `asset_id` was frozen.
63
- **/
64
- AssetFrozen: AugmentedEvent<ApiType, [assetId: u128], {
65
- assetId: u128;
66
- }>;
67
- /**
68
- * The min_balance of an asset has been updated by the asset owner.
69
- **/
70
- AssetMinBalanceChanged: AugmentedEvent<ApiType, [
71
- assetId: u128,
72
- newMinBalance: u128
73
- ], {
74
- assetId: u128;
75
- newMinBalance: u128;
76
- }>;
77
- /**
78
- * An asset has had its attributes changed by the `Force` origin.
79
- **/
80
- AssetStatusChanged: AugmentedEvent<ApiType, [
81
- assetId: u128
82
- ], {
83
- assetId: u128;
84
- }>;
85
- /**
86
- * Some asset `asset_id` was thawed.
87
- **/
88
- AssetThawed: AugmentedEvent<ApiType, [assetId: u128], {
89
- assetId: u128;
90
- }>;
91
- /**
92
- * Some account `who` was blocked.
93
- **/
94
- Blocked: AugmentedEvent<ApiType, [
95
- assetId: u128,
96
- who: AccountId32
97
- ], {
98
- assetId: u128;
99
- who: AccountId32;
100
- }>;
101
- /**
102
- * Some assets were destroyed.
103
- **/
104
- Burned: AugmentedEvent<ApiType, [
105
- assetId: u128,
106
- owner: AccountId32,
107
- balance: u128
108
- ], {
109
- assetId: u128;
110
- owner: AccountId32;
111
- balance: u128;
112
- }>;
113
- /**
114
- * Some asset class was created.
115
- **/
116
- Created: AugmentedEvent<ApiType, [
117
- assetId: u128,
118
- creator: AccountId32,
119
- owner: AccountId32
120
- ], {
121
- assetId: u128;
122
- creator: AccountId32;
123
- owner: AccountId32;
124
- }>;
125
- /**
126
- * An asset class was destroyed.
127
- **/
128
- Destroyed: AugmentedEvent<ApiType, [assetId: u128], {
129
- assetId: u128;
130
- }>;
131
- /**
132
- * An asset class is in the process of being destroyed.
133
- **/
134
- DestructionStarted: AugmentedEvent<ApiType, [
135
- assetId: u128
136
- ], {
137
- assetId: u128;
138
- }>;
139
- /**
140
- * Some asset class was force-created.
141
- **/
142
- ForceCreated: AugmentedEvent<ApiType, [
143
- assetId: u128,
144
- owner: AccountId32
145
- ], {
146
- assetId: u128;
147
- owner: AccountId32;
148
- }>;
149
- /**
150
- * Some account `who` was frozen.
151
- **/
152
- Frozen: AugmentedEvent<ApiType, [
153
- assetId: u128,
154
- who: AccountId32
155
- ], {
156
- assetId: u128;
157
- who: AccountId32;
158
- }>;
159
- /**
160
- * Some assets were issued.
161
- **/
162
- Issued: AugmentedEvent<ApiType, [
163
- assetId: u128,
164
- owner: AccountId32,
165
- amount: u128
166
- ], {
167
- assetId: u128;
168
- owner: AccountId32;
169
- amount: u128;
170
- }>;
171
- /**
172
- * Metadata has been cleared for an asset.
173
- **/
174
- MetadataCleared: AugmentedEvent<ApiType, [
175
- assetId: u128
176
- ], {
177
- assetId: u128;
178
- }>;
179
- /**
180
- * New metadata has been set for an asset.
181
- **/
182
- MetadataSet: AugmentedEvent<ApiType, [
183
- assetId: u128,
184
- name: Bytes,
185
- symbol_: Bytes,
186
- decimals: u8,
187
- isFrozen: bool
188
- ], {
189
- assetId: u128;
190
- name: Bytes;
191
- symbol: Bytes;
192
- decimals: u8;
193
- isFrozen: bool;
194
- }>;
195
- /**
196
- * The owner changed.
197
- **/
198
- OwnerChanged: AugmentedEvent<ApiType, [
199
- assetId: u128,
200
- owner: AccountId32
201
- ], {
202
- assetId: u128;
203
- owner: AccountId32;
204
- }>;
205
- /**
206
- * The management team changed.
207
- **/
208
- TeamChanged: AugmentedEvent<ApiType, [
209
- assetId: u128,
210
- issuer: AccountId32,
211
- admin: AccountId32,
212
- freezer: AccountId32
213
- ], {
214
- assetId: u128;
215
- issuer: AccountId32;
216
- admin: AccountId32;
217
- freezer: AccountId32;
218
- }>;
219
- /**
220
- * Some account `who` was thawed.
221
- **/
222
- Thawed: AugmentedEvent<ApiType, [
223
- assetId: u128,
224
- who: AccountId32
225
- ], {
226
- assetId: u128;
227
- who: AccountId32;
228
- }>;
229
- /**
230
- * Some account `who` was created with a deposit from `depositor`.
231
- **/
232
- Touched: AugmentedEvent<ApiType, [
233
- assetId: u128,
234
- who: AccountId32,
235
- depositor: AccountId32
236
- ], {
237
- assetId: u128;
238
- who: AccountId32;
239
- depositor: AccountId32;
240
- }>;
241
- /**
242
- * Some assets were transferred.
243
- **/
244
- Transferred: AugmentedEvent<ApiType, [
245
- assetId: u128,
246
- from: AccountId32,
247
- to: AccountId32,
248
- amount: u128
249
- ], {
250
- assetId: u128;
251
- from: AccountId32;
252
- to: AccountId32;
253
- amount: u128;
254
- }>;
255
- /**
256
- * An `amount` was transferred in its entirety from `owner` to `destination` by
257
- * the approved `delegate`.
258
- **/
259
- TransferredApproved: AugmentedEvent<ApiType, [
260
- assetId: u128,
261
- owner: AccountId32,
262
- delegate: AccountId32,
263
- destination: AccountId32,
264
- amount: u128
265
- ], {
266
- assetId: u128;
267
- owner: AccountId32;
268
- delegate: AccountId32;
269
- destination: AccountId32;
270
- amount: u128;
271
- }>;
272
- /**
273
- * Generic event
274
- **/
275
- [key: string]: AugmentedEvent<ApiType>;
276
- };
277
- bagsList: {
278
- /**
279
- * Moved an account from one bag to another.
280
- **/
281
- Rebagged: AugmentedEvent<ApiType, [
282
- who: AccountId32,
283
- from: u64,
284
- to: u64
285
- ], {
286
- who: AccountId32;
287
- from: u64;
288
- to: u64;
289
- }>;
290
- /**
291
- * Updated the score of some account to the given amount.
292
- **/
293
- ScoreUpdated: AugmentedEvent<ApiType, [
294
- who: AccountId32,
295
- newScore: u64
296
- ], {
297
- who: AccountId32;
298
- newScore: u64;
299
- }>;
300
- /**
301
- * Generic event
302
- **/
303
- [key: string]: AugmentedEvent<ApiType>;
304
- };
305
- balances: {
306
- /**
307
- * A balance was set by root.
308
- **/
309
- BalanceSet: AugmentedEvent<ApiType, [
310
- who: AccountId32,
311
- free: u128
312
- ], {
313
- who: AccountId32;
314
- free: u128;
315
- }>;
316
- /**
317
- * Some amount was burned from an account.
318
- **/
319
- Burned: AugmentedEvent<ApiType, [
320
- who: AccountId32,
321
- amount: u128
322
- ], {
323
- who: AccountId32;
324
- amount: u128;
325
- }>;
326
- /**
327
- * Some amount was deposited (e.g. for transaction fees).
328
- **/
329
- Deposit: AugmentedEvent<ApiType, [
330
- who: AccountId32,
331
- amount: u128
332
- ], {
333
- who: AccountId32;
334
- amount: u128;
335
- }>;
336
- /**
337
- * An account was removed whose balance was non-zero but below ExistentialDeposit,
338
- * resulting in an outright loss.
339
- **/
340
- DustLost: AugmentedEvent<ApiType, [
341
- account: AccountId32,
342
- amount: u128
343
- ], {
344
- account: AccountId32;
345
- amount: u128;
346
- }>;
347
- /**
348
- * An account was created with some free balance.
349
- **/
350
- Endowed: AugmentedEvent<ApiType, [
351
- account: AccountId32,
352
- freeBalance: u128
353
- ], {
354
- account: AccountId32;
355
- freeBalance: u128;
356
- }>;
357
- /**
358
- * Some balance was frozen.
359
- **/
360
- Frozen: AugmentedEvent<ApiType, [
361
- who: AccountId32,
362
- amount: u128
363
- ], {
364
- who: AccountId32;
365
- amount: u128;
366
- }>;
367
- /**
368
- * Total issuance was increased by `amount`, creating a credit to be balanced.
369
- **/
370
- Issued: AugmentedEvent<ApiType, [amount: u128], {
371
- amount: u128;
372
- }>;
373
- /**
374
- * Some balance was locked.
375
- **/
376
- Locked: AugmentedEvent<ApiType, [
377
- who: AccountId32,
378
- amount: u128
379
- ], {
380
- who: AccountId32;
381
- amount: u128;
382
- }>;
383
- /**
384
- * Some amount was minted into an account.
385
- **/
386
- Minted: AugmentedEvent<ApiType, [
387
- who: AccountId32,
388
- amount: u128
389
- ], {
390
- who: AccountId32;
391
- amount: u128;
392
- }>;
393
- /**
394
- * Total issuance was decreased by `amount`, creating a debt to be balanced.
395
- **/
396
- Rescinded: AugmentedEvent<ApiType, [amount: u128], {
397
- amount: u128;
398
- }>;
399
- /**
400
- * Some balance was reserved (moved from free to reserved).
401
- **/
402
- Reserved: AugmentedEvent<ApiType, [
403
- who: AccountId32,
404
- amount: u128
405
- ], {
406
- who: AccountId32;
407
- amount: u128;
408
- }>;
409
- /**
410
- * Some balance was moved from the reserve of the first account to the second account.
411
- * Final argument indicates the destination balance type.
412
- **/
413
- ReserveRepatriated: AugmentedEvent<ApiType, [
414
- from: AccountId32,
415
- to: AccountId32,
416
- amount: u128,
417
- destinationStatus: FrameSupportTokensMiscBalanceStatus
418
- ], {
419
- from: AccountId32;
420
- to: AccountId32;
421
- amount: u128;
422
- destinationStatus: FrameSupportTokensMiscBalanceStatus;
423
- }>;
424
- /**
425
- * Some amount was restored into an account.
426
- **/
427
- Restored: AugmentedEvent<ApiType, [
428
- who: AccountId32,
429
- amount: u128
430
- ], {
431
- who: AccountId32;
432
- amount: u128;
433
- }>;
434
- /**
435
- * Some amount was removed from the account (e.g. for misbehavior).
436
- **/
437
- Slashed: AugmentedEvent<ApiType, [
438
- who: AccountId32,
439
- amount: u128
440
- ], {
441
- who: AccountId32;
442
- amount: u128;
443
- }>;
444
- /**
445
- * Some amount was suspended from an account (it can be restored later).
446
- **/
447
- Suspended: AugmentedEvent<ApiType, [
448
- who: AccountId32,
449
- amount: u128
450
- ], {
451
- who: AccountId32;
452
- amount: u128;
453
- }>;
454
- /**
455
- * Some balance was thawed.
456
- **/
457
- Thawed: AugmentedEvent<ApiType, [
458
- who: AccountId32,
459
- amount: u128
460
- ], {
461
- who: AccountId32;
462
- amount: u128;
463
- }>;
464
- /**
465
- * The `TotalIssuance` was forcefully changed.
466
- **/
467
- TotalIssuanceForced: AugmentedEvent<ApiType, [
468
- old: u128,
469
- new_: u128
470
- ], {
471
- old: u128;
472
- new_: u128;
473
- }>;
474
- /**
475
- * Transfer succeeded.
476
- **/
477
- Transfer: AugmentedEvent<ApiType, [
478
- from: AccountId32,
479
- to: AccountId32,
480
- amount: u128
481
- ], {
482
- from: AccountId32;
483
- to: AccountId32;
484
- amount: u128;
485
- }>;
486
- /**
487
- * Some balance was unlocked.
488
- **/
489
- Unlocked: AugmentedEvent<ApiType, [
490
- who: AccountId32,
491
- amount: u128
492
- ], {
493
- who: AccountId32;
494
- amount: u128;
495
- }>;
496
- /**
497
- * Some balance was unreserved (moved from reserved to free).
498
- **/
499
- Unreserved: AugmentedEvent<ApiType, [
500
- who: AccountId32,
501
- amount: u128
502
- ], {
503
- who: AccountId32;
504
- amount: u128;
505
- }>;
506
- /**
507
- * An account was upgraded.
508
- **/
509
- Upgraded: AugmentedEvent<ApiType, [
510
- who: AccountId32
511
- ], {
512
- who: AccountId32;
513
- }>;
514
- /**
515
- * Some amount was withdrawn from the account (e.g. for transaction fees).
516
- **/
517
- Withdraw: AugmentedEvent<ApiType, [
518
- who: AccountId32,
519
- amount: u128
520
- ], {
521
- who: AccountId32;
522
- amount: u128;
523
- }>;
524
- /**
525
- * Generic event
526
- **/
527
- [key: string]: AugmentedEvent<ApiType>;
528
- };
529
- baseFee: {
530
- BaseFeeOverflow: AugmentedEvent<ApiType, []>;
531
- NewBaseFeePerGas: AugmentedEvent<ApiType, [fee: U256], {
532
- fee: U256;
533
- }>;
534
- NewElasticity: AugmentedEvent<ApiType, [
535
- elasticity: Permill
536
- ], {
537
- elasticity: Permill;
538
- }>;
539
- /**
540
- * Generic event
541
- **/
542
- [key: string]: AugmentedEvent<ApiType>;
543
- };
544
- bounties: {
545
- /**
546
- * A bounty is approved.
547
- **/
548
- BountyApproved: AugmentedEvent<ApiType, [index: u32], {
549
- index: u32;
550
- }>;
551
- /**
552
- * A bounty is awarded to a beneficiary.
553
- **/
554
- BountyAwarded: AugmentedEvent<ApiType, [
555
- index: u32,
556
- beneficiary: AccountId32
557
- ], {
558
- index: u32;
559
- beneficiary: AccountId32;
560
- }>;
561
- /**
562
- * A bounty proposal is funded and became active.
563
- **/
564
- BountyBecameActive: AugmentedEvent<ApiType, [index: u32], {
565
- index: u32;
566
- }>;
567
- /**
568
- * A bounty is cancelled.
569
- **/
570
- BountyCanceled: AugmentedEvent<ApiType, [index: u32], {
571
- index: u32;
572
- }>;
573
- /**
574
- * A bounty is claimed by beneficiary.
575
- **/
576
- BountyClaimed: AugmentedEvent<ApiType, [
577
- index: u32,
578
- payout: u128,
579
- beneficiary: AccountId32
580
- ], {
581
- index: u32;
582
- payout: u128;
583
- beneficiary: AccountId32;
584
- }>;
585
- /**
586
- * A bounty expiry is extended.
587
- **/
588
- BountyExtended: AugmentedEvent<ApiType, [index: u32], {
589
- index: u32;
590
- }>;
591
- /**
592
- * New bounty proposal.
593
- **/
594
- BountyProposed: AugmentedEvent<ApiType, [index: u32], {
595
- index: u32;
596
- }>;
597
- /**
598
- * A bounty proposal was rejected; funds were slashed.
599
- **/
600
- BountyRejected: AugmentedEvent<ApiType, [
601
- index: u32,
602
- bond: u128
603
- ], {
604
- index: u32;
605
- bond: u128;
606
- }>;
607
- /**
608
- * A bounty curator is accepted.
609
- **/
610
- CuratorAccepted: AugmentedEvent<ApiType, [
611
- bountyId: u32,
612
- curator: AccountId32
613
- ], {
614
- bountyId: u32;
615
- curator: AccountId32;
616
- }>;
617
- /**
618
- * A bounty curator is proposed.
619
- **/
620
- CuratorProposed: AugmentedEvent<ApiType, [
621
- bountyId: u32,
622
- curator: AccountId32
623
- ], {
624
- bountyId: u32;
625
- curator: AccountId32;
626
- }>;
627
- /**
628
- * A bounty curator is unassigned.
629
- **/
630
- CuratorUnassigned: AugmentedEvent<ApiType, [
631
- bountyId: u32
632
- ], {
633
- bountyId: u32;
634
- }>;
635
- /**
636
- * Generic event
637
- **/
638
- [key: string]: AugmentedEvent<ApiType>;
639
- };
640
- childBounties: {
641
- /**
642
- * A child-bounty is added.
643
- **/
644
- Added: AugmentedEvent<ApiType, [
645
- index: u32,
646
- childIndex: u32
647
- ], {
648
- index: u32;
649
- childIndex: u32;
650
- }>;
651
- /**
652
- * A child-bounty is awarded to a beneficiary.
653
- **/
654
- Awarded: AugmentedEvent<ApiType, [
655
- index: u32,
656
- childIndex: u32,
657
- beneficiary: AccountId32
658
- ], {
659
- index: u32;
660
- childIndex: u32;
661
- beneficiary: AccountId32;
662
- }>;
663
- /**
664
- * A child-bounty is cancelled.
665
- **/
666
- Canceled: AugmentedEvent<ApiType, [
667
- index: u32,
668
- childIndex: u32
669
- ], {
670
- index: u32;
671
- childIndex: u32;
672
- }>;
673
- /**
674
- * A child-bounty is claimed by beneficiary.
675
- **/
676
- Claimed: AugmentedEvent<ApiType, [
677
- index: u32,
678
- childIndex: u32,
679
- payout: u128,
680
- beneficiary: AccountId32
681
- ], {
682
- index: u32;
683
- childIndex: u32;
684
- payout: u128;
685
- beneficiary: AccountId32;
686
- }>;
687
- /**
688
- * Generic event
689
- **/
690
- [key: string]: AugmentedEvent<ApiType>;
691
- };
692
- claims: {
693
- /**
694
- * Someone claimed some native tokens.
695
- **/
696
- Claimed: AugmentedEvent<ApiType, [
697
- recipient: AccountId32,
698
- source: PalletAirdropClaimsUtilsMultiAddress,
699
- amount: u128
700
- ], {
701
- recipient: AccountId32;
702
- source: PalletAirdropClaimsUtilsMultiAddress;
703
- amount: u128;
704
- }>;
705
- /**
706
- * Generic event
707
- **/
708
- [key: string]: AugmentedEvent<ApiType>;
709
- };
710
- council: {
711
- /**
712
- * A motion was approved by the required threshold.
713
- **/
714
- Approved: AugmentedEvent<ApiType, [
715
- proposalHash: H256
716
- ], {
717
- proposalHash: H256;
718
- }>;
719
- /**
720
- * A proposal was closed because its threshold was reached or after its duration was up.
721
- **/
722
- Closed: AugmentedEvent<ApiType, [
723
- proposalHash: H256,
724
- yes: u32,
725
- no: u32
726
- ], {
727
- proposalHash: H256;
728
- yes: u32;
729
- no: u32;
730
- }>;
731
- /**
732
- * A motion was not approved by the required threshold.
733
- **/
734
- Disapproved: AugmentedEvent<ApiType, [
735
- proposalHash: H256
736
- ], {
737
- proposalHash: H256;
738
- }>;
739
- /**
740
- * A motion was executed; result will be `Ok` if it returned without error.
741
- **/
742
- Executed: AugmentedEvent<ApiType, [
743
- proposalHash: H256,
744
- result: Result<Null, SpRuntimeDispatchError>
745
- ], {
746
- proposalHash: H256;
747
- result: Result<Null, SpRuntimeDispatchError>;
748
- }>;
749
- /**
750
- * A single member did some action; result will be `Ok` if it returned without error.
751
- **/
752
- MemberExecuted: AugmentedEvent<ApiType, [
753
- proposalHash: H256,
754
- result: Result<Null, SpRuntimeDispatchError>
755
- ], {
756
- proposalHash: H256;
757
- result: Result<Null, SpRuntimeDispatchError>;
758
- }>;
759
- /**
760
- * A motion (given hash) has been proposed (by given account) with a threshold (given
761
- * `MemberCount`).
762
- **/
763
- Proposed: AugmentedEvent<ApiType, [
764
- account: AccountId32,
765
- proposalIndex: u32,
766
- proposalHash: H256,
767
- threshold: u32
768
- ], {
769
- account: AccountId32;
770
- proposalIndex: u32;
771
- proposalHash: H256;
772
- threshold: u32;
773
- }>;
774
- /**
775
- * A motion (given hash) has been voted on by given account, leaving
776
- * a tally (yes votes and no votes given respectively as `MemberCount`).
777
- **/
778
- Voted: AugmentedEvent<ApiType, [
779
- account: AccountId32,
780
- proposalHash: H256,
781
- voted: bool,
782
- yes: u32,
783
- no: u32
784
- ], {
785
- account: AccountId32;
786
- proposalHash: H256;
787
- voted: bool;
788
- yes: u32;
789
- no: u32;
790
- }>;
791
- /**
792
- * Generic event
793
- **/
794
- [key: string]: AugmentedEvent<ApiType>;
795
- };
796
- democracy: {
797
- /**
798
- * A proposal_hash has been blacklisted permanently.
799
- **/
800
- Blacklisted: AugmentedEvent<ApiType, [
801
- proposalHash: H256
802
- ], {
803
- proposalHash: H256;
804
- }>;
805
- /**
806
- * A referendum has been cancelled.
807
- **/
808
- Cancelled: AugmentedEvent<ApiType, [refIndex: u32], {
809
- refIndex: u32;
810
- }>;
811
- /**
812
- * An account has delegated their vote to another account.
813
- **/
814
- Delegated: AugmentedEvent<ApiType, [
815
- who: AccountId32,
816
- target: AccountId32
817
- ], {
818
- who: AccountId32;
819
- target: AccountId32;
820
- }>;
821
- /**
822
- * An external proposal has been tabled.
823
- **/
824
- ExternalTabled: AugmentedEvent<ApiType, []>;
825
- /**
826
- * Metadata for a proposal or a referendum has been cleared.
827
- **/
828
- MetadataCleared: AugmentedEvent<ApiType, [
829
- owner: PalletDemocracyMetadataOwner,
830
- hash_: H256
831
- ], {
832
- owner: PalletDemocracyMetadataOwner;
833
- hash_: H256;
834
- }>;
835
- /**
836
- * Metadata for a proposal or a referendum has been set.
837
- **/
838
- MetadataSet: AugmentedEvent<ApiType, [
839
- owner: PalletDemocracyMetadataOwner,
840
- hash_: H256
841
- ], {
842
- owner: PalletDemocracyMetadataOwner;
843
- hash_: H256;
844
- }>;
845
- /**
846
- * Metadata has been transferred to new owner.
847
- **/
848
- MetadataTransferred: AugmentedEvent<ApiType, [
849
- prevOwner: PalletDemocracyMetadataOwner,
850
- owner: PalletDemocracyMetadataOwner,
851
- hash_: H256
852
- ], {
853
- prevOwner: PalletDemocracyMetadataOwner;
854
- owner: PalletDemocracyMetadataOwner;
855
- hash_: H256;
856
- }>;
857
- /**
858
- * A proposal has been rejected by referendum.
859
- **/
860
- NotPassed: AugmentedEvent<ApiType, [refIndex: u32], {
861
- refIndex: u32;
862
- }>;
863
- /**
864
- * A proposal has been approved by referendum.
865
- **/
866
- Passed: AugmentedEvent<ApiType, [refIndex: u32], {
867
- refIndex: u32;
868
- }>;
869
- /**
870
- * A proposal got canceled.
871
- **/
872
- ProposalCanceled: AugmentedEvent<ApiType, [
873
- propIndex: u32
874
- ], {
875
- propIndex: u32;
876
- }>;
877
- /**
878
- * A motion has been proposed by a public account.
879
- **/
880
- Proposed: AugmentedEvent<ApiType, [
881
- proposalIndex: u32,
882
- deposit: u128
883
- ], {
884
- proposalIndex: u32;
885
- deposit: u128;
886
- }>;
887
- /**
888
- * An account has secconded a proposal
889
- **/
890
- Seconded: AugmentedEvent<ApiType, [
891
- seconder: AccountId32,
892
- propIndex: u32
893
- ], {
894
- seconder: AccountId32;
895
- propIndex: u32;
896
- }>;
897
- /**
898
- * A referendum has begun.
899
- **/
900
- Started: AugmentedEvent<ApiType, [
901
- refIndex: u32,
902
- threshold: PalletDemocracyVoteThreshold
903
- ], {
904
- refIndex: u32;
905
- threshold: PalletDemocracyVoteThreshold;
906
- }>;
907
- /**
908
- * A public proposal has been tabled for referendum vote.
909
- **/
910
- Tabled: AugmentedEvent<ApiType, [
911
- proposalIndex: u32,
912
- deposit: u128
913
- ], {
914
- proposalIndex: u32;
915
- deposit: u128;
916
- }>;
917
- /**
918
- * An account has cancelled a previous delegation operation.
919
- **/
920
- Undelegated: AugmentedEvent<ApiType, [
921
- account: AccountId32
922
- ], {
923
- account: AccountId32;
924
- }>;
925
- /**
926
- * An external proposal has been vetoed.
927
- **/
928
- Vetoed: AugmentedEvent<ApiType, [
929
- who: AccountId32,
930
- proposalHash: H256,
931
- until: u64
932
- ], {
933
- who: AccountId32;
934
- proposalHash: H256;
935
- until: u64;
936
- }>;
937
- /**
938
- * An account has voted in a referendum
939
- **/
940
- Voted: AugmentedEvent<ApiType, [
941
- voter: AccountId32,
942
- refIndex: u32,
943
- vote: PalletDemocracyVoteAccountVote
944
- ], {
945
- voter: AccountId32;
946
- refIndex: u32;
947
- vote: PalletDemocracyVoteAccountVote;
948
- }>;
949
- /**
950
- * Generic event
951
- **/
952
- [key: string]: AugmentedEvent<ApiType>;
953
- };
954
- electionProviderMultiPhase: {
955
- /**
956
- * An election failed.
957
- *
958
- * Not much can be said about which computes failed in the process.
959
- **/
960
- ElectionFailed: AugmentedEvent<ApiType, []>;
961
- /**
962
- * The election has been finalized, with the given computation and score.
963
- **/
964
- ElectionFinalized: AugmentedEvent<ApiType, [
965
- compute: PalletElectionProviderMultiPhaseElectionCompute,
966
- score: SpNposElectionsElectionScore
967
- ], {
968
- compute: PalletElectionProviderMultiPhaseElectionCompute;
969
- score: SpNposElectionsElectionScore;
970
- }>;
971
- /**
972
- * There was a phase transition in a given round.
973
- **/
974
- PhaseTransitioned: AugmentedEvent<ApiType, [
975
- from: PalletElectionProviderMultiPhasePhase,
976
- to: PalletElectionProviderMultiPhasePhase,
977
- round: u32
978
- ], {
979
- from: PalletElectionProviderMultiPhasePhase;
980
- to: PalletElectionProviderMultiPhasePhase;
981
- round: u32;
982
- }>;
983
- /**
984
- * An account has been rewarded for their signed submission being finalized.
985
- **/
986
- Rewarded: AugmentedEvent<ApiType, [
987
- account: AccountId32,
988
- value: u128
989
- ], {
990
- account: AccountId32;
991
- value: u128;
992
- }>;
993
- /**
994
- * An account has been slashed for submitting an invalid signed submission.
995
- **/
996
- Slashed: AugmentedEvent<ApiType, [
997
- account: AccountId32,
998
- value: u128
999
- ], {
1000
- account: AccountId32;
1001
- value: u128;
1002
- }>;
1003
- /**
1004
- * A solution was stored with the given compute.
1005
- *
1006
- * The `origin` indicates the origin of the solution. If `origin` is `Some(AccountId)`,
1007
- * the stored solution was submited in the signed phase by a miner with the `AccountId`.
1008
- * Otherwise, the solution was stored either during the unsigned phase or by
1009
- * `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make
1010
- * room for this one.
1011
- **/
1012
- SolutionStored: AugmentedEvent<ApiType, [
1013
- compute: PalletElectionProviderMultiPhaseElectionCompute,
1014
- origin: Option<AccountId32>,
1015
- prevEjected: bool
1016
- ], {
1017
- compute: PalletElectionProviderMultiPhaseElectionCompute;
1018
- origin: Option<AccountId32>;
1019
- prevEjected: bool;
1020
- }>;
1021
- /**
1022
- * Generic event
1023
- **/
1024
- [key: string]: AugmentedEvent<ApiType>;
1025
- };
1026
- elections: {
1027
- /**
1028
- * A candidate was slashed by amount due to failing to obtain a seat as member or
1029
- * runner-up.
1030
- *
1031
- * Note that old members and runners-up are also candidates.
1032
- **/
1033
- CandidateSlashed: AugmentedEvent<ApiType, [
1034
- candidate: AccountId32,
1035
- amount: u128
1036
- ], {
1037
- candidate: AccountId32;
1038
- amount: u128;
1039
- }>;
1040
- /**
1041
- * Internal error happened while trying to perform election.
1042
- **/
1043
- ElectionError: AugmentedEvent<ApiType, []>;
1044
- /**
1045
- * No (or not enough) candidates existed for this round. This is different from
1046
- * `NewTerm(\[\])`. See the description of `NewTerm`.
1047
- **/
1048
- EmptyTerm: AugmentedEvent<ApiType, []>;
1049
- /**
1050
- * A member has been removed. This should always be followed by either `NewTerm` or
1051
- * `EmptyTerm`.
1052
- **/
1053
- MemberKicked: AugmentedEvent<ApiType, [
1054
- member: AccountId32
1055
- ], {
1056
- member: AccountId32;
1057
- }>;
1058
- /**
1059
- * A new term with new_members. This indicates that enough candidates existed to run
1060
- * the election, not that enough have has been elected. The inner value must be examined
1061
- * for this purpose. A `NewTerm(\[\])` indicates that some candidates got their bond
1062
- * slashed and none were elected, whilst `EmptyTerm` means that no candidates existed to
1063
- * begin with.
1064
- **/
1065
- NewTerm: AugmentedEvent<ApiType, [
1066
- newMembers: Vec<ITuple<[AccountId32, u128]>>
1067
- ], {
1068
- newMembers: Vec<ITuple<[AccountId32, u128]>>;
1069
- }>;
1070
- /**
1071
- * Someone has renounced their candidacy.
1072
- **/
1073
- Renounced: AugmentedEvent<ApiType, [
1074
- candidate: AccountId32
1075
- ], {
1076
- candidate: AccountId32;
1077
- }>;
1078
- /**
1079
- * A seat holder was slashed by amount by being forcefully removed from the set.
1080
- **/
1081
- SeatHolderSlashed: AugmentedEvent<ApiType, [
1082
- seatHolder: AccountId32,
1083
- amount: u128
1084
- ], {
1085
- seatHolder: AccountId32;
1086
- amount: u128;
1087
- }>;
1088
- /**
1089
- * Generic event
1090
- **/
1091
- [key: string]: AugmentedEvent<ApiType>;
1092
- };
1093
- ethereum: {
1094
- /**
1095
- * An ethereum transaction was successfully executed.
1096
- **/
1097
- Executed: AugmentedEvent<ApiType, [
1098
- from: H160,
1099
- to: H160,
1100
- transactionHash: H256,
1101
- exitReason: EvmCoreErrorExitReason,
1102
- extraData: Bytes
1103
- ], {
1104
- from: H160;
1105
- to: H160;
1106
- transactionHash: H256;
1107
- exitReason: EvmCoreErrorExitReason;
1108
- extraData: Bytes;
1109
- }>;
1110
- /**
1111
- * Generic event
1112
- **/
1113
- [key: string]: AugmentedEvent<ApiType>;
1114
- };
1115
- evm: {
1116
- /**
1117
- * A contract has been created at given address.
1118
- **/
1119
- Created: AugmentedEvent<ApiType, [address: H160], {
1120
- address: H160;
1121
- }>;
1122
- /**
1123
- * A contract was attempted to be created, but the execution failed.
1124
- **/
1125
- CreatedFailed: AugmentedEvent<ApiType, [
1126
- address: H160
1127
- ], {
1128
- address: H160;
1129
- }>;
1130
- /**
1131
- * A contract has been executed successfully with states applied.
1132
- **/
1133
- Executed: AugmentedEvent<ApiType, [address: H160], {
1134
- address: H160;
1135
- }>;
1136
- /**
1137
- * A contract has been executed with errors. States are reverted with only gas fees applied.
1138
- **/
1139
- ExecutedFailed: AugmentedEvent<ApiType, [
1140
- address: H160
1141
- ], {
1142
- address: H160;
1143
- }>;
1144
- /**
1145
- * Ethereum events from contracts.
1146
- **/
1147
- Log: AugmentedEvent<ApiType, [log: EthereumLog], {
1148
- log: EthereumLog;
1149
- }>;
1150
- /**
1151
- * Generic event
1152
- **/
1153
- [key: string]: AugmentedEvent<ApiType>;
1154
- };
1155
- grandpa: {
1156
- /**
1157
- * New authority set has been applied.
1158
- **/
1159
- NewAuthorities: AugmentedEvent<ApiType, [
1160
- authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>
1161
- ], {
1162
- authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
1163
- }>;
1164
- /**
1165
- * Current authority set has been paused.
1166
- **/
1167
- Paused: AugmentedEvent<ApiType, []>;
1168
- /**
1169
- * Current authority set has been resumed.
1170
- **/
1171
- Resumed: AugmentedEvent<ApiType, []>;
1172
- /**
1173
- * Generic event
1174
- **/
1175
- [key: string]: AugmentedEvent<ApiType>;
1176
- };
1177
- identity: {
1178
- /**
1179
- * A username authority was added.
1180
- **/
1181
- AuthorityAdded: AugmentedEvent<ApiType, [
1182
- authority: AccountId32
1183
- ], {
1184
- authority: AccountId32;
1185
- }>;
1186
- /**
1187
- * A username authority was removed.
1188
- **/
1189
- AuthorityRemoved: AugmentedEvent<ApiType, [
1190
- authority: AccountId32
1191
- ], {
1192
- authority: AccountId32;
1193
- }>;
1194
- /**
1195
- * A dangling username (as in, a username corresponding to an account that has removed its
1196
- * identity) has been removed.
1197
- **/
1198
- DanglingUsernameRemoved: AugmentedEvent<ApiType, [
1199
- who: AccountId32,
1200
- username: Bytes
1201
- ], {
1202
- who: AccountId32;
1203
- username: Bytes;
1204
- }>;
1205
- /**
1206
- * A name was cleared, and the given balance returned.
1207
- **/
1208
- IdentityCleared: AugmentedEvent<ApiType, [
1209
- who: AccountId32,
1210
- deposit: u128
1211
- ], {
1212
- who: AccountId32;
1213
- deposit: u128;
1214
- }>;
1215
- /**
1216
- * A name was removed and the given balance slashed.
1217
- **/
1218
- IdentityKilled: AugmentedEvent<ApiType, [
1219
- who: AccountId32,
1220
- deposit: u128
1221
- ], {
1222
- who: AccountId32;
1223
- deposit: u128;
1224
- }>;
1225
- /**
1226
- * A name was set or reset (which will remove all judgements).
1227
- **/
1228
- IdentitySet: AugmentedEvent<ApiType, [
1229
- who: AccountId32
1230
- ], {
1231
- who: AccountId32;
1232
- }>;
1233
- /**
1234
- * A judgement was given by a registrar.
1235
- **/
1236
- JudgementGiven: AugmentedEvent<ApiType, [
1237
- target: AccountId32,
1238
- registrarIndex: u32
1239
- ], {
1240
- target: AccountId32;
1241
- registrarIndex: u32;
1242
- }>;
1243
- /**
1244
- * A judgement was asked from a registrar.
1245
- **/
1246
- JudgementRequested: AugmentedEvent<ApiType, [
1247
- who: AccountId32,
1248
- registrarIndex: u32
1249
- ], {
1250
- who: AccountId32;
1251
- registrarIndex: u32;
1252
- }>;
1253
- /**
1254
- * A judgement request was retracted.
1255
- **/
1256
- JudgementUnrequested: AugmentedEvent<ApiType, [
1257
- who: AccountId32,
1258
- registrarIndex: u32
1259
- ], {
1260
- who: AccountId32;
1261
- registrarIndex: u32;
1262
- }>;
1263
- /**
1264
- * A queued username passed its expiration without being claimed and was removed.
1265
- **/
1266
- PreapprovalExpired: AugmentedEvent<ApiType, [
1267
- whose: AccountId32
1268
- ], {
1269
- whose: AccountId32;
1270
- }>;
1271
- /**
1272
- * A username was set as a primary and can be looked up from `who`.
1273
- **/
1274
- PrimaryUsernameSet: AugmentedEvent<ApiType, [
1275
- who: AccountId32,
1276
- username: Bytes
1277
- ], {
1278
- who: AccountId32;
1279
- username: Bytes;
1280
- }>;
1281
- /**
1282
- * A registrar was added.
1283
- **/
1284
- RegistrarAdded: AugmentedEvent<ApiType, [
1285
- registrarIndex: u32
1286
- ], {
1287
- registrarIndex: u32;
1288
- }>;
1289
- /**
1290
- * A sub-identity was added to an identity and the deposit paid.
1291
- **/
1292
- SubIdentityAdded: AugmentedEvent<ApiType, [
1293
- sub: AccountId32,
1294
- main: AccountId32,
1295
- deposit: u128
1296
- ], {
1297
- sub: AccountId32;
1298
- main: AccountId32;
1299
- deposit: u128;
1300
- }>;
1301
- /**
1302
- * A sub-identity was removed from an identity and the deposit freed.
1303
- **/
1304
- SubIdentityRemoved: AugmentedEvent<ApiType, [
1305
- sub: AccountId32,
1306
- main: AccountId32,
1307
- deposit: u128
1308
- ], {
1309
- sub: AccountId32;
1310
- main: AccountId32;
1311
- deposit: u128;
1312
- }>;
1313
- /**
1314
- * A sub-identity was cleared, and the given deposit repatriated from the
1315
- * main identity account to the sub-identity account.
1316
- **/
1317
- SubIdentityRevoked: AugmentedEvent<ApiType, [
1318
- sub: AccountId32,
1319
- main: AccountId32,
1320
- deposit: u128
1321
- ], {
1322
- sub: AccountId32;
1323
- main: AccountId32;
1324
- deposit: u128;
1325
- }>;
1326
- /**
1327
- * A username was queued, but `who` must accept it prior to `expiration`.
1328
- **/
1329
- UsernameQueued: AugmentedEvent<ApiType, [
1330
- who: AccountId32,
1331
- username: Bytes,
1332
- expiration: u64
1333
- ], {
1334
- who: AccountId32;
1335
- username: Bytes;
1336
- expiration: u64;
1337
- }>;
1338
- /**
1339
- * A username was set for `who`.
1340
- **/
1341
- UsernameSet: AugmentedEvent<ApiType, [
1342
- who: AccountId32,
1343
- username: Bytes
1344
- ], {
1345
- who: AccountId32;
1346
- username: Bytes;
1347
- }>;
1348
- /**
1349
- * Generic event
1350
- **/
1351
- [key: string]: AugmentedEvent<ApiType>;
1352
- };
1353
- imOnline: {
1354
- /**
1355
- * At the end of the session, no offence was committed.
1356
- **/
1357
- AllGood: AugmentedEvent<ApiType, []>;
1358
- /**
1359
- * A new heartbeat was received from `AuthorityId`.
1360
- **/
1361
- HeartbeatReceived: AugmentedEvent<ApiType, [
1362
- authorityId: PalletImOnlineSr25519AppSr25519Public
1363
- ], {
1364
- authorityId: PalletImOnlineSr25519AppSr25519Public;
1365
- }>;
1366
- /**
1367
- * At the end of the session, at least one validator was found to be offline.
1368
- **/
1369
- SomeOffline: AugmentedEvent<ApiType, [
1370
- offline: Vec<ITuple<[AccountId32, SpStakingExposure]>>
1371
- ], {
1372
- offline: Vec<ITuple<[AccountId32, SpStakingExposure]>>;
1373
- }>;
1374
- /**
1375
- * Generic event
1376
- **/
1377
- [key: string]: AugmentedEvent<ApiType>;
1378
- };
1379
- indices: {
1380
- /**
1381
- * A account index was assigned.
1382
- **/
1383
- IndexAssigned: AugmentedEvent<ApiType, [
1384
- who: AccountId32,
1385
- index: u32
1386
- ], {
1387
- who: AccountId32;
1388
- index: u32;
1389
- }>;
1390
- /**
1391
- * A account index has been freed up (unassigned).
1392
- **/
1393
- IndexFreed: AugmentedEvent<ApiType, [index: u32], {
1394
- index: u32;
1395
- }>;
1396
- /**
1397
- * A account index has been frozen to its current account ID.
1398
- **/
1399
- IndexFrozen: AugmentedEvent<ApiType, [
1400
- index: u32,
1401
- who: AccountId32
1402
- ], {
1403
- index: u32;
1404
- who: AccountId32;
1405
- }>;
1406
- /**
1407
- * Generic event
1408
- **/
1409
- [key: string]: AugmentedEvent<ApiType>;
1410
- };
1411
- lst: {
1412
- /**
1413
- * A member has became bonded in a pool.
1414
- **/
1415
- Bonded: AugmentedEvent<ApiType, [
1416
- member: AccountId32,
1417
- poolId: u32,
1418
- bonded: u128,
1419
- joined: bool
1420
- ], {
1421
- member: AccountId32;
1422
- poolId: u32;
1423
- bonded: u128;
1424
- joined: bool;
1425
- }>;
1426
- /**
1427
- * A pool has been created.
1428
- **/
1429
- Created: AugmentedEvent<ApiType, [
1430
- depositor: AccountId32,
1431
- poolId: u32
1432
- ], {
1433
- depositor: AccountId32;
1434
- poolId: u32;
1435
- }>;
1436
- /**
1437
- * A pool has been destroyed.
1438
- **/
1439
- Destroyed: AugmentedEvent<ApiType, [poolId: u32], {
1440
- poolId: u32;
1441
- }>;
1442
- /**
1443
- * A member has been removed from a pool.
1444
- *
1445
- * The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
1446
- **/
1447
- MemberRemoved: AugmentedEvent<ApiType, [
1448
- poolId: u32,
1449
- member: AccountId32
1450
- ], {
1451
- poolId: u32;
1452
- member: AccountId32;
1453
- }>;
1454
- /**
1455
- * Topped up deficit in frozen ED of the reward pool.
1456
- **/
1457
- MinBalanceDeficitAdjusted: AugmentedEvent<ApiType, [
1458
- poolId: u32,
1459
- amount: u128
1460
- ], {
1461
- poolId: u32;
1462
- amount: u128;
1463
- }>;
1464
- /**
1465
- * Claimed excess frozen ED of af the reward pool.
1466
- **/
1467
- MinBalanceExcessAdjusted: AugmentedEvent<ApiType, [
1468
- poolId: u32,
1469
- amount: u128
1470
- ], {
1471
- poolId: u32;
1472
- amount: u128;
1473
- }>;
1474
- /**
1475
- * A payout has been made to a member.
1476
- **/
1477
- PaidOut: AugmentedEvent<ApiType, [
1478
- member: AccountId32,
1479
- poolId: u32,
1480
- payout: u128
1481
- ], {
1482
- member: AccountId32;
1483
- poolId: u32;
1484
- payout: u128;
1485
- }>;
1486
- /**
1487
- * A pool's commission `change_rate` has been changed.
1488
- **/
1489
- PoolCommissionChangeRateUpdated: AugmentedEvent<ApiType, [
1490
- poolId: u32,
1491
- changeRate: PalletTangleLstCommissionCommissionChangeRate
1492
- ], {
1493
- poolId: u32;
1494
- changeRate: PalletTangleLstCommissionCommissionChangeRate;
1495
- }>;
1496
- /**
1497
- * Pool commission has been claimed.
1498
- **/
1499
- PoolCommissionClaimed: AugmentedEvent<ApiType, [
1500
- poolId: u32,
1501
- commission: u128
1502
- ], {
1503
- poolId: u32;
1504
- commission: u128;
1505
- }>;
1506
- /**
1507
- * Pool commission claim permission has been updated.
1508
- **/
1509
- PoolCommissionClaimPermissionUpdated: AugmentedEvent<ApiType, [
1510
- poolId: u32,
1511
- permission: Option<PalletTangleLstCommissionCommissionClaimPermission>
1512
- ], {
1513
- poolId: u32;
1514
- permission: Option<PalletTangleLstCommissionCommissionClaimPermission>;
1515
- }>;
1516
- /**
1517
- * A pool's commission setting has been changed.
1518
- **/
1519
- PoolCommissionUpdated: AugmentedEvent<ApiType, [
1520
- poolId: u32,
1521
- current: Option<ITuple<[Perbill, AccountId32]>>
1522
- ], {
1523
- poolId: u32;
1524
- current: Option<ITuple<[Perbill, AccountId32]>>;
1525
- }>;
1526
- /**
1527
- * A pool's maximum commission setting has been changed.
1528
- **/
1529
- PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [
1530
- poolId: u32,
1531
- maxCommission: Perbill
1532
- ], {
1533
- poolId: u32;
1534
- maxCommission: Perbill;
1535
- }>;
1536
- /**
1537
- * The active balance of pool `pool_id` has been slashed to `balance`.
1538
- **/
1539
- PoolSlashed: AugmentedEvent<ApiType, [
1540
- poolId: u32,
1541
- balance: u128
1542
- ], {
1543
- poolId: u32;
1544
- balance: u128;
1545
- }>;
1546
- /**
1547
- * The roles of a pool have been updated to the given new roles. Note that the depositor
1548
- * can never change.
1549
- **/
1550
- RolesUpdated: AugmentedEvent<ApiType, [
1551
- root: Option<AccountId32>,
1552
- bouncer: Option<AccountId32>,
1553
- nominator: Option<AccountId32>
1554
- ], {
1555
- root: Option<AccountId32>;
1556
- bouncer: Option<AccountId32>;
1557
- nominator: Option<AccountId32>;
1558
- }>;
1559
- /**
1560
- * The state of a pool has changed
1561
- **/
1562
- StateChanged: AugmentedEvent<ApiType, [
1563
- poolId: u32,
1564
- newState: PalletTangleLstPoolsPoolState
1565
- ], {
1566
- poolId: u32;
1567
- newState: PalletTangleLstPoolsPoolState;
1568
- }>;
1569
- /**
1570
- * A member has unbonded from their pool.
1571
- *
1572
- * - `balance` is the corresponding balance of the number of points that has been
1573
- * requested to be unbonded (the argument of the `unbond` transaction) from the bonded
1574
- * pool.
1575
- * - `points` is the number of points that are issued as a result of `balance` being
1576
- * dissolved into the corresponding unbonding pool.
1577
- * - `era` is the era in which the balance will be unbonded.
1578
- * In the absence of slashing, these values will match. In the presence of slashing, the
1579
- * number of points that are issued in the unbonding pool will be less than the amount
1580
- * requested to be unbonded.
1581
- **/
1582
- Unbonded: AugmentedEvent<ApiType, [
1583
- member: AccountId32,
1584
- poolId: u32,
1585
- balance: u128,
1586
- points: u128,
1587
- era: u32
1588
- ], {
1589
- member: AccountId32;
1590
- poolId: u32;
1591
- balance: u128;
1592
- points: u128;
1593
- era: u32;
1594
- }>;
1595
- /**
1596
- * The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
1597
- **/
1598
- UnbondingPoolSlashed: AugmentedEvent<ApiType, [
1599
- poolId: u32,
1600
- era: u32,
1601
- balance: u128
1602
- ], {
1603
- poolId: u32;
1604
- era: u32;
1605
- balance: u128;
1606
- }>;
1607
- /**
1608
- * A member has withdrawn from their pool.
1609
- *
1610
- * The given number of `points` have been dissolved in return of `balance`.
1611
- *
1612
- * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
1613
- * will be 1.
1614
- **/
1615
- Withdrawn: AugmentedEvent<ApiType, [
1616
- member: AccountId32,
1617
- poolId: u32,
1618
- balance: u128,
1619
- points: u128
1620
- ], {
1621
- member: AccountId32;
1622
- poolId: u32;
1623
- balance: u128;
1624
- points: u128;
1625
- }>;
1626
- /**
1627
- * Generic event
1628
- **/
1629
- [key: string]: AugmentedEvent<ApiType>;
1630
- };
1631
- multiAssetDelegation: {
1632
- /**
1633
- * Asset has been updated to reward pool
1634
- **/
1635
- AssetUpdatedInPool: AugmentedEvent<ApiType, [
1636
- who: AccountId32,
1637
- poolId: u128,
1638
- assetId: u128,
1639
- action: PalletMultiAssetDelegationRewardsAssetAction
1640
- ], {
1641
- who: AccountId32;
1642
- poolId: u128;
1643
- assetId: u128;
1644
- action: PalletMultiAssetDelegationRewardsAssetAction;
1645
- }>;
1646
- /**
1647
- * Event emitted when a blueprint is whitelisted for rewards
1648
- **/
1649
- BlueprintWhitelisted: AugmentedEvent<ApiType, [
1650
- blueprintId: u32
1651
- ], {
1652
- blueprintId: u32;
1653
- }>;
1654
- /**
1655
- * A delegator unstake request has been cancelled.
1656
- **/
1657
- CancelledDelegatorBondLess: AugmentedEvent<ApiType, [
1658
- who: AccountId32
1659
- ], {
1660
- who: AccountId32;
1661
- }>;
1662
- /**
1663
- * An withdraw has been cancelled.
1664
- **/
1665
- Cancelledwithdraw: AugmentedEvent<ApiType, [
1666
- who: AccountId32
1667
- ], {
1668
- who: AccountId32;
1669
- }>;
1670
- /**
1671
- * A delegation has been made.
1672
- **/
1673
- Delegated: AugmentedEvent<ApiType, [
1674
- who: AccountId32,
1675
- operator: AccountId32,
1676
- amount: u128,
1677
- assetId: u128
1678
- ], {
1679
- who: AccountId32;
1680
- operator: AccountId32;
1681
- amount: u128;
1682
- assetId: u128;
1683
- }>;
1684
- /**
1685
- * A deposit has been made.
1686
- **/
1687
- Deposited: AugmentedEvent<ApiType, [
1688
- who: AccountId32,
1689
- amount: u128,
1690
- assetId: u128
1691
- ], {
1692
- who: AccountId32;
1693
- amount: u128;
1694
- assetId: u128;
1695
- }>;
1696
- /**
1697
- * A delegator unstake request has been executed.
1698
- **/
1699
- ExecutedDelegatorBondLess: AugmentedEvent<ApiType, [
1700
- who: AccountId32
1701
- ], {
1702
- who: AccountId32;
1703
- }>;
1704
- /**
1705
- * An withdraw has been executed.
1706
- **/
1707
- Executedwithdraw: AugmentedEvent<ApiType, [
1708
- who: AccountId32
1709
- ], {
1710
- who: AccountId32;
1711
- }>;
1712
- /**
1713
- * Event emitted when an incentive APY and cap are set for a reward pool
1714
- **/
1715
- IncentiveAPYAndCapSet: AugmentedEvent<ApiType, [
1716
- poolId: u128,
1717
- apy: Percent,
1718
- cap: u128
1719
- ], {
1720
- poolId: u128;
1721
- apy: Percent;
1722
- cap: u128;
1723
- }>;
1724
- /**
1725
- * An operator has cancelled their stake decrease request.
1726
- **/
1727
- OperatorBondLessCancelled: AugmentedEvent<ApiType, [
1728
- who: AccountId32
1729
- ], {
1730
- who: AccountId32;
1731
- }>;
1732
- /**
1733
- * An operator has executed their stake decrease.
1734
- **/
1735
- OperatorBondLessExecuted: AugmentedEvent<ApiType, [
1736
- who: AccountId32
1737
- ], {
1738
- who: AccountId32;
1739
- }>;
1740
- /**
1741
- * An operator has scheduled to decrease their stake.
1742
- **/
1743
- OperatorBondLessScheduled: AugmentedEvent<ApiType, [
1744
- who: AccountId32,
1745
- unstakeAmount: u128
1746
- ], {
1747
- who: AccountId32;
1748
- unstakeAmount: u128;
1749
- }>;
1750
- /**
1751
- * An operator has increased their stake.
1752
- **/
1753
- OperatorBondMore: AugmentedEvent<ApiType, [
1754
- who: AccountId32,
1755
- additionalBond: u128
1756
- ], {
1757
- who: AccountId32;
1758
- additionalBond: u128;
1759
- }>;
1760
- /**
1761
- * An operator has joined.
1762
- **/
1763
- OperatorJoined: AugmentedEvent<ApiType, [
1764
- who: AccountId32
1765
- ], {
1766
- who: AccountId32;
1767
- }>;
1768
- /**
1769
- * An operator has cancelled their leave request.
1770
- **/
1771
- OperatorLeaveCancelled: AugmentedEvent<ApiType, [
1772
- who: AccountId32
1773
- ], {
1774
- who: AccountId32;
1775
- }>;
1776
- /**
1777
- * An operator has executed their leave request.
1778
- **/
1779
- OperatorLeaveExecuted: AugmentedEvent<ApiType, [
1780
- who: AccountId32
1781
- ], {
1782
- who: AccountId32;
1783
- }>;
1784
- /**
1785
- * An operator has scheduled to leave.
1786
- **/
1787
- OperatorLeavingScheduled: AugmentedEvent<ApiType, [
1788
- who: AccountId32
1789
- ], {
1790
- who: AccountId32;
1791
- }>;
1792
- /**
1793
- * An operator has gone offline.
1794
- **/
1795
- OperatorWentOffline: AugmentedEvent<ApiType, [
1796
- who: AccountId32
1797
- ], {
1798
- who: AccountId32;
1799
- }>;
1800
- /**
1801
- * An operator has gone online.
1802
- **/
1803
- OperatorWentOnline: AugmentedEvent<ApiType, [
1804
- who: AccountId32
1805
- ], {
1806
- who: AccountId32;
1807
- }>;
1808
- /**
1809
- * A delegator unstake request has been scheduled.
1810
- **/
1811
- ScheduledDelegatorBondLess: AugmentedEvent<ApiType, [
1812
- who: AccountId32,
1813
- operator: AccountId32,
1814
- amount: u128,
1815
- assetId: u128
1816
- ], {
1817
- who: AccountId32;
1818
- operator: AccountId32;
1819
- amount: u128;
1820
- assetId: u128;
1821
- }>;
1822
- /**
1823
- * An withdraw has been scheduled.
1824
- **/
1825
- Scheduledwithdraw: AugmentedEvent<ApiType, [
1826
- who: AccountId32,
1827
- amount: u128,
1828
- assetId: u128
1829
- ], {
1830
- who: AccountId32;
1831
- amount: u128;
1832
- assetId: u128;
1833
- }>;
1834
- /**
1835
- * Generic event
1836
- **/
1837
- [key: string]: AugmentedEvent<ApiType>;
1838
- };
1839
- multisig: {
1840
- /**
1841
- * A multisig operation has been approved by someone.
1842
- **/
1843
- MultisigApproval: AugmentedEvent<ApiType, [
1844
- approving: AccountId32,
1845
- timepoint: PalletMultisigTimepoint,
1846
- multisig: AccountId32,
1847
- callHash: U8aFixed
1848
- ], {
1849
- approving: AccountId32;
1850
- timepoint: PalletMultisigTimepoint;
1851
- multisig: AccountId32;
1852
- callHash: U8aFixed;
1853
- }>;
1854
- /**
1855
- * A multisig operation has been cancelled.
1856
- **/
1857
- MultisigCancelled: AugmentedEvent<ApiType, [
1858
- cancelling: AccountId32,
1859
- timepoint: PalletMultisigTimepoint,
1860
- multisig: AccountId32,
1861
- callHash: U8aFixed
1862
- ], {
1863
- cancelling: AccountId32;
1864
- timepoint: PalletMultisigTimepoint;
1865
- multisig: AccountId32;
1866
- callHash: U8aFixed;
1867
- }>;
1868
- /**
1869
- * A multisig operation has been executed.
1870
- **/
1871
- MultisigExecuted: AugmentedEvent<ApiType, [
1872
- approving: AccountId32,
1873
- timepoint: PalletMultisigTimepoint,
1874
- multisig: AccountId32,
1875
- callHash: U8aFixed,
1876
- result: Result<Null, SpRuntimeDispatchError>
1877
- ], {
1878
- approving: AccountId32;
1879
- timepoint: PalletMultisigTimepoint;
1880
- multisig: AccountId32;
1881
- callHash: U8aFixed;
1882
- result: Result<Null, SpRuntimeDispatchError>;
1883
- }>;
1884
- /**
1885
- * A new multisig operation has begun.
1886
- **/
1887
- NewMultisig: AugmentedEvent<ApiType, [
1888
- approving: AccountId32,
1889
- multisig: AccountId32,
1890
- callHash: U8aFixed
1891
- ], {
1892
- approving: AccountId32;
1893
- multisig: AccountId32;
1894
- callHash: U8aFixed;
1895
- }>;
1896
- /**
1897
- * Generic event
1898
- **/
1899
- [key: string]: AugmentedEvent<ApiType>;
1900
- };
1901
- nominationPools: {
1902
- /**
1903
- * A member has became bonded in a pool.
1904
- **/
1905
- Bonded: AugmentedEvent<ApiType, [
1906
- member: AccountId32,
1907
- poolId: u32,
1908
- bonded: u128,
1909
- joined: bool
1910
- ], {
1911
- member: AccountId32;
1912
- poolId: u32;
1913
- bonded: u128;
1914
- joined: bool;
1915
- }>;
1916
- /**
1917
- * A pool has been created.
1918
- **/
1919
- Created: AugmentedEvent<ApiType, [
1920
- depositor: AccountId32,
1921
- poolId: u32
1922
- ], {
1923
- depositor: AccountId32;
1924
- poolId: u32;
1925
- }>;
1926
- /**
1927
- * A pool has been destroyed.
1928
- **/
1929
- Destroyed: AugmentedEvent<ApiType, [poolId: u32], {
1930
- poolId: u32;
1931
- }>;
1932
- /**
1933
- * A member has been removed from a pool.
1934
- *
1935
- * The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
1936
- **/
1937
- MemberRemoved: AugmentedEvent<ApiType, [
1938
- poolId: u32,
1939
- member: AccountId32
1940
- ], {
1941
- poolId: u32;
1942
- member: AccountId32;
1943
- }>;
1944
- /**
1945
- * Topped up deficit in frozen ED of the reward pool.
1946
- **/
1947
- MinBalanceDeficitAdjusted: AugmentedEvent<ApiType, [
1948
- poolId: u32,
1949
- amount: u128
1950
- ], {
1951
- poolId: u32;
1952
- amount: u128;
1953
- }>;
1954
- /**
1955
- * Claimed excess frozen ED of af the reward pool.
1956
- **/
1957
- MinBalanceExcessAdjusted: AugmentedEvent<ApiType, [
1958
- poolId: u32,
1959
- amount: u128
1960
- ], {
1961
- poolId: u32;
1962
- amount: u128;
1963
- }>;
1964
- /**
1965
- * A payout has been made to a member.
1966
- **/
1967
- PaidOut: AugmentedEvent<ApiType, [
1968
- member: AccountId32,
1969
- poolId: u32,
1970
- payout: u128
1971
- ], {
1972
- member: AccountId32;
1973
- poolId: u32;
1974
- payout: u128;
1975
- }>;
1976
- /**
1977
- * A pool's commission `change_rate` has been changed.
1978
- **/
1979
- PoolCommissionChangeRateUpdated: AugmentedEvent<ApiType, [
1980
- poolId: u32,
1981
- changeRate: PalletNominationPoolsCommissionChangeRate
1982
- ], {
1983
- poolId: u32;
1984
- changeRate: PalletNominationPoolsCommissionChangeRate;
1985
- }>;
1986
- /**
1987
- * Pool commission has been claimed.
1988
- **/
1989
- PoolCommissionClaimed: AugmentedEvent<ApiType, [
1990
- poolId: u32,
1991
- commission: u128
1992
- ], {
1993
- poolId: u32;
1994
- commission: u128;
1995
- }>;
1996
- /**
1997
- * Pool commission claim permission has been updated.
1998
- **/
1999
- PoolCommissionClaimPermissionUpdated: AugmentedEvent<ApiType, [
2000
- poolId: u32,
2001
- permission: Option<PalletNominationPoolsCommissionClaimPermission>
2002
- ], {
2003
- poolId: u32;
2004
- permission: Option<PalletNominationPoolsCommissionClaimPermission>;
2005
- }>;
2006
- /**
2007
- * A pool's commission setting has been changed.
2008
- **/
2009
- PoolCommissionUpdated: AugmentedEvent<ApiType, [
2010
- poolId: u32,
2011
- current: Option<ITuple<[Perbill, AccountId32]>>
2012
- ], {
2013
- poolId: u32;
2014
- current: Option<ITuple<[Perbill, AccountId32]>>;
2015
- }>;
2016
- /**
2017
- * A pool's maximum commission setting has been changed.
2018
- **/
2019
- PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [
2020
- poolId: u32,
2021
- maxCommission: Perbill
2022
- ], {
2023
- poolId: u32;
2024
- maxCommission: Perbill;
2025
- }>;
2026
- /**
2027
- * The active balance of pool `pool_id` has been slashed to `balance`.
2028
- **/
2029
- PoolSlashed: AugmentedEvent<ApiType, [
2030
- poolId: u32,
2031
- balance: u128
2032
- ], {
2033
- poolId: u32;
2034
- balance: u128;
2035
- }>;
2036
- /**
2037
- * The roles of a pool have been updated to the given new roles. Note that the depositor
2038
- * can never change.
2039
- **/
2040
- RolesUpdated: AugmentedEvent<ApiType, [
2041
- root: Option<AccountId32>,
2042
- bouncer: Option<AccountId32>,
2043
- nominator: Option<AccountId32>
2044
- ], {
2045
- root: Option<AccountId32>;
2046
- bouncer: Option<AccountId32>;
2047
- nominator: Option<AccountId32>;
2048
- }>;
2049
- /**
2050
- * The state of a pool has changed
2051
- **/
2052
- StateChanged: AugmentedEvent<ApiType, [
2053
- poolId: u32,
2054
- newState: PalletNominationPoolsPoolState
2055
- ], {
2056
- poolId: u32;
2057
- newState: PalletNominationPoolsPoolState;
2058
- }>;
2059
- /**
2060
- * A member has unbonded from their pool.
2061
- *
2062
- * - `balance` is the corresponding balance of the number of points that has been
2063
- * requested to be unbonded (the argument of the `unbond` transaction) from the bonded
2064
- * pool.
2065
- * - `points` is the number of points that are issued as a result of `balance` being
2066
- * dissolved into the corresponding unbonding pool.
2067
- * - `era` is the era in which the balance will be unbonded.
2068
- * In the absence of slashing, these values will match. In the presence of slashing, the
2069
- * number of points that are issued in the unbonding pool will be less than the amount
2070
- * requested to be unbonded.
2071
- **/
2072
- Unbonded: AugmentedEvent<ApiType, [
2073
- member: AccountId32,
2074
- poolId: u32,
2075
- balance: u128,
2076
- points: u128,
2077
- era: u32
2078
- ], {
2079
- member: AccountId32;
2080
- poolId: u32;
2081
- balance: u128;
2082
- points: u128;
2083
- era: u32;
2084
- }>;
2085
- /**
2086
- * The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
2087
- **/
2088
- UnbondingPoolSlashed: AugmentedEvent<ApiType, [
2089
- poolId: u32,
2090
- era: u32,
2091
- balance: u128
2092
- ], {
2093
- poolId: u32;
2094
- era: u32;
2095
- balance: u128;
2096
- }>;
2097
- /**
2098
- * A member has withdrawn from their pool.
2099
- *
2100
- * The given number of `points` have been dissolved in return of `balance`.
2101
- *
2102
- * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
2103
- * will be 1.
2104
- **/
2105
- Withdrawn: AugmentedEvent<ApiType, [
2106
- member: AccountId32,
2107
- poolId: u32,
2108
- balance: u128,
2109
- points: u128
2110
- ], {
2111
- member: AccountId32;
2112
- poolId: u32;
2113
- balance: u128;
2114
- points: u128;
2115
- }>;
2116
- /**
2117
- * Generic event
2118
- **/
2119
- [key: string]: AugmentedEvent<ApiType>;
2120
- };
2121
- offences: {
2122
- /**
2123
- * There is an offence reported of the given `kind` happened at the `session_index` and
2124
- * (kind-specific) time slot. This event is not deposited for duplicate slashes.
2125
- * \[kind, timeslot\].
2126
- **/
2127
- Offence: AugmentedEvent<ApiType, [
2128
- kind: U8aFixed,
2129
- timeslot: Bytes
2130
- ], {
2131
- kind: U8aFixed;
2132
- timeslot: Bytes;
2133
- }>;
2134
- /**
2135
- * Generic event
2136
- **/
2137
- [key: string]: AugmentedEvent<ApiType>;
2138
- };
2139
- preimage: {
2140
- /**
2141
- * A preimage has ben cleared.
2142
- **/
2143
- Cleared: AugmentedEvent<ApiType, [hash_: H256], {
2144
- hash_: H256;
2145
- }>;
2146
- /**
2147
- * A preimage has been noted.
2148
- **/
2149
- Noted: AugmentedEvent<ApiType, [hash_: H256], {
2150
- hash_: H256;
2151
- }>;
2152
- /**
2153
- * A preimage has been requested.
2154
- **/
2155
- Requested: AugmentedEvent<ApiType, [hash_: H256], {
2156
- hash_: H256;
2157
- }>;
2158
- /**
2159
- * Generic event
2160
- **/
2161
- [key: string]: AugmentedEvent<ApiType>;
2162
- };
2163
- proxy: {
2164
- /**
2165
- * An announcement was placed to make a call in the future.
2166
- **/
2167
- Announced: AugmentedEvent<ApiType, [
2168
- real: AccountId32,
2169
- proxy: AccountId32,
2170
- callHash: H256
2171
- ], {
2172
- real: AccountId32;
2173
- proxy: AccountId32;
2174
- callHash: H256;
2175
- }>;
2176
- /**
2177
- * A proxy was added.
2178
- **/
2179
- ProxyAdded: AugmentedEvent<ApiType, [
2180
- delegator: AccountId32,
2181
- delegatee: AccountId32,
2182
- proxyType: TangleTestnetRuntimeProxyType,
2183
- delay: u64
2184
- ], {
2185
- delegator: AccountId32;
2186
- delegatee: AccountId32;
2187
- proxyType: TangleTestnetRuntimeProxyType;
2188
- delay: u64;
2189
- }>;
2190
- /**
2191
- * A proxy was executed correctly, with the given.
2192
- **/
2193
- ProxyExecuted: AugmentedEvent<ApiType, [
2194
- result: Result<Null, SpRuntimeDispatchError>
2195
- ], {
2196
- result: Result<Null, SpRuntimeDispatchError>;
2197
- }>;
2198
- /**
2199
- * A proxy was removed.
2200
- **/
2201
- ProxyRemoved: AugmentedEvent<ApiType, [
2202
- delegator: AccountId32,
2203
- delegatee: AccountId32,
2204
- proxyType: TangleTestnetRuntimeProxyType,
2205
- delay: u64
2206
- ], {
2207
- delegator: AccountId32;
2208
- delegatee: AccountId32;
2209
- proxyType: TangleTestnetRuntimeProxyType;
2210
- delay: u64;
2211
- }>;
2212
- /**
2213
- * A pure account has been created by new proxy with given
2214
- * disambiguation index and proxy type.
2215
- **/
2216
- PureCreated: AugmentedEvent<ApiType, [
2217
- pure: AccountId32,
2218
- who: AccountId32,
2219
- proxyType: TangleTestnetRuntimeProxyType,
2220
- disambiguationIndex: u16
2221
- ], {
2222
- pure: AccountId32;
2223
- who: AccountId32;
2224
- proxyType: TangleTestnetRuntimeProxyType;
2225
- disambiguationIndex: u16;
2226
- }>;
2227
- /**
2228
- * Generic event
2229
- **/
2230
- [key: string]: AugmentedEvent<ApiType>;
2231
- };
2232
- scheduler: {
2233
- /**
2234
- * The call for the provided hash was not found so the task has been aborted.
2235
- **/
2236
- CallUnavailable: AugmentedEvent<ApiType, [
2237
- task: ITuple<[u64, u32]>,
2238
- id: Option<U8aFixed>
2239
- ], {
2240
- task: ITuple<[u64, u32]>;
2241
- id: Option<U8aFixed>;
2242
- }>;
2243
- /**
2244
- * Canceled some task.
2245
- **/
2246
- Canceled: AugmentedEvent<ApiType, [
2247
- when: u64,
2248
- index: u32
2249
- ], {
2250
- when: u64;
2251
- index: u32;
2252
- }>;
2253
- /**
2254
- * Dispatched some task.
2255
- **/
2256
- Dispatched: AugmentedEvent<ApiType, [
2257
- task: ITuple<[u64, u32]>,
2258
- id: Option<U8aFixed>,
2259
- result: Result<Null, SpRuntimeDispatchError>
2260
- ], {
2261
- task: ITuple<[u64, u32]>;
2262
- id: Option<U8aFixed>;
2263
- result: Result<Null, SpRuntimeDispatchError>;
2264
- }>;
2265
- /**
2266
- * The given task was unable to be renewed since the agenda is full at that block.
2267
- **/
2268
- PeriodicFailed: AugmentedEvent<ApiType, [
2269
- task: ITuple<[u64, u32]>,
2270
- id: Option<U8aFixed>
2271
- ], {
2272
- task: ITuple<[u64, u32]>;
2273
- id: Option<U8aFixed>;
2274
- }>;
2275
- /**
2276
- * The given task can never be executed since it is overweight.
2277
- **/
2278
- PermanentlyOverweight: AugmentedEvent<ApiType, [
2279
- task: ITuple<[u64, u32]>,
2280
- id: Option<U8aFixed>
2281
- ], {
2282
- task: ITuple<[u64, u32]>;
2283
- id: Option<U8aFixed>;
2284
- }>;
2285
- /**
2286
- * Scheduled some task.
2287
- **/
2288
- Scheduled: AugmentedEvent<ApiType, [
2289
- when: u64,
2290
- index: u32
2291
- ], {
2292
- when: u64;
2293
- index: u32;
2294
- }>;
2295
- /**
2296
- * Generic event
2297
- **/
2298
- [key: string]: AugmentedEvent<ApiType>;
2299
- };
2300
- services: {
2301
- /**
2302
- * The approval preference for an operator has been updated.
2303
- **/
2304
- ApprovalPreferenceUpdated: AugmentedEvent<ApiType, [
2305
- operator: AccountId32,
2306
- blueprintId: u64,
2307
- approvalPreference: TanglePrimitivesServicesApprovalPrefrence
2308
- ], {
2309
- operator: AccountId32;
2310
- blueprintId: u64;
2311
- approvalPreference: TanglePrimitivesServicesApprovalPrefrence;
2312
- }>;
2313
- /**
2314
- * A new service blueprint has been created.
2315
- **/
2316
- BlueprintCreated: AugmentedEvent<ApiType, [
2317
- owner: AccountId32,
2318
- blueprintId: u64
2319
- ], {
2320
- owner: AccountId32;
2321
- blueprintId: u64;
2322
- }>;
2323
- /**
2324
- * An EVM log has been emitted during an execution.
2325
- **/
2326
- EvmLog: AugmentedEvent<ApiType, [
2327
- address: H160,
2328
- topics: Vec<H256>,
2329
- data: Bytes
2330
- ], {
2331
- address: H160;
2332
- topics: Vec<H256>;
2333
- data: Bytes;
2334
- }>;
2335
- /**
2336
- * EVM execution reverted with a reason.
2337
- **/
2338
- EvmReverted: AugmentedEvent<ApiType, [
2339
- from: H160,
2340
- to: H160,
2341
- data: Bytes,
2342
- reason: Bytes
2343
- ], {
2344
- from: H160;
2345
- to: H160;
2346
- data: Bytes;
2347
- reason: Bytes;
2348
- }>;
2349
- /**
2350
- * A job has been called.
2351
- **/
2352
- JobCalled: AugmentedEvent<ApiType, [
2353
- caller: AccountId32,
2354
- serviceId: u64,
2355
- callId: u64,
2356
- job: u8,
2357
- args: Vec<TanglePrimitivesServicesField>
2358
- ], {
2359
- caller: AccountId32;
2360
- serviceId: u64;
2361
- callId: u64;
2362
- job: u8;
2363
- args: Vec<TanglePrimitivesServicesField>;
2364
- }>;
2365
- /**
2366
- * A job result has been submitted.
2367
- **/
2368
- JobResultSubmitted: AugmentedEvent<ApiType, [
2369
- operator: AccountId32,
2370
- serviceId: u64,
2371
- callId: u64,
2372
- job: u8,
2373
- result: Vec<TanglePrimitivesServicesField>
2374
- ], {
2375
- operator: AccountId32;
2376
- serviceId: u64;
2377
- callId: u64;
2378
- job: u8;
2379
- result: Vec<TanglePrimitivesServicesField>;
2380
- }>;
2381
- /**
2382
- * An operator has pre-registered for a service blueprint.
2383
- **/
2384
- PreRegistration: AugmentedEvent<ApiType, [
2385
- operator: AccountId32,
2386
- blueprintId: u64
2387
- ], {
2388
- operator: AccountId32;
2389
- blueprintId: u64;
2390
- }>;
2391
- /**
2392
- * The price targets for an operator has been updated.
2393
- **/
2394
- PriceTargetsUpdated: AugmentedEvent<ApiType, [
2395
- operator: AccountId32,
2396
- blueprintId: u64,
2397
- priceTargets: TanglePrimitivesServicesPriceTargets
2398
- ], {
2399
- operator: AccountId32;
2400
- blueprintId: u64;
2401
- priceTargets: TanglePrimitivesServicesPriceTargets;
2402
- }>;
2403
- /**
2404
- * An new operator has been registered.
2405
- **/
2406
- Registered: AugmentedEvent<ApiType, [
2407
- provider: AccountId32,
2408
- blueprintId: u64,
2409
- preferences: TanglePrimitivesServicesOperatorPreferences,
2410
- registrationArgs: Vec<TanglePrimitivesServicesField>
2411
- ], {
2412
- provider: AccountId32;
2413
- blueprintId: u64;
2414
- preferences: TanglePrimitivesServicesOperatorPreferences;
2415
- registrationArgs: Vec<TanglePrimitivesServicesField>;
2416
- }>;
2417
- /**
2418
- * A service has been initiated.
2419
- **/
2420
- ServiceInitiated: AugmentedEvent<ApiType, [
2421
- owner: AccountId32,
2422
- requestId: Option<u64>,
2423
- serviceId: u64,
2424
- blueprintId: u64
2425
- ], {
2426
- owner: AccountId32;
2427
- requestId: Option<u64>;
2428
- serviceId: u64;
2429
- blueprintId: u64;
2430
- }>;
2431
- /**
2432
- * A service request has been approved.
2433
- **/
2434
- ServiceRequestApproved: AugmentedEvent<ApiType, [
2435
- operator: AccountId32,
2436
- requestId: u64,
2437
- blueprintId: u64,
2438
- pendingApprovals: Vec<AccountId32>,
2439
- approved: Vec<AccountId32>
2440
- ], {
2441
- operator: AccountId32;
2442
- requestId: u64;
2443
- blueprintId: u64;
2444
- pendingApprovals: Vec<AccountId32>;
2445
- approved: Vec<AccountId32>;
2446
- }>;
2447
- /**
2448
- * A new service has been requested.
2449
- **/
2450
- ServiceRequested: AugmentedEvent<ApiType, [
2451
- owner: AccountId32,
2452
- requestId: u64,
2453
- blueprintId: u64,
2454
- pendingApprovals: Vec<AccountId32>,
2455
- approved: Vec<AccountId32>
2456
- ], {
2457
- owner: AccountId32;
2458
- requestId: u64;
2459
- blueprintId: u64;
2460
- pendingApprovals: Vec<AccountId32>;
2461
- approved: Vec<AccountId32>;
2462
- }>;
2463
- /**
2464
- * A service request has been rejected.
2465
- **/
2466
- ServiceRequestRejected: AugmentedEvent<ApiType, [
2467
- operator: AccountId32,
2468
- requestId: u64,
2469
- blueprintId: u64
2470
- ], {
2471
- operator: AccountId32;
2472
- requestId: u64;
2473
- blueprintId: u64;
2474
- }>;
2475
- /**
2476
- * A service request has been updated or modified.
2477
- **/
2478
- ServiceRequestUpdated: AugmentedEvent<ApiType, [
2479
- owner: AccountId32,
2480
- requestId: u64,
2481
- blueprintId: u64,
2482
- pendingApprovals: Vec<AccountId32>,
2483
- approved: Vec<AccountId32>
2484
- ], {
2485
- owner: AccountId32;
2486
- requestId: u64;
2487
- blueprintId: u64;
2488
- pendingApprovals: Vec<AccountId32>;
2489
- approved: Vec<AccountId32>;
2490
- }>;
2491
- /**
2492
- * A service has been terminated.
2493
- **/
2494
- ServiceTerminated: AugmentedEvent<ApiType, [
2495
- owner: AccountId32,
2496
- serviceId: u64,
2497
- blueprintId: u64
2498
- ], {
2499
- owner: AccountId32;
2500
- serviceId: u64;
2501
- blueprintId: u64;
2502
- }>;
2503
- /**
2504
- * An operator has been unregistered.
2505
- **/
2506
- Unregistered: AugmentedEvent<ApiType, [
2507
- operator: AccountId32,
2508
- blueprintId: u64
2509
- ], {
2510
- operator: AccountId32;
2511
- blueprintId: u64;
2512
- }>;
2513
- /**
2514
- * Generic event
2515
- **/
2516
- [key: string]: AugmentedEvent<ApiType>;
2517
- };
2518
- session: {
2519
- /**
2520
- * New session has happened. Note that the argument is the session index, not the
2521
- * block number as the type might suggest.
2522
- **/
2523
- NewSession: AugmentedEvent<ApiType, [
2524
- sessionIndex: u32
2525
- ], {
2526
- sessionIndex: u32;
2527
- }>;
2528
- /**
2529
- * Generic event
2530
- **/
2531
- [key: string]: AugmentedEvent<ApiType>;
2532
- };
2533
- staking: {
2534
- /**
2535
- * An account has bonded this amount. \[stash, amount\]
2536
- *
2537
- * NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
2538
- * it will not be emitted for staking rewards when they are added to stake.
2539
- **/
2540
- Bonded: AugmentedEvent<ApiType, [
2541
- stash: AccountId32,
2542
- amount: u128
2543
- ], {
2544
- stash: AccountId32;
2545
- amount: u128;
2546
- }>;
2547
- /**
2548
- * An account has stopped participating as either a validator or nominator.
2549
- **/
2550
- Chilled: AugmentedEvent<ApiType, [
2551
- stash: AccountId32
2552
- ], {
2553
- stash: AccountId32;
2554
- }>;
2555
- /**
2556
- * The era payout has been set; the first balance is the validator-payout; the second is
2557
- * the remainder from the maximum amount of reward.
2558
- **/
2559
- EraPaid: AugmentedEvent<ApiType, [
2560
- eraIndex: u32,
2561
- validatorPayout: u128,
2562
- remainder: u128
2563
- ], {
2564
- eraIndex: u32;
2565
- validatorPayout: u128;
2566
- remainder: u128;
2567
- }>;
2568
- /**
2569
- * A new force era mode was set.
2570
- **/
2571
- ForceEra: AugmentedEvent<ApiType, [
2572
- mode: PalletStakingForcing
2573
- ], {
2574
- mode: PalletStakingForcing;
2575
- }>;
2576
- /**
2577
- * A nominator has been kicked from a validator.
2578
- **/
2579
- Kicked: AugmentedEvent<ApiType, [
2580
- nominator: AccountId32,
2581
- stash: AccountId32
2582
- ], {
2583
- nominator: AccountId32;
2584
- stash: AccountId32;
2585
- }>;
2586
- /**
2587
- * An old slashing report from a prior era was discarded because it could
2588
- * not be processed.
2589
- **/
2590
- OldSlashingReportDiscarded: AugmentedEvent<ApiType, [
2591
- sessionIndex: u32
2592
- ], {
2593
- sessionIndex: u32;
2594
- }>;
2595
- /**
2596
- * The stakers' rewards are getting paid.
2597
- **/
2598
- PayoutStarted: AugmentedEvent<ApiType, [
2599
- eraIndex: u32,
2600
- validatorStash: AccountId32
2601
- ], {
2602
- eraIndex: u32;
2603
- validatorStash: AccountId32;
2604
- }>;
2605
- /**
2606
- * The nominator has been rewarded by this amount to this destination.
2607
- **/
2608
- Rewarded: AugmentedEvent<ApiType, [
2609
- stash: AccountId32,
2610
- dest: PalletStakingRewardDestination,
2611
- amount: u128
2612
- ], {
2613
- stash: AccountId32;
2614
- dest: PalletStakingRewardDestination;
2615
- amount: u128;
2616
- }>;
2617
- /**
2618
- * A staker (validator or nominator) has been slashed by the given amount.
2619
- **/
2620
- Slashed: AugmentedEvent<ApiType, [
2621
- staker: AccountId32,
2622
- amount: u128
2623
- ], {
2624
- staker: AccountId32;
2625
- amount: u128;
2626
- }>;
2627
- /**
2628
- * A slash for the given validator, for the given percentage of their stake, at the given
2629
- * era as been reported.
2630
- **/
2631
- SlashReported: AugmentedEvent<ApiType, [
2632
- validator: AccountId32,
2633
- fraction: Perbill,
2634
- slashEra: u32
2635
- ], {
2636
- validator: AccountId32;
2637
- fraction: Perbill;
2638
- slashEra: u32;
2639
- }>;
2640
- /**
2641
- * Targets size limit reached.
2642
- **/
2643
- SnapshotTargetsSizeExceeded: AugmentedEvent<ApiType, [
2644
- size_: u32
2645
- ], {
2646
- size_: u32;
2647
- }>;
2648
- /**
2649
- * Voters size limit reached.
2650
- **/
2651
- SnapshotVotersSizeExceeded: AugmentedEvent<ApiType, [
2652
- size_: u32
2653
- ], {
2654
- size_: u32;
2655
- }>;
2656
- /**
2657
- * A new set of stakers was elected.
2658
- **/
2659
- StakersElected: AugmentedEvent<ApiType, []>;
2660
- /**
2661
- * The election failed. No new era is planned.
2662
- **/
2663
- StakingElectionFailed: AugmentedEvent<ApiType, []>;
2664
- /**
2665
- * An account has unbonded this amount.
2666
- **/
2667
- Unbonded: AugmentedEvent<ApiType, [
2668
- stash: AccountId32,
2669
- amount: u128
2670
- ], {
2671
- stash: AccountId32;
2672
- amount: u128;
2673
- }>;
2674
- /**
2675
- * A validator has set their preferences.
2676
- **/
2677
- ValidatorPrefsSet: AugmentedEvent<ApiType, [
2678
- stash: AccountId32,
2679
- prefs: PalletStakingValidatorPrefs
2680
- ], {
2681
- stash: AccountId32;
2682
- prefs: PalletStakingValidatorPrefs;
2683
- }>;
2684
- /**
2685
- * An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
2686
- * from the unlocking queue.
2687
- **/
2688
- Withdrawn: AugmentedEvent<ApiType, [
2689
- stash: AccountId32,
2690
- amount: u128
2691
- ], {
2692
- stash: AccountId32;
2693
- amount: u128;
2694
- }>;
2695
- /**
2696
- * Generic event
2697
- **/
2698
- [key: string]: AugmentedEvent<ApiType>;
2699
- };
2700
- sudo: {
2701
- /**
2702
- * The sudo key has been updated.
2703
- **/
2704
- KeyChanged: AugmentedEvent<ApiType, [
2705
- old: Option<AccountId32>,
2706
- new_: AccountId32
2707
- ], {
2708
- old: Option<AccountId32>;
2709
- new_: AccountId32;
2710
- }>;
2711
- /**
2712
- * The key was permanently removed.
2713
- **/
2714
- KeyRemoved: AugmentedEvent<ApiType, []>;
2715
- /**
2716
- * A sudo call just took place.
2717
- **/
2718
- Sudid: AugmentedEvent<ApiType, [
2719
- sudoResult: Result<Null, SpRuntimeDispatchError>
2720
- ], {
2721
- sudoResult: Result<Null, SpRuntimeDispatchError>;
2722
- }>;
2723
- /**
2724
- * A [sudo_as](Pallet::sudo_as) call just took place.
2725
- **/
2726
- SudoAsDone: AugmentedEvent<ApiType, [
2727
- sudoResult: Result<Null, SpRuntimeDispatchError>
2728
- ], {
2729
- sudoResult: Result<Null, SpRuntimeDispatchError>;
2730
- }>;
2731
- /**
2732
- * Generic event
2733
- **/
2734
- [key: string]: AugmentedEvent<ApiType>;
2735
- };
2736
- sygmaAccessSegregator: {
2737
- /**
2738
- * Extrinsic access grant to someone
2739
- * args: [pallet_index, extrinsic_name, who]
2740
- **/
2741
- AccessGranted: AugmentedEvent<ApiType, [
2742
- palletIndex: u8,
2743
- extrinsicName: Bytes,
2744
- who: AccountId32
2745
- ], {
2746
- palletIndex: u8;
2747
- extrinsicName: Bytes;
2748
- who: AccountId32;
2749
- }>;
2750
- /**
2751
- * Generic event
2752
- **/
2753
- [key: string]: AugmentedEvent<ApiType>;
2754
- };
2755
- sygmaBasicFeeHandler: {
2756
- /**
2757
- * Fee set for a specific asset
2758
- * args: [domain, asset, amount]
2759
- **/
2760
- FeeSet: AugmentedEvent<ApiType, [
2761
- domain: u8,
2762
- asset: StagingXcmV4AssetAssetId,
2763
- amount: u128
2764
- ], {
2765
- domain: u8;
2766
- asset: StagingXcmV4AssetAssetId;
2767
- amount: u128;
2768
- }>;
2769
- /**
2770
- * Generic event
2771
- **/
2772
- [key: string]: AugmentedEvent<ApiType>;
2773
- };
2774
- sygmaBridge: {
2775
- /**
2776
- * When all bridges are paused
2777
- **/
2778
- AllBridgePaused: AugmentedEvent<ApiType, [
2779
- sender: AccountId32
2780
- ], {
2781
- sender: AccountId32;
2782
- }>;
2783
- /**
2784
- * When all bridges are unpaused
2785
- **/
2786
- AllBridgeUnpaused: AugmentedEvent<ApiType, [
2787
- sender: AccountId32
2788
- ], {
2789
- sender: AccountId32;
2790
- }>;
2791
- /**
2792
- * When bridge is paused
2793
- * args: [dest_domain_id]
2794
- **/
2795
- BridgePaused: AugmentedEvent<ApiType, [
2796
- destDomainId: u8
2797
- ], {
2798
- destDomainId: u8;
2799
- }>;
2800
- /**
2801
- * When bridge is unpaused
2802
- * args: [dest_domain_id]
2803
- **/
2804
- BridgeUnpaused: AugmentedEvent<ApiType, [
2805
- destDomainId: u8
2806
- ], {
2807
- destDomainId: u8;
2808
- }>;
2809
- /**
2810
- * When initial bridge transfer send to dest domain
2811
- * args: [dest_domain_id, resource_id, deposit_nonce, sender, transfer_type,
2812
- * deposit_data, handler_response, ]
2813
- **/
2814
- Deposit: AugmentedEvent<ApiType, [
2815
- destDomainId: u8,
2816
- resourceId: U8aFixed,
2817
- depositNonce: u64,
2818
- sender: AccountId32,
2819
- transferType: SygmaTraitsTransferType,
2820
- depositData: Bytes,
2821
- handlerResponse: Bytes
2822
- ], {
2823
- destDomainId: u8;
2824
- resourceId: U8aFixed;
2825
- depositNonce: u64;
2826
- sender: AccountId32;
2827
- transferType: SygmaTraitsTransferType;
2828
- depositData: Bytes;
2829
- handlerResponse: Bytes;
2830
- }>;
2831
- /**
2832
- * When proposal was faild to execute
2833
- **/
2834
- FailedHandlerExecution: AugmentedEvent<ApiType, [
2835
- error: Bytes,
2836
- originDomainId: u8,
2837
- depositNonce: u64
2838
- ], {
2839
- error: Bytes;
2840
- originDomainId: u8;
2841
- depositNonce: u64;
2842
- }>;
2843
- /**
2844
- * When bridge fee is collected
2845
- **/
2846
- FeeCollected: AugmentedEvent<ApiType, [
2847
- feePayer: AccountId32,
2848
- destDomainId: u8,
2849
- resourceId: U8aFixed,
2850
- feeAmount: u128,
2851
- feeAssetId: StagingXcmV4AssetAssetId
2852
- ], {
2853
- feePayer: AccountId32;
2854
- destDomainId: u8;
2855
- resourceId: U8aFixed;
2856
- feeAmount: u128;
2857
- feeAssetId: StagingXcmV4AssetAssetId;
2858
- }>;
2859
- /**
2860
- * When proposal was executed successfully
2861
- **/
2862
- ProposalExecution: AugmentedEvent<ApiType, [
2863
- originDomainId: u8,
2864
- depositNonce: u64,
2865
- dataHash: U8aFixed
2866
- ], {
2867
- originDomainId: u8;
2868
- depositNonce: u64;
2869
- dataHash: U8aFixed;
2870
- }>;
2871
- /**
2872
- * When registering a new dest domainID with its corresponding chainID
2873
- **/
2874
- RegisterDestDomain: AugmentedEvent<ApiType, [
2875
- sender: AccountId32,
2876
- domainId: u8,
2877
- chainId: U256
2878
- ], {
2879
- sender: AccountId32;
2880
- domainId: u8;
2881
- chainId: U256;
2882
- }>;
2883
- /**
2884
- * When user is going to retry a bridge transfer
2885
- * args: [deposit_on_block_height, dest_domain_id, sender]
2886
- **/
2887
- Retry: AugmentedEvent<ApiType, [
2888
- depositOnBlockHeight: u128,
2889
- destDomainId: u8,
2890
- sender: AccountId32
2891
- ], {
2892
- depositOnBlockHeight: u128;
2893
- destDomainId: u8;
2894
- sender: AccountId32;
2895
- }>;
2896
- /**
2897
- * When unregistering a dest domainID with its corresponding chainID
2898
- **/
2899
- UnregisterDestDomain: AugmentedEvent<ApiType, [
2900
- sender: AccountId32,
2901
- domainId: u8,
2902
- chainId: U256
2903
- ], {
2904
- sender: AccountId32;
2905
- domainId: u8;
2906
- chainId: U256;
2907
- }>;
2908
- /**
2909
- * Generic event
2910
- **/
2911
- [key: string]: AugmentedEvent<ApiType>;
2912
- };
2913
- sygmaFeeHandlerRouter: {
2914
- /**
2915
- * When fee handler was set for a specific (domain, asset) pair
2916
- * args: [dest_domain_id, asset_id, handler_type]
2917
- **/
2918
- FeeHandlerSet: AugmentedEvent<ApiType, [
2919
- domain: u8,
2920
- asset: StagingXcmV4AssetAssetId,
2921
- handlerType: SygmaFeeHandlerRouterFeeHandlerType
2922
- ], {
2923
- domain: u8;
2924
- asset: StagingXcmV4AssetAssetId;
2925
- handlerType: SygmaFeeHandlerRouterFeeHandlerType;
2926
- }>;
2927
- /**
2928
- * Generic event
2929
- **/
2930
- [key: string]: AugmentedEvent<ApiType>;
2931
- };
2932
- sygmaPercentageFeeHandler: {
2933
- /**
2934
- * Fee set rate for a specific asset and domain
2935
- * args: [domain, asset, rate_basis_point, fee_lower_bound, fee_upper_bound]
2936
- **/
2937
- FeeRateSet: AugmentedEvent<ApiType, [
2938
- domain: u8,
2939
- asset: StagingXcmV4AssetAssetId,
2940
- rateBasisPoint: u32,
2941
- feeLowerBound: u128,
2942
- feeUpperBound: u128
2943
- ], {
2944
- domain: u8;
2945
- asset: StagingXcmV4AssetAssetId;
2946
- rateBasisPoint: u32;
2947
- feeLowerBound: u128;
2948
- feeUpperBound: u128;
2949
- }>;
2950
- /**
2951
- * Generic event
2952
- **/
2953
- [key: string]: AugmentedEvent<ApiType>;
2954
- };
2955
- system: {
2956
- /**
2957
- * `:code` was updated.
2958
- **/
2959
- CodeUpdated: AugmentedEvent<ApiType, []>;
2960
- /**
2961
- * An extrinsic failed.
2962
- **/
2963
- ExtrinsicFailed: AugmentedEvent<ApiType, [
2964
- dispatchError: SpRuntimeDispatchError,
2965
- dispatchInfo: FrameSupportDispatchDispatchInfo
2966
- ], {
2967
- dispatchError: SpRuntimeDispatchError;
2968
- dispatchInfo: FrameSupportDispatchDispatchInfo;
2969
- }>;
2970
- /**
2971
- * An extrinsic completed successfully.
2972
- **/
2973
- ExtrinsicSuccess: AugmentedEvent<ApiType, [
2974
- dispatchInfo: FrameSupportDispatchDispatchInfo
2975
- ], {
2976
- dispatchInfo: FrameSupportDispatchDispatchInfo;
2977
- }>;
2978
- /**
2979
- * An account was reaped.
2980
- **/
2981
- KilledAccount: AugmentedEvent<ApiType, [
2982
- account: AccountId32
2983
- ], {
2984
- account: AccountId32;
2985
- }>;
2986
- /**
2987
- * A new account was created.
2988
- **/
2989
- NewAccount: AugmentedEvent<ApiType, [
2990
- account: AccountId32
2991
- ], {
2992
- account: AccountId32;
2993
- }>;
2994
- /**
2995
- * On on-chain remark happened.
2996
- **/
2997
- Remarked: AugmentedEvent<ApiType, [
2998
- sender: AccountId32,
2999
- hash_: H256
3000
- ], {
3001
- sender: AccountId32;
3002
- hash_: H256;
3003
- }>;
3004
- /**
3005
- * An upgrade was authorized.
3006
- **/
3007
- UpgradeAuthorized: AugmentedEvent<ApiType, [
3008
- codeHash: H256,
3009
- checkVersion: bool
3010
- ], {
3011
- codeHash: H256;
3012
- checkVersion: bool;
3013
- }>;
3014
- /**
3015
- * Generic event
3016
- **/
3017
- [key: string]: AugmentedEvent<ApiType>;
3018
- };
3019
- transactionPayment: {
3020
- /**
3021
- * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
3022
- * has been paid by `who`.
3023
- **/
3024
- TransactionFeePaid: AugmentedEvent<ApiType, [
3025
- who: AccountId32,
3026
- actualFee: u128,
3027
- tip: u128
3028
- ], {
3029
- who: AccountId32;
3030
- actualFee: u128;
3031
- tip: u128;
3032
- }>;
3033
- /**
3034
- * Generic event
3035
- **/
3036
- [key: string]: AugmentedEvent<ApiType>;
3037
- };
3038
- treasury: {
3039
- /**
3040
- * A new asset spend proposal has been approved.
3041
- **/
3042
- AssetSpendApproved: AugmentedEvent<ApiType, [
3043
- index: u32,
3044
- assetKind: Null,
3045
- amount: u128,
3046
- beneficiary: AccountId32,
3047
- validFrom: u64,
3048
- expireAt: u64
3049
- ], {
3050
- index: u32;
3051
- assetKind: Null;
3052
- amount: u128;
3053
- beneficiary: AccountId32;
3054
- validFrom: u64;
3055
- expireAt: u64;
3056
- }>;
3057
- /**
3058
- * An approved spend was voided.
3059
- **/
3060
- AssetSpendVoided: AugmentedEvent<ApiType, [index: u32], {
3061
- index: u32;
3062
- }>;
3063
- /**
3064
- * Some funds have been allocated.
3065
- **/
3066
- Awarded: AugmentedEvent<ApiType, [
3067
- proposalIndex: u32,
3068
- award: u128,
3069
- account: AccountId32
3070
- ], {
3071
- proposalIndex: u32;
3072
- award: u128;
3073
- account: AccountId32;
3074
- }>;
3075
- /**
3076
- * Some of our funds have been burnt.
3077
- **/
3078
- Burnt: AugmentedEvent<ApiType, [burntFunds: u128], {
3079
- burntFunds: u128;
3080
- }>;
3081
- /**
3082
- * Some funds have been deposited.
3083
- **/
3084
- Deposit: AugmentedEvent<ApiType, [value: u128], {
3085
- value: u128;
3086
- }>;
3087
- /**
3088
- * A payment happened.
3089
- **/
3090
- Paid: AugmentedEvent<ApiType, [
3091
- index: u32,
3092
- paymentId: Null
3093
- ], {
3094
- index: u32;
3095
- paymentId: Null;
3096
- }>;
3097
- /**
3098
- * A payment failed and can be retried.
3099
- **/
3100
- PaymentFailed: AugmentedEvent<ApiType, [
3101
- index: u32,
3102
- paymentId: Null
3103
- ], {
3104
- index: u32;
3105
- paymentId: Null;
3106
- }>;
3107
- /**
3108
- * New proposal.
3109
- **/
3110
- Proposed: AugmentedEvent<ApiType, [
3111
- proposalIndex: u32
3112
- ], {
3113
- proposalIndex: u32;
3114
- }>;
3115
- /**
3116
- * A proposal was rejected; funds were slashed.
3117
- **/
3118
- Rejected: AugmentedEvent<ApiType, [
3119
- proposalIndex: u32,
3120
- slashed: u128
3121
- ], {
3122
- proposalIndex: u32;
3123
- slashed: u128;
3124
- }>;
3125
- /**
3126
- * Spending has finished; this is the amount that rolls over until next spend.
3127
- **/
3128
- Rollover: AugmentedEvent<ApiType, [
3129
- rolloverBalance: u128
3130
- ], {
3131
- rolloverBalance: u128;
3132
- }>;
3133
- /**
3134
- * A new spend proposal has been approved.
3135
- **/
3136
- SpendApproved: AugmentedEvent<ApiType, [
3137
- proposalIndex: u32,
3138
- amount: u128,
3139
- beneficiary: AccountId32
3140
- ], {
3141
- proposalIndex: u32;
3142
- amount: u128;
3143
- beneficiary: AccountId32;
3144
- }>;
3145
- /**
3146
- * We have ended a spend period and will now allocate funds.
3147
- **/
3148
- Spending: AugmentedEvent<ApiType, [
3149
- budgetRemaining: u128
3150
- ], {
3151
- budgetRemaining: u128;
3152
- }>;
3153
- /**
3154
- * A spend was processed and removed from the storage. It might have been successfully
3155
- * paid or it may have expired.
3156
- **/
3157
- SpendProcessed: AugmentedEvent<ApiType, [index: u32], {
3158
- index: u32;
3159
- }>;
3160
- /**
3161
- * The inactive funds of the pallet have been updated.
3162
- **/
3163
- UpdatedInactive: AugmentedEvent<ApiType, [
3164
- reactivated: u128,
3165
- deactivated: u128
3166
- ], {
3167
- reactivated: u128;
3168
- deactivated: u128;
3169
- }>;
3170
- /**
3171
- * Generic event
3172
- **/
3173
- [key: string]: AugmentedEvent<ApiType>;
3174
- };
3175
- txPause: {
3176
- /**
3177
- * This pallet, or a specific call is now paused.
3178
- **/
3179
- CallPaused: AugmentedEvent<ApiType, [
3180
- fullName: ITuple<[Bytes, Bytes]>
3181
- ], {
3182
- fullName: ITuple<[Bytes, Bytes]>;
3183
- }>;
3184
- /**
3185
- * This pallet, or a specific call is now unpaused.
3186
- **/
3187
- CallUnpaused: AugmentedEvent<ApiType, [
3188
- fullName: ITuple<[Bytes, Bytes]>
3189
- ], {
3190
- fullName: ITuple<[Bytes, Bytes]>;
3191
- }>;
3192
- /**
3193
- * Generic event
3194
- **/
3195
- [key: string]: AugmentedEvent<ApiType>;
3196
- };
3197
- utility: {
3198
- /**
3199
- * Batch of dispatches completed fully with no error.
3200
- **/
3201
- BatchCompleted: AugmentedEvent<ApiType, []>;
3202
- /**
3203
- * Batch of dispatches completed but has errors.
3204
- **/
3205
- BatchCompletedWithErrors: AugmentedEvent<ApiType, []>;
3206
- /**
3207
- * Batch of dispatches did not complete fully. Index of first failing dispatch given, as
3208
- * well as the error.
3209
- **/
3210
- BatchInterrupted: AugmentedEvent<ApiType, [
3211
- index: u32,
3212
- error: SpRuntimeDispatchError
3213
- ], {
3214
- index: u32;
3215
- error: SpRuntimeDispatchError;
3216
- }>;
3217
- /**
3218
- * A call was dispatched.
3219
- **/
3220
- DispatchedAs: AugmentedEvent<ApiType, [
3221
- result: Result<Null, SpRuntimeDispatchError>
3222
- ], {
3223
- result: Result<Null, SpRuntimeDispatchError>;
3224
- }>;
3225
- /**
3226
- * A single item within a Batch of dispatches has completed with no error.
3227
- **/
3228
- ItemCompleted: AugmentedEvent<ApiType, []>;
3229
- /**
3230
- * A single item within a Batch of dispatches has completed with error.
3231
- **/
3232
- ItemFailed: AugmentedEvent<ApiType, [
3233
- error: SpRuntimeDispatchError
3234
- ], {
3235
- error: SpRuntimeDispatchError;
3236
- }>;
3237
- /**
3238
- * Generic event
3239
- **/
3240
- [key: string]: AugmentedEvent<ApiType>;
3241
- };
3242
- vesting: {
3243
- /**
3244
- * An \[account\] has become fully vested.
3245
- **/
3246
- VestingCompleted: AugmentedEvent<ApiType, [
3247
- account: AccountId32
3248
- ], {
3249
- account: AccountId32;
3250
- }>;
3251
- /**
3252
- * The amount vested has been updated. This could indicate a change in funds available.
3253
- * The balance given is the amount which is left unvested (and thus locked).
3254
- **/
3255
- VestingUpdated: AugmentedEvent<ApiType, [
3256
- account: AccountId32,
3257
- unvested: u128
3258
- ], {
3259
- account: AccountId32;
3260
- unvested: u128;
3261
- }>;
3262
- /**
3263
- * Generic event
3264
- **/
3265
- [key: string]: AugmentedEvent<ApiType>;
3266
- };
3267
- }
3268
- }