@argonprotocol/mainchain 1.4.3-dev.b97b3c4f → 1.4.3-dev.caca6309

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 (41) hide show
  1. package/browser/index.d.ts +1463 -1797
  2. package/browser/index.js +1209 -118
  3. package/browser/index.js.map +1 -1
  4. package/lib/chunk-3KFMHNNJ.cjs +706 -0
  5. package/lib/chunk-3KFMHNNJ.cjs.map +1 -0
  6. package/lib/chunk-D3FCDADJ.cjs +175 -0
  7. package/lib/chunk-D3FCDADJ.cjs.map +1 -0
  8. package/lib/chunk-RF6NOJOR.js +706 -0
  9. package/lib/chunk-RF6NOJOR.js.map +1 -0
  10. package/lib/chunk-YPXWOFUS.js +175 -0
  11. package/lib/chunk-YPXWOFUS.js.map +1 -0
  12. package/lib/index.cjs +1238 -118
  13. package/lib/index.cjs.map +1 -1
  14. package/lib/index.d.cts +1463 -1797
  15. package/lib/index.d.ts +1463 -1797
  16. package/lib/index.js +1238 -118
  17. package/lib/index.js.map +1 -1
  18. package/lib/lib-CU2JUZW6.cjs +403 -0
  19. package/lib/lib-CU2JUZW6.cjs.map +1 -0
  20. package/lib/lib-P3PEMYOB.js +403 -0
  21. package/lib/lib-P3PEMYOB.js.map +1 -0
  22. package/lib/setPreset-NCTHSXWD.js +15 -0
  23. package/lib/setPreset-NCTHSXWD.js.map +1 -0
  24. package/lib/setPreset-XHOPATBO.cjs +15 -0
  25. package/lib/setPreset-XHOPATBO.cjs.map +1 -0
  26. package/package.json +31 -25
  27. package/src/interfaces/augment-api-consts.ts +603 -0
  28. package/src/interfaces/augment-api-errors.ts +1175 -0
  29. package/src/interfaces/augment-api-events.ts +1816 -0
  30. package/src/interfaces/augment-api-query.ts +1545 -0
  31. package/src/interfaces/augment-api-rpc.ts +1133 -0
  32. package/src/interfaces/augment-api-runtime.ts +332 -0
  33. package/src/interfaces/augment-api-tx.ts +2184 -0
  34. package/src/interfaces/augment-api.ts +10 -0
  35. package/src/interfaces/augment-types.ts +2688 -0
  36. package/src/interfaces/definitions.ts +57 -0
  37. package/src/interfaces/ethereum/index.ts +4 -0
  38. package/src/interfaces/ethereum/types.ts +54 -0
  39. package/src/interfaces/lookup.ts +3768 -0
  40. package/src/interfaces/registry.ts +558 -0
  41. package/src/interfaces/types-lookup.ts +4345 -0
