@argonprotocol/mainchain 1.4.3-dev.6cdce319 → 1.4.3-dev.6de0a801

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.
@@ -0,0 +1,3714 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, 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/types/lookup';
7
+
8
+ import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i128, i16, i32, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
9
+ import type { ITuple } from '@polkadot/types-codec/types';
10
+ import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';
11
+ import type { Event } from '@polkadot/types/interfaces/system';
12
+
13
+ declare module '@polkadot/types/lookup' {
14
+ /** @name FrameSystemAccountInfo (3) */
15
+ interface FrameSystemAccountInfo extends Struct {
16
+ readonly nonce: u32;
17
+ readonly consumers: u32;
18
+ readonly providers: u32;
19
+ readonly sufficients: u32;
20
+ readonly data: PalletBalancesAccountData;
21
+ }
22
+
23
+ /** @name PalletBalancesAccountData (5) */
24
+ interface PalletBalancesAccountData extends Struct {
25
+ readonly free: u128;
26
+ readonly reserved: u128;
27
+ readonly frozen: u128;
28
+ readonly flags: u128;
29
+ }
30
+
31
+ /** @name FrameSupportDispatchPerDispatchClassWeight (9) */
32
+ interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
33
+ readonly normal: SpWeightsWeightV2Weight;
34
+ readonly operational: SpWeightsWeightV2Weight;
35
+ readonly mandatory: SpWeightsWeightV2Weight;
36
+ }
37
+
38
+ /** @name SpWeightsWeightV2Weight (10) */
39
+ interface SpWeightsWeightV2Weight extends Struct {
40
+ readonly refTime: Compact<u64>;
41
+ readonly proofSize: Compact<u64>;
42
+ }
43
+
44
+ /** @name SpRuntimeDigest (15) */
45
+ interface SpRuntimeDigest extends Struct {
46
+ readonly logs: Vec<SpRuntimeDigestDigestItem>;
47
+ }
48
+
49
+ /** @name SpRuntimeDigestDigestItem (17) */
50
+ interface SpRuntimeDigestDigestItem extends Enum {
51
+ readonly isOther: boolean;
52
+ readonly asOther: Bytes;
53
+ readonly isConsensus: boolean;
54
+ readonly asConsensus: ITuple<[U8aFixed, Bytes]>;
55
+ readonly isSeal: boolean;
56
+ readonly asSeal: ITuple<[U8aFixed, Bytes]>;
57
+ readonly isPreRuntime: boolean;
58
+ readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;
59
+ readonly isRuntimeEnvironmentUpdated: boolean;
60
+ readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
61
+ }
62
+
63
+ /** @name FrameSystemEventRecord (20) */
64
+ interface FrameSystemEventRecord extends Struct {
65
+ readonly phase: FrameSystemPhase;
66
+ readonly event: Event;
67
+ readonly topics: Vec<H256>;
68
+ }
69
+
70
+ /** @name FrameSystemEvent (22) */
71
+ interface FrameSystemEvent extends Enum {
72
+ readonly isExtrinsicSuccess: boolean;
73
+ readonly asExtrinsicSuccess: {
74
+ readonly dispatchInfo: FrameSystemDispatchEventInfo;
75
+ } & Struct;
76
+ readonly isExtrinsicFailed: boolean;
77
+ readonly asExtrinsicFailed: {
78
+ readonly dispatchError: SpRuntimeDispatchError;
79
+ readonly dispatchInfo: FrameSystemDispatchEventInfo;
80
+ } & Struct;
81
+ readonly isCodeUpdated: boolean;
82
+ readonly isNewAccount: boolean;
83
+ readonly asNewAccount: {
84
+ readonly account: AccountId32;
85
+ } & Struct;
86
+ readonly isKilledAccount: boolean;
87
+ readonly asKilledAccount: {
88
+ readonly account: AccountId32;
89
+ } & Struct;
90
+ readonly isRemarked: boolean;
91
+ readonly asRemarked: {
92
+ readonly sender: AccountId32;
93
+ readonly hash_: H256;
94
+ } & Struct;
95
+ readonly isUpgradeAuthorized: boolean;
96
+ readonly asUpgradeAuthorized: {
97
+ readonly codeHash: H256;
98
+ readonly checkVersion: bool;
99
+ } & Struct;
100
+ readonly isRejectedInvalidAuthorizedUpgrade: boolean;
101
+ readonly asRejectedInvalidAuthorizedUpgrade: {
102
+ readonly codeHash: H256;
103
+ readonly error: SpRuntimeDispatchError;
104
+ } & Struct;
105
+ readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked' | 'UpgradeAuthorized' | 'RejectedInvalidAuthorizedUpgrade';
106
+ }
107
+
108
+ /** @name FrameSystemDispatchEventInfo (23) */
109
+ interface FrameSystemDispatchEventInfo extends Struct {
110
+ readonly weight: SpWeightsWeightV2Weight;
111
+ readonly class: FrameSupportDispatchDispatchClass;
112
+ readonly paysFee: FrameSupportDispatchPays;
113
+ }
114
+
115
+ /** @name FrameSupportDispatchDispatchClass (24) */
116
+ interface FrameSupportDispatchDispatchClass extends Enum {
117
+ readonly isNormal: boolean;
118
+ readonly isOperational: boolean;
119
+ readonly isMandatory: boolean;
120
+ readonly type: 'Normal' | 'Operational' | 'Mandatory';
121
+ }
122
+
123
+ /** @name FrameSupportDispatchPays (25) */
124
+ interface FrameSupportDispatchPays extends Enum {
125
+ readonly isYes: boolean;
126
+ readonly isNo: boolean;
127
+ readonly type: 'Yes' | 'No';
128
+ }
129
+
130
+ /** @name SpRuntimeDispatchError (26) */
131
+ interface SpRuntimeDispatchError extends Enum {
132
+ readonly isOther: boolean;
133
+ readonly isCannotLookup: boolean;
134
+ readonly isBadOrigin: boolean;
135
+ readonly isModule: boolean;
136
+ readonly asModule: SpRuntimeModuleError;
137
+ readonly isConsumerRemaining: boolean;
138
+ readonly isNoProviders: boolean;
139
+ readonly isTooManyConsumers: boolean;
140
+ readonly isToken: boolean;
141
+ readonly asToken: SpRuntimeTokenError;
142
+ readonly isArithmetic: boolean;
143
+ readonly asArithmetic: SpArithmeticArithmeticError;
144
+ readonly isTransactional: boolean;
145
+ readonly asTransactional: SpRuntimeTransactionalError;
146
+ readonly isExhausted: boolean;
147
+ readonly isCorruption: boolean;
148
+ readonly isUnavailable: boolean;
149
+ readonly isRootNotAllowed: boolean;
150
+ readonly isTrie: boolean;
151
+ readonly asTrie: SpRuntimeProvingTrieTrieError;
152
+ readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable' | 'RootNotAllowed' | 'Trie';
153
+ }
154
+
155
+ /** @name SpRuntimeModuleError (27) */
156
+ interface SpRuntimeModuleError extends Struct {
157
+ readonly index: u8;
158
+ readonly error: U8aFixed;
159
+ }
160
+
161
+ /** @name SpRuntimeTokenError (28) */
162
+ interface SpRuntimeTokenError extends Enum {
163
+ readonly isFundsUnavailable: boolean;
164
+ readonly isOnlyProvider: boolean;
165
+ readonly isBelowMinimum: boolean;
166
+ readonly isCannotCreate: boolean;
167
+ readonly isUnknownAsset: boolean;
168
+ readonly isFrozen: boolean;
169
+ readonly isUnsupported: boolean;
170
+ readonly isCannotCreateHold: boolean;
171
+ readonly isNotExpendable: boolean;
172
+ readonly isBlocked: boolean;
173
+ readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable' | 'Blocked';
174
+ }
175
+
176
+ /** @name SpArithmeticArithmeticError (29) */
177
+ interface SpArithmeticArithmeticError extends Enum {
178
+ readonly isUnderflow: boolean;
179
+ readonly isOverflow: boolean;
180
+ readonly isDivisionByZero: boolean;
181
+ readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
182
+ }
183
+
184
+ /** @name SpRuntimeTransactionalError (30) */
185
+ interface SpRuntimeTransactionalError extends Enum {
186
+ readonly isLimitReached: boolean;
187
+ readonly isNoLayer: boolean;
188
+ readonly type: 'LimitReached' | 'NoLayer';
189
+ }
190
+
191
+ /** @name SpRuntimeProvingTrieTrieError (31) */
192
+ interface SpRuntimeProvingTrieTrieError extends Enum {
193
+ readonly isInvalidStateRoot: boolean;
194
+ readonly isIncompleteDatabase: boolean;
195
+ readonly isValueAtIncompleteKey: boolean;
196
+ readonly isDecoderError: boolean;
197
+ readonly isInvalidHash: boolean;
198
+ readonly isDuplicateKey: boolean;
199
+ readonly isExtraneousNode: boolean;
200
+ readonly isExtraneousValue: boolean;
201
+ readonly isExtraneousHashReference: boolean;
202
+ readonly isInvalidChildReference: boolean;
203
+ readonly isValueMismatch: boolean;
204
+ readonly isIncompleteProof: boolean;
205
+ readonly isRootMismatch: boolean;
206
+ readonly isDecodeError: boolean;
207
+ readonly type: 'InvalidStateRoot' | 'IncompleteDatabase' | 'ValueAtIncompleteKey' | 'DecoderError' | 'InvalidHash' | 'DuplicateKey' | 'ExtraneousNode' | 'ExtraneousValue' | 'ExtraneousHashReference' | 'InvalidChildReference' | 'ValueMismatch' | 'IncompleteProof' | 'RootMismatch' | 'DecodeError';
208
+ }
209
+
210
+ /** @name PalletDigestsEvent (32) */
211
+ type PalletDigestsEvent = Null;
212
+
213
+ /** @name PalletMultisigEvent (33) */
214
+ interface PalletMultisigEvent extends Enum {
215
+ readonly isNewMultisig: boolean;
216
+ readonly asNewMultisig: {
217
+ readonly approving: AccountId32;
218
+ readonly multisig: AccountId32;
219
+ readonly callHash: U8aFixed;
220
+ } & Struct;
221
+ readonly isMultisigApproval: boolean;
222
+ readonly asMultisigApproval: {
223
+ readonly approving: AccountId32;
224
+ readonly timepoint: PalletMultisigTimepoint;
225
+ readonly multisig: AccountId32;
226
+ readonly callHash: U8aFixed;
227
+ } & Struct;
228
+ readonly isMultisigExecuted: boolean;
229
+ readonly asMultisigExecuted: {
230
+ readonly approving: AccountId32;
231
+ readonly timepoint: PalletMultisigTimepoint;
232
+ readonly multisig: AccountId32;
233
+ readonly callHash: U8aFixed;
234
+ readonly result: Result<Null, SpRuntimeDispatchError>;
235
+ } & Struct;
236
+ readonly isMultisigCancelled: boolean;
237
+ readonly asMultisigCancelled: {
238
+ readonly cancelling: AccountId32;
239
+ readonly timepoint: PalletMultisigTimepoint;
240
+ readonly multisig: AccountId32;
241
+ readonly callHash: U8aFixed;
242
+ } & Struct;
243
+ readonly isDepositPoked: boolean;
244
+ readonly asDepositPoked: {
245
+ readonly who: AccountId32;
246
+ readonly callHash: U8aFixed;
247
+ readonly oldDeposit: u128;
248
+ readonly newDeposit: u128;
249
+ } & Struct;
250
+ readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled' | 'DepositPoked';
251
+ }
252
+
253
+ /** @name PalletMultisigTimepoint (34) */
254
+ interface PalletMultisigTimepoint extends Struct {
255
+ readonly height: u32;
256
+ readonly index: u32;
257
+ }
258
+
259
+ /** @name PalletProxyEvent (37) */
260
+ interface PalletProxyEvent extends Enum {
261
+ readonly isProxyExecuted: boolean;
262
+ readonly asProxyExecuted: {
263
+ readonly result: Result<Null, SpRuntimeDispatchError>;
264
+ } & Struct;
265
+ readonly isPureCreated: boolean;
266
+ readonly asPureCreated: {
267
+ readonly pure: AccountId32;
268
+ readonly who: AccountId32;
269
+ readonly proxyType: ArgonRuntimeProxyType;
270
+ readonly disambiguationIndex: u16;
271
+ readonly at: u32;
272
+ readonly extrinsicIndex: u32;
273
+ } & Struct;
274
+ readonly isPureKilled: boolean;
275
+ readonly asPureKilled: {
276
+ readonly pure: AccountId32;
277
+ readonly spawner: AccountId32;
278
+ readonly proxyType: ArgonRuntimeProxyType;
279
+ readonly disambiguationIndex: u16;
280
+ } & Struct;
281
+ readonly isAnnounced: boolean;
282
+ readonly asAnnounced: {
283
+ readonly real: AccountId32;
284
+ readonly proxy: AccountId32;
285
+ readonly callHash: H256;
286
+ } & Struct;
287
+ readonly isProxyAdded: boolean;
288
+ readonly asProxyAdded: {
289
+ readonly delegator: AccountId32;
290
+ readonly delegatee: AccountId32;
291
+ readonly proxyType: ArgonRuntimeProxyType;
292
+ readonly delay: u32;
293
+ } & Struct;
294
+ readonly isProxyRemoved: boolean;
295
+ readonly asProxyRemoved: {
296
+ readonly delegator: AccountId32;
297
+ readonly delegatee: AccountId32;
298
+ readonly proxyType: ArgonRuntimeProxyType;
299
+ readonly delay: u32;
300
+ } & Struct;
301
+ readonly isDepositPoked: boolean;
302
+ readonly asDepositPoked: {
303
+ readonly who: AccountId32;
304
+ readonly kind: PalletProxyDepositKind;
305
+ readonly oldDeposit: u128;
306
+ readonly newDeposit: u128;
307
+ } & Struct;
308
+ readonly type: 'ProxyExecuted' | 'PureCreated' | 'PureKilled' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved' | 'DepositPoked';
309
+ }
310
+
311
+ /** @name ArgonRuntimeProxyType (38) */
312
+ interface ArgonRuntimeProxyType extends Enum {
313
+ readonly isAny: boolean;
314
+ readonly isNonTransfer: boolean;
315
+ readonly isPriceIndex: boolean;
316
+ readonly isMiningBid: boolean;
317
+ readonly isMiningBidRealPaysFee: boolean;
318
+ readonly isBitcoin: boolean;
319
+ readonly isVaultAdmin: boolean;
320
+ readonly isBitcoinInitializeFor: boolean;
321
+ readonly type: 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor';
322
+ }
323
+
324
+ /** @name PalletProxyDepositKind (40) */
325
+ interface PalletProxyDepositKind extends Enum {
326
+ readonly isProxies: boolean;
327
+ readonly isAnnouncements: boolean;
328
+ readonly type: 'Proxies' | 'Announcements';
329
+ }
330
+
331
+ /** @name PalletMiningSlotEvent (41) */
332
+ interface PalletMiningSlotEvent extends Enum {
333
+ readonly isNewMiners: boolean;
334
+ readonly asNewMiners: {
335
+ readonly newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
336
+ readonly releasedMiners: u32;
337
+ readonly frameId: u64;
338
+ } & Struct;
339
+ readonly isSlotBidderAdded: boolean;
340
+ readonly asSlotBidderAdded: {
341
+ readonly accountId: AccountId32;
342
+ readonly bidAmount: u128;
343
+ readonly index: u32;
344
+ } & Struct;
345
+ readonly isSlotBidderDropped: boolean;
346
+ readonly asSlotBidderDropped: {
347
+ readonly accountId: AccountId32;
348
+ readonly preservedArgonotHold: bool;
349
+ } & Struct;
350
+ readonly isReleaseMinerSeatError: boolean;
351
+ readonly asReleaseMinerSeatError: {
352
+ readonly accountId: AccountId32;
353
+ readonly error: SpRuntimeDispatchError;
354
+ } & Struct;
355
+ readonly isMiningConfigurationUpdated: boolean;
356
+ readonly asMiningConfigurationUpdated: {
357
+ readonly ticksBeforeBidEndForVrfClose: u64;
358
+ readonly ticksBetweenSlots: u64;
359
+ readonly slotBiddingStartAfterTicks: u64;
360
+ } & Struct;
361
+ readonly isMiningBidsClosed: boolean;
362
+ readonly asMiningBidsClosed: {
363
+ readonly frameId: u64;
364
+ } & Struct;
365
+ readonly isReleaseBidError: boolean;
366
+ readonly asReleaseBidError: {
367
+ readonly accountId: AccountId32;
368
+ readonly error: SpRuntimeDispatchError;
369
+ } & Struct;
370
+ readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderDropped' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated' | 'MiningBidsClosed' | 'ReleaseBidError';
371
+ }
372
+
373
+ /** @name ArgonPrimitivesBlockSealMiningRegistration (43) */
374
+ interface ArgonPrimitivesBlockSealMiningRegistration extends Struct {
375
+ readonly accountId: AccountId32;
376
+ readonly externalFundingAccount: Option<AccountId32>;
377
+ readonly bid: Compact<u128>;
378
+ readonly argonots: Compact<u128>;
379
+ readonly authorityKeys: ArgonRuntimeSessionKeys;
380
+ readonly startingFrameId: Compact<u64>;
381
+ readonly bidAtTick: Compact<u64>;
382
+ }
383
+
384
+ /** @name ArgonRuntimeSessionKeys (44) */
385
+ interface ArgonRuntimeSessionKeys extends Struct {
386
+ readonly grandpa: SpConsensusGrandpaAppPublic;
387
+ readonly blockSealAuthority: ArgonPrimitivesBlockSealAppPublic;
388
+ }
389
+
390
+ /** @name SpConsensusGrandpaAppPublic (45) */
391
+ interface SpConsensusGrandpaAppPublic extends U8aFixed {}
392
+
393
+ /** @name ArgonPrimitivesBlockSealAppPublic (46) */
394
+ interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {}
395
+
396
+ /** @name PalletBitcoinUtxosEvent (50) */
397
+ interface PalletBitcoinUtxosEvent extends Enum {
398
+ readonly isUtxoVerified: boolean;
399
+ readonly asUtxoVerified: {
400
+ readonly utxoId: u64;
401
+ readonly satoshisReceived: u64;
402
+ } & Struct;
403
+ readonly isUtxoRejected: boolean;
404
+ readonly asUtxoRejected: {
405
+ readonly utxoId: u64;
406
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
407
+ readonly rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
408
+ readonly satoshisReceived: u64;
409
+ } & Struct;
410
+ readonly isUtxoSpent: boolean;
411
+ readonly asUtxoSpent: {
412
+ readonly utxoId: u64;
413
+ readonly blockHeight: u64;
414
+ } & Struct;
415
+ readonly isUtxoUnwatched: boolean;
416
+ readonly asUtxoUnwatched: {
417
+ readonly utxoId: u64;
418
+ } & Struct;
419
+ readonly isUtxoSpentError: boolean;
420
+ readonly asUtxoSpentError: {
421
+ readonly utxoId: u64;
422
+ readonly error: SpRuntimeDispatchError;
423
+ } & Struct;
424
+ readonly isUtxoVerifiedError: boolean;
425
+ readonly asUtxoVerifiedError: {
426
+ readonly utxoId: u64;
427
+ readonly error: SpRuntimeDispatchError;
428
+ } & Struct;
429
+ readonly isUtxoRejectedError: boolean;
430
+ readonly asUtxoRejectedError: {
431
+ readonly utxoId: u64;
432
+ readonly error: SpRuntimeDispatchError;
433
+ } & Struct;
434
+ readonly type: 'UtxoVerified' | 'UtxoRejected' | 'UtxoSpent' | 'UtxoUnwatched' | 'UtxoSpentError' | 'UtxoVerifiedError' | 'UtxoRejectedError';
435
+ }
436
+
437
+ /** @name ArgonPrimitivesBitcoinUtxoRef (51) */
438
+ interface ArgonPrimitivesBitcoinUtxoRef extends Struct {
439
+ readonly txid: ArgonPrimitivesBitcoinH256Le;
440
+ readonly outputIndex: Compact<u32>;
441
+ }
442
+
443
+ /** @name ArgonPrimitivesBitcoinH256Le (52) */
444
+ interface ArgonPrimitivesBitcoinH256Le extends U8aFixed {}
445
+
446
+ /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (54) */
447
+ interface ArgonPrimitivesBitcoinBitcoinRejectedReason extends Enum {
448
+ readonly isSatoshisOutsideAcceptedRange: boolean;
449
+ readonly isSpent: boolean;
450
+ readonly isVerificationExpired: boolean;
451
+ readonly isAlreadyVerified: boolean;
452
+ readonly type: 'SatoshisOutsideAcceptedRange' | 'Spent' | 'VerificationExpired' | 'AlreadyVerified';
453
+ }
454
+
455
+ /** @name PalletVaultsEvent (55) */
456
+ interface PalletVaultsEvent extends Enum {
457
+ readonly isVaultCreated: boolean;
458
+ readonly asVaultCreated: {
459
+ readonly vaultId: u32;
460
+ readonly securitization: u128;
461
+ readonly securitizationRatio: u128;
462
+ readonly operatorAccountId: AccountId32;
463
+ readonly openedTick: u64;
464
+ } & Struct;
465
+ readonly isVaultModified: boolean;
466
+ readonly asVaultModified: {
467
+ readonly vaultId: u32;
468
+ readonly securitization: u128;
469
+ readonly securitizationTarget: u128;
470
+ readonly securitizationRatio: u128;
471
+ } & Struct;
472
+ readonly isVaultTermsChangeScheduled: boolean;
473
+ readonly asVaultTermsChangeScheduled: {
474
+ readonly vaultId: u32;
475
+ readonly changeTick: u64;
476
+ } & Struct;
477
+ readonly isVaultTermsChanged: boolean;
478
+ readonly asVaultTermsChanged: {
479
+ readonly vaultId: u32;
480
+ } & Struct;
481
+ readonly isVaultClosed: boolean;
482
+ readonly asVaultClosed: {
483
+ readonly vaultId: u32;
484
+ readonly securitizationRemaining: u128;
485
+ readonly securitizationReleased: u128;
486
+ } & Struct;
487
+ readonly isVaultBitcoinXpubChange: boolean;
488
+ readonly asVaultBitcoinXpubChange: {
489
+ readonly vaultId: u32;
490
+ } & Struct;
491
+ readonly isVaultRevenueUncollected: boolean;
492
+ readonly asVaultRevenueUncollected: {
493
+ readonly vaultId: u32;
494
+ readonly frameId: u64;
495
+ readonly amount: u128;
496
+ } & Struct;
497
+ readonly isVaultCollected: boolean;
498
+ readonly asVaultCollected: {
499
+ readonly vaultId: u32;
500
+ readonly revenue: u128;
501
+ } & Struct;
502
+ readonly isFundsLocked: boolean;
503
+ readonly asFundsLocked: {
504
+ readonly vaultId: u32;
505
+ readonly locker: AccountId32;
506
+ readonly liquidityPromised: u128;
507
+ readonly isRatchet: bool;
508
+ readonly feeRevenue: u128;
509
+ readonly didUseFeeCoupon: bool;
510
+ } & Struct;
511
+ readonly isFundLockCanceled: boolean;
512
+ readonly asFundLockCanceled: {
513
+ readonly vaultId: u32;
514
+ readonly amount: u128;
515
+ } & Struct;
516
+ readonly isFundsScheduledForRelease: boolean;
517
+ readonly asFundsScheduledForRelease: {
518
+ readonly vaultId: u32;
519
+ readonly securitization: u128;
520
+ readonly releaseHeight: u64;
521
+ } & Struct;
522
+ readonly isLostBitcoinCompensated: boolean;
523
+ readonly asLostBitcoinCompensated: {
524
+ readonly vaultId: u32;
525
+ readonly beneficiary: AccountId32;
526
+ readonly toBeneficiary: u128;
527
+ readonly burned: u128;
528
+ } & Struct;
529
+ readonly isFundsReleased: boolean;
530
+ readonly asFundsReleased: {
531
+ readonly vaultId: u32;
532
+ readonly securitization: u128;
533
+ } & Struct;
534
+ readonly isFundsReleasedError: boolean;
535
+ readonly asFundsReleasedError: {
536
+ readonly vaultId: u32;
537
+ readonly error: SpRuntimeDispatchError;
538
+ } & Struct;
539
+ readonly isTreasuryRecordingError: boolean;
540
+ readonly asTreasuryRecordingError: {
541
+ readonly vaultId: u32;
542
+ readonly frameId: u64;
543
+ readonly vaultEarnings: u128;
544
+ readonly error: SpRuntimeDispatchError;
545
+ } & Struct;
546
+ readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'VaultRevenueUncollected' | 'VaultCollected' | 'FundsLocked' | 'FundLockCanceled' | 'FundsScheduledForRelease' | 'LostBitcoinCompensated' | 'FundsReleased' | 'FundsReleasedError' | 'TreasuryRecordingError';
547
+ }
548
+
549
+ /** @name PalletBitcoinLocksEvent (57) */
550
+ interface PalletBitcoinLocksEvent extends Enum {
551
+ readonly isBitcoinLockCreated: boolean;
552
+ readonly asBitcoinLockCreated: {
553
+ readonly utxoId: u64;
554
+ readonly vaultId: u32;
555
+ readonly liquidityPromised: u128;
556
+ readonly securitization: u128;
557
+ readonly lockedTargetPrice: u128;
558
+ readonly accountId: AccountId32;
559
+ readonly securityFee: u128;
560
+ } & Struct;
561
+ readonly isBitcoinLockRatcheted: boolean;
562
+ readonly asBitcoinLockRatcheted: {
563
+ readonly utxoId: u64;
564
+ readonly vaultId: u32;
565
+ readonly liquidityPromised: u128;
566
+ readonly oldTargetPrice: u128;
567
+ readonly securityFee: u128;
568
+ readonly newTargetPrice: u128;
569
+ readonly amountBurned: u128;
570
+ readonly accountId: AccountId32;
571
+ } & Struct;
572
+ readonly isBitcoinLockBurned: boolean;
573
+ readonly asBitcoinLockBurned: {
574
+ readonly utxoId: u64;
575
+ readonly vaultId: u32;
576
+ readonly wasUtxoSpent: bool;
577
+ } & Struct;
578
+ readonly isBitcoinUtxoCosignRequested: boolean;
579
+ readonly asBitcoinUtxoCosignRequested: {
580
+ readonly utxoId: u64;
581
+ readonly vaultId: u32;
582
+ } & Struct;
583
+ readonly isBitcoinUtxoCosigned: boolean;
584
+ readonly asBitcoinUtxoCosigned: {
585
+ readonly utxoId: u64;
586
+ readonly vaultId: u32;
587
+ readonly signature: Bytes;
588
+ } & Struct;
589
+ readonly isBitcoinSpentAfterRelease: boolean;
590
+ readonly asBitcoinSpentAfterRelease: {
591
+ readonly utxoId: u64;
592
+ readonly vaultId: u32;
593
+ } & Struct;
594
+ readonly isBitcoinCosignPastDue: boolean;
595
+ readonly asBitcoinCosignPastDue: {
596
+ readonly utxoId: u64;
597
+ readonly vaultId: u32;
598
+ readonly compensationAmount: u128;
599
+ readonly compensatedAccountId: AccountId32;
600
+ } & Struct;
601
+ readonly isCosignOverdueError: boolean;
602
+ readonly asCosignOverdueError: {
603
+ readonly utxoId: u64;
604
+ readonly error: SpRuntimeDispatchError;
605
+ } & Struct;
606
+ readonly isLockExpirationError: boolean;
607
+ readonly asLockExpirationError: {
608
+ readonly utxoId: u64;
609
+ readonly error: SpRuntimeDispatchError;
610
+ } & Struct;
611
+ readonly isOrphanedUtxoReceived: boolean;
612
+ readonly asOrphanedUtxoReceived: {
613
+ readonly utxoId: u64;
614
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
615
+ readonly vaultId: u32;
616
+ readonly satoshis: u64;
617
+ } & Struct;
618
+ readonly isOrphanedUtxoReleaseRequested: boolean;
619
+ readonly asOrphanedUtxoReleaseRequested: {
620
+ readonly utxoId: u64;
621
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
622
+ readonly vaultId: u32;
623
+ readonly accountId: AccountId32;
624
+ } & Struct;
625
+ readonly isOrphanedUtxoCosigned: boolean;
626
+ readonly asOrphanedUtxoCosigned: {
627
+ readonly utxoId: u64;
628
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
629
+ readonly vaultId: u32;
630
+ readonly accountId: AccountId32;
631
+ readonly signature: Bytes;
632
+ } & Struct;
633
+ readonly isUtxoFundedFromCandidate: boolean;
634
+ readonly asUtxoFundedFromCandidate: {
635
+ readonly utxoId: u64;
636
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
637
+ readonly vaultId: u32;
638
+ readonly accountId: AccountId32;
639
+ } & Struct;
640
+ readonly isSecuritizationIncreased: boolean;
641
+ readonly asSecuritizationIncreased: {
642
+ readonly utxoId: u64;
643
+ readonly vaultId: u32;
644
+ readonly newSatoshis: u64;
645
+ readonly accountId: AccountId32;
646
+ } & Struct;
647
+ readonly type: 'BitcoinLockCreated' | 'BitcoinLockRatcheted' | 'BitcoinLockBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinSpentAfterRelease' | 'BitcoinCosignPastDue' | 'CosignOverdueError' | 'LockExpirationError' | 'OrphanedUtxoReceived' | 'OrphanedUtxoReleaseRequested' | 'OrphanedUtxoCosigned' | 'UtxoFundedFromCandidate' | 'SecuritizationIncreased';
648
+ }
649
+
650
+ /** @name PalletNotariesEvent (60) */
651
+ interface PalletNotariesEvent extends Enum {
652
+ readonly isNotaryProposed: boolean;
653
+ readonly asNotaryProposed: {
654
+ readonly operatorAccount: AccountId32;
655
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
656
+ readonly expires: u32;
657
+ } & Struct;
658
+ readonly isNotaryActivated: boolean;
659
+ readonly asNotaryActivated: {
660
+ readonly notary: ArgonPrimitivesNotaryNotaryRecord;
661
+ } & Struct;
662
+ readonly isNotaryMetaUpdateQueued: boolean;
663
+ readonly asNotaryMetaUpdateQueued: {
664
+ readonly notaryId: u32;
665
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
666
+ readonly effectiveTick: u64;
667
+ } & Struct;
668
+ readonly isNotaryMetaUpdated: boolean;
669
+ readonly asNotaryMetaUpdated: {
670
+ readonly notaryId: u32;
671
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
672
+ } & Struct;
673
+ readonly isNotaryMetaUpdateError: boolean;
674
+ readonly asNotaryMetaUpdateError: {
675
+ readonly notaryId: u32;
676
+ readonly error: SpRuntimeDispatchError;
677
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
678
+ } & Struct;
679
+ readonly type: 'NotaryProposed' | 'NotaryActivated' | 'NotaryMetaUpdateQueued' | 'NotaryMetaUpdated' | 'NotaryMetaUpdateError';
680
+ }
681
+
682
+ /** @name ArgonPrimitivesNotaryNotaryMeta (61) */
683
+ interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
684
+ readonly name: Bytes;
685
+ readonly public: U8aFixed;
686
+ readonly hosts: Vec<Bytes>;
687
+ }
688
+
689
+ /** @name ArgonPrimitivesNotaryNotaryRecord (68) */
690
+ interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
691
+ readonly notaryId: Compact<u32>;
692
+ readonly operatorAccountId: AccountId32;
693
+ readonly activatedBlock: Compact<u32>;
694
+ readonly metaUpdatedBlock: Compact<u32>;
695
+ readonly metaUpdatedTick: Compact<u64>;
696
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
697
+ }
698
+
699
+ /** @name PalletNotebookEvent (69) */
700
+ interface PalletNotebookEvent extends Enum {
701
+ readonly isNotebookSubmitted: boolean;
702
+ readonly asNotebookSubmitted: {
703
+ readonly notaryId: u32;
704
+ readonly notebookNumber: u32;
705
+ } & Struct;
706
+ readonly isNotebookAuditFailure: boolean;
707
+ readonly asNotebookAuditFailure: {
708
+ readonly notaryId: u32;
709
+ readonly notebookNumber: u32;
710
+ readonly notebookHash: H256;
711
+ readonly firstFailureReason: ArgonNotaryAuditErrorVerifyError;
712
+ } & Struct;
713
+ readonly isNotebookReadyForReprocess: boolean;
714
+ readonly asNotebookReadyForReprocess: {
715
+ readonly notaryId: u32;
716
+ readonly notebookNumber: u32;
717
+ } & Struct;
718
+ readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure' | 'NotebookReadyForReprocess';
719
+ }
720
+
721
+ /** @name ArgonNotaryAuditErrorVerifyError (70) */
722
+ interface ArgonNotaryAuditErrorVerifyError extends Enum {
723
+ readonly isMissingAccountOrigin: boolean;
724
+ readonly asMissingAccountOrigin: {
725
+ readonly accountId: AccountId32;
726
+ readonly accountType: ArgonPrimitivesAccountAccountType;
727
+ } & Struct;
728
+ readonly isHistoryLookupError: boolean;
729
+ readonly asHistoryLookupError: {
730
+ readonly source: ArgonNotaryAuditAccountHistoryLookupError;
731
+ } & Struct;
732
+ readonly isInvalidAccountChangelist: boolean;
733
+ readonly isInvalidChainTransfersList: boolean;
734
+ readonly isInvalidBalanceChangeRoot: boolean;
735
+ readonly isInvalidHeaderTaxRecorded: boolean;
736
+ readonly isInvalidPreviousNonce: boolean;
737
+ readonly isInvalidPreviousBalance: boolean;
738
+ readonly isInvalidPreviousAccountOrigin: boolean;
739
+ readonly isInvalidPreviousBalanceChangeNotebook: boolean;
740
+ readonly isInvalidBalanceChange: boolean;
741
+ readonly isInvalidBalanceChangeSignature: boolean;
742
+ readonly asInvalidBalanceChangeSignature: {
743
+ readonly changeIndex: u16;
744
+ } & Struct;
745
+ readonly isInvalidNoteRecipients: boolean;
746
+ readonly isBalanceChangeError: boolean;
747
+ readonly asBalanceChangeError: {
748
+ readonly changeIndex: u16;
749
+ readonly noteIndex: u16;
750
+ readonly message: Bytes;
751
+ } & Struct;
752
+ readonly isInvalidNetBalanceChangeset: boolean;
753
+ readonly isInsufficientBalance: boolean;
754
+ readonly asInsufficientBalance: {
755
+ readonly balance: u128;
756
+ readonly amount: u128;
757
+ readonly noteIndex: u16;
758
+ readonly changeIndex: u16;
759
+ } & Struct;
760
+ readonly isExceededMaxBalance: boolean;
761
+ readonly asExceededMaxBalance: {
762
+ readonly balance: u128;
763
+ readonly amount: u128;
764
+ readonly noteIndex: u16;
765
+ readonly changeIndex: u16;
766
+ } & Struct;
767
+ readonly isBalanceChangeMismatch: boolean;
768
+ readonly asBalanceChangeMismatch: {
769
+ readonly changeIndex: u16;
770
+ readonly providedBalance: u128;
771
+ readonly calculatedBalance: i128;
772
+ } & Struct;
773
+ readonly isBalanceChangeNotNetZero: boolean;
774
+ readonly asBalanceChangeNotNetZero: {
775
+ readonly sent: u128;
776
+ readonly claimed: u128;
777
+ } & Struct;
778
+ readonly isInvalidDomainLeaseAllocation: boolean;
779
+ readonly isTaxBalanceChangeNotNetZero: boolean;
780
+ readonly asTaxBalanceChangeNotNetZero: {
781
+ readonly sent: u128;
782
+ readonly claimed: u128;
783
+ } & Struct;
784
+ readonly isMissingBalanceProof: boolean;
785
+ readonly isInvalidPreviousBalanceProof: boolean;
786
+ readonly isInvalidNotebookHash: boolean;
787
+ readonly isInvalidNotebookHeaderHash: boolean;
788
+ readonly isInvalidNotebookVersion: boolean;
789
+ readonly isDuplicateChainTransfer: boolean;
790
+ readonly isDuplicatedAccountOriginUid: boolean;
791
+ readonly isInvalidNotarySignature: boolean;
792
+ readonly isInvalidSecretProvided: boolean;
793
+ readonly isNotebookTooOld: boolean;
794
+ readonly isCatchupNotebooksMissing: boolean;
795
+ readonly isDecodeError: boolean;
796
+ readonly isAccountChannelHoldDoesntExist: boolean;
797
+ readonly isAccountAlreadyHasChannelHold: boolean;
798
+ readonly isChannelHoldNotReadyForClaim: boolean;
799
+ readonly asChannelHoldNotReadyForClaim: {
800
+ readonly currentTick: u64;
801
+ readonly claimTick: u64;
802
+ } & Struct;
803
+ readonly isAccountLocked: boolean;
804
+ readonly isMissingChannelHoldNote: boolean;
805
+ readonly isInvalidChannelHoldNote: boolean;
806
+ readonly isInvalidChannelHoldClaimers: boolean;
807
+ readonly isChannelHoldNoteBelowMinimum: boolean;
808
+ readonly isInvalidTaxNoteAccount: boolean;
809
+ readonly isInvalidTaxOperation: boolean;
810
+ readonly isInsufficientTaxIncluded: boolean;
811
+ readonly asInsufficientTaxIncluded: {
812
+ readonly taxSent: u128;
813
+ readonly taxOwed: u128;
814
+ readonly accountId: AccountId32;
815
+ } & Struct;
816
+ readonly isInsufficientBlockVoteTax: boolean;
817
+ readonly isIneligibleTaxVoter: boolean;
818
+ readonly isBlockVoteInvalidSignature: boolean;
819
+ readonly isInvalidBlockVoteAllocation: boolean;
820
+ readonly isInvalidBlockVoteRoot: boolean;
821
+ readonly isInvalidBlockVotesCount: boolean;
822
+ readonly isInvalidBlockVotingPower: boolean;
823
+ readonly isInvalidBlockVoteList: boolean;
824
+ readonly isInvalidComputeProof: boolean;
825
+ readonly isInvalidBlockVoteSource: boolean;
826
+ readonly isInsufficientBlockVoteMinimum: boolean;
827
+ readonly isInvalidBlockVoteTick: boolean;
828
+ readonly asInvalidBlockVoteTick: {
829
+ readonly tick: u64;
830
+ readonly notebookTick: u64;
831
+ } & Struct;
832
+ readonly isInvalidDefaultBlockVote: boolean;
833
+ readonly isInvalidDefaultBlockVoteAuthor: boolean;
834
+ readonly asInvalidDefaultBlockVoteAuthor: {
835
+ readonly author: AccountId32;
836
+ readonly expected: AccountId32;
837
+ } & Struct;
838
+ readonly isNoDefaultBlockVote: boolean;
839
+ readonly type: 'MissingAccountOrigin' | 'HistoryLookupError' | 'InvalidAccountChangelist' | 'InvalidChainTransfersList' | 'InvalidBalanceChangeRoot' | 'InvalidHeaderTaxRecorded' | 'InvalidPreviousNonce' | 'InvalidPreviousBalance' | 'InvalidPreviousAccountOrigin' | 'InvalidPreviousBalanceChangeNotebook' | 'InvalidBalanceChange' | 'InvalidBalanceChangeSignature' | 'InvalidNoteRecipients' | 'BalanceChangeError' | 'InvalidNetBalanceChangeset' | 'InsufficientBalance' | 'ExceededMaxBalance' | 'BalanceChangeMismatch' | 'BalanceChangeNotNetZero' | 'InvalidDomainLeaseAllocation' | 'TaxBalanceChangeNotNetZero' | 'MissingBalanceProof' | 'InvalidPreviousBalanceProof' | 'InvalidNotebookHash' | 'InvalidNotebookHeaderHash' | 'InvalidNotebookVersion' | 'DuplicateChainTransfer' | 'DuplicatedAccountOriginUid' | 'InvalidNotarySignature' | 'InvalidSecretProvided' | 'NotebookTooOld' | 'CatchupNotebooksMissing' | 'DecodeError' | 'AccountChannelHoldDoesntExist' | 'AccountAlreadyHasChannelHold' | 'ChannelHoldNotReadyForClaim' | 'AccountLocked' | 'MissingChannelHoldNote' | 'InvalidChannelHoldNote' | 'InvalidChannelHoldClaimers' | 'ChannelHoldNoteBelowMinimum' | 'InvalidTaxNoteAccount' | 'InvalidTaxOperation' | 'InsufficientTaxIncluded' | 'InsufficientBlockVoteTax' | 'IneligibleTaxVoter' | 'BlockVoteInvalidSignature' | 'InvalidBlockVoteAllocation' | 'InvalidBlockVoteRoot' | 'InvalidBlockVotesCount' | 'InvalidBlockVotingPower' | 'InvalidBlockVoteList' | 'InvalidComputeProof' | 'InvalidBlockVoteSource' | 'InsufficientBlockVoteMinimum' | 'InvalidBlockVoteTick' | 'InvalidDefaultBlockVote' | 'InvalidDefaultBlockVoteAuthor' | 'NoDefaultBlockVote';
840
+ }
841
+
842
+ /** @name ArgonPrimitivesAccountAccountType (71) */
843
+ interface ArgonPrimitivesAccountAccountType extends Enum {
844
+ readonly isTax: boolean;
845
+ readonly isDeposit: boolean;
846
+ readonly type: 'Tax' | 'Deposit';
847
+ }
848
+
849
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (72) */
850
+ interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
851
+ readonly isRootNotFound: boolean;
852
+ readonly isLastChangeNotFound: boolean;
853
+ readonly isInvalidTransferToLocalchain: boolean;
854
+ readonly isBlockSpecificationNotFound: boolean;
855
+ readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
856
+ }
857
+
858
+ /** @name PalletLocalchainTransferEvent (76) */
859
+ interface PalletLocalchainTransferEvent extends Enum {
860
+ readonly isTransferToLocalchain: boolean;
861
+ readonly asTransferToLocalchain: {
862
+ readonly accountId: AccountId32;
863
+ readonly amount: u128;
864
+ readonly transferId: u32;
865
+ readonly notaryId: u32;
866
+ readonly expirationTick: u64;
867
+ } & Struct;
868
+ readonly isTransferToLocalchainExpired: boolean;
869
+ readonly asTransferToLocalchainExpired: {
870
+ readonly accountId: AccountId32;
871
+ readonly transferId: u32;
872
+ readonly notaryId: u32;
873
+ } & Struct;
874
+ readonly isTransferFromLocalchain: boolean;
875
+ readonly asTransferFromLocalchain: {
876
+ readonly accountId: AccountId32;
877
+ readonly amount: u128;
878
+ readonly notaryId: u32;
879
+ } & Struct;
880
+ readonly isTransferFromLocalchainError: boolean;
881
+ readonly asTransferFromLocalchainError: {
882
+ readonly accountId: AccountId32;
883
+ readonly amount: u128;
884
+ readonly notaryId: u32;
885
+ readonly notebookNumber: u32;
886
+ readonly error: SpRuntimeDispatchError;
887
+ } & Struct;
888
+ readonly isTransferToLocalchainRefundError: boolean;
889
+ readonly asTransferToLocalchainRefundError: {
890
+ readonly accountId: AccountId32;
891
+ readonly transferId: u32;
892
+ readonly notaryId: u32;
893
+ readonly notebookNumber: u32;
894
+ readonly error: SpRuntimeDispatchError;
895
+ } & Struct;
896
+ readonly isPossibleInvalidLocalchainTransferAllowed: boolean;
897
+ readonly asPossibleInvalidLocalchainTransferAllowed: {
898
+ readonly transferId: u32;
899
+ readonly notaryId: u32;
900
+ readonly notebookNumber: u32;
901
+ } & Struct;
902
+ readonly isTaxationError: boolean;
903
+ readonly asTaxationError: {
904
+ readonly notaryId: u32;
905
+ readonly notebookNumber: u32;
906
+ readonly tax: u128;
907
+ readonly error: SpRuntimeDispatchError;
908
+ } & Struct;
909
+ readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferFromLocalchain' | 'TransferFromLocalchainError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidLocalchainTransferAllowed' | 'TaxationError';
910
+ }
911
+
912
+ /** @name PalletBlockSealSpecEvent (77) */
913
+ interface PalletBlockSealSpecEvent extends Enum {
914
+ readonly isVoteMinimumAdjusted: boolean;
915
+ readonly asVoteMinimumAdjusted: {
916
+ readonly expectedBlockVotes: u128;
917
+ readonly actualBlockVotes: u128;
918
+ readonly startVoteMinimum: u128;
919
+ readonly newVoteMinimum: u128;
920
+ } & Struct;
921
+ readonly isComputeDifficultyAdjusted: boolean;
922
+ readonly asComputeDifficultyAdjusted: {
923
+ readonly expectedBlockTime: u64;
924
+ readonly actualBlockTime: u64;
925
+ readonly startDifficulty: u128;
926
+ readonly newDifficulty: u128;
927
+ } & Struct;
928
+ readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
929
+ }
930
+
931
+ /** @name PalletDomainsEvent (78) */
932
+ interface PalletDomainsEvent extends Enum {
933
+ readonly isZoneRecordUpdated: boolean;
934
+ readonly asZoneRecordUpdated: {
935
+ readonly domainHash: H256;
936
+ readonly zoneRecord: ArgonPrimitivesDomainZoneRecord;
937
+ } & Struct;
938
+ readonly isDomainRegistered: boolean;
939
+ readonly asDomainRegistered: {
940
+ readonly domainHash: H256;
941
+ readonly registration: PalletDomainsDomainRegistration;
942
+ } & Struct;
943
+ readonly isDomainRenewed: boolean;
944
+ readonly asDomainRenewed: {
945
+ readonly domainHash: H256;
946
+ } & Struct;
947
+ readonly isDomainExpired: boolean;
948
+ readonly asDomainExpired: {
949
+ readonly domainHash: H256;
950
+ } & Struct;
951
+ readonly isDomainRegistrationCanceled: boolean;
952
+ readonly asDomainRegistrationCanceled: {
953
+ readonly domainHash: H256;
954
+ readonly registration: PalletDomainsDomainRegistration;
955
+ } & Struct;
956
+ readonly isDomainRegistrationError: boolean;
957
+ readonly asDomainRegistrationError: {
958
+ readonly domainHash: H256;
959
+ readonly accountId: AccountId32;
960
+ readonly error: SpRuntimeDispatchError;
961
+ } & Struct;
962
+ readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
963
+ }
964
+
965
+ /** @name ArgonPrimitivesDomainZoneRecord (79) */
966
+ interface ArgonPrimitivesDomainZoneRecord extends Struct {
967
+ readonly paymentAccount: AccountId32;
968
+ readonly notaryId: u32;
969
+ readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
970
+ }
971
+
972
+ /** @name ArgonPrimitivesDomainSemver (81) */
973
+ interface ArgonPrimitivesDomainSemver extends Struct {
974
+ readonly major: u32;
975
+ readonly minor: u32;
976
+ readonly patch: u32;
977
+ }
978
+
979
+ /** @name ArgonPrimitivesDomainVersionHost (82) */
980
+ interface ArgonPrimitivesDomainVersionHost extends Struct {
981
+ readonly datastoreId: Bytes;
982
+ readonly host: Bytes;
983
+ }
984
+
985
+ /** @name PalletDomainsDomainRegistration (87) */
986
+ interface PalletDomainsDomainRegistration extends Struct {
987
+ readonly accountId: AccountId32;
988
+ readonly registeredAtTick: u64;
989
+ }
990
+
991
+ /** @name PalletPriceIndexEvent (88) */
992
+ interface PalletPriceIndexEvent extends Enum {
993
+ readonly isNewIndex: boolean;
994
+ readonly isOperatorChanged: boolean;
995
+ readonly asOperatorChanged: {
996
+ readonly operatorId: AccountId32;
997
+ } & Struct;
998
+ readonly type: 'NewIndex' | 'OperatorChanged';
999
+ }
1000
+
1001
+ /** @name PalletGrandpaEvent (89) */
1002
+ interface PalletGrandpaEvent extends Enum {
1003
+ readonly isNewAuthorities: boolean;
1004
+ readonly asNewAuthorities: {
1005
+ readonly authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
1006
+ } & Struct;
1007
+ readonly isPaused: boolean;
1008
+ readonly isResumed: boolean;
1009
+ readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
1010
+ }
1011
+
1012
+ /** @name PalletBlockRewardsEvent (92) */
1013
+ interface PalletBlockRewardsEvent extends Enum {
1014
+ readonly isRewardCreated: boolean;
1015
+ readonly asRewardCreated: {
1016
+ readonly rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
1017
+ } & Struct;
1018
+ readonly isRewardCreateError: boolean;
1019
+ readonly asRewardCreateError: {
1020
+ readonly accountId: AccountId32;
1021
+ readonly argons: Option<u128>;
1022
+ readonly ownership: Option<u128>;
1023
+ readonly error: SpRuntimeDispatchError;
1024
+ } & Struct;
1025
+ readonly type: 'RewardCreated' | 'RewardCreateError';
1026
+ }
1027
+
1028
+ /** @name ArgonPrimitivesBlockSealBlockPayout (94) */
1029
+ interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
1030
+ readonly accountId: AccountId32;
1031
+ readonly ownership: Compact<u128>;
1032
+ readonly argons: Compact<u128>;
1033
+ readonly rewardType: ArgonPrimitivesBlockSealBlockRewardType;
1034
+ readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
1035
+ }
1036
+
1037
+ /** @name ArgonPrimitivesBlockSealBlockRewardType (95) */
1038
+ interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
1039
+ readonly isMiner: boolean;
1040
+ readonly isVoter: boolean;
1041
+ readonly isProfitShare: boolean;
1042
+ readonly type: 'Miner' | 'Voter' | 'ProfitShare';
1043
+ }
1044
+
1045
+ /** @name PalletMintEvent (98) */
1046
+ interface PalletMintEvent extends Enum {
1047
+ readonly isBitcoinMint: boolean;
1048
+ readonly asBitcoinMint: {
1049
+ readonly accountId: AccountId32;
1050
+ readonly utxoId: Option<u64>;
1051
+ readonly amount: u128;
1052
+ } & Struct;
1053
+ readonly isMiningMint: boolean;
1054
+ readonly asMiningMint: {
1055
+ readonly amount: u128;
1056
+ readonly perMiner: u128;
1057
+ readonly argonCpi: i128;
1058
+ readonly liquidity: u128;
1059
+ } & Struct;
1060
+ readonly isMintError: boolean;
1061
+ readonly asMintError: {
1062
+ readonly mintType: PalletMintMintType;
1063
+ readonly accountId: AccountId32;
1064
+ readonly utxoId: Option<u64>;
1065
+ readonly amount: u128;
1066
+ readonly error: SpRuntimeDispatchError;
1067
+ } & Struct;
1068
+ readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
1069
+ }
1070
+
1071
+ /** @name PalletMintMintType (101) */
1072
+ interface PalletMintMintType extends Enum {
1073
+ readonly isBitcoin: boolean;
1074
+ readonly isMining: boolean;
1075
+ readonly type: 'Bitcoin' | 'Mining';
1076
+ }
1077
+
1078
+ /** @name PalletBalancesEvent (102) */
1079
+ interface PalletBalancesEvent extends Enum {
1080
+ readonly isEndowed: boolean;
1081
+ readonly asEndowed: {
1082
+ readonly account: AccountId32;
1083
+ readonly freeBalance: u128;
1084
+ } & Struct;
1085
+ readonly isDustLost: boolean;
1086
+ readonly asDustLost: {
1087
+ readonly account: AccountId32;
1088
+ readonly amount: u128;
1089
+ } & Struct;
1090
+ readonly isTransfer: boolean;
1091
+ readonly asTransfer: {
1092
+ readonly from: AccountId32;
1093
+ readonly to: AccountId32;
1094
+ readonly amount: u128;
1095
+ } & Struct;
1096
+ readonly isBalanceSet: boolean;
1097
+ readonly asBalanceSet: {
1098
+ readonly who: AccountId32;
1099
+ readonly free: u128;
1100
+ } & Struct;
1101
+ readonly isReserved: boolean;
1102
+ readonly asReserved: {
1103
+ readonly who: AccountId32;
1104
+ readonly amount: u128;
1105
+ } & Struct;
1106
+ readonly isUnreserved: boolean;
1107
+ readonly asUnreserved: {
1108
+ readonly who: AccountId32;
1109
+ readonly amount: u128;
1110
+ } & Struct;
1111
+ readonly isReserveRepatriated: boolean;
1112
+ readonly asReserveRepatriated: {
1113
+ readonly from: AccountId32;
1114
+ readonly to: AccountId32;
1115
+ readonly amount: u128;
1116
+ readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;
1117
+ } & Struct;
1118
+ readonly isDeposit: boolean;
1119
+ readonly asDeposit: {
1120
+ readonly who: AccountId32;
1121
+ readonly amount: u128;
1122
+ } & Struct;
1123
+ readonly isWithdraw: boolean;
1124
+ readonly asWithdraw: {
1125
+ readonly who: AccountId32;
1126
+ readonly amount: u128;
1127
+ } & Struct;
1128
+ readonly isSlashed: boolean;
1129
+ readonly asSlashed: {
1130
+ readonly who: AccountId32;
1131
+ readonly amount: u128;
1132
+ } & Struct;
1133
+ readonly isMinted: boolean;
1134
+ readonly asMinted: {
1135
+ readonly who: AccountId32;
1136
+ readonly amount: u128;
1137
+ } & Struct;
1138
+ readonly isMintedCredit: boolean;
1139
+ readonly asMintedCredit: {
1140
+ readonly amount: u128;
1141
+ } & Struct;
1142
+ readonly isBurned: boolean;
1143
+ readonly asBurned: {
1144
+ readonly who: AccountId32;
1145
+ readonly amount: u128;
1146
+ } & Struct;
1147
+ readonly isBurnedDebt: boolean;
1148
+ readonly asBurnedDebt: {
1149
+ readonly amount: u128;
1150
+ } & Struct;
1151
+ readonly isSuspended: boolean;
1152
+ readonly asSuspended: {
1153
+ readonly who: AccountId32;
1154
+ readonly amount: u128;
1155
+ } & Struct;
1156
+ readonly isRestored: boolean;
1157
+ readonly asRestored: {
1158
+ readonly who: AccountId32;
1159
+ readonly amount: u128;
1160
+ } & Struct;
1161
+ readonly isUpgraded: boolean;
1162
+ readonly asUpgraded: {
1163
+ readonly who: AccountId32;
1164
+ } & Struct;
1165
+ readonly isIssued: boolean;
1166
+ readonly asIssued: {
1167
+ readonly amount: u128;
1168
+ } & Struct;
1169
+ readonly isRescinded: boolean;
1170
+ readonly asRescinded: {
1171
+ readonly amount: u128;
1172
+ } & Struct;
1173
+ readonly isLocked: boolean;
1174
+ readonly asLocked: {
1175
+ readonly who: AccountId32;
1176
+ readonly amount: u128;
1177
+ } & Struct;
1178
+ readonly isUnlocked: boolean;
1179
+ readonly asUnlocked: {
1180
+ readonly who: AccountId32;
1181
+ readonly amount: u128;
1182
+ } & Struct;
1183
+ readonly isFrozen: boolean;
1184
+ readonly asFrozen: {
1185
+ readonly who: AccountId32;
1186
+ readonly amount: u128;
1187
+ } & Struct;
1188
+ readonly isThawed: boolean;
1189
+ readonly asThawed: {
1190
+ readonly who: AccountId32;
1191
+ readonly amount: u128;
1192
+ } & Struct;
1193
+ readonly isTotalIssuanceForced: boolean;
1194
+ readonly asTotalIssuanceForced: {
1195
+ readonly old: u128;
1196
+ readonly new_: u128;
1197
+ } & Struct;
1198
+ readonly isHeld: boolean;
1199
+ readonly asHeld: {
1200
+ readonly reason: ArgonRuntimeRuntimeHoldReason;
1201
+ readonly who: AccountId32;
1202
+ readonly amount: u128;
1203
+ } & Struct;
1204
+ readonly isBurnedHeld: boolean;
1205
+ readonly asBurnedHeld: {
1206
+ readonly reason: ArgonRuntimeRuntimeHoldReason;
1207
+ readonly who: AccountId32;
1208
+ readonly amount: u128;
1209
+ } & Struct;
1210
+ readonly isTransferOnHold: boolean;
1211
+ readonly asTransferOnHold: {
1212
+ readonly reason: ArgonRuntimeRuntimeHoldReason;
1213
+ readonly source: AccountId32;
1214
+ readonly dest: AccountId32;
1215
+ readonly amount: u128;
1216
+ } & Struct;
1217
+ readonly isTransferAndHold: boolean;
1218
+ readonly asTransferAndHold: {
1219
+ readonly reason: ArgonRuntimeRuntimeHoldReason;
1220
+ readonly source: AccountId32;
1221
+ readonly dest: AccountId32;
1222
+ readonly transferred: u128;
1223
+ } & Struct;
1224
+ readonly isReleased: boolean;
1225
+ readonly asReleased: {
1226
+ readonly reason: ArgonRuntimeRuntimeHoldReason;
1227
+ readonly who: AccountId32;
1228
+ readonly amount: u128;
1229
+ } & Struct;
1230
+ readonly isUnexpected: boolean;
1231
+ readonly asUnexpected: PalletBalancesUnexpectedKind;
1232
+ readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'MintedCredit' | 'Burned' | 'BurnedDebt' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced' | 'Held' | 'BurnedHeld' | 'TransferOnHold' | 'TransferAndHold' | 'Released' | 'Unexpected';
1233
+ }
1234
+
1235
+ /** @name FrameSupportTokensMiscBalanceStatus (103) */
1236
+ interface FrameSupportTokensMiscBalanceStatus extends Enum {
1237
+ readonly isFree: boolean;
1238
+ readonly isReserved: boolean;
1239
+ readonly type: 'Free' | 'Reserved';
1240
+ }
1241
+
1242
+ /** @name ArgonRuntimeRuntimeHoldReason (104) */
1243
+ interface ArgonRuntimeRuntimeHoldReason extends Enum {
1244
+ readonly isMiningSlot: boolean;
1245
+ readonly asMiningSlot: PalletMiningSlotHoldReason;
1246
+ readonly isVaults: boolean;
1247
+ readonly asVaults: PalletVaultsHoldReason;
1248
+ readonly isBitcoinLocks: boolean;
1249
+ readonly asBitcoinLocks: PalletBitcoinLocksHoldReason;
1250
+ readonly isBlockRewards: boolean;
1251
+ readonly asBlockRewards: PalletBlockRewardsHoldReason;
1252
+ readonly isTreasury: boolean;
1253
+ readonly asTreasury: PalletTreasuryHoldReason;
1254
+ readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards' | 'Treasury';
1255
+ }
1256
+
1257
+ /** @name PalletMiningSlotHoldReason (105) */
1258
+ interface PalletMiningSlotHoldReason extends Enum {
1259
+ readonly isRegisterAsMiner: boolean;
1260
+ readonly type: 'RegisterAsMiner';
1261
+ }
1262
+
1263
+ /** @name PalletVaultsHoldReason (106) */
1264
+ interface PalletVaultsHoldReason extends Enum {
1265
+ readonly isEnterVault: boolean;
1266
+ readonly isObligationFee: boolean;
1267
+ readonly isPendingCollect: boolean;
1268
+ readonly type: 'EnterVault' | 'ObligationFee' | 'PendingCollect';
1269
+ }
1270
+
1271
+ /** @name PalletBitcoinLocksHoldReason (107) */
1272
+ interface PalletBitcoinLocksHoldReason extends Enum {
1273
+ readonly isReleaseBitcoinLock: boolean;
1274
+ readonly type: 'ReleaseBitcoinLock';
1275
+ }
1276
+
1277
+ /** @name PalletBlockRewardsHoldReason (108) */
1278
+ interface PalletBlockRewardsHoldReason extends Enum {
1279
+ readonly isMaturationPeriod: boolean;
1280
+ readonly type: 'MaturationPeriod';
1281
+ }
1282
+
1283
+ /** @name PalletTreasuryHoldReason (109) */
1284
+ interface PalletTreasuryHoldReason extends Enum {
1285
+ readonly isContributedToTreasury: boolean;
1286
+ readonly type: 'ContributedToTreasury';
1287
+ }
1288
+
1289
+ /** @name PalletBalancesUnexpectedKind (110) */
1290
+ interface PalletBalancesUnexpectedKind extends Enum {
1291
+ readonly isBalanceUpdated: boolean;
1292
+ readonly isFailedToMutateAccount: boolean;
1293
+ readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
1294
+ }
1295
+
1296
+ /** @name PalletTxPauseEvent (112) */
1297
+ interface PalletTxPauseEvent extends Enum {
1298
+ readonly isCallPaused: boolean;
1299
+ readonly asCallPaused: {
1300
+ readonly fullName: ITuple<[Bytes, Bytes]>;
1301
+ } & Struct;
1302
+ readonly isCallUnpaused: boolean;
1303
+ readonly asCallUnpaused: {
1304
+ readonly fullName: ITuple<[Bytes, Bytes]>;
1305
+ } & Struct;
1306
+ readonly type: 'CallPaused' | 'CallUnpaused';
1307
+ }
1308
+
1309
+ /** @name PalletTransactionPaymentEvent (115) */
1310
+ interface PalletTransactionPaymentEvent extends Enum {
1311
+ readonly isTransactionFeePaid: boolean;
1312
+ readonly asTransactionFeePaid: {
1313
+ readonly who: AccountId32;
1314
+ readonly actualFee: u128;
1315
+ readonly tip: u128;
1316
+ } & Struct;
1317
+ readonly type: 'TransactionFeePaid';
1318
+ }
1319
+
1320
+ /** @name PalletUtilityEvent (116) */
1321
+ interface PalletUtilityEvent extends Enum {
1322
+ readonly isBatchInterrupted: boolean;
1323
+ readonly asBatchInterrupted: {
1324
+ readonly index: u32;
1325
+ readonly error: SpRuntimeDispatchError;
1326
+ } & Struct;
1327
+ readonly isBatchCompleted: boolean;
1328
+ readonly isBatchCompletedWithErrors: boolean;
1329
+ readonly isItemCompleted: boolean;
1330
+ readonly isItemFailed: boolean;
1331
+ readonly asItemFailed: {
1332
+ readonly error: SpRuntimeDispatchError;
1333
+ } & Struct;
1334
+ readonly isDispatchedAs: boolean;
1335
+ readonly asDispatchedAs: {
1336
+ readonly result: Result<Null, SpRuntimeDispatchError>;
1337
+ } & Struct;
1338
+ readonly isIfElseMainSuccess: boolean;
1339
+ readonly isIfElseFallbackCalled: boolean;
1340
+ readonly asIfElseFallbackCalled: {
1341
+ readonly mainError: SpRuntimeDispatchError;
1342
+ } & Struct;
1343
+ readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs' | 'IfElseMainSuccess' | 'IfElseFallbackCalled';
1344
+ }
1345
+
1346
+ /** @name PalletSudoEvent (117) */
1347
+ interface PalletSudoEvent extends Enum {
1348
+ readonly isSudid: boolean;
1349
+ readonly asSudid: {
1350
+ readonly sudoResult: Result<Null, SpRuntimeDispatchError>;
1351
+ } & Struct;
1352
+ readonly isKeyChanged: boolean;
1353
+ readonly asKeyChanged: {
1354
+ readonly old: Option<AccountId32>;
1355
+ readonly new_: AccountId32;
1356
+ } & Struct;
1357
+ readonly isKeyRemoved: boolean;
1358
+ readonly isSudoAsDone: boolean;
1359
+ readonly asSudoAsDone: {
1360
+ readonly sudoResult: Result<Null, SpRuntimeDispatchError>;
1361
+ } & Struct;
1362
+ readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1363
+ }
1364
+
1365
+ /** @name PalletTreasuryEvent (118) */
1366
+ interface PalletTreasuryEvent extends Enum {
1367
+ readonly isCouldNotDistributeEarningsToBondLot: boolean;
1368
+ readonly asCouldNotDistributeEarningsToBondLot: {
1369
+ readonly frameId: u64;
1370
+ readonly vaultId: u32;
1371
+ readonly bondLotId: u64;
1372
+ readonly accountId: AccountId32;
1373
+ readonly amount: u128;
1374
+ readonly dispatchError: SpRuntimeDispatchError;
1375
+ } & Struct;
1376
+ readonly isCouldNotTransferToTreasuryReserves: boolean;
1377
+ readonly asCouldNotTransferToTreasuryReserves: {
1378
+ readonly frameId: u64;
1379
+ readonly amount: u128;
1380
+ readonly dispatchError: SpRuntimeDispatchError;
1381
+ } & Struct;
1382
+ readonly isFrameEarningsDistributed: boolean;
1383
+ readonly asFrameEarningsDistributed: {
1384
+ readonly frameId: u64;
1385
+ readonly bidPoolDistributed: u128;
1386
+ readonly treasuryReserves: u128;
1387
+ readonly participatingVaults: u32;
1388
+ } & Struct;
1389
+ readonly isFrameVaultCapitalLocked: boolean;
1390
+ readonly asFrameVaultCapitalLocked: {
1391
+ readonly frameId: u64;
1392
+ readonly totalEligibleBonds: u128;
1393
+ readonly participatingVaults: u32;
1394
+ } & Struct;
1395
+ readonly isCouldNotReleaseBondLot: boolean;
1396
+ readonly asCouldNotReleaseBondLot: {
1397
+ readonly frameId: u64;
1398
+ readonly vaultId: u32;
1399
+ readonly bondLotId: u64;
1400
+ readonly amount: u128;
1401
+ readonly accountId: AccountId32;
1402
+ readonly dispatchError: SpRuntimeDispatchError;
1403
+ } & Struct;
1404
+ readonly isBondLotPurchased: boolean;
1405
+ readonly asBondLotPurchased: {
1406
+ readonly vaultId: u32;
1407
+ readonly bondLotId: u64;
1408
+ readonly accountId: AccountId32;
1409
+ readonly bonds: u32;
1410
+ } & Struct;
1411
+ readonly isBondLotReleaseScheduled: boolean;
1412
+ readonly asBondLotReleaseScheduled: {
1413
+ readonly vaultId: u32;
1414
+ readonly bondLotId: u64;
1415
+ readonly accountId: AccountId32;
1416
+ readonly bonds: u32;
1417
+ readonly releaseFrameId: u64;
1418
+ readonly reason: PalletTreasuryBondReleaseReason;
1419
+ } & Struct;
1420
+ readonly isBondLotReleased: boolean;
1421
+ readonly asBondLotReleased: {
1422
+ readonly frameId: u64;
1423
+ readonly vaultId: u32;
1424
+ readonly bondLotId: u64;
1425
+ readonly accountId: AccountId32;
1426
+ readonly bonds: u32;
1427
+ } & Struct;
1428
+ readonly type: 'CouldNotDistributeEarningsToBondLot' | 'CouldNotTransferToTreasuryReserves' | 'FrameEarningsDistributed' | 'FrameVaultCapitalLocked' | 'CouldNotReleaseBondLot' | 'BondLotPurchased' | 'BondLotReleaseScheduled' | 'BondLotReleased';
1429
+ }
1430
+
1431
+ /** @name PalletTreasuryBondReleaseReason (119) */
1432
+ interface PalletTreasuryBondReleaseReason extends Enum {
1433
+ readonly isUserLiquidation: boolean;
1434
+ readonly isBumped: boolean;
1435
+ readonly isVaultClosed: boolean;
1436
+ readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
1437
+ }
1438
+
1439
+ /** @name PalletFeeControlEvent (120) */
1440
+ interface PalletFeeControlEvent extends Enum {
1441
+ readonly isFeeSkipped: boolean;
1442
+ readonly asFeeSkipped: {
1443
+ readonly origin: ArgonRuntimeOriginCaller;
1444
+ } & Struct;
1445
+ readonly isFeeDelegated: boolean;
1446
+ readonly asFeeDelegated: {
1447
+ readonly origin: ArgonRuntimeOriginCaller;
1448
+ readonly from: AccountId32;
1449
+ readonly to: AccountId32;
1450
+ } & Struct;
1451
+ readonly type: 'FeeSkipped' | 'FeeDelegated';
1452
+ }
1453
+
1454
+ /** @name ArgonRuntimeOriginCaller (121) */
1455
+ interface ArgonRuntimeOriginCaller extends Enum {
1456
+ readonly isSystem: boolean;
1457
+ readonly asSystem: FrameSupportDispatchRawOrigin;
1458
+ readonly type: 'System';
1459
+ }
1460
+
1461
+ /** @name FrameSupportDispatchRawOrigin (122) */
1462
+ interface FrameSupportDispatchRawOrigin extends Enum {
1463
+ readonly isRoot: boolean;
1464
+ readonly isSigned: boolean;
1465
+ readonly asSigned: AccountId32;
1466
+ readonly isNone: boolean;
1467
+ readonly isAuthorized: boolean;
1468
+ readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
1469
+ }
1470
+
1471
+ /** @name PalletOperationalAccountsEvent (123) */
1472
+ interface PalletOperationalAccountsEvent extends Enum {
1473
+ readonly isOperationalAccountRegistered: boolean;
1474
+ readonly asOperationalAccountRegistered: {
1475
+ readonly operationalAccount: AccountId32;
1476
+ readonly vaultAccount: AccountId32;
1477
+ readonly miningFundingAccount: AccountId32;
1478
+ readonly miningBotAccount: AccountId32;
1479
+ readonly sponsor: Option<AccountId32>;
1480
+ } & Struct;
1481
+ readonly isAccountWentOperational: boolean;
1482
+ readonly asAccountWentOperational: {
1483
+ readonly account: AccountId32;
1484
+ } & Struct;
1485
+ readonly isOperationalRewardEarned: boolean;
1486
+ readonly asOperationalRewardEarned: {
1487
+ readonly account: AccountId32;
1488
+ readonly rewardKind: ArgonPrimitivesProvidersOperationalRewardKind;
1489
+ readonly amount: u128;
1490
+ } & Struct;
1491
+ readonly isOperationalRewardsClaimed: boolean;
1492
+ readonly asOperationalRewardsClaimed: {
1493
+ readonly operationalAccount: AccountId32;
1494
+ readonly claimant: AccountId32;
1495
+ readonly amount: u128;
1496
+ readonly remainingPending: u128;
1497
+ } & Struct;
1498
+ readonly isRewardsConfigUpdated: boolean;
1499
+ readonly asRewardsConfigUpdated: {
1500
+ readonly operationalReferralReward: u128;
1501
+ readonly referralBonusReward: u128;
1502
+ } & Struct;
1503
+ readonly isOperationalProgressForced: boolean;
1504
+ readonly asOperationalProgressForced: {
1505
+ readonly account: AccountId32;
1506
+ readonly updateOperationalProgress: bool;
1507
+ readonly hasUniswapTransfer: bool;
1508
+ readonly vaultCreated: bool;
1509
+ readonly hasTreasuryPoolParticipation: bool;
1510
+ readonly observedBitcoinTotal: u128;
1511
+ readonly observedMiningSeatTotal: u32;
1512
+ } & Struct;
1513
+ readonly isEncryptedServerUpdated: boolean;
1514
+ readonly asEncryptedServerUpdated: {
1515
+ readonly sponsor: AccountId32;
1516
+ readonly sponsee: AccountId32;
1517
+ } & Struct;
1518
+ readonly type: 'OperationalAccountRegistered' | 'AccountWentOperational' | 'OperationalRewardEarned' | 'OperationalRewardsClaimed' | 'RewardsConfigUpdated' | 'OperationalProgressForced' | 'EncryptedServerUpdated';
1519
+ }
1520
+
1521
+ /** @name ArgonPrimitivesProvidersOperationalRewardKind (124) */
1522
+ interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
1523
+ readonly isActivation: boolean;
1524
+ readonly isReferralBonus: boolean;
1525
+ readonly type: 'Activation' | 'ReferralBonus';
1526
+ }
1527
+
1528
+ /** @name PalletEthereumVerifierEvent (125) */
1529
+ interface PalletEthereumVerifierEvent extends Enum {
1530
+ readonly isBeaconHeaderImported: boolean;
1531
+ readonly asBeaconHeaderImported: {
1532
+ readonly blockHash: H256;
1533
+ readonly slot: u64;
1534
+ } & Struct;
1535
+ readonly isExecutionHeaderAnchorImported: boolean;
1536
+ readonly asExecutionHeaderAnchorImported: {
1537
+ readonly blockHash: H256;
1538
+ readonly blockNumber: u64;
1539
+ } & Struct;
1540
+ readonly isSyncCommitteeUpdated: boolean;
1541
+ readonly asSyncCommitteeUpdated: {
1542
+ readonly period: u64;
1543
+ } & Struct;
1544
+ readonly isOperatingModeChanged: boolean;
1545
+ readonly asOperatingModeChanged: {
1546
+ readonly mode: PalletEthereumVerifierBasicOperatingMode;
1547
+ } & Struct;
1548
+ readonly type: 'BeaconHeaderImported' | 'ExecutionHeaderAnchorImported' | 'SyncCommitteeUpdated' | 'OperatingModeChanged';
1549
+ }
1550
+
1551
+ /** @name PalletEthereumVerifierBasicOperatingMode (126) */
1552
+ interface PalletEthereumVerifierBasicOperatingMode extends Enum {
1553
+ readonly isNormal: boolean;
1554
+ readonly isHalted: boolean;
1555
+ readonly type: 'Normal' | 'Halted';
1556
+ }
1557
+
1558
+ /** @name PalletCrosschainTransferEvent (127) */
1559
+ interface PalletCrosschainTransferEvent extends Enum {
1560
+ readonly isBurnNoticeAccepted: boolean;
1561
+ readonly asBurnNoticeAccepted: {
1562
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1563
+ readonly notice: PalletCrosschainTransferBurnNotice;
1564
+ } & Struct;
1565
+ readonly type: 'BurnNoticeAccepted';
1566
+ }
1567
+
1568
+ /** @name PalletCrosschainTransferSourceChain (128) */
1569
+ interface PalletCrosschainTransferSourceChain extends Enum {
1570
+ readonly isEthereum: boolean;
1571
+ readonly type: 'Ethereum';
1572
+ }
1573
+
1574
+ /** @name PalletCrosschainTransferBurnNotice (129) */
1575
+ interface PalletCrosschainTransferBurnNotice extends Struct {
1576
+ readonly from: H160;
1577
+ readonly to: AccountId32;
1578
+ readonly assetKind: PalletCrosschainTransferAssetKind;
1579
+ readonly amount: u128;
1580
+ readonly accountNonce: Compact<u64>;
1581
+ }
1582
+
1583
+ /** @name PalletCrosschainTransferAssetKind (132) */
1584
+ interface PalletCrosschainTransferAssetKind extends Enum {
1585
+ readonly isArgon: boolean;
1586
+ readonly isArgonot: boolean;
1587
+ readonly type: 'Argon' | 'Argonot';
1588
+ }
1589
+
1590
+ /** @name FrameSystemPhase (133) */
1591
+ interface FrameSystemPhase extends Enum {
1592
+ readonly isApplyExtrinsic: boolean;
1593
+ readonly asApplyExtrinsic: u32;
1594
+ readonly isFinalization: boolean;
1595
+ readonly isInitialization: boolean;
1596
+ readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1597
+ }
1598
+
1599
+ /** @name FrameSystemLastRuntimeUpgradeInfo (137) */
1600
+ interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1601
+ readonly specVersion: Compact<u32>;
1602
+ readonly specName: Text;
1603
+ }
1604
+
1605
+ /** @name FrameSystemCodeUpgradeAuthorization (140) */
1606
+ interface FrameSystemCodeUpgradeAuthorization extends Struct {
1607
+ readonly codeHash: H256;
1608
+ readonly checkVersion: bool;
1609
+ }
1610
+
1611
+ /** @name FrameSystemCall (141) */
1612
+ interface FrameSystemCall extends Enum {
1613
+ readonly isRemark: boolean;
1614
+ readonly asRemark: {
1615
+ readonly remark: Bytes;
1616
+ } & Struct;
1617
+ readonly isSetHeapPages: boolean;
1618
+ readonly asSetHeapPages: {
1619
+ readonly pages: u64;
1620
+ } & Struct;
1621
+ readonly isSetCode: boolean;
1622
+ readonly asSetCode: {
1623
+ readonly code: Bytes;
1624
+ } & Struct;
1625
+ readonly isSetCodeWithoutChecks: boolean;
1626
+ readonly asSetCodeWithoutChecks: {
1627
+ readonly code: Bytes;
1628
+ } & Struct;
1629
+ readonly isSetStorage: boolean;
1630
+ readonly asSetStorage: {
1631
+ readonly items: Vec<ITuple<[Bytes, Bytes]>>;
1632
+ } & Struct;
1633
+ readonly isKillStorage: boolean;
1634
+ readonly asKillStorage: {
1635
+ readonly keys_: Vec<Bytes>;
1636
+ } & Struct;
1637
+ readonly isKillPrefix: boolean;
1638
+ readonly asKillPrefix: {
1639
+ readonly prefix: Bytes;
1640
+ readonly subkeys: u32;
1641
+ } & Struct;
1642
+ readonly isRemarkWithEvent: boolean;
1643
+ readonly asRemarkWithEvent: {
1644
+ readonly remark: Bytes;
1645
+ } & Struct;
1646
+ readonly isAuthorizeUpgrade: boolean;
1647
+ readonly asAuthorizeUpgrade: {
1648
+ readonly codeHash: H256;
1649
+ } & Struct;
1650
+ readonly isAuthorizeUpgradeWithoutChecks: boolean;
1651
+ readonly asAuthorizeUpgradeWithoutChecks: {
1652
+ readonly codeHash: H256;
1653
+ } & Struct;
1654
+ readonly isApplyAuthorizedUpgrade: boolean;
1655
+ readonly asApplyAuthorizedUpgrade: {
1656
+ readonly code: Bytes;
1657
+ } & Struct;
1658
+ readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1659
+ }
1660
+
1661
+ /** @name FrameSystemLimitsBlockWeights (145) */
1662
+ interface FrameSystemLimitsBlockWeights extends Struct {
1663
+ readonly baseBlock: SpWeightsWeightV2Weight;
1664
+ readonly maxBlock: SpWeightsWeightV2Weight;
1665
+ readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1666
+ }
1667
+
1668
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (146) */
1669
+ interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1670
+ readonly normal: FrameSystemLimitsWeightsPerClass;
1671
+ readonly operational: FrameSystemLimitsWeightsPerClass;
1672
+ readonly mandatory: FrameSystemLimitsWeightsPerClass;
1673
+ }
1674
+
1675
+ /** @name FrameSystemLimitsWeightsPerClass (147) */
1676
+ interface FrameSystemLimitsWeightsPerClass extends Struct {
1677
+ readonly baseExtrinsic: SpWeightsWeightV2Weight;
1678
+ readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1679
+ readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1680
+ readonly reserved: Option<SpWeightsWeightV2Weight>;
1681
+ }
1682
+
1683
+ /** @name FrameSystemLimitsBlockLength (149) */
1684
+ interface FrameSystemLimitsBlockLength extends Struct {
1685
+ readonly max: FrameSupportDispatchPerDispatchClassU32;
1686
+ readonly maxHeaderSize: Option<u32>;
1687
+ }
1688
+
1689
+ /** @name FrameSupportDispatchPerDispatchClassU32 (150) */
1690
+ interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1691
+ readonly normal: u32;
1692
+ readonly operational: u32;
1693
+ readonly mandatory: u32;
1694
+ }
1695
+
1696
+ /** @name SpWeightsRuntimeDbWeight (152) */
1697
+ interface SpWeightsRuntimeDbWeight extends Struct {
1698
+ readonly read: u64;
1699
+ readonly write: u64;
1700
+ }
1701
+
1702
+ /** @name SpVersionRuntimeVersion (153) */
1703
+ interface SpVersionRuntimeVersion extends Struct {
1704
+ readonly specName: Text;
1705
+ readonly implName: Text;
1706
+ readonly authoringVersion: u32;
1707
+ readonly specVersion: u32;
1708
+ readonly implVersion: u32;
1709
+ readonly apis: Vec<ITuple<[U8aFixed, u32]>>;
1710
+ readonly transactionVersion: u32;
1711
+ readonly systemVersion: u8;
1712
+ }
1713
+
1714
+ /** @name FrameSystemError (158) */
1715
+ interface FrameSystemError extends Enum {
1716
+ readonly isInvalidSpecName: boolean;
1717
+ readonly isSpecVersionNeedsToIncrease: boolean;
1718
+ readonly isFailedToExtractRuntimeVersion: boolean;
1719
+ readonly isNonDefaultComposite: boolean;
1720
+ readonly isNonZeroRefCount: boolean;
1721
+ readonly isCallFiltered: boolean;
1722
+ readonly isMultiBlockMigrationsOngoing: boolean;
1723
+ readonly isNothingAuthorized: boolean;
1724
+ readonly isUnauthorized: boolean;
1725
+ readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
1726
+ }
1727
+
1728
+ /** @name ArgonPrimitivesDigestsDigestset (159) */
1729
+ interface ArgonPrimitivesDigestsDigestset extends Struct {
1730
+ readonly author: AccountId32;
1731
+ readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
1732
+ readonly votingKey: Option<ArgonPrimitivesDigestsParentVotingKeyDigest>;
1733
+ readonly forkPower: Option<ArgonPrimitivesForkPower>;
1734
+ readonly frameInfo: Option<ArgonPrimitivesDigestsFrameInfo>;
1735
+ readonly tick: u64;
1736
+ readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
1737
+ }
1738
+
1739
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (160) */
1740
+ interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
1741
+ readonly votingPower: Compact<u128>;
1742
+ readonly votesCount: Compact<u32>;
1743
+ }
1744
+
1745
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (162) */
1746
+ interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
1747
+ readonly parentVotingKey: Option<H256>;
1748
+ }
1749
+
1750
+ /** @name ArgonPrimitivesForkPower (165) */
1751
+ interface ArgonPrimitivesForkPower extends Struct {
1752
+ readonly isLatestVote: bool;
1753
+ readonly notebooks: Compact<u64>;
1754
+ readonly votingPower: U256;
1755
+ readonly sealStrength: U256;
1756
+ readonly totalComputeDifficulty: U256;
1757
+ readonly voteCreatedBlocks: Compact<u128>;
1758
+ readonly minerNonceScore: Option<U256>;
1759
+ }
1760
+
1761
+ /** @name ArgonPrimitivesDigestsFrameInfo (170) */
1762
+ interface ArgonPrimitivesDigestsFrameInfo extends Struct {
1763
+ readonly frameId: Compact<u64>;
1764
+ readonly frameRewardTicksRemaining: Compact<u32>;
1765
+ readonly isNewFrame: bool;
1766
+ }
1767
+
1768
+ /** @name ArgonPrimitivesDigestsNotebookDigest (172) */
1769
+ interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
1770
+ readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
1771
+ }
1772
+
1773
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (174) */
1774
+ interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
1775
+ readonly notaryId: Compact<u32>;
1776
+ readonly notebookNumber: Compact<u32>;
1777
+ readonly tick: Compact<u64>;
1778
+ readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
1779
+ }
1780
+
1781
+ /** @name PalletDigestsError (177) */
1782
+ interface PalletDigestsError extends Enum {
1783
+ readonly isDuplicateBlockVoteDigest: boolean;
1784
+ readonly isDuplicateAuthorDigest: boolean;
1785
+ readonly isDuplicateTickDigest: boolean;
1786
+ readonly isDuplicateParentVotingKeyDigest: boolean;
1787
+ readonly isDuplicateNotebookDigest: boolean;
1788
+ readonly isDuplicateForkPowerDigest: boolean;
1789
+ readonly isMissingBlockVoteDigest: boolean;
1790
+ readonly isMissingAuthorDigest: boolean;
1791
+ readonly isMissingTickDigest: boolean;
1792
+ readonly isMissingParentVotingKeyDigest: boolean;
1793
+ readonly isMissingNotebookDigest: boolean;
1794
+ readonly isCouldNotDecodeDigest: boolean;
1795
+ readonly isDuplicateFrameInfoDigest: boolean;
1796
+ readonly type: 'DuplicateBlockVoteDigest' | 'DuplicateAuthorDigest' | 'DuplicateTickDigest' | 'DuplicateParentVotingKeyDigest' | 'DuplicateNotebookDigest' | 'DuplicateForkPowerDigest' | 'MissingBlockVoteDigest' | 'MissingAuthorDigest' | 'MissingTickDigest' | 'MissingParentVotingKeyDigest' | 'MissingNotebookDigest' | 'CouldNotDecodeDigest' | 'DuplicateFrameInfoDigest';
1797
+ }
1798
+
1799
+ /** @name PalletTimestampCall (178) */
1800
+ interface PalletTimestampCall extends Enum {
1801
+ readonly isSet: boolean;
1802
+ readonly asSet: {
1803
+ readonly now: Compact<u64>;
1804
+ } & Struct;
1805
+ readonly type: 'Set';
1806
+ }
1807
+
1808
+ /** @name PalletMultisigMultisig (180) */
1809
+ interface PalletMultisigMultisig extends Struct {
1810
+ readonly when: PalletMultisigTimepoint;
1811
+ readonly deposit: u128;
1812
+ readonly depositor: AccountId32;
1813
+ readonly approvals: Vec<AccountId32>;
1814
+ }
1815
+
1816
+ /** @name PalletMultisigCall (183) */
1817
+ interface PalletMultisigCall extends Enum {
1818
+ readonly isAsMultiThreshold1: boolean;
1819
+ readonly asAsMultiThreshold1: {
1820
+ readonly otherSignatories: Vec<AccountId32>;
1821
+ readonly call: Call;
1822
+ } & Struct;
1823
+ readonly isAsMulti: boolean;
1824
+ readonly asAsMulti: {
1825
+ readonly threshold: u16;
1826
+ readonly otherSignatories: Vec<AccountId32>;
1827
+ readonly maybeTimepoint: Option<PalletMultisigTimepoint>;
1828
+ readonly call: Call;
1829
+ readonly maxWeight: SpWeightsWeightV2Weight;
1830
+ } & Struct;
1831
+ readonly isApproveAsMulti: boolean;
1832
+ readonly asApproveAsMulti: {
1833
+ readonly threshold: u16;
1834
+ readonly otherSignatories: Vec<AccountId32>;
1835
+ readonly maybeTimepoint: Option<PalletMultisigTimepoint>;
1836
+ readonly callHash: U8aFixed;
1837
+ readonly maxWeight: SpWeightsWeightV2Weight;
1838
+ } & Struct;
1839
+ readonly isCancelAsMulti: boolean;
1840
+ readonly asCancelAsMulti: {
1841
+ readonly threshold: u16;
1842
+ readonly otherSignatories: Vec<AccountId32>;
1843
+ readonly timepoint: PalletMultisigTimepoint;
1844
+ readonly callHash: U8aFixed;
1845
+ } & Struct;
1846
+ readonly isPokeDeposit: boolean;
1847
+ readonly asPokeDeposit: {
1848
+ readonly threshold: u16;
1849
+ readonly otherSignatories: Vec<AccountId32>;
1850
+ readonly callHash: U8aFixed;
1851
+ } & Struct;
1852
+ readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti' | 'PokeDeposit';
1853
+ }
1854
+
1855
+ /** @name PalletProxyCall (185) */
1856
+ interface PalletProxyCall extends Enum {
1857
+ readonly isProxy: boolean;
1858
+ readonly asProxy: {
1859
+ readonly real: MultiAddress;
1860
+ readonly forceProxyType: Option<ArgonRuntimeProxyType>;
1861
+ readonly call: Call;
1862
+ } & Struct;
1863
+ readonly isAddProxy: boolean;
1864
+ readonly asAddProxy: {
1865
+ readonly delegate: MultiAddress;
1866
+ readonly proxyType: ArgonRuntimeProxyType;
1867
+ readonly delay: u32;
1868
+ } & Struct;
1869
+ readonly isRemoveProxy: boolean;
1870
+ readonly asRemoveProxy: {
1871
+ readonly delegate: MultiAddress;
1872
+ readonly proxyType: ArgonRuntimeProxyType;
1873
+ readonly delay: u32;
1874
+ } & Struct;
1875
+ readonly isRemoveProxies: boolean;
1876
+ readonly isCreatePure: boolean;
1877
+ readonly asCreatePure: {
1878
+ readonly proxyType: ArgonRuntimeProxyType;
1879
+ readonly delay: u32;
1880
+ readonly index: u16;
1881
+ } & Struct;
1882
+ readonly isKillPure: boolean;
1883
+ readonly asKillPure: {
1884
+ readonly spawner: MultiAddress;
1885
+ readonly proxyType: ArgonRuntimeProxyType;
1886
+ readonly index: u16;
1887
+ readonly height: Compact<u32>;
1888
+ readonly extIndex: Compact<u32>;
1889
+ } & Struct;
1890
+ readonly isAnnounce: boolean;
1891
+ readonly asAnnounce: {
1892
+ readonly real: MultiAddress;
1893
+ readonly callHash: H256;
1894
+ } & Struct;
1895
+ readonly isRemoveAnnouncement: boolean;
1896
+ readonly asRemoveAnnouncement: {
1897
+ readonly real: MultiAddress;
1898
+ readonly callHash: H256;
1899
+ } & Struct;
1900
+ readonly isRejectAnnouncement: boolean;
1901
+ readonly asRejectAnnouncement: {
1902
+ readonly delegate: MultiAddress;
1903
+ readonly callHash: H256;
1904
+ } & Struct;
1905
+ readonly isProxyAnnounced: boolean;
1906
+ readonly asProxyAnnounced: {
1907
+ readonly delegate: MultiAddress;
1908
+ readonly real: MultiAddress;
1909
+ readonly forceProxyType: Option<ArgonRuntimeProxyType>;
1910
+ readonly call: Call;
1911
+ } & Struct;
1912
+ readonly isPokeDeposit: boolean;
1913
+ readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced' | 'PokeDeposit';
1914
+ }
1915
+
1916
+ /** @name PalletTicksCall (189) */
1917
+ type PalletTicksCall = Null;
1918
+
1919
+ /** @name PalletMiningSlotCall (190) */
1920
+ interface PalletMiningSlotCall extends Enum {
1921
+ readonly isBid: boolean;
1922
+ readonly asBid: {
1923
+ readonly bid: u128;
1924
+ readonly keys_: ArgonRuntimeSessionKeys;
1925
+ readonly miningAccountId: Option<AccountId32>;
1926
+ } & Struct;
1927
+ readonly isConfigureMiningSlotDelay: boolean;
1928
+ readonly asConfigureMiningSlotDelay: {
1929
+ readonly miningSlotDelay: Option<u64>;
1930
+ readonly ticksBeforeBidEndForVrfClose: Option<u64>;
1931
+ } & Struct;
1932
+ readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
1933
+ }
1934
+
1935
+ /** @name PalletBitcoinUtxosCall (191) */
1936
+ interface PalletBitcoinUtxosCall extends Enum {
1937
+ readonly isSync: boolean;
1938
+ readonly asSync: {
1939
+ readonly utxoSync: ArgonPrimitivesInherentsBitcoinUtxoSync;
1940
+ } & Struct;
1941
+ readonly isSetConfirmedBlock: boolean;
1942
+ readonly asSetConfirmedBlock: {
1943
+ readonly bitcoinHeight: u64;
1944
+ readonly bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le;
1945
+ } & Struct;
1946
+ readonly isSetOperator: boolean;
1947
+ readonly asSetOperator: {
1948
+ readonly accountId: AccountId32;
1949
+ } & Struct;
1950
+ readonly isFundWithUtxoCandidate: boolean;
1951
+ readonly asFundWithUtxoCandidate: {
1952
+ readonly utxoId: u64;
1953
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
1954
+ } & Struct;
1955
+ readonly isRejectUtxoCandidate: boolean;
1956
+ readonly asRejectUtxoCandidate: {
1957
+ readonly utxoId: u64;
1958
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
1959
+ } & Struct;
1960
+ readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator' | 'FundWithUtxoCandidate' | 'RejectUtxoCandidate';
1961
+ }
1962
+
1963
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (192) */
1964
+ interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1965
+ readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
1966
+ readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
1967
+ readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1968
+ }
1969
+
1970
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (194) */
1971
+ interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
1972
+ readonly utxoId: Compact<u64>;
1973
+ readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
1974
+ readonly bitcoinHeight: Compact<u64>;
1975
+ }
1976
+
1977
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (197) */
1978
+ interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
1979
+ readonly utxoId: Compact<u64>;
1980
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
1981
+ readonly satoshis: Compact<u64>;
1982
+ readonly expectedSatoshis: Compact<u64>;
1983
+ readonly bitcoinHeight: Compact<u64>;
1984
+ }
1985
+
1986
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (198) */
1987
+ interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1988
+ readonly blockHeight: Compact<u64>;
1989
+ readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1990
+ }
1991
+
1992
+ /** @name PalletVaultsCall (199) */
1993
+ interface PalletVaultsCall extends Enum {
1994
+ readonly isCreate: boolean;
1995
+ readonly asCreate: {
1996
+ readonly vaultConfig: PalletVaultsVaultConfig;
1997
+ } & Struct;
1998
+ readonly isModifyFunding: boolean;
1999
+ readonly asModifyFunding: {
2000
+ readonly vaultId: u32;
2001
+ readonly securitization: u128;
2002
+ readonly securitizationRatio: u128;
2003
+ } & Struct;
2004
+ readonly isModifyTerms: boolean;
2005
+ readonly asModifyTerms: {
2006
+ readonly vaultId: u32;
2007
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
2008
+ } & Struct;
2009
+ readonly isClose: boolean;
2010
+ readonly asClose: {
2011
+ readonly vaultId: u32;
2012
+ } & Struct;
2013
+ readonly isReplaceBitcoinXpub: boolean;
2014
+ readonly asReplaceBitcoinXpub: {
2015
+ readonly vaultId: u32;
2016
+ readonly bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
2017
+ } & Struct;
2018
+ readonly isCollect: boolean;
2019
+ readonly asCollect: {
2020
+ readonly vaultId: u32;
2021
+ } & Struct;
2022
+ readonly isSetBitcoinLockDelegate: boolean;
2023
+ readonly asSetBitcoinLockDelegate: {
2024
+ readonly delegateAccountId: Option<AccountId32>;
2025
+ } & Struct;
2026
+ readonly isSetName: boolean;
2027
+ readonly asSetName: {
2028
+ readonly name: Option<Bytes>;
2029
+ } & Struct;
2030
+ readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub' | 'Collect' | 'SetBitcoinLockDelegate' | 'SetName';
2031
+ }
2032
+
2033
+ /** @name PalletVaultsVaultConfig (200) */
2034
+ interface PalletVaultsVaultConfig extends Struct {
2035
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
2036
+ readonly name: Option<Bytes>;
2037
+ readonly securitization: Compact<u128>;
2038
+ readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
2039
+ readonly securitizationRatio: Compact<u128>;
2040
+ }
2041
+
2042
+ /** @name ArgonPrimitivesVaultVaultTerms (201) */
2043
+ interface ArgonPrimitivesVaultVaultTerms extends Struct {
2044
+ readonly bitcoinAnnualPercentRate: Compact<u128>;
2045
+ readonly bitcoinBaseFee: Compact<u128>;
2046
+ readonly treasuryProfitSharing: Compact<Permill>;
2047
+ }
2048
+
2049
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (207) */
2050
+ interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2051
+
2052
+ /** @name PalletBitcoinLocksCall (209) */
2053
+ interface PalletBitcoinLocksCall extends Enum {
2054
+ readonly isInitialize: boolean;
2055
+ readonly asInitialize: {
2056
+ readonly vaultId: u32;
2057
+ readonly satoshis: Compact<u64>;
2058
+ readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2059
+ readonly options: Option<PalletBitcoinLocksLockOptions>;
2060
+ } & Struct;
2061
+ readonly isRequestRelease: boolean;
2062
+ readonly asRequestRelease: {
2063
+ readonly utxoId: u64;
2064
+ readonly toScriptPubkey: Bytes;
2065
+ readonly bitcoinNetworkFee: u64;
2066
+ } & Struct;
2067
+ readonly isCosignRelease: boolean;
2068
+ readonly asCosignRelease: {
2069
+ readonly utxoId: u64;
2070
+ readonly signature: Bytes;
2071
+ } & Struct;
2072
+ readonly isRatchet: boolean;
2073
+ readonly asRatchet: {
2074
+ readonly utxoId: u64;
2075
+ readonly options: Option<PalletBitcoinLocksLockOptions>;
2076
+ } & Struct;
2077
+ readonly isAdminModifyMinimumLockedSats: boolean;
2078
+ readonly asAdminModifyMinimumLockedSats: {
2079
+ readonly satoshis: u64;
2080
+ } & Struct;
2081
+ readonly isRequestOrphanedUtxoRelease: boolean;
2082
+ readonly asRequestOrphanedUtxoRelease: {
2083
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2084
+ readonly toScriptPubkey: Bytes;
2085
+ readonly bitcoinNetworkFee: u64;
2086
+ } & Struct;
2087
+ readonly isCosignOrphanedUtxoRelease: boolean;
2088
+ readonly asCosignOrphanedUtxoRelease: {
2089
+ readonly orphanOwner: AccountId32;
2090
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2091
+ readonly signature: Bytes;
2092
+ } & Struct;
2093
+ readonly isInitializeFor: boolean;
2094
+ readonly asInitializeFor: {
2095
+ readonly accountId: AccountId32;
2096
+ readonly vaultId: u32;
2097
+ readonly satoshis: Compact<u64>;
2098
+ readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2099
+ readonly options: Option<PalletBitcoinLocksLockOptions>;
2100
+ } & Struct;
2101
+ readonly isIncreaseSecuritization: boolean;
2102
+ readonly asIncreaseSecuritization: {
2103
+ readonly utxoId: u64;
2104
+ readonly newSatoshis: Compact<u64>;
2105
+ } & Struct;
2106
+ readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'Ratchet' | 'AdminModifyMinimumLockedSats' | 'RequestOrphanedUtxoRelease' | 'CosignOrphanedUtxoRelease' | 'InitializeFor' | 'IncreaseSecuritization';
2107
+ }
2108
+
2109
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (210) */
2110
+ interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2111
+
2112
+ /** @name PalletBitcoinLocksLockOptions (213) */
2113
+ interface PalletBitcoinLocksLockOptions extends Enum {
2114
+ readonly isV1: boolean;
2115
+ readonly asV1: {
2116
+ readonly microgonsAtTargetPerBtc: Option<u128>;
2117
+ } & Struct;
2118
+ readonly type: 'V1';
2119
+ }
2120
+
2121
+ /** @name PalletNotariesCall (216) */
2122
+ interface PalletNotariesCall extends Enum {
2123
+ readonly isPropose: boolean;
2124
+ readonly asPropose: {
2125
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
2126
+ } & Struct;
2127
+ readonly isActivate: boolean;
2128
+ readonly asActivate: {
2129
+ readonly operatorAccount: AccountId32;
2130
+ } & Struct;
2131
+ readonly isUpdate: boolean;
2132
+ readonly asUpdate: {
2133
+ readonly notaryId: Compact<u32>;
2134
+ readonly meta: ArgonPrimitivesNotaryNotaryMeta;
2135
+ readonly effectiveTick: Compact<u64>;
2136
+ } & Struct;
2137
+ readonly type: 'Propose' | 'Activate' | 'Update';
2138
+ }
2139
+
2140
+ /** @name PalletNotebookCall (217) */
2141
+ interface PalletNotebookCall extends Enum {
2142
+ readonly isSubmit: boolean;
2143
+ readonly asSubmit: {
2144
+ readonly notebooks: Vec<ArgonPrimitivesNotebookSignedNotebookHeader>;
2145
+ } & Struct;
2146
+ readonly isUnlock: boolean;
2147
+ readonly asUnlock: {
2148
+ readonly notaryId: u32;
2149
+ } & Struct;
2150
+ readonly type: 'Submit' | 'Unlock';
2151
+ }
2152
+
2153
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (219) */
2154
+ interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2155
+ readonly header: ArgonPrimitivesNotebookNotebookHeader;
2156
+ readonly signature: U8aFixed;
2157
+ }
2158
+
2159
+ /** @name ArgonPrimitivesNotebookNotebookHeader (220) */
2160
+ interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2161
+ readonly version: Compact<u16>;
2162
+ readonly notebookNumber: Compact<u32>;
2163
+ readonly tick: Compact<u64>;
2164
+ readonly tax: Compact<u128>;
2165
+ readonly notaryId: Compact<u32>;
2166
+ readonly chainTransfers: Vec<ArgonPrimitivesNotebookChainTransfer>;
2167
+ readonly changedAccountsRoot: H256;
2168
+ readonly changedAccountOrigins: Vec<ArgonPrimitivesBalanceChangeAccountOrigin>;
2169
+ readonly blockVotesRoot: H256;
2170
+ readonly blockVotesCount: Compact<u32>;
2171
+ readonly blocksWithVotes: Vec<H256>;
2172
+ readonly blockVotingPower: Compact<u128>;
2173
+ readonly secretHash: H256;
2174
+ readonly parentSecret: Option<H256>;
2175
+ readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2176
+ }
2177
+
2178
+ /** @name ArgonPrimitivesNotebookChainTransfer (223) */
2179
+ interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2180
+ readonly isToMainchain: boolean;
2181
+ readonly asToMainchain: {
2182
+ readonly accountId: AccountId32;
2183
+ readonly amount: Compact<u128>;
2184
+ } & Struct;
2185
+ readonly isToLocalchain: boolean;
2186
+ readonly asToLocalchain: {
2187
+ readonly transferId: Compact<u32>;
2188
+ } & Struct;
2189
+ readonly type: 'ToMainchain' | 'ToLocalchain';
2190
+ }
2191
+
2192
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (226) */
2193
+ interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2194
+ readonly notebookNumber: Compact<u32>;
2195
+ readonly accountUid: Compact<u32>;
2196
+ }
2197
+
2198
+ /** @name PalletLocalchainTransferCall (233) */
2199
+ interface PalletLocalchainTransferCall extends Enum {
2200
+ readonly isSendToLocalchain: boolean;
2201
+ readonly asSendToLocalchain: {
2202
+ readonly amount: Compact<u128>;
2203
+ readonly notaryId: u32;
2204
+ } & Struct;
2205
+ readonly type: 'SendToLocalchain';
2206
+ }
2207
+
2208
+ /** @name PalletBlockSealSpecCall (234) */
2209
+ interface PalletBlockSealSpecCall extends Enum {
2210
+ readonly isConfigure: boolean;
2211
+ readonly asConfigure: {
2212
+ readonly voteMinimum: Option<u128>;
2213
+ readonly computeDifficulty: Option<u128>;
2214
+ } & Struct;
2215
+ readonly type: 'Configure';
2216
+ }
2217
+
2218
+ /** @name PalletDomainsCall (235) */
2219
+ interface PalletDomainsCall extends Enum {
2220
+ readonly isSetZoneRecord: boolean;
2221
+ readonly asSetZoneRecord: {
2222
+ readonly domainHash: H256;
2223
+ readonly zoneRecord: ArgonPrimitivesDomainZoneRecord;
2224
+ } & Struct;
2225
+ readonly type: 'SetZoneRecord';
2226
+ }
2227
+
2228
+ /** @name PalletPriceIndexCall (236) */
2229
+ interface PalletPriceIndexCall extends Enum {
2230
+ readonly isSubmit: boolean;
2231
+ readonly asSubmit: {
2232
+ readonly index: PalletPriceIndexPriceIndex;
2233
+ } & Struct;
2234
+ readonly isSetOperator: boolean;
2235
+ readonly asSetOperator: {
2236
+ readonly accountId: AccountId32;
2237
+ } & Struct;
2238
+ readonly type: 'Submit' | 'SetOperator';
2239
+ }
2240
+
2241
+ /** @name PalletPriceIndexPriceIndex (237) */
2242
+ interface PalletPriceIndexPriceIndex extends Struct {
2243
+ readonly btcUsdPrice: Compact<u128>;
2244
+ readonly argonotUsdPrice: u128;
2245
+ readonly argonUsdPrice: Compact<u128>;
2246
+ readonly argonUsdTargetPrice: u128;
2247
+ readonly argonTimeWeightedAverageLiquidity: u128;
2248
+ readonly tick: Compact<u64>;
2249
+ }
2250
+
2251
+ /** @name PalletGrandpaCall (238) */
2252
+ interface PalletGrandpaCall extends Enum {
2253
+ readonly isReportEquivocation: boolean;
2254
+ readonly asReportEquivocation: {
2255
+ readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
2256
+ readonly keyOwnerProof: SpCoreVoid;
2257
+ } & Struct;
2258
+ readonly isReportEquivocationUnsigned: boolean;
2259
+ readonly asReportEquivocationUnsigned: {
2260
+ readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
2261
+ readonly keyOwnerProof: SpCoreVoid;
2262
+ } & Struct;
2263
+ readonly isNoteStalled: boolean;
2264
+ readonly asNoteStalled: {
2265
+ readonly delay: u32;
2266
+ readonly bestFinalizedBlockNumber: u32;
2267
+ } & Struct;
2268
+ readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2269
+ }
2270
+
2271
+ /** @name SpConsensusGrandpaEquivocationProof (239) */
2272
+ interface SpConsensusGrandpaEquivocationProof extends Struct {
2273
+ readonly setId: u64;
2274
+ readonly equivocation: SpConsensusGrandpaEquivocation;
2275
+ }
2276
+
2277
+ /** @name SpConsensusGrandpaEquivocation (240) */
2278
+ interface SpConsensusGrandpaEquivocation extends Enum {
2279
+ readonly isPrevote: boolean;
2280
+ readonly asPrevote: FinalityGrandpaEquivocationPrevote;
2281
+ readonly isPrecommit: boolean;
2282
+ readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
2283
+ readonly type: 'Prevote' | 'Precommit';
2284
+ }
2285
+
2286
+ /** @name FinalityGrandpaEquivocationPrevote (241) */
2287
+ interface FinalityGrandpaEquivocationPrevote extends Struct {
2288
+ readonly roundNumber: u64;
2289
+ readonly identity: SpConsensusGrandpaAppPublic;
2290
+ readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2291
+ readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2292
+ }
2293
+
2294
+ /** @name FinalityGrandpaPrevote (242) */
2295
+ interface FinalityGrandpaPrevote extends Struct {
2296
+ readonly targetHash: H256;
2297
+ readonly targetNumber: u32;
2298
+ }
2299
+
2300
+ /** @name SpConsensusGrandpaAppSignature (243) */
2301
+ interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2302
+
2303
+ /** @name FinalityGrandpaEquivocationPrecommit (245) */
2304
+ interface FinalityGrandpaEquivocationPrecommit extends Struct {
2305
+ readonly roundNumber: u64;
2306
+ readonly identity: SpConsensusGrandpaAppPublic;
2307
+ readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2308
+ readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2309
+ }
2310
+
2311
+ /** @name FinalityGrandpaPrecommit (246) */
2312
+ interface FinalityGrandpaPrecommit extends Struct {
2313
+ readonly targetHash: H256;
2314
+ readonly targetNumber: u32;
2315
+ }
2316
+
2317
+ /** @name SpCoreVoid (248) */
2318
+ type SpCoreVoid = Null;
2319
+
2320
+ /** @name PalletBlockSealCall (249) */
2321
+ interface PalletBlockSealCall extends Enum {
2322
+ readonly isApply: boolean;
2323
+ readonly asApply: {
2324
+ readonly seal: ArgonPrimitivesInherentsBlockSealInherent;
2325
+ } & Struct;
2326
+ readonly type: 'Apply';
2327
+ }
2328
+
2329
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (250) */
2330
+ interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
2331
+ readonly isVote: boolean;
2332
+ readonly asVote: {
2333
+ readonly sealStrength: U256;
2334
+ readonly notaryId: Compact<u32>;
2335
+ readonly sourceNotebookNumber: Compact<u32>;
2336
+ readonly sourceNotebookProof: ArgonPrimitivesBalanceChangeMerkleProof;
2337
+ readonly blockVote: ArgonPrimitivesBlockVoteBlockVoteT;
2338
+ readonly minerNonceScore: Option<U256>;
2339
+ } & Struct;
2340
+ readonly isCompute: boolean;
2341
+ readonly type: 'Vote' | 'Compute';
2342
+ }
2343
+
2344
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (251) */
2345
+ interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
2346
+ readonly proof: Vec<H256>;
2347
+ readonly numberOfLeaves: Compact<u32>;
2348
+ readonly leafIndex: Compact<u32>;
2349
+ }
2350
+
2351
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (253) */
2352
+ interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
2353
+ readonly accountId: AccountId32;
2354
+ readonly blockHash: H256;
2355
+ readonly index: Compact<u32>;
2356
+ readonly power: Compact<u128>;
2357
+ readonly signature: SpRuntimeMultiSignature;
2358
+ readonly blockRewardsAccountId: AccountId32;
2359
+ readonly tick: Compact<u64>;
2360
+ }
2361
+
2362
+ /** @name SpRuntimeMultiSignature (254) */
2363
+ interface SpRuntimeMultiSignature extends Enum {
2364
+ readonly isEd25519: boolean;
2365
+ readonly asEd25519: U8aFixed;
2366
+ readonly isSr25519: boolean;
2367
+ readonly asSr25519: U8aFixed;
2368
+ readonly isEcdsa: boolean;
2369
+ readonly asEcdsa: U8aFixed;
2370
+ readonly isEth: boolean;
2371
+ readonly asEth: U8aFixed;
2372
+ readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2373
+ }
2374
+
2375
+ /** @name PalletBlockRewardsCall (256) */
2376
+ interface PalletBlockRewardsCall extends Enum {
2377
+ readonly isSetBlockRewardsPaused: boolean;
2378
+ readonly asSetBlockRewardsPaused: {
2379
+ readonly paused: bool;
2380
+ } & Struct;
2381
+ readonly type: 'SetBlockRewardsPaused';
2382
+ }
2383
+
2384
+ /** @name PalletMintCall (257) */
2385
+ type PalletMintCall = Null;
2386
+
2387
+ /** @name PalletBalancesCall (258) */
2388
+ interface PalletBalancesCall extends Enum {
2389
+ readonly isTransferAllowDeath: boolean;
2390
+ readonly asTransferAllowDeath: {
2391
+ readonly dest: MultiAddress;
2392
+ readonly value: Compact<u128>;
2393
+ } & Struct;
2394
+ readonly isForceTransfer: boolean;
2395
+ readonly asForceTransfer: {
2396
+ readonly source: MultiAddress;
2397
+ readonly dest: MultiAddress;
2398
+ readonly value: Compact<u128>;
2399
+ } & Struct;
2400
+ readonly isTransferKeepAlive: boolean;
2401
+ readonly asTransferKeepAlive: {
2402
+ readonly dest: MultiAddress;
2403
+ readonly value: Compact<u128>;
2404
+ } & Struct;
2405
+ readonly isTransferAll: boolean;
2406
+ readonly asTransferAll: {
2407
+ readonly dest: MultiAddress;
2408
+ readonly keepAlive: bool;
2409
+ } & Struct;
2410
+ readonly isForceUnreserve: boolean;
2411
+ readonly asForceUnreserve: {
2412
+ readonly who: MultiAddress;
2413
+ readonly amount: u128;
2414
+ } & Struct;
2415
+ readonly isUpgradeAccounts: boolean;
2416
+ readonly asUpgradeAccounts: {
2417
+ readonly who: Vec<AccountId32>;
2418
+ } & Struct;
2419
+ readonly isForceSetBalance: boolean;
2420
+ readonly asForceSetBalance: {
2421
+ readonly who: MultiAddress;
2422
+ readonly newFree: Compact<u128>;
2423
+ } & Struct;
2424
+ readonly isForceAdjustTotalIssuance: boolean;
2425
+ readonly asForceAdjustTotalIssuance: {
2426
+ readonly direction: PalletBalancesAdjustmentDirection;
2427
+ readonly delta: Compact<u128>;
2428
+ } & Struct;
2429
+ readonly isBurn: boolean;
2430
+ readonly asBurn: {
2431
+ readonly value: Compact<u128>;
2432
+ readonly keepAlive: bool;
2433
+ } & Struct;
2434
+ readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
2435
+ }
2436
+
2437
+ /** @name PalletBalancesAdjustmentDirection (259) */
2438
+ interface PalletBalancesAdjustmentDirection extends Enum {
2439
+ readonly isIncrease: boolean;
2440
+ readonly isDecrease: boolean;
2441
+ readonly type: 'Increase' | 'Decrease';
2442
+ }
2443
+
2444
+ /** @name PalletTxPauseCall (261) */
2445
+ interface PalletTxPauseCall extends Enum {
2446
+ readonly isPause: boolean;
2447
+ readonly asPause: {
2448
+ readonly fullName: ITuple<[Bytes, Bytes]>;
2449
+ } & Struct;
2450
+ readonly isUnpause: boolean;
2451
+ readonly asUnpause: {
2452
+ readonly ident: ITuple<[Bytes, Bytes]>;
2453
+ } & Struct;
2454
+ readonly type: 'Pause' | 'Unpause';
2455
+ }
2456
+
2457
+ /** @name PalletUtilityCall (262) */
2458
+ interface PalletUtilityCall extends Enum {
2459
+ readonly isBatch: boolean;
2460
+ readonly asBatch: {
2461
+ readonly calls: Vec<Call>;
2462
+ } & Struct;
2463
+ readonly isAsDerivative: boolean;
2464
+ readonly asAsDerivative: {
2465
+ readonly index: u16;
2466
+ readonly call: Call;
2467
+ } & Struct;
2468
+ readonly isBatchAll: boolean;
2469
+ readonly asBatchAll: {
2470
+ readonly calls: Vec<Call>;
2471
+ } & Struct;
2472
+ readonly isDispatchAs: boolean;
2473
+ readonly asDispatchAs: {
2474
+ readonly asOrigin: ArgonRuntimeOriginCaller;
2475
+ readonly call: Call;
2476
+ } & Struct;
2477
+ readonly isForceBatch: boolean;
2478
+ readonly asForceBatch: {
2479
+ readonly calls: Vec<Call>;
2480
+ } & Struct;
2481
+ readonly isWithWeight: boolean;
2482
+ readonly asWithWeight: {
2483
+ readonly call: Call;
2484
+ readonly weight: SpWeightsWeightV2Weight;
2485
+ } & Struct;
2486
+ readonly isIfElse: boolean;
2487
+ readonly asIfElse: {
2488
+ readonly main: Call;
2489
+ readonly fallback: Call;
2490
+ } & Struct;
2491
+ readonly isDispatchAsFallible: boolean;
2492
+ readonly asDispatchAsFallible: {
2493
+ readonly asOrigin: ArgonRuntimeOriginCaller;
2494
+ readonly call: Call;
2495
+ } & Struct;
2496
+ readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'IfElse' | 'DispatchAsFallible';
2497
+ }
2498
+
2499
+ /** @name PalletSudoCall (264) */
2500
+ interface PalletSudoCall extends Enum {
2501
+ readonly isSudo: boolean;
2502
+ readonly asSudo: {
2503
+ readonly call: Call;
2504
+ } & Struct;
2505
+ readonly isSudoUncheckedWeight: boolean;
2506
+ readonly asSudoUncheckedWeight: {
2507
+ readonly call: Call;
2508
+ readonly weight: SpWeightsWeightV2Weight;
2509
+ } & Struct;
2510
+ readonly isSetKey: boolean;
2511
+ readonly asSetKey: {
2512
+ readonly new_: MultiAddress;
2513
+ } & Struct;
2514
+ readonly isSudoAs: boolean;
2515
+ readonly asSudoAs: {
2516
+ readonly who: MultiAddress;
2517
+ readonly call: Call;
2518
+ } & Struct;
2519
+ readonly isRemoveKey: boolean;
2520
+ readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
2521
+ }
2522
+
2523
+ /** @name PalletTreasuryCall (265) */
2524
+ interface PalletTreasuryCall extends Enum {
2525
+ readonly isBuyBonds: boolean;
2526
+ readonly asBuyBonds: {
2527
+ readonly vaultId: u32;
2528
+ readonly bonds: u32;
2529
+ } & Struct;
2530
+ readonly isLiquidateBondLot: boolean;
2531
+ readonly asLiquidateBondLot: {
2532
+ readonly bondLotId: u64;
2533
+ } & Struct;
2534
+ readonly type: 'BuyBonds' | 'LiquidateBondLot';
2535
+ }
2536
+
2537
+ /** @name PalletOperationalAccountsCall (266) */
2538
+ interface PalletOperationalAccountsCall extends Enum {
2539
+ readonly isRegister: boolean;
2540
+ readonly asRegister: {
2541
+ readonly registration: PalletOperationalAccountsRegistration;
2542
+ } & Struct;
2543
+ readonly isSetRewardConfig: boolean;
2544
+ readonly asSetRewardConfig: {
2545
+ readonly operationalReferralReward: u128;
2546
+ readonly referralBonusReward: u128;
2547
+ } & Struct;
2548
+ readonly isForceSetProgress: boolean;
2549
+ readonly asForceSetProgress: {
2550
+ readonly owner: AccountId32;
2551
+ readonly patch: PalletOperationalAccountsOperationalProgressPatch;
2552
+ readonly updateOperationalProgress: bool;
2553
+ } & Struct;
2554
+ readonly isSetEncryptedServerForSponsee: boolean;
2555
+ readonly asSetEncryptedServerForSponsee: {
2556
+ readonly sponsee: AccountId32;
2557
+ readonly encryptedServer: Bytes;
2558
+ } & Struct;
2559
+ readonly isActivate: boolean;
2560
+ readonly isClaimRewards: boolean;
2561
+ readonly asClaimRewards: {
2562
+ readonly amount: u128;
2563
+ } & Struct;
2564
+ readonly type: 'Register' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForSponsee' | 'Activate' | 'ClaimRewards';
2565
+ }
2566
+
2567
+ /** @name PalletOperationalAccountsRegistration (267) */
2568
+ interface PalletOperationalAccountsRegistration extends Enum {
2569
+ readonly isV1: boolean;
2570
+ readonly asV1: PalletOperationalAccountsRegistrationV1;
2571
+ readonly type: 'V1';
2572
+ }
2573
+
2574
+ /** @name PalletOperationalAccountsRegistrationV1 (268) */
2575
+ interface PalletOperationalAccountsRegistrationV1 extends Struct {
2576
+ readonly operationalAccount: AccountId32;
2577
+ readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
2578
+ readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
2579
+ readonly vaultAccount: AccountId32;
2580
+ readonly miningFundingAccount: AccountId32;
2581
+ readonly miningBotAccount: AccountId32;
2582
+ readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
2583
+ readonly miningFundingAccountProof: PalletOperationalAccountsAccountOwnershipProof;
2584
+ readonly miningBotAccountProof: PalletOperationalAccountsAccountOwnershipProof;
2585
+ readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
2586
+ }
2587
+
2588
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (269) */
2589
+ interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
2590
+
2591
+ /** @name PalletOperationalAccountsAccountOwnershipProof (270) */
2592
+ interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
2593
+ readonly signature: SpRuntimeMultiSignature;
2594
+ }
2595
+
2596
+ /** @name PalletOperationalAccountsReferralProof (272) */
2597
+ interface PalletOperationalAccountsReferralProof extends Struct {
2598
+ readonly referralCode: U8aFixed;
2599
+ readonly referralSignature: U8aFixed;
2600
+ readonly sponsor: AccountId32;
2601
+ readonly expiresAtFrame: Compact<u64>;
2602
+ readonly sponsorSignature: SpRuntimeMultiSignature;
2603
+ }
2604
+
2605
+ /** @name PalletOperationalAccountsOperationalProgressPatch (273) */
2606
+ interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
2607
+ readonly hasUniswapTransfer: Option<bool>;
2608
+ readonly vaultCreated: Option<bool>;
2609
+ readonly hasTreasuryPoolParticipation: Option<bool>;
2610
+ readonly observedBitcoinTotal: Option<u128>;
2611
+ readonly observedMiningSeatTotal: Option<u32>;
2612
+ }
2613
+
2614
+ /** @name PalletEthereumVerifierCall (275) */
2615
+ interface PalletEthereumVerifierCall extends Enum {
2616
+ readonly isForceCheckpoint: boolean;
2617
+ readonly asForceCheckpoint: {
2618
+ readonly update: PalletEthereumVerifierCheckpointUpdate;
2619
+ readonly forkVersions: PalletEthereumVerifierForkVersions;
2620
+ } & Struct;
2621
+ readonly isSubmit: boolean;
2622
+ readonly asSubmit: {
2623
+ readonly update: PalletEthereumVerifierUpdate;
2624
+ } & Struct;
2625
+ readonly isImportExecutionHeaderAnchor: boolean;
2626
+ readonly asImportExecutionHeaderAnchor: {
2627
+ readonly executionProof: PalletEthereumVerifierExecutionProof;
2628
+ } & Struct;
2629
+ readonly isSetOperatingMode: boolean;
2630
+ readonly asSetOperatingMode: {
2631
+ readonly mode: PalletEthereumVerifierBasicOperatingMode;
2632
+ } & Struct;
2633
+ readonly type: 'ForceCheckpoint' | 'Submit' | 'ImportExecutionHeaderAnchor' | 'SetOperatingMode';
2634
+ }
2635
+
2636
+ /** @name PalletEthereumVerifierCheckpointUpdate (276) */
2637
+ interface PalletEthereumVerifierCheckpointUpdate extends Struct {
2638
+ readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
2639
+ readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
2640
+ readonly currentSyncCommitteeBranch: Vec<H256>;
2641
+ readonly validatorsRoot: H256;
2642
+ }
2643
+
2644
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (277) */
2645
+ interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
2646
+ readonly slot: u64;
2647
+ readonly proposerIndex: u64;
2648
+ readonly parentRoot: H256;
2649
+ readonly stateRoot: H256;
2650
+ readonly bodyRoot: H256;
2651
+ }
2652
+
2653
+ /** @name PalletEthereumVerifierSyncCommittee (278) */
2654
+ interface PalletEthereumVerifierSyncCommittee extends Struct {
2655
+ readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
2656
+ readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
2657
+ }
2658
+
2659
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (280) */
2660
+ interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
2661
+
2662
+ /** @name PalletEthereumVerifierForkVersions (284) */
2663
+ interface PalletEthereumVerifierForkVersions extends Struct {
2664
+ readonly genesis: PalletEthereumVerifierFork;
2665
+ readonly altair: PalletEthereumVerifierFork;
2666
+ readonly bellatrix: PalletEthereumVerifierFork;
2667
+ readonly capella: PalletEthereumVerifierFork;
2668
+ readonly deneb: PalletEthereumVerifierFork;
2669
+ readonly electra: PalletEthereumVerifierFork;
2670
+ readonly fulu: PalletEthereumVerifierFork;
2671
+ }
2672
+
2673
+ /** @name PalletEthereumVerifierFork (285) */
2674
+ interface PalletEthereumVerifierFork extends Struct {
2675
+ readonly version: U8aFixed;
2676
+ readonly epoch: Compact<u64>;
2677
+ }
2678
+
2679
+ /** @name PalletEthereumVerifierUpdate (286) */
2680
+ interface PalletEthereumVerifierUpdate extends Struct {
2681
+ readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
2682
+ readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
2683
+ readonly signatureSlot: Compact<u64>;
2684
+ readonly nextSyncCommitteeUpdate: Option<PalletEthereumVerifierNextSyncCommitteeUpdate>;
2685
+ readonly finalizedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
2686
+ readonly finalityBranch: Vec<H256>;
2687
+ }
2688
+
2689
+ /** @name PalletEthereumVerifierSyncAggregate (287) */
2690
+ interface PalletEthereumVerifierSyncAggregate extends Struct {
2691
+ readonly syncCommitteeBits: Bytes;
2692
+ readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
2693
+ }
2694
+
2695
+ /** @name SnowbridgeBeaconPrimitivesSignature (289) */
2696
+ interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
2697
+
2698
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (292) */
2699
+ interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
2700
+ readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
2701
+ readonly nextSyncCommitteeBranch: Vec<H256>;
2702
+ }
2703
+
2704
+ /** @name PalletEthereumVerifierExecutionProof (293) */
2705
+ interface PalletEthereumVerifierExecutionProof extends Struct {
2706
+ readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
2707
+ readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
2708
+ readonly executionBranch: Vec<H256>;
2709
+ }
2710
+
2711
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (294) */
2712
+ interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
2713
+ readonly isCapella: boolean;
2714
+ readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
2715
+ readonly isDeneb: boolean;
2716
+ readonly asDeneb: SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader;
2717
+ readonly type: 'Capella' | 'Deneb';
2718
+ }
2719
+
2720
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (295) */
2721
+ interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
2722
+ readonly parentHash: H256;
2723
+ readonly feeRecipient: H160;
2724
+ readonly stateRoot: H256;
2725
+ readonly receiptsRoot: H256;
2726
+ readonly logsBloom: Bytes;
2727
+ readonly prevRandao: H256;
2728
+ readonly blockNumber: u64;
2729
+ readonly gasLimit: u64;
2730
+ readonly gasUsed: u64;
2731
+ readonly timestamp: u64;
2732
+ readonly extraData: Bytes;
2733
+ readonly baseFeePerGas: U256;
2734
+ readonly blockHash: H256;
2735
+ readonly transactionsRoot: H256;
2736
+ readonly withdrawalsRoot: H256;
2737
+ }
2738
+
2739
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (296) */
2740
+ interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
2741
+ readonly parentHash: H256;
2742
+ readonly feeRecipient: H160;
2743
+ readonly stateRoot: H256;
2744
+ readonly receiptsRoot: H256;
2745
+ readonly logsBloom: Bytes;
2746
+ readonly prevRandao: H256;
2747
+ readonly blockNumber: u64;
2748
+ readonly gasLimit: u64;
2749
+ readonly gasUsed: u64;
2750
+ readonly timestamp: u64;
2751
+ readonly extraData: Bytes;
2752
+ readonly baseFeePerGas: U256;
2753
+ readonly blockHash: H256;
2754
+ readonly transactionsRoot: H256;
2755
+ readonly withdrawalsRoot: H256;
2756
+ readonly blobGasUsed: u64;
2757
+ readonly excessBlobGas: u64;
2758
+ }
2759
+
2760
+ /** @name PalletCrosschainTransferCall (297) */
2761
+ interface PalletCrosschainTransferCall extends Enum {
2762
+ readonly isSetChainConfig: boolean;
2763
+ readonly asSetChainConfig: {
2764
+ readonly config: PalletCrosschainTransferChainConfig;
2765
+ } & Struct;
2766
+ readonly isProveTransfer: boolean;
2767
+ readonly asProveTransfer: {
2768
+ readonly proof: PalletCrosschainTransferTransferProof;
2769
+ } & Struct;
2770
+ readonly type: 'SetChainConfig' | 'ProveTransfer';
2771
+ }
2772
+
2773
+ /** @name PalletCrosschainTransferChainConfig (298) */
2774
+ interface PalletCrosschainTransferChainConfig extends Enum {
2775
+ readonly isEthereum: boolean;
2776
+ readonly asEthereum: {
2777
+ readonly gateway: H160;
2778
+ readonly argonToken: H160;
2779
+ readonly argonotToken: H160;
2780
+ readonly previousGateway: Option<H160>;
2781
+ readonly previousReleaseExpiration: Option<u64>;
2782
+ } & Struct;
2783
+ readonly type: 'Ethereum';
2784
+ }
2785
+
2786
+ /** @name PalletCrosschainTransferTransferProof (300) */
2787
+ interface PalletCrosschainTransferTransferProof extends Enum {
2788
+ readonly isEthereum: boolean;
2789
+ readonly asEthereum: {
2790
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
2791
+ readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
2792
+ readonly proof: ArgonPrimitivesEthereumEthereumProof;
2793
+ } & Struct;
2794
+ readonly type: 'Ethereum';
2795
+ }
2796
+
2797
+ /** @name ArgonPrimitivesEthereumEthereumLog (301) */
2798
+ interface ArgonPrimitivesEthereumEthereumLog extends Struct {
2799
+ readonly address: H160;
2800
+ readonly topics: Vec<H256>;
2801
+ readonly data: Bytes;
2802
+ }
2803
+
2804
+ /** @name ArgonPrimitivesEthereumEthereumProof (304) */
2805
+ interface ArgonPrimitivesEthereumEthereumProof extends Struct {
2806
+ readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
2807
+ readonly receiptProof: ArgonPrimitivesEthereumEthereumReceiptProof;
2808
+ }
2809
+
2810
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (305) */
2811
+ interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
2812
+ readonly anchorBlockHash: H256;
2813
+ readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
2814
+ }
2815
+
2816
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (307) */
2817
+ interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
2818
+ readonly rlp: Bytes;
2819
+ }
2820
+
2821
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProof (310) */
2822
+ interface ArgonPrimitivesEthereumEthereumReceiptProof extends Struct {
2823
+ readonly transactionIndex: Compact<u64>;
2824
+ readonly nodes: Vec<Bytes>;
2825
+ }
2826
+
2827
+ /** @name PalletMultisigError (314) */
2828
+ interface PalletMultisigError extends Enum {
2829
+ readonly isMinimumThreshold: boolean;
2830
+ readonly isAlreadyApproved: boolean;
2831
+ readonly isNoApprovalsNeeded: boolean;
2832
+ readonly isTooFewSignatories: boolean;
2833
+ readonly isTooManySignatories: boolean;
2834
+ readonly isSignatoriesOutOfOrder: boolean;
2835
+ readonly isSenderInSignatories: boolean;
2836
+ readonly isNotFound: boolean;
2837
+ readonly isNotOwner: boolean;
2838
+ readonly isNoTimepoint: boolean;
2839
+ readonly isWrongTimepoint: boolean;
2840
+ readonly isUnexpectedTimepoint: boolean;
2841
+ readonly isMaxWeightTooLow: boolean;
2842
+ readonly isAlreadyStored: boolean;
2843
+ readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
2844
+ }
2845
+
2846
+ /** @name PalletProxyProxyDefinition (317) */
2847
+ interface PalletProxyProxyDefinition extends Struct {
2848
+ readonly delegate: AccountId32;
2849
+ readonly proxyType: ArgonRuntimeProxyType;
2850
+ readonly delay: u32;
2851
+ }
2852
+
2853
+ /** @name PalletProxyAnnouncement (321) */
2854
+ interface PalletProxyAnnouncement extends Struct {
2855
+ readonly real: AccountId32;
2856
+ readonly callHash: H256;
2857
+ readonly height: u32;
2858
+ }
2859
+
2860
+ /** @name PalletProxyError (323) */
2861
+ interface PalletProxyError extends Enum {
2862
+ readonly isTooMany: boolean;
2863
+ readonly isNotFound: boolean;
2864
+ readonly isNotProxy: boolean;
2865
+ readonly isUnproxyable: boolean;
2866
+ readonly isDuplicate: boolean;
2867
+ readonly isNoPermission: boolean;
2868
+ readonly isUnannounced: boolean;
2869
+ readonly isNoSelfProxy: boolean;
2870
+ readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
2871
+ }
2872
+
2873
+ /** @name ArgonPrimitivesTickTicker (324) */
2874
+ interface ArgonPrimitivesTickTicker extends Struct {
2875
+ readonly tickDurationMillis: Compact<u64>;
2876
+ readonly channelHoldExpirationTicks: Compact<u64>;
2877
+ }
2878
+
2879
+ /** @name PalletTicksError (326) */
2880
+ type PalletTicksError = Null;
2881
+
2882
+ /** @name PalletMiningSlotMinerNonceScoring (329) */
2883
+ interface PalletMiningSlotMinerNonceScoring extends Struct {
2884
+ readonly nonce: U256;
2885
+ readonly lastWinBlock: Option<u32>;
2886
+ readonly blocksWonInFrame: u16;
2887
+ readonly frameStartBlocksWonSurplus: i16;
2888
+ }
2889
+
2890
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (341) */
2891
+ interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
2892
+ readonly bidsCount: u32;
2893
+ readonly bidAmountMin: u128;
2894
+ readonly bidAmountMax: u128;
2895
+ readonly bidAmountSum: u128;
2896
+ }
2897
+
2898
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (345) */
2899
+ interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
2900
+ readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
2901
+ readonly ticksBetweenSlots: Compact<u64>;
2902
+ readonly slotBiddingStartAfterTicks: Compact<u64>;
2903
+ }
2904
+
2905
+ /** @name PalletMiningSlotError (356) */
2906
+ interface PalletMiningSlotError extends Enum {
2907
+ readonly isSlotNotTakingBids: boolean;
2908
+ readonly isTooManyBlockRegistrants: boolean;
2909
+ readonly isInsufficientOwnershipTokens: boolean;
2910
+ readonly isBidTooLow: boolean;
2911
+ readonly isCannotRegisterOverlappingSessions: boolean;
2912
+ readonly isCannotChangeFundingAccount: boolean;
2913
+ readonly isInsufficientFunds: boolean;
2914
+ readonly isBidCannotBeReduced: boolean;
2915
+ readonly isInvalidBidAmount: boolean;
2916
+ readonly isUnrecoverableHold: boolean;
2917
+ readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'UnrecoverableHold';
2918
+ }
2919
+
2920
+ /** @name ArgonPrimitivesBitcoinUtxoValue (357) */
2921
+ interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
2922
+ readonly utxoId: u64;
2923
+ readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2924
+ readonly satoshis: Compact<u64>;
2925
+ readonly submittedAtHeight: Compact<u64>;
2926
+ readonly watchForSpentUntilHeight: Compact<u64>;
2927
+ }
2928
+
2929
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (358) */
2930
+ interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
2931
+ readonly isP2wsh: boolean;
2932
+ readonly asP2wsh: {
2933
+ readonly wscriptHash: H256;
2934
+ } & Struct;
2935
+ readonly type: 'P2wsh';
2936
+ }
2937
+
2938
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (367) */
2939
+ interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
2940
+ readonly isBitcoin: boolean;
2941
+ readonly isTestnet: boolean;
2942
+ readonly isSignet: boolean;
2943
+ readonly isRegtest: boolean;
2944
+ readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
2945
+ }
2946
+
2947
+ /** @name PalletBitcoinUtxosError (368) */
2948
+ interface PalletBitcoinUtxosError extends Enum {
2949
+ readonly isNoPermissions: boolean;
2950
+ readonly isNoBitcoinConfirmedBlock: boolean;
2951
+ readonly isInsufficientBitcoinAmount: boolean;
2952
+ readonly isNoBitcoinPricesAvailable: boolean;
2953
+ readonly isScriptPubkeyConflict: boolean;
2954
+ readonly isUtxoNotLocked: boolean;
2955
+ readonly isRedemptionsUnavailable: boolean;
2956
+ readonly isInvalidBitcoinSyncHeight: boolean;
2957
+ readonly isBitcoinHeightNotConfirmed: boolean;
2958
+ readonly isMaxUtxosExceeded: boolean;
2959
+ readonly isInvalidBitcoinScript: boolean;
2960
+ readonly isDuplicateUtxoId: boolean;
2961
+ readonly isMaxCandidateUtxosExceeded: boolean;
2962
+ readonly isUtxoNotCandidate: boolean;
2963
+ readonly isLockAlreadyFunded: boolean;
2964
+ readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
2965
+ }
2966
+
2967
+ /** @name ArgonPrimitivesVault (369) */
2968
+ interface ArgonPrimitivesVault extends Struct {
2969
+ readonly operatorAccountId: AccountId32;
2970
+ readonly bitcoinLockDelegateAccount: Option<AccountId32>;
2971
+ readonly name: Option<Bytes>;
2972
+ readonly lastNameChangeTick: Option<u64>;
2973
+ readonly securitization: Compact<u128>;
2974
+ readonly securitizationTarget: Compact<u128>;
2975
+ readonly securitizationLocked: Compact<u128>;
2976
+ readonly securitizationPendingActivation: Compact<u128>;
2977
+ readonly lockedSatoshis: Compact<u64>;
2978
+ readonly securitizedSatoshis: Compact<u64>;
2979
+ readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
2980
+ readonly securitizationRatio: Compact<u128>;
2981
+ readonly isClosed: bool;
2982
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
2983
+ readonly pendingTerms: Option<ITuple<[u64, ArgonPrimitivesVaultVaultTerms]>>;
2984
+ readonly openedTick: Compact<u64>;
2985
+ readonly operationalMinimumReleaseTick: Option<u64>;
2986
+ }
2987
+
2988
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (377) */
2989
+ interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
2990
+ readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2991
+ readonly depth: Compact<u8>;
2992
+ readonly parentFingerprint: U8aFixed;
2993
+ readonly childNumber: Compact<u32>;
2994
+ readonly chainCode: U8aFixed;
2995
+ readonly network: ArgonPrimitivesBitcoinNetworkKind;
2996
+ }
2997
+
2998
+ /** @name ArgonPrimitivesBitcoinNetworkKind (379) */
2999
+ interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3000
+ readonly isMain: boolean;
3001
+ readonly isTest: boolean;
3002
+ readonly type: 'Main' | 'Test';
3003
+ }
3004
+
3005
+ /** @name PalletVaultsVaultFrameRevenue (388) */
3006
+ interface PalletVaultsVaultFrameRevenue extends Struct {
3007
+ readonly frameId: Compact<u64>;
3008
+ readonly bitcoinLockFeeRevenue: Compact<u128>;
3009
+ readonly bitcoinLockFeeCouponValueUsed: Compact<u128>;
3010
+ readonly bitcoinLocksCreated: Compact<u32>;
3011
+ readonly bitcoinLocksNewLiquidityPromised: Compact<u128>;
3012
+ readonly bitcoinLocksReleasedLiquidity: Compact<u128>;
3013
+ readonly bitcoinLocksAddedSatoshis: Compact<u64>;
3014
+ readonly bitcoinLocksReleasedSatoshis: Compact<u64>;
3015
+ readonly securitizationActivated: Compact<u128>;
3016
+ readonly securitizationRelockable: Compact<u128>;
3017
+ readonly securitization: Compact<u128>;
3018
+ readonly treasuryVaultEarnings: Compact<u128>;
3019
+ readonly treasuryTotalEarnings: Compact<u128>;
3020
+ readonly treasuryVaultCapital: Compact<u128>;
3021
+ readonly treasuryExternalCapital: Compact<u128>;
3022
+ readonly uncollectedRevenue: Compact<u128>;
3023
+ }
3024
+
3025
+ /** @name PalletVaultsRecentCapacityDrop (391) */
3026
+ interface PalletVaultsRecentCapacityDrop extends Struct {
3027
+ readonly blockNumber: Compact<u32>;
3028
+ readonly availableBeforeDrop: Compact<u128>;
3029
+ readonly availableAfterDrop: Compact<u128>;
3030
+ readonly noFeeFailuresUsed: Compact<u32>;
3031
+ }
3032
+
3033
+ /** @name PalletVaultsError (393) */
3034
+ interface PalletVaultsError extends Enum {
3035
+ readonly isNoMoreVaultIds: boolean;
3036
+ readonly isInsufficientFunds: boolean;
3037
+ readonly isInsufficientVaultFunds: boolean;
3038
+ readonly isAccountBelowMinimumBalance: boolean;
3039
+ readonly isVaultClosed: boolean;
3040
+ readonly isInvalidVaultAmount: boolean;
3041
+ readonly isVaultReductionBelowSecuritization: boolean;
3042
+ readonly isInvalidSecuritization: boolean;
3043
+ readonly isReusedVaultBitcoinXpub: boolean;
3044
+ readonly isInvalidBitcoinScript: boolean;
3045
+ readonly isInvalidXpubkey: boolean;
3046
+ readonly isWrongXpubNetwork: boolean;
3047
+ readonly isUnsafeXpubkey: boolean;
3048
+ readonly isUnableToDeriveVaultXpubChild: boolean;
3049
+ readonly isBitcoinConversionFailed: boolean;
3050
+ readonly isNoPermissions: boolean;
3051
+ readonly isHoldUnexpectedlyModified: boolean;
3052
+ readonly isUnrecoverableHold: boolean;
3053
+ readonly isVaultNotFound: boolean;
3054
+ readonly isVaultNotYetActive: boolean;
3055
+ readonly isNoVaultBitcoinPubkeysAvailable: boolean;
3056
+ readonly isTermsModificationOverflow: boolean;
3057
+ readonly isTermsChangeAlreadyScheduled: boolean;
3058
+ readonly isInternalError: boolean;
3059
+ readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
3060
+ readonly isFundingChangeAlreadyScheduled: boolean;
3061
+ readonly isInvalidVaultName: boolean;
3062
+ readonly isPendingCosignsBeforeCollect: boolean;
3063
+ readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
3064
+ readonly isAccountAlreadyHasVault: boolean;
3065
+ readonly type: 'NoMoreVaultIds' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowSecuritization' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'InvalidVaultName' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'AccountAlreadyHasVault';
3066
+ }
3067
+
3068
+ /** @name PalletBitcoinLocksLockedBitcoin (394) */
3069
+ interface PalletBitcoinLocksLockedBitcoin extends Struct {
3070
+ readonly vaultId: Compact<u32>;
3071
+ readonly liquidityPromised: Compact<u128>;
3072
+ readonly lockedTargetPrice: Compact<u128>;
3073
+ readonly ownerAccount: AccountId32;
3074
+ readonly securitizationRatio: u128;
3075
+ readonly securityFees: Compact<u128>;
3076
+ readonly couponPaidFees: Compact<u128>;
3077
+ readonly satoshis: Compact<u64>;
3078
+ readonly utxoSatoshis: Option<u64>;
3079
+ readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3080
+ readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3081
+ readonly vaultXpubSources: ITuple<[U8aFixed, u32, u32]>;
3082
+ readonly ownerPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3083
+ readonly vaultClaimHeight: Compact<u64>;
3084
+ readonly openClaimHeight: Compact<u64>;
3085
+ readonly createdAtHeight: Compact<u64>;
3086
+ readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
3087
+ readonly isFunded: bool;
3088
+ readonly fundHoldExtensions: BTreeMap<u64, u128>;
3089
+ readonly createdAtArgonBlock: Compact<u32>;
3090
+ }
3091
+
3092
+ /** @name PalletBitcoinLocksLockReleaseRequest (397) */
3093
+ interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3094
+ readonly utxoId: Compact<u64>;
3095
+ readonly vaultId: Compact<u32>;
3096
+ readonly bitcoinNetworkFee: Compact<u64>;
3097
+ readonly cosignDueFrame: Compact<u64>;
3098
+ readonly toScriptPubkey: Bytes;
3099
+ readonly redemptionAmount: Compact<u128>;
3100
+ }
3101
+
3102
+ /** @name PalletBitcoinLocksOrphanedUtxo (399) */
3103
+ interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3104
+ readonly utxoId: Compact<u64>;
3105
+ readonly vaultId: Compact<u32>;
3106
+ readonly satoshis: Compact<u64>;
3107
+ readonly recordedArgonBlockNumber: Compact<u32>;
3108
+ readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3109
+ }
3110
+
3111
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (401) */
3112
+ interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3113
+ readonly bitcoinNetworkFee: u64;
3114
+ readonly toScriptPubkey: Bytes;
3115
+ readonly createdAtArgonBlockNumber: u32;
3116
+ }
3117
+
3118
+ /** @name PalletBitcoinLocksError (408) */
3119
+ interface PalletBitcoinLocksError extends Enum {
3120
+ readonly isInsufficientFunds: boolean;
3121
+ readonly isInsufficientVaultFunds: boolean;
3122
+ readonly isAccountWouldGoBelowMinimumBalance: boolean;
3123
+ readonly isVaultClosed: boolean;
3124
+ readonly isInvalidVaultAmount: boolean;
3125
+ readonly isRedemptionNotLocked: boolean;
3126
+ readonly isBitcoinReleaseInitiationDeadlinePassed: boolean;
3127
+ readonly isBitcoinFeeTooHigh: boolean;
3128
+ readonly isBitcoinUtxoNotFound: boolean;
3129
+ readonly isBitcoinUnableToBeDecodedForRelease: boolean;
3130
+ readonly isBitcoinSignatureUnableToBeDecoded: boolean;
3131
+ readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
3132
+ readonly isBitcoinInvalidCosignature: boolean;
3133
+ readonly isInsufficientSatoshisLocked: boolean;
3134
+ readonly isNoBitcoinPricesAvailable: boolean;
3135
+ readonly isInvalidBitcoinScript: boolean;
3136
+ readonly isNoPermissions: boolean;
3137
+ readonly isHoldUnexpectedlyModified: boolean;
3138
+ readonly isUnrecoverableHold: boolean;
3139
+ readonly isVaultNotFound: boolean;
3140
+ readonly isGenericVaultError: boolean;
3141
+ readonly asGenericVaultError: ArgonPrimitivesVaultVaultError;
3142
+ readonly isLockNotFound: boolean;
3143
+ readonly isNoVaultBitcoinPubkeysAvailable: boolean;
3144
+ readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
3145
+ readonly isVaultNotYetActive: boolean;
3146
+ readonly isExpirationAtBlockOverflow: boolean;
3147
+ readonly isNoRatchetingAvailable: boolean;
3148
+ readonly isLockInProcessOfRelease: boolean;
3149
+ readonly isLockPendingFunding: boolean;
3150
+ readonly isOverflowError: boolean;
3151
+ readonly isIneligibleMicrogonRateRequested: boolean;
3152
+ readonly isOrphanedUtxoFundingConflict: boolean;
3153
+ readonly isOrphanedUtxoReleaseRequested: boolean;
3154
+ readonly isFundingUtxoCannotBeReleased: boolean;
3155
+ readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
3156
+ readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
3157
+ }
3158
+
3159
+ /** @name ArgonPrimitivesVaultVaultError (409) */
3160
+ interface ArgonPrimitivesVaultVaultError extends Enum {
3161
+ readonly isVaultClosed: boolean;
3162
+ readonly isAccountWouldBeBelowMinimum: boolean;
3163
+ readonly isInsufficientFunds: boolean;
3164
+ readonly isInsufficientVaultFunds: boolean;
3165
+ readonly isHoldUnexpectedlyModified: boolean;
3166
+ readonly isUnrecoverableHold: boolean;
3167
+ readonly isVaultNotFound: boolean;
3168
+ readonly isNoVaultBitcoinPubkeysAvailable: boolean;
3169
+ readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
3170
+ readonly isInvalidBitcoinScript: boolean;
3171
+ readonly isInternalError: boolean;
3172
+ readonly isVaultNotYetActive: boolean;
3173
+ readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive';
3174
+ }
3175
+
3176
+ /** @name PalletNotariesError (421) */
3177
+ interface PalletNotariesError extends Enum {
3178
+ readonly isProposalNotFound: boolean;
3179
+ readonly isMaxNotariesExceeded: boolean;
3180
+ readonly isMaxProposalsPerBlockExceeded: boolean;
3181
+ readonly isNotAnActiveNotary: boolean;
3182
+ readonly isInvalidNotaryOperator: boolean;
3183
+ readonly isNoMoreNotaryIds: boolean;
3184
+ readonly isEffectiveTickTooSoon: boolean;
3185
+ readonly isTooManyKeys: boolean;
3186
+ readonly isInvalidNotary: boolean;
3187
+ readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
3188
+ }
3189
+
3190
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (425) */
3191
+ interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
3192
+ readonly notebookNumber: Compact<u32>;
3193
+ readonly tick: Compact<u64>;
3194
+ readonly blockVotesRoot: H256;
3195
+ readonly secretHash: H256;
3196
+ readonly parentSecret: Option<H256>;
3197
+ }
3198
+
3199
+ /** @name PalletNotebookError (428) */
3200
+ interface PalletNotebookError extends Enum {
3201
+ readonly isDuplicateNotebookNumber: boolean;
3202
+ readonly isMissingNotebookNumber: boolean;
3203
+ readonly isNotebookTickAlreadyUsed: boolean;
3204
+ readonly isInvalidNotebookSignature: boolean;
3205
+ readonly isInvalidSecretProvided: boolean;
3206
+ readonly isCouldNotDecodeNotebook: boolean;
3207
+ readonly isDuplicateNotebookDigest: boolean;
3208
+ readonly isMissingNotebookDigest: boolean;
3209
+ readonly isInvalidNotebookDigest: boolean;
3210
+ readonly isMultipleNotebookInherentsProvided: boolean;
3211
+ readonly isInternalError: boolean;
3212
+ readonly isNotebookSubmittedForLockedNotary: boolean;
3213
+ readonly isInvalidReprocessNotebook: boolean;
3214
+ readonly isInvalidNotaryOperator: boolean;
3215
+ readonly isInvalidNotebookSubmissionTick: boolean;
3216
+ readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
3217
+ }
3218
+
3219
+ /** @name PalletLocalchainTransferQueuedTransferOut (429) */
3220
+ interface PalletLocalchainTransferQueuedTransferOut extends Struct {
3221
+ readonly accountId: AccountId32;
3222
+ readonly amount: u128;
3223
+ readonly expirationTick: u64;
3224
+ readonly notaryId: u32;
3225
+ }
3226
+
3227
+ /** @name FrameSupportPalletId (431) */
3228
+ interface FrameSupportPalletId extends U8aFixed {}
3229
+
3230
+ /** @name PalletLocalchainTransferError (432) */
3231
+ interface PalletLocalchainTransferError extends Enum {
3232
+ readonly isMaxBlockTransfersExceeded: boolean;
3233
+ readonly isInsufficientFunds: boolean;
3234
+ readonly isInsufficientNotarizedFunds: boolean;
3235
+ readonly isInvalidOrDuplicatedLocalchainTransfer: boolean;
3236
+ readonly isNotebookIncludesExpiredLocalchainTransfer: boolean;
3237
+ readonly isInvalidNotaryUsedForTransfer: boolean;
3238
+ readonly isNotaryLockedForTransfer: boolean;
3239
+ readonly isNoAvailableTransferId: boolean;
3240
+ readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
3241
+ }
3242
+
3243
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (436) */
3244
+ interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
3245
+ readonly notaryId: Compact<u32>;
3246
+ readonly notebookNumber: Compact<u32>;
3247
+ readonly tick: Compact<u64>;
3248
+ readonly blockVotesCount: Compact<u32>;
3249
+ readonly blockVotingPower: Compact<u128>;
3250
+ }
3251
+
3252
+ /** @name PalletBlockSealSpecError (441) */
3253
+ interface PalletBlockSealSpecError extends Enum {
3254
+ readonly isMaxNotebooksAtTickExceeded: boolean;
3255
+ readonly type: 'MaxNotebooksAtTickExceeded';
3256
+ }
3257
+
3258
+ /** @name PalletDomainsError (443) */
3259
+ interface PalletDomainsError extends Enum {
3260
+ readonly isDomainNotRegistered: boolean;
3261
+ readonly isNotDomainOwner: boolean;
3262
+ readonly isFailedToAddToAddressHistory: boolean;
3263
+ readonly isFailedToAddExpiringDomain: boolean;
3264
+ readonly isAccountDecodingError: boolean;
3265
+ readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
3266
+ }
3267
+
3268
+ /** @name PalletPriceIndexCpiMeasurementBucket (445) */
3269
+ interface PalletPriceIndexCpiMeasurementBucket extends Struct {
3270
+ readonly tickRange: ITuple<[u64, u64]>;
3271
+ readonly totalCpi: i128;
3272
+ readonly measurementsCount: u32;
3273
+ }
3274
+
3275
+ /** @name PalletPriceIndexError (447) */
3276
+ interface PalletPriceIndexError extends Enum {
3277
+ readonly isNotAuthorizedOperator: boolean;
3278
+ readonly isMissingValue: boolean;
3279
+ readonly isPricesTooOld: boolean;
3280
+ readonly isMaxPriceChangePerTickExceeded: boolean;
3281
+ readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
3282
+ }
3283
+
3284
+ /** @name PalletGrandpaStoredState (448) */
3285
+ interface PalletGrandpaStoredState extends Enum {
3286
+ readonly isLive: boolean;
3287
+ readonly isPendingPause: boolean;
3288
+ readonly asPendingPause: {
3289
+ readonly scheduledAt: u32;
3290
+ readonly delay: u32;
3291
+ } & Struct;
3292
+ readonly isPaused: boolean;
3293
+ readonly isPendingResume: boolean;
3294
+ readonly asPendingResume: {
3295
+ readonly scheduledAt: u32;
3296
+ readonly delay: u32;
3297
+ } & Struct;
3298
+ readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
3299
+ }
3300
+
3301
+ /** @name PalletGrandpaStoredPendingChange (449) */
3302
+ interface PalletGrandpaStoredPendingChange extends Struct {
3303
+ readonly scheduledAt: u32;
3304
+ readonly delay: u32;
3305
+ readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
3306
+ readonly forced: Option<u32>;
3307
+ }
3308
+
3309
+ /** @name PalletGrandpaError (451) */
3310
+ interface PalletGrandpaError extends Enum {
3311
+ readonly isPauseFailed: boolean;
3312
+ readonly isResumeFailed: boolean;
3313
+ readonly isChangePending: boolean;
3314
+ readonly isTooSoon: boolean;
3315
+ readonly isInvalidKeyOwnershipProof: boolean;
3316
+ readonly isInvalidEquivocationProof: boolean;
3317
+ readonly isDuplicateOffenceReport: boolean;
3318
+ readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
3319
+ }
3320
+
3321
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (452) */
3322
+ interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
3323
+ readonly blockAuthorAccountId: AccountId32;
3324
+ readonly blockVoteRewardsAccount: Option<AccountId32>;
3325
+ readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
3326
+ }
3327
+
3328
+ /** @name PalletBlockSealError (454) */
3329
+ interface PalletBlockSealError extends Enum {
3330
+ readonly isInvalidVoteSealStrength: boolean;
3331
+ readonly isInvalidSubmitter: boolean;
3332
+ readonly isUnableToDecodeVoteAccount: boolean;
3333
+ readonly isUnregisteredBlockAuthor: boolean;
3334
+ readonly isInvalidBlockVoteProof: boolean;
3335
+ readonly isNoGrandparentVoteMinimum: boolean;
3336
+ readonly isDuplicateBlockSealProvided: boolean;
3337
+ readonly isInsufficientVotingPower: boolean;
3338
+ readonly isParentVotingKeyNotFound: boolean;
3339
+ readonly isInvalidVoteGrandparentHash: boolean;
3340
+ readonly isIneligibleNotebookUsed: boolean;
3341
+ readonly isNoEligibleVotingRoot: boolean;
3342
+ readonly isCouldNotDecodeVote: boolean;
3343
+ readonly isMaxNotebooksAtTickExceeded: boolean;
3344
+ readonly isNoClosestMinerFoundForVote: boolean;
3345
+ readonly isBlockVoteInvalidSignature: boolean;
3346
+ readonly isInvalidForkPowerParent: boolean;
3347
+ readonly isBlockSealDecodeError: boolean;
3348
+ readonly isInvalidComputeBlockTick: boolean;
3349
+ readonly isInvalidMinerNonceScore: boolean;
3350
+ readonly isDuplicateVoteBlockAtTick: boolean;
3351
+ readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
3352
+ }
3353
+
3354
+ /** @name PalletBlockRewardsError (458) */
3355
+ type PalletBlockRewardsError = Null;
3356
+
3357
+ /** @name PalletMintMintAction (464) */
3358
+ interface PalletMintMintAction extends Struct {
3359
+ readonly argonBurned: u128;
3360
+ readonly argonMinted: u128;
3361
+ readonly bitcoinMinted: u128;
3362
+ }
3363
+
3364
+ /** @name PalletMintError (465) */
3365
+ interface PalletMintError extends Enum {
3366
+ readonly isTooManyPendingMints: boolean;
3367
+ readonly type: 'TooManyPendingMints';
3368
+ }
3369
+
3370
+ /** @name PalletBalancesBalanceLock (467) */
3371
+ interface PalletBalancesBalanceLock extends Struct {
3372
+ readonly id: U8aFixed;
3373
+ readonly amount: u128;
3374
+ readonly reasons: PalletBalancesReasons;
3375
+ }
3376
+
3377
+ /** @name PalletBalancesReasons (468) */
3378
+ interface PalletBalancesReasons extends Enum {
3379
+ readonly isFee: boolean;
3380
+ readonly isMisc: boolean;
3381
+ readonly isAll: boolean;
3382
+ readonly type: 'Fee' | 'Misc' | 'All';
3383
+ }
3384
+
3385
+ /** @name PalletBalancesReserveData (471) */
3386
+ interface PalletBalancesReserveData extends Struct {
3387
+ readonly id: U8aFixed;
3388
+ readonly amount: u128;
3389
+ }
3390
+
3391
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (474) */
3392
+ interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
3393
+ readonly id: ArgonRuntimeRuntimeHoldReason;
3394
+ readonly amount: u128;
3395
+ }
3396
+
3397
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (477) */
3398
+ interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
3399
+ readonly id: ArgonRuntimeRuntimeFreezeReason;
3400
+ readonly amount: u128;
3401
+ }
3402
+
3403
+ /** @name ArgonRuntimeRuntimeFreezeReason (478) */
3404
+ interface ArgonRuntimeRuntimeFreezeReason extends Enum {
3405
+ readonly isBlockRewards: boolean;
3406
+ readonly asBlockRewards: PalletBlockRewardsFreezeReason;
3407
+ readonly type: 'BlockRewards';
3408
+ }
3409
+
3410
+ /** @name PalletBlockRewardsFreezeReason (479) */
3411
+ interface PalletBlockRewardsFreezeReason extends Enum {
3412
+ readonly isMaturationPeriod: boolean;
3413
+ readonly type: 'MaturationPeriod';
3414
+ }
3415
+
3416
+ /** @name PalletBalancesError (481) */
3417
+ interface PalletBalancesError extends Enum {
3418
+ readonly isVestingBalance: boolean;
3419
+ readonly isLiquidityRestrictions: boolean;
3420
+ readonly isInsufficientBalance: boolean;
3421
+ readonly isExistentialDeposit: boolean;
3422
+ readonly isExpendability: boolean;
3423
+ readonly isExistingVestingSchedule: boolean;
3424
+ readonly isDeadAccount: boolean;
3425
+ readonly isTooManyReserves: boolean;
3426
+ readonly isTooManyHolds: boolean;
3427
+ readonly isTooManyFreezes: boolean;
3428
+ readonly isIssuanceDeactivated: boolean;
3429
+ readonly isDeltaZero: boolean;
3430
+ readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
3431
+ }
3432
+
3433
+ /** @name PalletTxPauseError (483) */
3434
+ interface PalletTxPauseError extends Enum {
3435
+ readonly isIsPaused: boolean;
3436
+ readonly isIsUnpaused: boolean;
3437
+ readonly isUnpausable: boolean;
3438
+ readonly isNotFound: boolean;
3439
+ readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
3440
+ }
3441
+
3442
+ /** @name PalletTransactionPaymentReleases (484) */
3443
+ interface PalletTransactionPaymentReleases extends Enum {
3444
+ readonly isV1Ancient: boolean;
3445
+ readonly isV2: boolean;
3446
+ readonly type: 'V1Ancient' | 'V2';
3447
+ }
3448
+
3449
+ /** @name FrameSupportStorageNoDrop (485) */
3450
+ interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
3451
+
3452
+ /** @name FrameSupportTokensFungibleImbalance (486) */
3453
+ interface FrameSupportTokensFungibleImbalance extends Struct {
3454
+ readonly amount: u128;
3455
+ }
3456
+
3457
+ /** @name PalletUtilityError (487) */
3458
+ interface PalletUtilityError extends Enum {
3459
+ readonly isTooManyCalls: boolean;
3460
+ readonly type: 'TooManyCalls';
3461
+ }
3462
+
3463
+ /** @name PalletSudoError (488) */
3464
+ interface PalletSudoError extends Enum {
3465
+ readonly isRequireSudo: boolean;
3466
+ readonly type: 'RequireSudo';
3467
+ }
3468
+
3469
+ /** @name PalletTreasuryFrameVaultCapital (489) */
3470
+ interface PalletTreasuryFrameVaultCapital extends Struct {
3471
+ readonly frameId: Compact<u64>;
3472
+ readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
3473
+ }
3474
+
3475
+ /** @name PalletTreasuryVaultCapital (491) */
3476
+ interface PalletTreasuryVaultCapital extends Struct {
3477
+ readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
3478
+ readonly eligibleBonds: Compact<u32>;
3479
+ readonly vaultSharingPercent: Compact<Permill>;
3480
+ }
3481
+
3482
+ /** @name PalletTreasuryBondLotAllocation (493) */
3483
+ interface PalletTreasuryBondLotAllocation extends Struct {
3484
+ readonly bondLotId: Compact<u64>;
3485
+ readonly prorata: u128;
3486
+ }
3487
+
3488
+ /** @name PalletTreasuryBondLot (498) */
3489
+ interface PalletTreasuryBondLot extends Struct {
3490
+ readonly owner: AccountId32;
3491
+ readonly vaultId: Compact<u32>;
3492
+ readonly bonds: Compact<u32>;
3493
+ readonly createdFrameId: Compact<u64>;
3494
+ readonly participatedFrames: Compact<u32>;
3495
+ readonly lastFrameEarningsFrameId: Option<u64>;
3496
+ readonly lastFrameEarnings: Option<u128>;
3497
+ readonly cumulativeEarnings: Compact<u128>;
3498
+ readonly releaseFrameId: Option<u64>;
3499
+ readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
3500
+ }
3501
+
3502
+ /** @name PalletTreasuryBondLotSummary (503) */
3503
+ interface PalletTreasuryBondLotSummary extends Struct {
3504
+ readonly bondLotId: Compact<u64>;
3505
+ readonly bonds: Compact<u32>;
3506
+ }
3507
+
3508
+ /** @name PalletTreasuryError (505) */
3509
+ interface PalletTreasuryError extends Enum {
3510
+ readonly isBondPurchaseRejected: boolean;
3511
+ readonly isVaultNotAcceptingBondPurchases: boolean;
3512
+ readonly isBondPurchaseBelowMinimum: boolean;
3513
+ readonly isInternalError: boolean;
3514
+ readonly isMaxAcceptedBondLotsExceeded: boolean;
3515
+ readonly isMaxPendingBondReleasesExceeded: boolean;
3516
+ readonly isBondLotNotFound: boolean;
3517
+ readonly isNotBondLotOwner: boolean;
3518
+ readonly isBondLotAlreadyReleasing: boolean;
3519
+ readonly isBondPurchaseAboveSecurity: boolean;
3520
+ readonly type: 'BondPurchaseRejected' | 'VaultNotAcceptingBondPurchases' | 'BondPurchaseBelowMinimum' | 'InternalError' | 'MaxAcceptedBondLotsExceeded' | 'MaxPendingBondReleasesExceeded' | 'BondLotNotFound' | 'NotBondLotOwner' | 'BondLotAlreadyReleasing' | 'BondPurchaseAboveSecurity';
3521
+ }
3522
+
3523
+ /** @name PalletFeeControlError (506) */
3524
+ interface PalletFeeControlError extends Enum {
3525
+ readonly isSponsoredFeeTooHigh: boolean;
3526
+ readonly type: 'SponsoredFeeTooHigh';
3527
+ }
3528
+
3529
+ /** @name PalletOperationalAccountsOperationalAccount (507) */
3530
+ interface PalletOperationalAccountsOperationalAccount extends Struct {
3531
+ readonly vaultAccount: AccountId32;
3532
+ readonly miningFundingAccount: AccountId32;
3533
+ readonly miningBotAccount: AccountId32;
3534
+ readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
3535
+ readonly sponsor: Option<AccountId32>;
3536
+ readonly hasUniswapTransfer: bool;
3537
+ readonly vaultCreated: bool;
3538
+ readonly bitcoinAccrual: u128;
3539
+ readonly bitcoinAppliedTotal: u128;
3540
+ readonly hasTreasuryPoolParticipation: bool;
3541
+ readonly miningSeatAccrual: Compact<u32>;
3542
+ readonly miningSeatAppliedTotal: Compact<u32>;
3543
+ readonly operationalReferralsCount: Compact<u32>;
3544
+ readonly referralPending: bool;
3545
+ readonly availableReferrals: Compact<u32>;
3546
+ readonly rewardsEarnedCount: Compact<u32>;
3547
+ readonly rewardsEarnedAmount: u128;
3548
+ readonly rewardsCollectedAmount: u128;
3549
+ readonly isOperational: bool;
3550
+ }
3551
+
3552
+ /** @name PalletOperationalAccountsRewardsConfig (509) */
3553
+ interface PalletOperationalAccountsRewardsConfig extends Struct {
3554
+ readonly operationalReferralReward: Compact<u128>;
3555
+ readonly referralBonusReward: Compact<u128>;
3556
+ }
3557
+
3558
+ /** @name PalletOperationalAccountsError (511) */
3559
+ interface PalletOperationalAccountsError extends Enum {
3560
+ readonly isAlreadyRegistered: boolean;
3561
+ readonly isInvalidRegistrationSubmitter: boolean;
3562
+ readonly isAccountAlreadyLinked: boolean;
3563
+ readonly isInvalidAccountProof: boolean;
3564
+ readonly isNotOperationalAccount: boolean;
3565
+ readonly isInvalidReferralProof: boolean;
3566
+ readonly isReferralProofExpired: boolean;
3567
+ readonly isNoProgressUpdateProvided: boolean;
3568
+ readonly isEncryptedServerTooLong: boolean;
3569
+ readonly isNotSponsorOfSponsee: boolean;
3570
+ readonly isNoPendingRewards: boolean;
3571
+ readonly isRewardClaimBelowMinimum: boolean;
3572
+ readonly isRewardClaimNotWholeArgon: boolean;
3573
+ readonly isRewardClaimExceedsPending: boolean;
3574
+ readonly isTreasuryInsufficientFunds: boolean;
3575
+ readonly isAlreadyOperational: boolean;
3576
+ readonly isNotEligibleForActivation: boolean;
3577
+ readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'InvalidReferralProof' | 'ReferralProofExpired' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotSponsorOfSponsee' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperational' | 'NotEligibleForActivation';
3578
+ }
3579
+
3580
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (512) */
3581
+ interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
3582
+ readonly slot: Compact<u64>;
3583
+ }
3584
+
3585
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (513) */
3586
+ interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
3587
+ readonly blockNumber: Compact<u64>;
3588
+ readonly blockHash: H256;
3589
+ readonly parentHash: H256;
3590
+ readonly receiptsRoot: H256;
3591
+ }
3592
+
3593
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (514) */
3594
+ interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
3595
+ readonly root: H256;
3596
+ readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
3597
+ readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
3598
+ }
3599
+
3600
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (516) */
3601
+ interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
3602
+ readonly point: SnowbridgeAmclBls381Ecp;
3603
+ }
3604
+
3605
+ /** @name SnowbridgeAmclBls381Ecp (517) */
3606
+ interface SnowbridgeAmclBls381Ecp extends Struct {
3607
+ readonly x: SnowbridgeAmclBls381Fp;
3608
+ readonly y: SnowbridgeAmclBls381Fp;
3609
+ readonly z: SnowbridgeAmclBls381Fp;
3610
+ }
3611
+
3612
+ /** @name SnowbridgeAmclBls381Fp (518) */
3613
+ interface SnowbridgeAmclBls381Fp extends Struct {
3614
+ readonly x: SnowbridgeAmclBls381Big;
3615
+ readonly xes: i32;
3616
+ }
3617
+
3618
+ /** @name SnowbridgeAmclBls381Big (519) */
3619
+ interface SnowbridgeAmclBls381Big extends Struct {
3620
+ readonly w: Vec<i32>;
3621
+ }
3622
+
3623
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (523) */
3624
+ interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
3625
+ readonly isMainnet: boolean;
3626
+ readonly isMinimal: boolean;
3627
+ readonly type: 'Mainnet' | 'Minimal';
3628
+ }
3629
+
3630
+ /** @name PalletEthereumVerifierError (524) */
3631
+ interface PalletEthereumVerifierError extends Enum {
3632
+ readonly isSkippedSyncCommitteePeriod: boolean;
3633
+ readonly isSyncCommitteeUpdateRequired: boolean;
3634
+ readonly isIrrelevantUpdate: boolean;
3635
+ readonly isNotBootstrapped: boolean;
3636
+ readonly isSyncCommitteeParticipantsNotSupermajority: boolean;
3637
+ readonly isInvalidHeaderMerkleProof: boolean;
3638
+ readonly isInvalidSyncCommitteeMerkleProof: boolean;
3639
+ readonly isInvalidExecutionHeaderProof: boolean;
3640
+ readonly isInvalidFinalizedHeaderGap: boolean;
3641
+ readonly isHeaderHashTreeRootFailed: boolean;
3642
+ readonly isBlockBodyHashTreeRootFailed: boolean;
3643
+ readonly isSyncCommitteeHashTreeRootFailed: boolean;
3644
+ readonly isSigningRootHashTreeRootFailed: boolean;
3645
+ readonly isForkDataHashTreeRootFailed: boolean;
3646
+ readonly isExpectedFinalizedHeaderNotStored: boolean;
3647
+ readonly isBlsPreparePublicKeysFailed: boolean;
3648
+ readonly isBlsVerificationFailed: boolean;
3649
+ readonly isUnexpectedBeaconPreset: boolean;
3650
+ readonly isInvalidUpdateSlot: boolean;
3651
+ readonly isInvalidSyncCommitteeUpdate: boolean;
3652
+ readonly isHalted: boolean;
3653
+ readonly type: 'SkippedSyncCommitteePeriod' | 'SyncCommitteeUpdateRequired' | 'IrrelevantUpdate' | 'NotBootstrapped' | 'SyncCommitteeParticipantsNotSupermajority' | 'InvalidHeaderMerkleProof' | 'InvalidSyncCommitteeMerkleProof' | 'InvalidExecutionHeaderProof' | 'InvalidFinalizedHeaderGap' | 'HeaderHashTreeRootFailed' | 'BlockBodyHashTreeRootFailed' | 'SyncCommitteeHashTreeRootFailed' | 'SigningRootHashTreeRootFailed' | 'ForkDataHashTreeRootFailed' | 'ExpectedFinalizedHeaderNotStored' | 'BlsPreparePublicKeysFailed' | 'BlsVerificationFailed' | 'UnexpectedBeaconPreset' | 'InvalidUpdateSlot' | 'InvalidSyncCommitteeUpdate' | 'Halted';
3654
+ }
3655
+
3656
+ /** @name PalletCrosschainTransferError (526) */
3657
+ interface PalletCrosschainTransferError extends Enum {
3658
+ readonly isInvalidEthereumEvent: boolean;
3659
+ readonly isInvalidProof: boolean;
3660
+ readonly isInvalidRecipient: boolean;
3661
+ readonly isInvalidAmount: boolean;
3662
+ readonly isUnsupportedSource: boolean;
3663
+ readonly isUnsupportedGateway: boolean;
3664
+ readonly isUnsupportedToken: boolean;
3665
+ readonly isUnexpectedNonce: boolean;
3666
+ readonly isInvalidChainConfig: boolean;
3667
+ readonly isInsufficientLiquidity: boolean;
3668
+ readonly isInsufficientBurnAmountForFee: boolean;
3669
+ readonly type: 'InvalidEthereumEvent' | 'InvalidProof' | 'InvalidRecipient' | 'InvalidAmount' | 'UnsupportedSource' | 'UnsupportedGateway' | 'UnsupportedToken' | 'UnexpectedNonce' | 'InvalidChainConfig' | 'InsufficientLiquidity' | 'InsufficientBurnAmountForFee';
3670
+ }
3671
+
3672
+ /** @name FrameSystemExtensionsAuthorizeCall (529) */
3673
+ type FrameSystemExtensionsAuthorizeCall = Null;
3674
+
3675
+ /** @name FrameSystemExtensionsCheckNonZeroSender (530) */
3676
+ type FrameSystemExtensionsCheckNonZeroSender = Null;
3677
+
3678
+ /** @name FrameSystemExtensionsCheckSpecVersion (531) */
3679
+ type FrameSystemExtensionsCheckSpecVersion = Null;
3680
+
3681
+ /** @name FrameSystemExtensionsCheckTxVersion (532) */
3682
+ type FrameSystemExtensionsCheckTxVersion = Null;
3683
+
3684
+ /** @name FrameSystemExtensionsCheckGenesis (533) */
3685
+ type FrameSystemExtensionsCheckGenesis = Null;
3686
+
3687
+ /** @name FrameSystemExtensionsCheckNonce (536) */
3688
+ interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
3689
+
3690
+ /** @name FrameSystemExtensionsCheckWeight (537) */
3691
+ type FrameSystemExtensionsCheckWeight = Null;
3692
+
3693
+ /** @name PalletTransactionPaymentChargeTransactionPayment (538) */
3694
+ interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
3695
+
3696
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (539) */
3697
+ interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
3698
+ readonly mode: FrameMetadataHashExtensionMode;
3699
+ }
3700
+
3701
+ /** @name FrameMetadataHashExtensionMode (540) */
3702
+ interface FrameMetadataHashExtensionMode extends Enum {
3703
+ readonly isDisabled: boolean;
3704
+ readonly isEnabled: boolean;
3705
+ readonly type: 'Disabled' | 'Enabled';
3706
+ }
3707
+
3708
+ /** @name FrameSystemExtensionsWeightReclaim (541) */
3709
+ type FrameSystemExtensionsWeightReclaim = Null;
3710
+
3711
+ /** @name ArgonRuntimeRuntime (543) */
3712
+ type ArgonRuntimeRuntime = Null;
3713
+
3714
+ } // declare module