@@ -0,0 +1,1816 @@
1
+ // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+ /* eslint-disable */
3
+
4
+ // import type lookup before we augment - in some environments
5
+ // this is required to allow for ambient/previous definitions
6
+ import '@polkadot/api-base/types/events';
7
+
8
+ import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
9
+ import type {
10
+ Bytes,
11
+ Null,
12
+ Option,
13
+ Result,
14
+ U8aFixed,
15
+ Vec,
16
+ bool,
17
+ i128,
18
+ u128,
19
+ u16,
20
+ u32,
21
+ u64,
22
+ } from '@polkadot/types-codec';
23
+ import type { ITuple } from '@polkadot/types-codec/types';
24
+ import type { AccountId32, H256 } from '@polkadot/types/interfaces/runtime';
25
+ import type {
26
+ ArgonNotaryAuditErrorVerifyError,
27
+ ArgonPrimitivesBitcoinBitcoinRejectedReason,
28
+ ArgonPrimitivesBitcoinUtxoRef,
29
+ ArgonPrimitivesBlockSealBlockPayout,
30
+ ArgonPrimitivesBlockSealMiningRegistration,
31
+ ArgonPrimitivesDomainZoneRecord,
32
+ ArgonPrimitivesNotaryNotaryMeta,
33
+ ArgonPrimitivesNotaryNotaryRecord,
34
+ ArgonPrimitivesProvidersOperationalRewardKind,
35
+ ArgonRuntimeOriginCaller,
36
+ ArgonRuntimeProxyType,
37
+ ArgonRuntimeRuntimeHoldReason,
38
+ FrameSupportTokensMiscBalanceStatus,
39
+ FrameSystemDispatchEventInfo,
40
+ PalletBalancesUnexpectedKind,
41
+ PalletCrosschainTransferBurnNotice,
42
+ PalletCrosschainTransferSourceChain,
43
+ PalletDomainsDomainRegistration,
44
+ PalletEthereumVerifierBasicOperatingMode,
45
+ PalletMintMintType,
46
+ PalletMultisigTimepoint,
47
+ PalletProxyDepositKind,
48
+ PalletTreasuryBondReleaseReason,
49
+ SpConsensusGrandpaAppPublic,
50
+ SpRuntimeDispatchError,
51
+ } from '@polkadot/types/lookup';
52
+
53
+ export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
54
+
55
+ declare module '@polkadot/api-base/types/events' {
56
+ interface AugmentedEvents<ApiType extends ApiTypes> {
57
+ balances: {
58
+ /**
59
+ * A balance was set by root.
60
+ **/
61
+ BalanceSet: AugmentedEvent<
62
+ ApiType,
63
+ [who: AccountId32, free: u128],
64
+ { who: AccountId32; free: u128 }
65
+ >;
66
+ /**
67
+ * Some amount was burned from an account.
68
+ **/
69
+ Burned: AugmentedEvent<
70
+ ApiType,
71
+ [who: AccountId32, amount: u128],
72
+ { who: AccountId32; amount: u128 }
73
+ >;
74
+ /**
75
+ * Some debt has been dropped from the Total Issuance.
76
+ **/
77
+ BurnedDebt: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
78
+ /**
79
+ * Held balance was burned from an account.
80
+ **/
81
+ BurnedHeld: AugmentedEvent<
82
+ ApiType,
83
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
84
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
85
+ >;
86
+ /**
87
+ * Some amount was deposited (e.g. for transaction fees).
88
+ **/
89
+ Deposit: AugmentedEvent<
90
+ ApiType,
91
+ [who: AccountId32, amount: u128],
92
+ { who: AccountId32; amount: u128 }
93
+ >;
94
+ /**
95
+ * An account was removed whose balance was non-zero but below ExistentialDeposit,
96
+ * resulting in an outright loss.
97
+ **/
98
+ DustLost: AugmentedEvent<
99
+ ApiType,
100
+ [account: AccountId32, amount: u128],
101
+ { account: AccountId32; amount: u128 }
102
+ >;
103
+ /**
104
+ * An account was created with some free balance.
105
+ **/
106
+ Endowed: AugmentedEvent<
107
+ ApiType,
108
+ [account: AccountId32, freeBalance: u128],
109
+ { account: AccountId32; freeBalance: u128 }
110
+ >;
111
+ /**
112
+ * Some balance was frozen.
113
+ **/
114
+ Frozen: AugmentedEvent<
115
+ ApiType,
116
+ [who: AccountId32, amount: u128],
117
+ { who: AccountId32; amount: u128 }
118
+ >;
119
+ /**
120
+ * Some balance was placed on hold.
121
+ **/
122
+ Held: AugmentedEvent<
123
+ ApiType,
124
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
125
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
126
+ >;
127
+ /**
128
+ * Total issuance was increased by `amount`, creating a credit to be balanced.
129
+ **/
130
+ Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
131
+ /**
132
+ * Some balance was locked.
133
+ **/
134
+ Locked: AugmentedEvent<
135
+ ApiType,
136
+ [who: AccountId32, amount: u128],
137
+ { who: AccountId32; amount: u128 }
138
+ >;
139
+ /**
140
+ * Some amount was minted into an account.
141
+ **/
142
+ Minted: AugmentedEvent<
143
+ ApiType,
144
+ [who: AccountId32, amount: u128],
145
+ { who: AccountId32; amount: u128 }
146
+ >;
147
+ /**
148
+ * Some credit was balanced and added to the TotalIssuance.
149
+ **/
150
+ MintedCredit: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
151
+ /**
152
+ * Some balance was released from hold.
153
+ **/
154
+ Released: AugmentedEvent<
155
+ ApiType,
156
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
157
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
158
+ >;
159
+ /**
160
+ * Total issuance was decreased by `amount`, creating a debt to be balanced.
161
+ **/
162
+ Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
163
+ /**
164
+ * Some balance was reserved (moved from free to reserved).
165
+ **/
166
+ Reserved: AugmentedEvent<
167
+ ApiType,
168
+ [who: AccountId32, amount: u128],
169
+ { who: AccountId32; amount: u128 }
170
+ >;
171
+ /**
172
+ * Some balance was moved from the reserve of the first account to the second account.
173
+ * Final argument indicates the destination balance type.
174
+ **/
175
+ ReserveRepatriated: AugmentedEvent<
176
+ ApiType,
177
+ [
178
+ from: AccountId32,
179
+ to: AccountId32,
180
+ amount: u128,
181
+ destinationStatus: FrameSupportTokensMiscBalanceStatus,
182
+ ],
183
+ {
184
+ from: AccountId32;
185
+ to: AccountId32;
186
+ amount: u128;
187
+ destinationStatus: FrameSupportTokensMiscBalanceStatus;
188
+ }
189
+ >;
190
+ /**
191
+ * Some amount was restored into an account.
192
+ **/
193
+ Restored: AugmentedEvent<
194
+ ApiType,
195
+ [who: AccountId32, amount: u128],
196
+ { who: AccountId32; amount: u128 }
197
+ >;
198
+ /**
199
+ * Some amount was removed from the account (e.g. for misbehavior).
200
+ **/
201
+ Slashed: AugmentedEvent<
202
+ ApiType,
203
+ [who: AccountId32, amount: u128],
204
+ { who: AccountId32; amount: u128 }
205
+ >;
206
+ /**
207
+ * Some amount was suspended from an account (it can be restored later).
208
+ **/
209
+ Suspended: AugmentedEvent<
210
+ ApiType,
211
+ [who: AccountId32, amount: u128],
212
+ { who: AccountId32; amount: u128 }
213
+ >;
214
+ /**
215
+ * Some balance was thawed.
216
+ **/
217
+ Thawed: AugmentedEvent<
218
+ ApiType,
219
+ [who: AccountId32, amount: u128],
220
+ { who: AccountId32; amount: u128 }
221
+ >;
222
+ /**
223
+ * The `TotalIssuance` was forcefully changed.
224
+ **/
225
+ TotalIssuanceForced: AugmentedEvent<
226
+ ApiType,
227
+ [old: u128, new_: u128],
228
+ { old: u128; new_: u128 }
229
+ >;
230
+ /**
231
+ * Transfer succeeded.
232
+ **/
233
+ Transfer: AugmentedEvent<
234
+ ApiType,
235
+ [from: AccountId32, to: AccountId32, amount: u128],
236
+ { from: AccountId32; to: AccountId32; amount: u128 }
237
+ >;
238
+ /**
239
+ * The `transferred` balance is placed on hold at the `dest` account.
240
+ **/
241
+ TransferAndHold: AugmentedEvent<
242
+ ApiType,
243
+ [
244
+ reason: ArgonRuntimeRuntimeHoldReason,
245
+ source: AccountId32,
246
+ dest: AccountId32,
247
+ transferred: u128,
248
+ ],
249
+ {
250
+ reason: ArgonRuntimeRuntimeHoldReason;
251
+ source: AccountId32;
252
+ dest: AccountId32;
253
+ transferred: u128;
254
+ }
255
+ >;
256
+ /**
257
+ * A transfer of `amount` on hold from `source` to `dest` was initiated.
258
+ **/
259
+ TransferOnHold: AugmentedEvent<
260
+ ApiType,
261
+ [
262
+ reason: ArgonRuntimeRuntimeHoldReason,
263
+ source: AccountId32,
264
+ dest: AccountId32,
265
+ amount: u128,
266
+ ],
267
+ {
268
+ reason: ArgonRuntimeRuntimeHoldReason;
269
+ source: AccountId32;
270
+ dest: AccountId32;
271
+ amount: u128;
272
+ }
273
+ >;
274
+ /**
275
+ * An unexpected/defensive event was triggered.
276
+ **/
277
+ Unexpected: AugmentedEvent<ApiType, [PalletBalancesUnexpectedKind]>;
278
+ /**
279
+ * Some balance was unlocked.
280
+ **/
281
+ Unlocked: AugmentedEvent<
282
+ ApiType,
283
+ [who: AccountId32, amount: u128],
284
+ { who: AccountId32; amount: u128 }
285
+ >;
286
+ /**
287
+ * Some balance was unreserved (moved from reserved to free).
288
+ **/
289
+ Unreserved: AugmentedEvent<
290
+ ApiType,
291
+ [who: AccountId32, amount: u128],
292
+ { who: AccountId32; amount: u128 }
293
+ >;
294
+ /**
295
+ * An account was upgraded.
296
+ **/
297
+ Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
298
+ /**
299
+ * Some amount was withdrawn from the account (e.g. for transaction fees).
300
+ **/
301
+ Withdraw: AugmentedEvent<
302
+ ApiType,
303
+ [who: AccountId32, amount: u128],
304
+ { who: AccountId32; amount: u128 }
305
+ >;
306
+ };
307
+ bitcoinLocks: {
308
+ BitcoinCosignPastDue: AugmentedEvent<
309
+ ApiType,
310
+ [utxoId: u64, vaultId: u32, compensationAmount: u128, compensatedAccountId: AccountId32],
311
+ { utxoId: u64; vaultId: u32; compensationAmount: u128; compensatedAccountId: AccountId32 }
312
+ >;
313
+ BitcoinLockBurned: AugmentedEvent<
314
+ ApiType,
315
+ [utxoId: u64, vaultId: u32, wasUtxoSpent: bool],
316
+ { utxoId: u64; vaultId: u32; wasUtxoSpent: bool }
317
+ >;
318
+ BitcoinLockCreated: AugmentedEvent<
319
+ ApiType,
320
+ [
321
+ utxoId: u64,
322
+ vaultId: u32,
323
+ liquidityPromised: u128,
324
+ securitization: u128,
325
+ lockedMarketRate: u128,
326
+ accountId: AccountId32,
327
+ securityFee: u128,
328
+ ],
329
+ {
330
+ utxoId: u64;
331
+ vaultId: u32;
332
+ liquidityPromised: u128;
333
+ securitization: u128;
334
+ lockedMarketRate: u128;
335
+ accountId: AccountId32;
336
+ securityFee: u128;
337
+ }
338
+ >;
339
+ BitcoinLockRatcheted: AugmentedEvent<
340
+ ApiType,
341
+ [
342
+ utxoId: u64,
343
+ vaultId: u32,
344
+ liquidityPromised: u128,
345
+ originalMarketRate: u128,
346
+ securityFee: u128,
347
+ newLockedMarketRate: u128,
348
+ amountBurned: u128,
349
+ accountId: AccountId32,
350
+ ],
351
+ {
352
+ utxoId: u64;
353
+ vaultId: u32;
354
+ liquidityPromised: u128;
355
+ originalMarketRate: u128;
356
+ securityFee: u128;
357
+ newLockedMarketRate: u128;
358
+ amountBurned: u128;
359
+ accountId: AccountId32;
360
+ }
361
+ >;
362
+ BitcoinSpentAfterRelease: AugmentedEvent<
363
+ ApiType,
364
+ [utxoId: u64, vaultId: u32],
365
+ { utxoId: u64; vaultId: u32 }
366
+ >;
367
+ BitcoinUtxoCosigned: AugmentedEvent<
368
+ ApiType,
369
+ [utxoId: u64, vaultId: u32, signature: Bytes],
370
+ { utxoId: u64; vaultId: u32; signature: Bytes }
371
+ >;
372
+ BitcoinUtxoCosignRequested: AugmentedEvent<
373
+ ApiType,
374
+ [utxoId: u64, vaultId: u32],
375
+ { utxoId: u64; vaultId: u32 }
376
+ >;
377
+ /**
378
+ * An error occurred while refunding an overdue cosigned bitcoin lock
379
+ **/
380
+ CosignOverdueError: AugmentedEvent<
381
+ ApiType,
382
+ [utxoId: u64, error: SpRuntimeDispatchError],
383
+ { utxoId: u64; error: SpRuntimeDispatchError }
384
+ >;
385
+ /**
386
+ * An error occurred while completing a lock
387
+ **/
388
+ LockExpirationError: AugmentedEvent<
389
+ ApiType,
390
+ [utxoId: u64, error: SpRuntimeDispatchError],
391
+ { utxoId: u64; error: SpRuntimeDispatchError }
392
+ >;
393
+ OrphanedUtxoCosigned: AugmentedEvent<
394
+ ApiType,
395
+ [
396
+ utxoId: u64,
397
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef,
398
+ vaultId: u32,
399
+ accountId: AccountId32,
400
+ signature: Bytes,
401
+ ],
402
+ {
403
+ utxoId: u64;
404
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef;
405
+ vaultId: u32;
406
+ accountId: AccountId32;
407
+ signature: Bytes;
408
+ }
409
+ >;
410
+ OrphanedUtxoReceived: AugmentedEvent<
411
+ ApiType,
412
+ [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, satoshis: u64],
413
+ { utxoId: u64; utxoRef: ArgonPrimitivesBitcoinUtxoRef; vaultId: u32; satoshis: u64 }
414
+ >;
415
+ OrphanedUtxoReleaseRequested: AugmentedEvent<
416
+ ApiType,
417
+ [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, accountId: AccountId32],
418
+ {
419
+ utxoId: u64;
420
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef;
421
+ vaultId: u32;
422
+ accountId: AccountId32;
423
+ }
424
+ >;
425
+ SecuritizationIncreased: AugmentedEvent<
426
+ ApiType,
427
+ [utxoId: u64, vaultId: u32, newSatoshis: u64, accountId: AccountId32],
428
+ { utxoId: u64; vaultId: u32; newSatoshis: u64; accountId: AccountId32 }
429
+ >;
430
+ UtxoFundedFromCandidate: AugmentedEvent<
431
+ ApiType,
432
+ [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, accountId: AccountId32],
433
+ {
434
+ utxoId: u64;
435
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef;
436
+ vaultId: u32;
437
+ accountId: AccountId32;
438
+ }
439
+ >;
440
+ };
441
+ bitcoinUtxos: {
442
+ UtxoRejected: AugmentedEvent<
443
+ ApiType,
444
+ [
445
+ utxoId: u64,
446
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef,
447
+ rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason,
448
+ satoshisReceived: u64,
449
+ ],
450
+ {
451
+ utxoId: u64;
452
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef;
453
+ rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
454
+ satoshisReceived: u64;
455
+ }
456
+ >;
457
+ UtxoRejectedError: AugmentedEvent<
458
+ ApiType,
459
+ [utxoId: u64, error: SpRuntimeDispatchError],
460
+ { utxoId: u64; error: SpRuntimeDispatchError }
461
+ >;
462
+ UtxoSpent: AugmentedEvent<
463
+ ApiType,
464
+ [utxoId: u64, blockHeight: u64],
465
+ { utxoId: u64; blockHeight: u64 }
466
+ >;
467
+ UtxoSpentError: AugmentedEvent<
468
+ ApiType,
469
+ [utxoId: u64, error: SpRuntimeDispatchError],
470
+ { utxoId: u64; error: SpRuntimeDispatchError }
471
+ >;
472
+ UtxoUnwatched: AugmentedEvent<ApiType, [utxoId: u64], { utxoId: u64 }>;
473
+ UtxoVerified: AugmentedEvent<
474
+ ApiType,
475
+ [utxoId: u64, satoshisReceived: u64],
476
+ { utxoId: u64; satoshisReceived: u64 }
477
+ >;
478
+ UtxoVerifiedError: AugmentedEvent<
479
+ ApiType,
480
+ [utxoId: u64, error: SpRuntimeDispatchError],
481
+ { utxoId: u64; error: SpRuntimeDispatchError }
482
+ >;
483
+ };
484
+ blockRewards: {
485
+ RewardCreated: AugmentedEvent<
486
+ ApiType,
487
+ [rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>],
488
+ { rewards: Vec<ArgonPrimitivesBlockSealBlockPayout> }
489
+ >;
490
+ RewardCreateError: AugmentedEvent<
491
+ ApiType,
492
+ [
493
+ accountId: AccountId32,
494
+ argons: Option<u128>,
495
+ ownership: Option<u128>,
496
+ error: SpRuntimeDispatchError,
497
+ ],
498
+ {
499
+ accountId: AccountId32;
500
+ argons: Option<u128>;
501
+ ownership: Option<u128>;
502
+ error: SpRuntimeDispatchError;
503
+ }
504
+ >;
505
+ };
506
+ blockSealSpec: {
507
+ ComputeDifficultyAdjusted: AugmentedEvent<
508
+ ApiType,
509
+ [expectedBlockTime: u64, actualBlockTime: u64, startDifficulty: u128, newDifficulty: u128],
510
+ { expectedBlockTime: u64; actualBlockTime: u64; startDifficulty: u128; newDifficulty: u128 }
511
+ >;
512
+ VoteMinimumAdjusted: AugmentedEvent<
513
+ ApiType,
514
+ [
515
+ expectedBlockVotes: u128,
516
+ actualBlockVotes: u128,
517
+ startVoteMinimum: u128,
518
+ newVoteMinimum: u128,
519
+ ],
520
+ {
521
+ expectedBlockVotes: u128;
522
+ actualBlockVotes: u128;
523
+ startVoteMinimum: u128;
524
+ newVoteMinimum: u128;
525
+ }
526
+ >;
527
+ };
528
+ crosschainTransfer: {
529
+ /**
530
+ * An inbound burn notice was accepted and settled locally.
531
+ **/
532
+ BurnNoticeAccepted: AugmentedEvent<
533
+ ApiType,
534
+ [
535
+ sourceChain: PalletCrosschainTransferSourceChain,
536
+ notice: PalletCrosschainTransferBurnNotice,
537
+ ],
538
+ {
539
+ sourceChain: PalletCrosschainTransferSourceChain;
540
+ notice: PalletCrosschainTransferBurnNotice;
541
+ }
542
+ >;
543
+ };
544
+ digests: {};
545
+ domains: {
546
+ /**
547
+ * A domain was expired
548
+ **/
549
+ DomainExpired: AugmentedEvent<ApiType, [domainHash: H256], { domainHash: H256 }>;
550
+ /**
551
+ * A domain was registered
552
+ **/
553
+ DomainRegistered: AugmentedEvent<
554
+ ApiType,
555
+ [domainHash: H256, registration: PalletDomainsDomainRegistration],
556
+ { domainHash: H256; registration: PalletDomainsDomainRegistration }
557
+ >;
558
+ /**
559
+ * A domain registration was canceled due to a conflicting registration in the same
560
+ * tick
561
+ **/
562
+ DomainRegistrationCanceled: AugmentedEvent<
563
+ ApiType,
564
+ [domainHash: H256, registration: PalletDomainsDomainRegistration],
565
+ { domainHash: H256; registration: PalletDomainsDomainRegistration }
566
+ >;
567
+ /**
568
+ * A domain registration failed due to an error
569
+ **/
570
+ DomainRegistrationError: AugmentedEvent<
571
+ ApiType,
572
+ [domainHash: H256, accountId: AccountId32, error: SpRuntimeDispatchError],
573
+ { domainHash: H256; accountId: AccountId32; error: SpRuntimeDispatchError }
574
+ >;
575
+ /**
576
+ * A domain was registered
577
+ **/
578
+ DomainRenewed: AugmentedEvent<ApiType, [domainHash: H256], { domainHash: H256 }>;
579
+ /**
580
+ * A domain zone record was updated
581
+ **/
582
+ ZoneRecordUpdated: AugmentedEvent<
583
+ ApiType,
584
+ [domainHash: H256, zoneRecord: ArgonPrimitivesDomainZoneRecord],
585
+ { domainHash: H256; zoneRecord: ArgonPrimitivesDomainZoneRecord }
586
+ >;
587
+ };
588
+ ethereumVerifier: {
589
+ BeaconHeaderImported: AugmentedEvent<
590
+ ApiType,
591
+ [blockHash: H256, slot: u64],
592
+ { blockHash: H256; slot: u64 }
593
+ >;
594
+ ExecutionHeaderAnchorImported: AugmentedEvent<
595
+ ApiType,
596
+ [blockHash: H256, blockNumber: u64],
597
+ { blockHash: H256; blockNumber: u64 }
598
+ >;
599
+ /**
600
+ * Set OperatingMode
601
+ **/
602
+ OperatingModeChanged: AugmentedEvent<
603
+ ApiType,
604
+ [mode: PalletEthereumVerifierBasicOperatingMode],
605
+ { mode: PalletEthereumVerifierBasicOperatingMode }
606
+ >;
607
+ SyncCommitteeUpdated: AugmentedEvent<ApiType, [period: u64], { period: u64 }>;
608
+ };
609
+ feeControl: {
610
+ /**
611
+ * A transaction fee was delegated
612
+ **/
613
+ FeeDelegated: AugmentedEvent<
614
+ ApiType,
615
+ [origin: ArgonRuntimeOriginCaller, from: AccountId32, to: AccountId32],
616
+ { origin: ArgonRuntimeOriginCaller; from: AccountId32; to: AccountId32 }
617
+ >;
618
+ /**
619
+ * A transaction fee was skipped.
620
+ **/
621
+ FeeSkipped: AugmentedEvent<
622
+ ApiType,
623
+ [origin: ArgonRuntimeOriginCaller],
624
+ { origin: ArgonRuntimeOriginCaller }
625
+ >;
626
+ };
627
+ grandpa: {
628
+ /**
629
+ * New authority set has been applied.
630
+ **/
631
+ NewAuthorities: AugmentedEvent<
632
+ ApiType,
633
+ [authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>],
634
+ { authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>> }
635
+ >;
636
+ /**
637
+ * Current authority set has been paused.
638
+ **/
639
+ Paused: AugmentedEvent<ApiType, []>;
640
+ /**
641
+ * Current authority set has been resumed.
642
+ **/
643
+ Resumed: AugmentedEvent<ApiType, []>;
644
+ };
645
+ localchainTransfer: {
646
+ /**
647
+ * A localchain transfer could not be cleaned up properly. Possible invalid transfer
648
+ * needing investigation.
649
+ **/
650
+ PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<
651
+ ApiType,
652
+ [transferId: u32, notaryId: u32, notebookNumber: u32],
653
+ { transferId: u32; notaryId: u32; notebookNumber: u32 }
654
+ >;
655
+ /**
656
+ * Taxation failed
657
+ **/
658
+ TaxationError: AugmentedEvent<
659
+ ApiType,
660
+ [notaryId: u32, notebookNumber: u32, tax: u128, error: SpRuntimeDispatchError],
661
+ { notaryId: u32; notebookNumber: u32; tax: u128; error: SpRuntimeDispatchError }
662
+ >;
663
+ /**
664
+ * Transfer from Localchain to Mainchain
665
+ **/
666
+ TransferFromLocalchain: AugmentedEvent<
667
+ ApiType,
668
+ [accountId: AccountId32, amount: u128, notaryId: u32],
669
+ { accountId: AccountId32; amount: u128; notaryId: u32 }
670
+ >;
671
+ /**
672
+ * A transfer into the mainchain failed
673
+ **/
674
+ TransferFromLocalchainError: AugmentedEvent<
675
+ ApiType,
676
+ [
677
+ accountId: AccountId32,
678
+ amount: u128,
679
+ notaryId: u32,
680
+ notebookNumber: u32,
681
+ error: SpRuntimeDispatchError,
682
+ ],
683
+ {
684
+ accountId: AccountId32;
685
+ amount: u128;
686
+ notaryId: u32;
687
+ notebookNumber: u32;
688
+ error: SpRuntimeDispatchError;
689
+ }
690
+ >;
691
+ /**
692
+ * Funds sent to a localchain
693
+ **/
694
+ TransferToLocalchain: AugmentedEvent<
695
+ ApiType,
696
+ [accountId: AccountId32, amount: u128, transferId: u32, notaryId: u32, expirationTick: u64],
697
+ {
698
+ accountId: AccountId32;
699
+ amount: u128;
700
+ transferId: u32;
701
+ notaryId: u32;
702
+ expirationTick: u64;
703
+ }
704
+ >;
705
+ /**
706
+ * Transfer to localchain expired and rolled back
707
+ **/
708
+ TransferToLocalchainExpired: AugmentedEvent<
709
+ ApiType,
710
+ [accountId: AccountId32, transferId: u32, notaryId: u32],
711
+ { accountId: AccountId32; transferId: u32; notaryId: u32 }
712
+ >;
713
+ /**
714
+ * An expired transfer to localchain failed to be refunded
715
+ **/
716
+ TransferToLocalchainRefundError: AugmentedEvent<
717
+ ApiType,
718
+ [
719
+ accountId: AccountId32,
720
+ transferId: u32,
721
+ notaryId: u32,
722
+ notebookNumber: u32,
723
+ error: SpRuntimeDispatchError,
724
+ ],
725
+ {
726
+ accountId: AccountId32;
727
+ transferId: u32;
728
+ notaryId: u32;
729
+ notebookNumber: u32;
730
+ error: SpRuntimeDispatchError;
731
+ }
732
+ >;
733
+ };
734
+ miningSlot: {
735
+ /**
736
+ * Bids are closed due to the VRF randomized function triggering
737
+ **/
738
+ MiningBidsClosed: AugmentedEvent<ApiType, [frameId: u64], { frameId: u64 }>;
739
+ MiningConfigurationUpdated: AugmentedEvent<
740
+ ApiType,
741
+ [
742
+ ticksBeforeBidEndForVrfClose: u64,
743
+ ticksBetweenSlots: u64,
744
+ slotBiddingStartAfterTicks: u64,
745
+ ],
746
+ {
747
+ ticksBeforeBidEndForVrfClose: u64;
748
+ ticksBetweenSlots: u64;
749
+ slotBiddingStartAfterTicks: u64;
750
+ }
751
+ >;
752
+ NewMiners: AugmentedEvent<
753
+ ApiType,
754
+ [
755
+ newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>,
756
+ releasedMiners: u32,
757
+ frameId: u64,
758
+ ],
759
+ {
760
+ newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
761
+ releasedMiners: u32;
762
+ frameId: u64;
763
+ }
764
+ >;
765
+ ReleaseBidError: AugmentedEvent<
766
+ ApiType,
767
+ [accountId: AccountId32, error: SpRuntimeDispatchError],
768
+ { accountId: AccountId32; error: SpRuntimeDispatchError }
769
+ >;
770
+ ReleaseMinerSeatError: AugmentedEvent<
771
+ ApiType,
772
+ [accountId: AccountId32, error: SpRuntimeDispatchError],
773
+ { accountId: AccountId32; error: SpRuntimeDispatchError }
774
+ >;
775
+ SlotBidderAdded: AugmentedEvent<
776
+ ApiType,
777
+ [accountId: AccountId32, bidAmount: u128, index: u32],
778
+ { accountId: AccountId32; bidAmount: u128; index: u32 }
779
+ >;
780
+ SlotBidderDropped: AugmentedEvent<
781
+ ApiType,
782
+ [accountId: AccountId32, preservedArgonotHold: bool],
783
+ { accountId: AccountId32; preservedArgonotHold: bool }
784
+ >;
785
+ };
786
+ mint: {
787
+ /**
788
+ * Any bitcoins minted
789
+ **/
790
+ BitcoinMint: AugmentedEvent<
791
+ ApiType,
792
+ [accountId: AccountId32, utxoId: Option<u64>, amount: u128],
793
+ { accountId: AccountId32; utxoId: Option<u64>; amount: u128 }
794
+ >;
795
+ /**
796
+ * The amount of microgons minted for mining. NOTE: accounts below Existential Deposit
797
+ * will not be able to mint
798
+ **/
799
+ MiningMint: AugmentedEvent<
800
+ ApiType,
801
+ [amount: u128, perMiner: u128, argonCpi: i128, liquidity: u128],
802
+ { amount: u128; perMiner: u128; argonCpi: i128; liquidity: u128 }
803
+ >;
804
+ /**
805
+ * Errors encountered while minting. Most often due to mint amount still below Existential
806
+ * Deposit
807
+ **/
808
+ MintError: AugmentedEvent<
809
+ ApiType,
810
+ [
811
+ mintType: PalletMintMintType,
812
+ accountId: AccountId32,
813
+ utxoId: Option<u64>,
814
+ amount: u128,
815
+ error: SpRuntimeDispatchError,
816
+ ],
817
+ {
818
+ mintType: PalletMintMintType;
819
+ accountId: AccountId32;
820
+ utxoId: Option<u64>;
821
+ amount: u128;
822
+ error: SpRuntimeDispatchError;
823
+ }
824
+ >;
825
+ };
826
+ multisig: {
827
+ /**
828
+ * The deposit for a multisig operation has been updated/poked.
829
+ **/
830
+ DepositPoked: AugmentedEvent<
831
+ ApiType,
832
+ [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128],
833
+ { who: AccountId32; callHash: U8aFixed; oldDeposit: u128; newDeposit: u128 }
834
+ >;
835
+ /**
836
+ * A multisig operation has been approved by someone.
837
+ **/
838
+ MultisigApproval: AugmentedEvent<
839
+ ApiType,
840
+ [
841
+ approving: AccountId32,
842
+ timepoint: PalletMultisigTimepoint,
843
+ multisig: AccountId32,
844
+ callHash: U8aFixed,
845
+ ],
846
+ {
847
+ approving: AccountId32;
848
+ timepoint: PalletMultisigTimepoint;
849
+ multisig: AccountId32;
850
+ callHash: U8aFixed;
851
+ }
852
+ >;
853
+ /**
854
+ * A multisig operation has been cancelled.
855
+ **/
856
+ MultisigCancelled: AugmentedEvent<
857
+ ApiType,
858
+ [
859
+ cancelling: AccountId32,
860
+ timepoint: PalletMultisigTimepoint,
861
+ multisig: AccountId32,
862
+ callHash: U8aFixed,
863
+ ],
864
+ {
865
+ cancelling: AccountId32;
866
+ timepoint: PalletMultisigTimepoint;
867
+ multisig: AccountId32;
868
+ callHash: U8aFixed;
869
+ }
870
+ >;
871
+ /**
872
+ * A multisig operation has been executed.
873
+ **/
874
+ MultisigExecuted: AugmentedEvent<
875
+ ApiType,
876
+ [
877
+ approving: AccountId32,
878
+ timepoint: PalletMultisigTimepoint,
879
+ multisig: AccountId32,
880
+ callHash: U8aFixed,
881
+ result: Result<Null, SpRuntimeDispatchError>,
882
+ ],
883
+ {
884
+ approving: AccountId32;
885
+ timepoint: PalletMultisigTimepoint;
886
+ multisig: AccountId32;
887
+ callHash: U8aFixed;
888
+ result: Result<Null, SpRuntimeDispatchError>;
889
+ }
890
+ >;
891
+ /**
892
+ * A new multisig operation has begun.
893
+ **/
894
+ NewMultisig: AugmentedEvent<
895
+ ApiType,
896
+ [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed],
897
+ { approving: AccountId32; multisig: AccountId32; callHash: U8aFixed }
898
+ >;
899
+ };
900
+ notaries: {
901
+ /**
902
+ * A notary proposal has been accepted
903
+ **/
904
+ NotaryActivated: AugmentedEvent<
905
+ ApiType,
906
+ [notary: ArgonPrimitivesNotaryNotaryRecord],
907
+ { notary: ArgonPrimitivesNotaryNotaryRecord }
908
+ >;
909
+ /**
910
+ * Notary metadata updated
911
+ **/
912
+ NotaryMetaUpdated: AugmentedEvent<
913
+ ApiType,
914
+ [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta],
915
+ { notaryId: u32; meta: ArgonPrimitivesNotaryNotaryMeta }
916
+ >;
917
+ /**
918
+ * Error updating queued notary info
919
+ **/
920
+ NotaryMetaUpdateError: AugmentedEvent<
921
+ ApiType,
922
+ [notaryId: u32, error: SpRuntimeDispatchError, meta: ArgonPrimitivesNotaryNotaryMeta],
923
+ { notaryId: u32; error: SpRuntimeDispatchError; meta: ArgonPrimitivesNotaryNotaryMeta }
924
+ >;
925
+ /**
926
+ * Notary metadata queued for update
927
+ **/
928
+ NotaryMetaUpdateQueued: AugmentedEvent<
929
+ ApiType,
930
+ [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta, effectiveTick: u64],
931
+ { notaryId: u32; meta: ArgonPrimitivesNotaryNotaryMeta; effectiveTick: u64 }
932
+ >;
933
+ /**
934
+ * A user has proposed operating as a notary
935
+ **/
936
+ NotaryProposed: AugmentedEvent<
937
+ ApiType,
938
+ [operatorAccount: AccountId32, meta: ArgonPrimitivesNotaryNotaryMeta, expires: u32],
939
+ { operatorAccount: AccountId32; meta: ArgonPrimitivesNotaryNotaryMeta; expires: u32 }
940
+ >;
941
+ };
942
+ notebook: {
943
+ NotebookAuditFailure: AugmentedEvent<
944
+ ApiType,
945
+ [
946
+ notaryId: u32,
947
+ notebookNumber: u32,
948
+ notebookHash: H256,
949
+ firstFailureReason: ArgonNotaryAuditErrorVerifyError,
950
+ ],
951
+ {
952
+ notaryId: u32;
953
+ notebookNumber: u32;
954
+ notebookHash: H256;
955
+ firstFailureReason: ArgonNotaryAuditErrorVerifyError;
956
+ }
957
+ >;
958
+ NotebookReadyForReprocess: AugmentedEvent<
959
+ ApiType,
960
+ [notaryId: u32, notebookNumber: u32],
961
+ { notaryId: u32; notebookNumber: u32 }
962
+ >;
963
+ NotebookSubmitted: AugmentedEvent<
964
+ ApiType,
965
+ [notaryId: u32, notebookNumber: u32],
966
+ { notaryId: u32; notebookNumber: u32 }
967
+ >;
968
+ };
969
+ operationalAccounts: {
970
+ /**
971
+ * Account has become operational.
972
+ **/
973
+ AccountWentOperational: AugmentedEvent<
974
+ ApiType,
975
+ [account: AccountId32],
976
+ { account: AccountId32 }
977
+ >;
978
+ /**
979
+ * A sponsor updated the encrypted server payload for a sponsee.
980
+ **/
981
+ EncryptedServerUpdated: AugmentedEvent<
982
+ ApiType,
983
+ [sponsor: AccountId32, sponsee: AccountId32],
984
+ { sponsor: AccountId32; sponsee: AccountId32 }
985
+ >;
986
+ /**
987
+ * An operational account was registered with its linked accounts.
988
+ **/
989
+ OperationalAccountRegistered: AugmentedEvent<
990
+ ApiType,
991
+ [
992
+ operationalAccount: AccountId32,
993
+ vaultAccount: AccountId32,
994
+ miningFundingAccount: AccountId32,
995
+ miningBotAccount: AccountId32,
996
+ sponsor: Option<AccountId32>,
997
+ ],
998
+ {
999
+ operationalAccount: AccountId32;
1000
+ vaultAccount: AccountId32;
1001
+ miningFundingAccount: AccountId32;
1002
+ miningBotAccount: AccountId32;
1003
+ sponsor: Option<AccountId32>;
1004
+ }
1005
+ >;
1006
+ /**
1007
+ * Operational progress was forced by root.
1008
+ **/
1009
+ OperationalProgressForced: AugmentedEvent<
1010
+ ApiType,
1011
+ [
1012
+ account: AccountId32,
1013
+ updateOperationalProgress: bool,
1014
+ hasUniswapTransfer: bool,
1015
+ vaultCreated: bool,
1016
+ hasTreasuryPoolParticipation: bool,
1017
+ observedBitcoinTotal: u128,
1018
+ observedMiningSeatTotal: u32,
1019
+ ],
1020
+ {
1021
+ account: AccountId32;
1022
+ updateOperationalProgress: bool;
1023
+ hasUniswapTransfer: bool;
1024
+ vaultCreated: bool;
1025
+ hasTreasuryPoolParticipation: bool;
1026
+ observedBitcoinTotal: u128;
1027
+ observedMiningSeatTotal: u32;
1028
+ }
1029
+ >;
1030
+ /**
1031
+ * A reward is earned for an operational account, but not yet claimed.
1032
+ **/
1033
+ OperationalRewardEarned: AugmentedEvent<
1034
+ ApiType,
1035
+ [
1036
+ account: AccountId32,
1037
+ rewardKind: ArgonPrimitivesProvidersOperationalRewardKind,
1038
+ amount: u128,
1039
+ ],
1040
+ {
1041
+ account: AccountId32;
1042
+ rewardKind: ArgonPrimitivesProvidersOperationalRewardKind;
1043
+ amount: u128;
1044
+ }
1045
+ >;
1046
+ /**
1047
+ * Claimable operational rewards were paid to a managed account.
1048
+ **/
1049
+ OperationalRewardsClaimed: AugmentedEvent<
1050
+ ApiType,
1051
+ [
1052
+ operationalAccount: AccountId32,
1053
+ claimant: AccountId32,
1054
+ amount: u128,
1055
+ remainingPending: u128,
1056
+ ],
1057
+ {
1058
+ operationalAccount: AccountId32;
1059
+ claimant: AccountId32;
1060
+ amount: u128;
1061
+ remainingPending: u128;
1062
+ }
1063
+ >;
1064
+ /**
1065
+ * Reward config values were updated.
1066
+ **/
1067
+ RewardsConfigUpdated: AugmentedEvent<
1068
+ ApiType,
1069
+ [operationalReferralReward: u128, referralBonusReward: u128],
1070
+ { operationalReferralReward: u128; referralBonusReward: u128 }
1071
+ >;
1072
+ };
1073
+ ownership: {
1074
+ /**
1075
+ * A balance was set by root.
1076
+ **/
1077
+ BalanceSet: AugmentedEvent<
1078
+ ApiType,
1079
+ [who: AccountId32, free: u128],
1080
+ { who: AccountId32; free: u128 }
1081
+ >;
1082
+ /**
1083
+ * Some amount was burned from an account.
1084
+ **/
1085
+ Burned: AugmentedEvent<
1086
+ ApiType,
1087
+ [who: AccountId32, amount: u128],
1088
+ { who: AccountId32; amount: u128 }
1089
+ >;
1090
+ /**
1091
+ * Some debt has been dropped from the Total Issuance.
1092
+ **/
1093
+ BurnedDebt: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
1094
+ /**
1095
+ * Held balance was burned from an account.
1096
+ **/
1097
+ BurnedHeld: AugmentedEvent<
1098
+ ApiType,
1099
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
1100
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
1101
+ >;
1102
+ /**
1103
+ * Some amount was deposited (e.g. for transaction fees).
1104
+ **/
1105
+ Deposit: AugmentedEvent<
1106
+ ApiType,
1107
+ [who: AccountId32, amount: u128],
1108
+ { who: AccountId32; amount: u128 }
1109
+ >;
1110
+ /**
1111
+ * An account was removed whose balance was non-zero but below ExistentialDeposit,
1112
+ * resulting in an outright loss.
1113
+ **/
1114
+ DustLost: AugmentedEvent<
1115
+ ApiType,
1116
+ [account: AccountId32, amount: u128],
1117
+ { account: AccountId32; amount: u128 }
1118
+ >;
1119
+ /**
1120
+ * An account was created with some free balance.
1121
+ **/
1122
+ Endowed: AugmentedEvent<
1123
+ ApiType,
1124
+ [account: AccountId32, freeBalance: u128],
1125
+ { account: AccountId32; freeBalance: u128 }
1126
+ >;
1127
+ /**
1128
+ * Some balance was frozen.
1129
+ **/
1130
+ Frozen: AugmentedEvent<
1131
+ ApiType,
1132
+ [who: AccountId32, amount: u128],
1133
+ { who: AccountId32; amount: u128 }
1134
+ >;
1135
+ /**
1136
+ * Some balance was placed on hold.
1137
+ **/
1138
+ Held: AugmentedEvent<
1139
+ ApiType,
1140
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
1141
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
1142
+ >;
1143
+ /**
1144
+ * Total issuance was increased by `amount`, creating a credit to be balanced.
1145
+ **/
1146
+ Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
1147
+ /**
1148
+ * Some balance was locked.
1149
+ **/
1150
+ Locked: AugmentedEvent<
1151
+ ApiType,
1152
+ [who: AccountId32, amount: u128],
1153
+ { who: AccountId32; amount: u128 }
1154
+ >;
1155
+ /**
1156
+ * Some amount was minted into an account.
1157
+ **/
1158
+ Minted: AugmentedEvent<
1159
+ ApiType,
1160
+ [who: AccountId32, amount: u128],
1161
+ { who: AccountId32; amount: u128 }
1162
+ >;
1163
+ /**
1164
+ * Some credit was balanced and added to the TotalIssuance.
1165
+ **/
1166
+ MintedCredit: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
1167
+ /**
1168
+ * Some balance was released from hold.
1169
+ **/
1170
+ Released: AugmentedEvent<
1171
+ ApiType,
1172
+ [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128],
1173
+ { reason: ArgonRuntimeRuntimeHoldReason; who: AccountId32; amount: u128 }
1174
+ >;
1175
+ /**
1176
+ * Total issuance was decreased by `amount`, creating a debt to be balanced.
1177
+ **/
1178
+ Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
1179
+ /**
1180
+ * Some balance was reserved (moved from free to reserved).
1181
+ **/
1182
+ Reserved: AugmentedEvent<
1183
+ ApiType,
1184
+ [who: AccountId32, amount: u128],
1185
+ { who: AccountId32; amount: u128 }
1186
+ >;
1187
+ /**
1188
+ * Some balance was moved from the reserve of the first account to the second account.
1189
+ * Final argument indicates the destination balance type.
1190
+ **/
1191
+ ReserveRepatriated: AugmentedEvent<
1192
+ ApiType,
1193
+ [
1194
+ from: AccountId32,
1195
+ to: AccountId32,
1196
+ amount: u128,
1197
+ destinationStatus: FrameSupportTokensMiscBalanceStatus,
1198
+ ],
1199
+ {
1200
+ from: AccountId32;
1201
+ to: AccountId32;
1202
+ amount: u128;
1203
+ destinationStatus: FrameSupportTokensMiscBalanceStatus;
1204
+ }
1205
+ >;
1206
+ /**
1207
+ * Some amount was restored into an account.
1208
+ **/
1209
+ Restored: AugmentedEvent<
1210
+ ApiType,
1211
+ [who: AccountId32, amount: u128],
1212
+ { who: AccountId32; amount: u128 }
1213
+ >;
1214
+ /**
1215
+ * Some amount was removed from the account (e.g. for misbehavior).
1216
+ **/
1217
+ Slashed: AugmentedEvent<
1218
+ ApiType,
1219
+ [who: AccountId32, amount: u128],
1220
+ { who: AccountId32; amount: u128 }
1221
+ >;
1222
+ /**
1223
+ * Some amount was suspended from an account (it can be restored later).
1224
+ **/
1225
+ Suspended: AugmentedEvent<
1226
+ ApiType,
1227
+ [who: AccountId32, amount: u128],
1228
+ { who: AccountId32; amount: u128 }
1229
+ >;
1230
+ /**
1231
+ * Some balance was thawed.
1232
+ **/
1233
+ Thawed: AugmentedEvent<
1234
+ ApiType,
1235
+ [who: AccountId32, amount: u128],
1236
+ { who: AccountId32; amount: u128 }
1237
+ >;
1238
+ /**
1239
+ * The `TotalIssuance` was forcefully changed.
1240
+ **/
1241
+ TotalIssuanceForced: AugmentedEvent<
1242
+ ApiType,
1243
+ [old: u128, new_: u128],
1244
+ { old: u128; new_: u128 }
1245
+ >;
1246
+ /**
1247
+ * Transfer succeeded.
1248
+ **/
1249
+ Transfer: AugmentedEvent<
1250
+ ApiType,
1251
+ [from: AccountId32, to: AccountId32, amount: u128],
1252
+ { from: AccountId32; to: AccountId32; amount: u128 }
1253
+ >;
1254
+ /**
1255
+ * The `transferred` balance is placed on hold at the `dest` account.
1256
+ **/
1257
+ TransferAndHold: AugmentedEvent<
1258
+ ApiType,
1259
+ [
1260
+ reason: ArgonRuntimeRuntimeHoldReason,
1261
+ source: AccountId32,
1262
+ dest: AccountId32,
1263
+ transferred: u128,
1264
+ ],
1265
+ {
1266
+ reason: ArgonRuntimeRuntimeHoldReason;
1267
+ source: AccountId32;
1268
+ dest: AccountId32;
1269
+ transferred: u128;
1270
+ }
1271
+ >;
1272
+ /**
1273
+ * A transfer of `amount` on hold from `source` to `dest` was initiated.
1274
+ **/
1275
+ TransferOnHold: AugmentedEvent<
1276
+ ApiType,
1277
+ [
1278
+ reason: ArgonRuntimeRuntimeHoldReason,
1279
+ source: AccountId32,
1280
+ dest: AccountId32,
1281
+ amount: u128,
1282
+ ],
1283
+ {
1284
+ reason: ArgonRuntimeRuntimeHoldReason;
1285
+ source: AccountId32;
1286
+ dest: AccountId32;
1287
+ amount: u128;
1288
+ }
1289
+ >;
1290
+ /**
1291
+ * An unexpected/defensive event was triggered.
1292
+ **/
1293
+ Unexpected: AugmentedEvent<ApiType, [PalletBalancesUnexpectedKind]>;
1294
+ /**
1295
+ * Some balance was unlocked.
1296
+ **/
1297
+ Unlocked: AugmentedEvent<
1298
+ ApiType,
1299
+ [who: AccountId32, amount: u128],
1300
+ { who: AccountId32; amount: u128 }
1301
+ >;
1302
+ /**
1303
+ * Some balance was unreserved (moved from reserved to free).
1304
+ **/
1305
+ Unreserved: AugmentedEvent<
1306
+ ApiType,
1307
+ [who: AccountId32, amount: u128],
1308
+ { who: AccountId32; amount: u128 }
1309
+ >;
1310
+ /**
1311
+ * An account was upgraded.
1312
+ **/
1313
+ Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
1314
+ /**
1315
+ * Some amount was withdrawn from the account (e.g. for transaction fees).
1316
+ **/
1317
+ Withdraw: AugmentedEvent<
1318
+ ApiType,
1319
+ [who: AccountId32, amount: u128],
1320
+ { who: AccountId32; amount: u128 }
1321
+ >;
1322
+ };
1323
+ priceIndex: {
1324
+ /**
1325
+ * Event emitted when a new price index is submitted
1326
+ **/
1327
+ NewIndex: AugmentedEvent<ApiType, []>;
1328
+ OperatorChanged: AugmentedEvent<
1329
+ ApiType,
1330
+ [operatorId: AccountId32],
1331
+ { operatorId: AccountId32 }
1332
+ >;
1333
+ };
1334
+ proxy: {
1335
+ /**
1336
+ * An announcement was placed to make a call in the future.
1337
+ **/
1338
+ Announced: AugmentedEvent<
1339
+ ApiType,
1340
+ [real: AccountId32, proxy: AccountId32, callHash: H256],
1341
+ { real: AccountId32; proxy: AccountId32; callHash: H256 }
1342
+ >;
1343
+ /**
1344
+ * A deposit stored for proxies or announcements was poked / updated.
1345
+ **/
1346
+ DepositPoked: AugmentedEvent<
1347
+ ApiType,
1348
+ [who: AccountId32, kind: PalletProxyDepositKind, oldDeposit: u128, newDeposit: u128],
1349
+ { who: AccountId32; kind: PalletProxyDepositKind; oldDeposit: u128; newDeposit: u128 }
1350
+ >;
1351
+ /**
1352
+ * A proxy was added.
1353
+ **/
1354
+ ProxyAdded: AugmentedEvent<
1355
+ ApiType,
1356
+ [
1357
+ delegator: AccountId32,
1358
+ delegatee: AccountId32,
1359
+ proxyType: ArgonRuntimeProxyType,
1360
+ delay: u32,
1361
+ ],
1362
+ {
1363
+ delegator: AccountId32;
1364
+ delegatee: AccountId32;
1365
+ proxyType: ArgonRuntimeProxyType;
1366
+ delay: u32;
1367
+ }
1368
+ >;
1369
+ /**
1370
+ * A proxy was executed correctly, with the given.
1371
+ **/
1372
+ ProxyExecuted: AugmentedEvent<
1373
+ ApiType,
1374
+ [result: Result<Null, SpRuntimeDispatchError>],
1375
+ { result: Result<Null, SpRuntimeDispatchError> }
1376
+ >;
1377
+ /**
1378
+ * A proxy was removed.
1379
+ **/
1380
+ ProxyRemoved: AugmentedEvent<
1381
+ ApiType,
1382
+ [
1383
+ delegator: AccountId32,
1384
+ delegatee: AccountId32,
1385
+ proxyType: ArgonRuntimeProxyType,
1386
+ delay: u32,
1387
+ ],
1388
+ {
1389
+ delegator: AccountId32;
1390
+ delegatee: AccountId32;
1391
+ proxyType: ArgonRuntimeProxyType;
1392
+ delay: u32;
1393
+ }
1394
+ >;
1395
+ /**
1396
+ * A pure account has been created by new proxy with given
1397
+ * disambiguation index and proxy type.
1398
+ **/
1399
+ PureCreated: AugmentedEvent<
1400
+ ApiType,
1401
+ [
1402
+ pure: AccountId32,
1403
+ who: AccountId32,
1404
+ proxyType: ArgonRuntimeProxyType,
1405
+ disambiguationIndex: u16,
1406
+ at: u32,
1407
+ extrinsicIndex: u32,
1408
+ ],
1409
+ {
1410
+ pure: AccountId32;
1411
+ who: AccountId32;
1412
+ proxyType: ArgonRuntimeProxyType;
1413
+ disambiguationIndex: u16;
1414
+ at: u32;
1415
+ extrinsicIndex: u32;
1416
+ }
1417
+ >;
1418
+ /**
1419
+ * A pure proxy was killed by its spawner.
1420
+ **/
1421
+ PureKilled: AugmentedEvent<
1422
+ ApiType,
1423
+ [
1424
+ pure: AccountId32,
1425
+ spawner: AccountId32,
1426
+ proxyType: ArgonRuntimeProxyType,
1427
+ disambiguationIndex: u16,
1428
+ ],
1429
+ {
1430
+ pure: AccountId32;
1431
+ spawner: AccountId32;
1432
+ proxyType: ArgonRuntimeProxyType;
1433
+ disambiguationIndex: u16;
1434
+ }
1435
+ >;
1436
+ };
1437
+ sudo: {
1438
+ /**
1439
+ * The sudo key has been updated.
1440
+ **/
1441
+ KeyChanged: AugmentedEvent<
1442
+ ApiType,
1443
+ [old: Option<AccountId32>, new_: AccountId32],
1444
+ { old: Option<AccountId32>; new_: AccountId32 }
1445
+ >;
1446
+ /**
1447
+ * The key was permanently removed.
1448
+ **/
1449
+ KeyRemoved: AugmentedEvent<ApiType, []>;
1450
+ /**
1451
+ * A sudo call just took place.
1452
+ **/
1453
+ Sudid: AugmentedEvent<
1454
+ ApiType,
1455
+ [sudoResult: Result<Null, SpRuntimeDispatchError>],
1456
+ { sudoResult: Result<Null, SpRuntimeDispatchError> }
1457
+ >;
1458
+ /**
1459
+ * A [sudo_as](Pallet::sudo_as) call just took place.
1460
+ **/
1461
+ SudoAsDone: AugmentedEvent<
1462
+ ApiType,
1463
+ [sudoResult: Result<Null, SpRuntimeDispatchError>],
1464
+ { sudoResult: Result<Null, SpRuntimeDispatchError> }
1465
+ >;
1466
+ };
1467
+ system: {
1468
+ /**
1469
+ * `:code` was updated.
1470
+ **/
1471
+ CodeUpdated: AugmentedEvent<ApiType, []>;
1472
+ /**
1473
+ * An extrinsic failed.
1474
+ **/
1475
+ ExtrinsicFailed: AugmentedEvent<
1476
+ ApiType,
1477
+ [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSystemDispatchEventInfo],
1478
+ { dispatchError: SpRuntimeDispatchError; dispatchInfo: FrameSystemDispatchEventInfo }
1479
+ >;
1480
+ /**
1481
+ * An extrinsic completed successfully.
1482
+ **/
1483
+ ExtrinsicSuccess: AugmentedEvent<
1484
+ ApiType,
1485
+ [dispatchInfo: FrameSystemDispatchEventInfo],
1486
+ { dispatchInfo: FrameSystemDispatchEventInfo }
1487
+ >;
1488
+ /**
1489
+ * An account was reaped.
1490
+ **/
1491
+ KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
1492
+ /**
1493
+ * A new account was created.
1494
+ **/
1495
+ NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
1496
+ /**
1497
+ * An invalid authorized upgrade was rejected while trying to apply it.
1498
+ **/
1499
+ RejectedInvalidAuthorizedUpgrade: AugmentedEvent<
1500
+ ApiType,
1501
+ [codeHash: H256, error: SpRuntimeDispatchError],
1502
+ { codeHash: H256; error: SpRuntimeDispatchError }
1503
+ >;
1504
+ /**
1505
+ * On on-chain remark happened.
1506
+ **/
1507
+ Remarked: AugmentedEvent<
1508
+ ApiType,
1509
+ [sender: AccountId32, hash_: H256],
1510
+ { sender: AccountId32; hash_: H256 }
1511
+ >;
1512
+ /**
1513
+ * An upgrade was authorized.
1514
+ **/
1515
+ UpgradeAuthorized: AugmentedEvent<
1516
+ ApiType,
1517
+ [codeHash: H256, checkVersion: bool],
1518
+ { codeHash: H256; checkVersion: bool }
1519
+ >;
1520
+ };
1521
+ transactionPayment: {
1522
+ /**
1523
+ * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
1524
+ * has been paid by `who`.
1525
+ **/
1526
+ TransactionFeePaid: AugmentedEvent<
1527
+ ApiType,
1528
+ [who: AccountId32, actualFee: u128, tip: u128],
1529
+ { who: AccountId32; actualFee: u128; tip: u128 }
1530
+ >;
1531
+ };
1532
+ treasury: {
1533
+ /**
1534
+ * A bond purchase entered a vault's accepted list.
1535
+ **/
1536
+ BondLotPurchased: AugmentedEvent<
1537
+ ApiType,
1538
+ [vaultId: u32, bondLotId: u64, accountId: AccountId32, bonds: u32],
1539
+ { vaultId: u32; bondLotId: u64; accountId: AccountId32; bonds: u32 }
1540
+ >;
1541
+ /**
1542
+ * A bond lot was released.
1543
+ **/
1544
+ BondLotReleased: AugmentedEvent<
1545
+ ApiType,
1546
+ [frameId: u64, vaultId: u32, bondLotId: u64, accountId: AccountId32, bonds: u32],
1547
+ { frameId: u64; vaultId: u32; bondLotId: u64; accountId: AccountId32; bonds: u32 }
1548
+ >;
1549
+ /**
1550
+ * A bond lot was removed from future frames and scheduled for release.
1551
+ **/
1552
+ BondLotReleaseScheduled: AugmentedEvent<
1553
+ ApiType,
1554
+ [
1555
+ vaultId: u32,
1556
+ bondLotId: u64,
1557
+ accountId: AccountId32,
1558
+ bonds: u32,
1559
+ releaseFrameId: u64,
1560
+ reason: PalletTreasuryBondReleaseReason,
1561
+ ],
1562
+ {
1563
+ vaultId: u32;
1564
+ bondLotId: u64;
1565
+ accountId: AccountId32;
1566
+ bonds: u32;
1567
+ releaseFrameId: u64;
1568
+ reason: PalletTreasuryBondReleaseReason;
1569
+ }
1570
+ >;
1571
+ /**
1572
+ * An error occurred while paying frame earnings for a bond lot.
1573
+ **/
1574
+ CouldNotDistributeEarningsToBondLot: AugmentedEvent<
1575
+ ApiType,
1576
+ [
1577
+ frameId: u64,
1578
+ vaultId: u32,
1579
+ bondLotId: u64,
1580
+ accountId: AccountId32,
1581
+ amount: u128,
1582
+ dispatchError: SpRuntimeDispatchError,
1583
+ ],
1584
+ {
1585
+ frameId: u64;
1586
+ vaultId: u32;
1587
+ bondLotId: u64;
1588
+ accountId: AccountId32;
1589
+ amount: u128;
1590
+ dispatchError: SpRuntimeDispatchError;
1591
+ }
1592
+ >;
1593
+ /**
1594
+ * An error occurred while releasing a bond lot.
1595
+ **/
1596
+ CouldNotReleaseBondLot: AugmentedEvent<
1597
+ ApiType,
1598
+ [
1599
+ frameId: u64,
1600
+ vaultId: u32,
1601
+ bondLotId: u64,
1602
+ amount: u128,
1603
+ accountId: AccountId32,
1604
+ dispatchError: SpRuntimeDispatchError,
1605
+ ],
1606
+ {
1607
+ frameId: u64;
1608
+ vaultId: u32;
1609
+ bondLotId: u64;
1610
+ amount: u128;
1611
+ accountId: AccountId32;
1612
+ dispatchError: SpRuntimeDispatchError;
1613
+ }
1614
+ >;
1615
+ /**
1616
+ * An error occurred while moving bid-pool funds into treasury reserves.
1617
+ **/
1618
+ CouldNotTransferToTreasuryReserves: AugmentedEvent<
1619
+ ApiType,
1620
+ [frameId: u64, amount: u128, dispatchError: SpRuntimeDispatchError],
1621
+ { frameId: u64; amount: u128; dispatchError: SpRuntimeDispatchError }
1622
+ >;
1623
+ /**
1624
+ * Frame earnings were distributed.
1625
+ **/
1626
+ FrameEarningsDistributed: AugmentedEvent<
1627
+ ApiType,
1628
+ [frameId: u64, bidPoolDistributed: u128, treasuryReserves: u128, participatingVaults: u32],
1629
+ { frameId: u64; bidPoolDistributed: u128; treasuryReserves: u128; participatingVaults: u32 }
1630
+ >;
1631
+ /**
1632
+ * The current frame's vault capital was locked in.
1633
+ **/
1634
+ FrameVaultCapitalLocked: AugmentedEvent<
1635
+ ApiType,
1636
+ [frameId: u64, totalEligibleBonds: u128, participatingVaults: u32],
1637
+ { frameId: u64; totalEligibleBonds: u128; participatingVaults: u32 }
1638
+ >;
1639
+ };
1640
+ txPause: {
1641
+ /**
1642
+ * This pallet, or a specific call is now paused.
1643
+ **/
1644
+ CallPaused: AugmentedEvent<
1645
+ ApiType,
1646
+ [fullName: ITuple<[Bytes, Bytes]>],
1647
+ { fullName: ITuple<[Bytes, Bytes]> }
1648
+ >;
1649
+ /**
1650
+ * This pallet, or a specific call is now unpaused.
1651
+ **/
1652
+ CallUnpaused: AugmentedEvent<
1653
+ ApiType,
1654
+ [fullName: ITuple<[Bytes, Bytes]>],
1655
+ { fullName: ITuple<[Bytes, Bytes]> }
1656
+ >;
1657
+ };
1658
+ utility: {
1659
+ /**
1660
+ * Batch of dispatches completed fully with no error.
1661
+ **/
1662
+ BatchCompleted: AugmentedEvent<ApiType, []>;
1663
+ /**
1664
+ * Batch of dispatches completed but has errors.
1665
+ **/
1666
+ BatchCompletedWithErrors: AugmentedEvent<ApiType, []>;
1667
+ /**
1668
+ * Batch of dispatches did not complete fully. Index of first failing dispatch given, as
1669
+ * well as the error.
1670
+ **/
1671
+ BatchInterrupted: AugmentedEvent<
1672
+ ApiType,
1673
+ [index: u32, error: SpRuntimeDispatchError],
1674
+ { index: u32; error: SpRuntimeDispatchError }
1675
+ >;
1676
+ /**
1677
+ * A call was dispatched.
1678
+ **/
1679
+ DispatchedAs: AugmentedEvent<
1680
+ ApiType,
1681
+ [result: Result<Null, SpRuntimeDispatchError>],
1682
+ { result: Result<Null, SpRuntimeDispatchError> }
1683
+ >;
1684
+ /**
1685
+ * The fallback call was dispatched.
1686
+ **/
1687
+ IfElseFallbackCalled: AugmentedEvent<
1688
+ ApiType,
1689
+ [mainError: SpRuntimeDispatchError],
1690
+ { mainError: SpRuntimeDispatchError }
1691
+ >;
1692
+ /**
1693
+ * Main call was dispatched.
1694
+ **/
1695
+ IfElseMainSuccess: AugmentedEvent<ApiType, []>;
1696
+ /**
1697
+ * A single item within a Batch of dispatches has completed with no error.
1698
+ **/
1699
+ ItemCompleted: AugmentedEvent<ApiType, []>;
1700
+ /**
1701
+ * A single item within a Batch of dispatches has completed with error.
1702
+ **/
1703
+ ItemFailed: AugmentedEvent<
1704
+ ApiType,
1705
+ [error: SpRuntimeDispatchError],
1706
+ { error: SpRuntimeDispatchError }
1707
+ >;
1708
+ };
1709
+ vaults: {
1710
+ FundLockCanceled: AugmentedEvent<
1711
+ ApiType,
1712
+ [vaultId: u32, amount: u128],
1713
+ { vaultId: u32; amount: u128 }
1714
+ >;
1715
+ FundsLocked: AugmentedEvent<
1716
+ ApiType,
1717
+ [
1718
+ vaultId: u32,
1719
+ locker: AccountId32,
1720
+ liquidityPromised: u128,
1721
+ isRatchet: bool,
1722
+ feeRevenue: u128,
1723
+ didUseFeeCoupon: bool,
1724
+ ],
1725
+ {
1726
+ vaultId: u32;
1727
+ locker: AccountId32;
1728
+ liquidityPromised: u128;
1729
+ isRatchet: bool;
1730
+ feeRevenue: u128;
1731
+ didUseFeeCoupon: bool;
1732
+ }
1733
+ >;
1734
+ FundsReleased: AugmentedEvent<
1735
+ ApiType,
1736
+ [vaultId: u32, securitization: u128],
1737
+ { vaultId: u32; securitization: u128 }
1738
+ >;
1739
+ FundsReleasedError: AugmentedEvent<
1740
+ ApiType,
1741
+ [vaultId: u32, error: SpRuntimeDispatchError],
1742
+ { vaultId: u32; error: SpRuntimeDispatchError }
1743
+ >;
1744
+ FundsScheduledForRelease: AugmentedEvent<
1745
+ ApiType,
1746
+ [vaultId: u32, securitization: u128, releaseHeight: u64],
1747
+ { vaultId: u32; securitization: u128; releaseHeight: u64 }
1748
+ >;
1749
+ LostBitcoinCompensated: AugmentedEvent<
1750
+ ApiType,
1751
+ [vaultId: u32, beneficiary: AccountId32, toBeneficiary: u128, burned: u128],
1752
+ { vaultId: u32; beneficiary: AccountId32; toBeneficiary: u128; burned: u128 }
1753
+ >;
1754
+ TreasuryRecordingError: AugmentedEvent<
1755
+ ApiType,
1756
+ [vaultId: u32, frameId: u64, vaultEarnings: u128, error: SpRuntimeDispatchError],
1757
+ { vaultId: u32; frameId: u64; vaultEarnings: u128; error: SpRuntimeDispatchError }
1758
+ >;
1759
+ VaultBitcoinXpubChange: AugmentedEvent<ApiType, [vaultId: u32], { vaultId: u32 }>;
1760
+ VaultClosed: AugmentedEvent<
1761
+ ApiType,
1762
+ [vaultId: u32, securitizationRemaining: u128, securitizationReleased: u128],
1763
+ { vaultId: u32; securitizationRemaining: u128; securitizationReleased: u128 }
1764
+ >;
1765
+ /**
1766
+ * The vault collected revenue and cosigned all pending bitcoin locks
1767
+ **/
1768
+ VaultCollected: AugmentedEvent<
1769
+ ApiType,
1770
+ [vaultId: u32, revenue: u128],
1771
+ { vaultId: u32; revenue: u128 }
1772
+ >;
1773
+ VaultCreated: AugmentedEvent<
1774
+ ApiType,
1775
+ [
1776
+ vaultId: u32,
1777
+ securitization: u128,
1778
+ securitizationRatio: u128,
1779
+ operatorAccountId: AccountId32,
1780
+ openedTick: u64,
1781
+ ],
1782
+ {
1783
+ vaultId: u32;
1784
+ securitization: u128;
1785
+ securitizationRatio: u128;
1786
+ operatorAccountId: AccountId32;
1787
+ openedTick: u64;
1788
+ }
1789
+ >;
1790
+ VaultModified: AugmentedEvent<
1791
+ ApiType,
1792
+ [vaultId: u32, securitization: u128, securitizationTarget: u128, securitizationRatio: u128],
1793
+ {
1794
+ vaultId: u32;
1795
+ securitization: u128;
1796
+ securitizationTarget: u128;
1797
+ securitizationRatio: u128;
1798
+ }
1799
+ >;
1800
+ /**
1801
+ * Vault revenue was not collected within the required window, so has been burned
1802
+ **/
1803
+ VaultRevenueUncollected: AugmentedEvent<
1804
+ ApiType,
1805
+ [vaultId: u32, frameId: u64, amount: u128],
1806
+ { vaultId: u32; frameId: u64; amount: u128 }
1807
+ >;
1808
+ VaultTermsChanged: AugmentedEvent<ApiType, [vaultId: u32], { vaultId: u32 }>;
1809
+ VaultTermsChangeScheduled: AugmentedEvent<
1810
+ ApiType,
1811
+ [vaultId: u32, changeTick: u64],
1812
+ { vaultId: u32; changeTick: u64 }
1813
+ >;
1814
+ };
1815
+ } // AugmentedEvents
1816
+ } // declare module