@argonprotocol/mainchain 1.4.3-dev.43df9563 → 1.4.3-dev.4544e954

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/browser/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
  2. package/browser/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
  3. package/browser/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
  4. package/browser/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
  5. package/browser/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
  6. package/browser/index.d.ts +2823 -1724
  7. package/browser/index.js +6819 -115
  8. package/browser/index.js.map +1 -1
  9. package/lib/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
  10. package/lib/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
  11. package/lib/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
  12. package/lib/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
  13. package/lib/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
  14. package/lib/index.cjs +6910 -183
  15. package/lib/index.cjs.map +1 -1
  16. package/lib/index.d.cts +2823 -1724
  17. package/lib/index.d.ts +2823 -1724
  18. package/lib/index.js +6848 -121
  19. package/lib/index.js.map +1 -1
  20. package/package.json +29 -26
  21. package/src/interfaces/augment-api-consts.ts +655 -0
  22. package/src/interfaces/augment-api-errors.ts +1376 -0
  23. package/src/interfaces/augment-api-events.ts +2098 -0
  24. package/src/interfaces/augment-api-query.ts +1808 -0
  25. package/src/interfaces/augment-api-rpc.ts +1133 -0
  26. package/src/interfaces/augment-api-runtime.ts +305 -0
  27. package/src/interfaces/augment-api-tx.ts +2298 -0
  28. package/src/interfaces/augment-api.ts +9 -0
  29. package/src/interfaces/augment-types.ts +2691 -0
  30. package/src/interfaces/definitions.ts +42 -0
  31. package/src/interfaces/ethereum/index.ts +3 -0
  32. package/src/interfaces/ethereum/types.ts +65 -0
  33. package/src/interfaces/lookup.ts +4164 -0
  34. package/src/interfaces/registry.ts +597 -0
  35. package/src/interfaces/types-lookup.ts +4868 -0
@@ -0,0 +1,4164 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+
3
+ export default {
4
+ /**
5
+ * Lookup3: frame_system::AccountInfo<Nonce, pallet_balances::types::AccountData<Balance>>
6
+ **/
7
+ FrameSystemAccountInfo: {
8
+ nonce: 'u32',
9
+ consumers: 'u32',
10
+ providers: 'u32',
11
+ sufficients: 'u32',
12
+ data: 'PalletBalancesAccountData',
13
+ },
14
+ /**
15
+ * Lookup5: pallet_balances::types::AccountData<Balance>
16
+ **/
17
+ PalletBalancesAccountData: {
18
+ free: 'u128',
19
+ reserved: 'u128',
20
+ frozen: 'u128',
21
+ flags: 'u128',
22
+ },
23
+ /**
24
+ * Lookup9: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
25
+ **/
26
+ FrameSupportDispatchPerDispatchClassWeight: {
27
+ normal: 'SpWeightsWeightV2Weight',
28
+ operational: 'SpWeightsWeightV2Weight',
29
+ mandatory: 'SpWeightsWeightV2Weight',
30
+ },
31
+ /**
32
+ * Lookup10: sp_weights::weight_v2::Weight
33
+ **/
34
+ SpWeightsWeightV2Weight: {
35
+ refTime: 'Compact<u64>',
36
+ proofSize: 'Compact<u64>',
37
+ },
38
+ /**
39
+ * Lookup15: sp_runtime::generic::digest::Digest
40
+ **/
41
+ SpRuntimeDigest: {
42
+ logs: 'Vec<SpRuntimeDigestDigestItem>',
43
+ },
44
+ /**
45
+ * Lookup17: sp_runtime::generic::digest::DigestItem
46
+ **/
47
+ SpRuntimeDigestDigestItem: {
48
+ _enum: {
49
+ Other: 'Bytes',
50
+ __Unused1: 'Null',
51
+ __Unused2: 'Null',
52
+ __Unused3: 'Null',
53
+ Consensus: '([u8;4],Bytes)',
54
+ Seal: '([u8;4],Bytes)',
55
+ PreRuntime: '([u8;4],Bytes)',
56
+ __Unused7: 'Null',
57
+ RuntimeEnvironmentUpdated: 'Null',
58
+ },
59
+ },
60
+ /**
61
+ * Lookup20: frame_system::EventRecord<argon_runtime::RuntimeEvent, primitive_types::H256>
62
+ **/
63
+ FrameSystemEventRecord: {
64
+ phase: 'FrameSystemPhase',
65
+ event: 'Event',
66
+ topics: 'Vec<H256>',
67
+ },
68
+ /**
69
+ * Lookup22: frame_system::pallet::Event<T>
70
+ **/
71
+ FrameSystemEvent: {
72
+ _enum: {
73
+ ExtrinsicSuccess: {
74
+ dispatchInfo: 'FrameSystemDispatchEventInfo',
75
+ },
76
+ ExtrinsicFailed: {
77
+ dispatchError: 'SpRuntimeDispatchError',
78
+ dispatchInfo: 'FrameSystemDispatchEventInfo',
79
+ },
80
+ CodeUpdated: 'Null',
81
+ NewAccount: {
82
+ account: 'AccountId32',
83
+ },
84
+ KilledAccount: {
85
+ account: 'AccountId32',
86
+ },
87
+ Remarked: {
88
+ _alias: {
89
+ hash_: 'hash',
90
+ },
91
+ sender: 'AccountId32',
92
+ hash_: 'H256',
93
+ },
94
+ UpgradeAuthorized: {
95
+ codeHash: 'H256',
96
+ checkVersion: 'bool',
97
+ },
98
+ RejectedInvalidAuthorizedUpgrade: {
99
+ codeHash: 'H256',
100
+ error: 'SpRuntimeDispatchError',
101
+ },
102
+ },
103
+ },
104
+ /**
105
+ * Lookup23: frame_system::DispatchEventInfo
106
+ **/
107
+ FrameSystemDispatchEventInfo: {
108
+ weight: 'SpWeightsWeightV2Weight',
109
+ class: 'FrameSupportDispatchDispatchClass',
110
+ paysFee: 'FrameSupportDispatchPays',
111
+ },
112
+ /**
113
+ * Lookup24: frame_support::dispatch::DispatchClass
114
+ **/
115
+ FrameSupportDispatchDispatchClass: {
116
+ _enum: ['Normal', 'Operational', 'Mandatory'],
117
+ },
118
+ /**
119
+ * Lookup25: frame_support::dispatch::Pays
120
+ **/
121
+ FrameSupportDispatchPays: {
122
+ _enum: ['Yes', 'No'],
123
+ },
124
+ /**
125
+ * Lookup26: sp_runtime::DispatchError
126
+ **/
127
+ SpRuntimeDispatchError: {
128
+ _enum: {
129
+ Other: 'Null',
130
+ CannotLookup: 'Null',
131
+ BadOrigin: 'Null',
132
+ Module: 'SpRuntimeModuleError',
133
+ ConsumerRemaining: 'Null',
134
+ NoProviders: 'Null',
135
+ TooManyConsumers: 'Null',
136
+ Token: 'SpRuntimeTokenError',
137
+ Arithmetic: 'SpArithmeticArithmeticError',
138
+ Transactional: 'SpRuntimeTransactionalError',
139
+ Exhausted: 'Null',
140
+ Corruption: 'Null',
141
+ Unavailable: 'Null',
142
+ RootNotAllowed: 'Null',
143
+ Trie: 'SpRuntimeProvingTrieTrieError',
144
+ },
145
+ },
146
+ /**
147
+ * Lookup27: sp_runtime::ModuleError
148
+ **/
149
+ SpRuntimeModuleError: {
150
+ index: 'u8',
151
+ error: '[u8;4]',
152
+ },
153
+ /**
154
+ * Lookup28: sp_runtime::TokenError
155
+ **/
156
+ SpRuntimeTokenError: {
157
+ _enum: [
158
+ 'FundsUnavailable',
159
+ 'OnlyProvider',
160
+ 'BelowMinimum',
161
+ 'CannotCreate',
162
+ 'UnknownAsset',
163
+ 'Frozen',
164
+ 'Unsupported',
165
+ 'CannotCreateHold',
166
+ 'NotExpendable',
167
+ 'Blocked',
168
+ ],
169
+ },
170
+ /**
171
+ * Lookup29: sp_arithmetic::ArithmeticError
172
+ **/
173
+ SpArithmeticArithmeticError: {
174
+ _enum: ['Underflow', 'Overflow', 'DivisionByZero'],
175
+ },
176
+ /**
177
+ * Lookup30: sp_runtime::TransactionalError
178
+ **/
179
+ SpRuntimeTransactionalError: {
180
+ _enum: ['LimitReached', 'NoLayer'],
181
+ },
182
+ /**
183
+ * Lookup31: sp_runtime::proving_trie::TrieError
184
+ **/
185
+ SpRuntimeProvingTrieTrieError: {
186
+ _enum: [
187
+ 'InvalidStateRoot',
188
+ 'IncompleteDatabase',
189
+ 'ValueAtIncompleteKey',
190
+ 'DecoderError',
191
+ 'InvalidHash',
192
+ 'DuplicateKey',
193
+ 'ExtraneousNode',
194
+ 'ExtraneousValue',
195
+ 'ExtraneousHashReference',
196
+ 'InvalidChildReference',
197
+ 'ValueMismatch',
198
+ 'IncompleteProof',
199
+ 'RootMismatch',
200
+ 'DecodeError',
201
+ ],
202
+ },
203
+ /**
204
+ * Lookup32: pallet_digests::pallet::Event<T>
205
+ **/
206
+ PalletDigestsEvent: 'Null',
207
+ /**
208
+ * Lookup33: pallet_multisig::pallet::Event<T>
209
+ **/
210
+ PalletMultisigEvent: {
211
+ _enum: {
212
+ NewMultisig: {
213
+ approving: 'AccountId32',
214
+ multisig: 'AccountId32',
215
+ callHash: '[u8;32]',
216
+ },
217
+ MultisigApproval: {
218
+ approving: 'AccountId32',
219
+ timepoint: 'PalletMultisigTimepoint',
220
+ multisig: 'AccountId32',
221
+ callHash: '[u8;32]',
222
+ },
223
+ MultisigExecuted: {
224
+ approving: 'AccountId32',
225
+ timepoint: 'PalletMultisigTimepoint',
226
+ multisig: 'AccountId32',
227
+ callHash: '[u8;32]',
228
+ result: 'Result<Null, SpRuntimeDispatchError>',
229
+ },
230
+ MultisigCancelled: {
231
+ cancelling: 'AccountId32',
232
+ timepoint: 'PalletMultisigTimepoint',
233
+ multisig: 'AccountId32',
234
+ callHash: '[u8;32]',
235
+ },
236
+ DepositPoked: {
237
+ who: 'AccountId32',
238
+ callHash: '[u8;32]',
239
+ oldDeposit: 'u128',
240
+ newDeposit: 'u128',
241
+ },
242
+ },
243
+ },
244
+ /**
245
+ * Lookup34: pallet_multisig::Timepoint<BlockNumber>
246
+ **/
247
+ PalletMultisigTimepoint: {
248
+ height: 'u32',
249
+ index: 'u32',
250
+ },
251
+ /**
252
+ * Lookup37: pallet_proxy::pallet::Event<T>
253
+ **/
254
+ PalletProxyEvent: {
255
+ _enum: {
256
+ ProxyExecuted: {
257
+ result: 'Result<Null, SpRuntimeDispatchError>',
258
+ },
259
+ PureCreated: {
260
+ pure: 'AccountId32',
261
+ who: 'AccountId32',
262
+ proxyType: 'ArgonRuntimeProxyType',
263
+ disambiguationIndex: 'u16',
264
+ at: 'u32',
265
+ extrinsicIndex: 'u32',
266
+ },
267
+ PureKilled: {
268
+ pure: 'AccountId32',
269
+ spawner: 'AccountId32',
270
+ proxyType: 'ArgonRuntimeProxyType',
271
+ disambiguationIndex: 'u16',
272
+ },
273
+ Announced: {
274
+ real: 'AccountId32',
275
+ proxy: 'AccountId32',
276
+ callHash: 'H256',
277
+ },
278
+ ProxyAdded: {
279
+ delegator: 'AccountId32',
280
+ delegatee: 'AccountId32',
281
+ proxyType: 'ArgonRuntimeProxyType',
282
+ delay: 'u32',
283
+ },
284
+ ProxyRemoved: {
285
+ delegator: 'AccountId32',
286
+ delegatee: 'AccountId32',
287
+ proxyType: 'ArgonRuntimeProxyType',
288
+ delay: 'u32',
289
+ },
290
+ DepositPoked: {
291
+ who: 'AccountId32',
292
+ kind: 'PalletProxyDepositKind',
293
+ oldDeposit: 'u128',
294
+ newDeposit: 'u128',
295
+ },
296
+ },
297
+ },
298
+ /**
299
+ * Lookup38: argon_runtime::ProxyType
300
+ **/
301
+ ArgonRuntimeProxyType: {
302
+ _enum: [
303
+ 'Any',
304
+ 'NonTransfer',
305
+ 'PriceIndex',
306
+ 'MiningBid',
307
+ 'MiningBidRealPaysFee',
308
+ 'Bitcoin',
309
+ 'VaultAdmin',
310
+ 'BitcoinInitializeFor',
311
+ ],
312
+ },
313
+ /**
314
+ * Lookup40: pallet_proxy::DepositKind
315
+ **/
316
+ PalletProxyDepositKind: {
317
+ _enum: ['Proxies', 'Announcements'],
318
+ },
319
+ /**
320
+ * Lookup41: pallet_mining_slot::pallet::Event<T>
321
+ **/
322
+ PalletMiningSlotEvent: {
323
+ _enum: {
324
+ NewMiners: {
325
+ newMiners: 'Vec<ArgonPrimitivesBlockSealMiningRegistration>',
326
+ releasedMiners: 'u32',
327
+ frameId: 'u64',
328
+ },
329
+ SlotBidderAdded: {
330
+ accountId: 'AccountId32',
331
+ bidAmount: 'u128',
332
+ index: 'u32',
333
+ },
334
+ SlotBidderDropped: {
335
+ accountId: 'AccountId32',
336
+ preservedArgonotHold: 'bool',
337
+ },
338
+ ReleaseMinerSeatError: {
339
+ accountId: 'AccountId32',
340
+ error: 'SpRuntimeDispatchError',
341
+ },
342
+ MiningConfigurationUpdated: {
343
+ ticksBeforeBidEndForVrfClose: 'u64',
344
+ ticksBetweenSlots: 'u64',
345
+ slotBiddingStartAfterTicks: 'u64',
346
+ },
347
+ MiningBidsClosed: {
348
+ frameId: 'u64',
349
+ },
350
+ ReleaseBidError: {
351
+ accountId: 'AccountId32',
352
+ error: 'SpRuntimeDispatchError',
353
+ },
354
+ },
355
+ },
356
+ /**
357
+ * Lookup43: argon_primitives::block_seal::MiningRegistration<sp_core::crypto::AccountId32, Balance, argon_runtime::SessionKeys>
358
+ **/
359
+ ArgonPrimitivesBlockSealMiningRegistration: {
360
+ accountId: 'AccountId32',
361
+ externalFundingAccount: 'Option<AccountId32>',
362
+ bid: 'Compact<u128>',
363
+ argonots: 'Compact<u128>',
364
+ authorityKeys: 'ArgonRuntimeSessionKeys',
365
+ startingFrameId: 'Compact<u64>',
366
+ bidAtTick: 'Compact<u64>',
367
+ },
368
+ /**
369
+ * Lookup44: argon_runtime::SessionKeys
370
+ **/
371
+ ArgonRuntimeSessionKeys: {
372
+ grandpa: 'SpConsensusGrandpaAppPublic',
373
+ blockSealAuthority: 'ArgonPrimitivesBlockSealAppPublic',
374
+ },
375
+ /**
376
+ * Lookup45: sp_consensus_grandpa::app::Public
377
+ **/
378
+ SpConsensusGrandpaAppPublic: '[u8;32]',
379
+ /**
380
+ * Lookup46: argon_primitives::block_seal::app::Public
381
+ **/
382
+ ArgonPrimitivesBlockSealAppPublic: '[u8;32]',
383
+ /**
384
+ * Lookup50: pallet_bitcoin_utxos::pallet::Event<T>
385
+ **/
386
+ PalletBitcoinUtxosEvent: {
387
+ _enum: {
388
+ UtxoVerified: {
389
+ utxoId: 'u64',
390
+ satoshisReceived: 'u64',
391
+ },
392
+ UtxoRejected: {
393
+ utxoId: 'u64',
394
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
395
+ rejectedReason: 'ArgonPrimitivesBitcoinBitcoinRejectedReason',
396
+ satoshisReceived: 'u64',
397
+ },
398
+ UtxoSpent: {
399
+ utxoId: 'u64',
400
+ blockHeight: 'u64',
401
+ },
402
+ UtxoUnwatched: {
403
+ utxoId: 'u64',
404
+ },
405
+ UtxoSpentError: {
406
+ utxoId: 'u64',
407
+ error: 'SpRuntimeDispatchError',
408
+ },
409
+ UtxoVerifiedError: {
410
+ utxoId: 'u64',
411
+ error: 'SpRuntimeDispatchError',
412
+ },
413
+ UtxoRejectedError: {
414
+ utxoId: 'u64',
415
+ error: 'SpRuntimeDispatchError',
416
+ },
417
+ },
418
+ },
419
+ /**
420
+ * Lookup51: argon_primitives::bitcoin::UtxoRef
421
+ **/
422
+ ArgonPrimitivesBitcoinUtxoRef: {
423
+ txid: 'ArgonPrimitivesBitcoinH256Le',
424
+ outputIndex: 'Compact<u32>',
425
+ },
426
+ /**
427
+ * Lookup52: argon_primitives::bitcoin::H256Le
428
+ **/
429
+ ArgonPrimitivesBitcoinH256Le: '[u8;32]',
430
+ /**
431
+ * Lookup54: argon_primitives::bitcoin::BitcoinRejectedReason
432
+ **/
433
+ ArgonPrimitivesBitcoinBitcoinRejectedReason: {
434
+ _enum: ['SatoshisOutsideAcceptedRange', 'Spent', 'VerificationExpired', 'AlreadyVerified'],
435
+ },
436
+ /**
437
+ * Lookup55: pallet_vaults::pallet::Event<T>
438
+ **/
439
+ PalletVaultsEvent: {
440
+ _enum: {
441
+ VaultCreated: {
442
+ vaultId: 'u32',
443
+ securitization: 'u128',
444
+ securitizationRatio: 'u128',
445
+ operatorAccountId: 'AccountId32',
446
+ openedTick: 'u64',
447
+ },
448
+ VaultModified: {
449
+ vaultId: 'u32',
450
+ securitization: 'u128',
451
+ securitizationTarget: 'u128',
452
+ securitizationRatio: 'u128',
453
+ },
454
+ VaultTermsChangeScheduled: {
455
+ vaultId: 'u32',
456
+ changeTick: 'u64',
457
+ },
458
+ VaultTermsChanged: {
459
+ vaultId: 'u32',
460
+ },
461
+ VaultClosed: {
462
+ vaultId: 'u32',
463
+ securitizationRemaining: 'u128',
464
+ securitizationReleased: 'u128',
465
+ },
466
+ VaultBitcoinXpubChange: {
467
+ vaultId: 'u32',
468
+ },
469
+ VaultRevenueUncollected: {
470
+ vaultId: 'u32',
471
+ frameId: 'u64',
472
+ amount: 'u128',
473
+ },
474
+ VaultCollected: {
475
+ vaultId: 'u32',
476
+ revenue: 'u128',
477
+ },
478
+ FundsLocked: {
479
+ vaultId: 'u32',
480
+ locker: 'AccountId32',
481
+ liquidityPromised: 'u128',
482
+ isRatchet: 'bool',
483
+ feeRevenue: 'u128',
484
+ didUseFeeCoupon: 'bool',
485
+ },
486
+ FundLockCanceled: {
487
+ vaultId: 'u32',
488
+ amount: 'u128',
489
+ },
490
+ FundsScheduledForRelease: {
491
+ vaultId: 'u32',
492
+ securitization: 'u128',
493
+ releaseHeight: 'u64',
494
+ },
495
+ LostBitcoinCompensated: {
496
+ vaultId: 'u32',
497
+ beneficiary: 'AccountId32',
498
+ toBeneficiary: 'u128',
499
+ burned: 'u128',
500
+ },
501
+ FundsReleased: {
502
+ vaultId: 'u32',
503
+ securitization: 'u128',
504
+ },
505
+ FundsReleasedError: {
506
+ vaultId: 'u32',
507
+ error: 'SpRuntimeDispatchError',
508
+ },
509
+ TreasuryRecordingError: {
510
+ vaultId: 'u32',
511
+ frameId: 'u64',
512
+ vaultEarnings: 'u128',
513
+ error: 'SpRuntimeDispatchError',
514
+ },
515
+ CommittedArgonotsSet: {
516
+ vaultId: 'u32',
517
+ operatorAccountId: 'AccountId32',
518
+ amount: 'u128',
519
+ },
520
+ },
521
+ },
522
+ /**
523
+ * Lookup57: pallet_bitcoin_locks::pallet::Event<T>
524
+ **/
525
+ PalletBitcoinLocksEvent: {
526
+ _enum: {
527
+ BitcoinLockCreated: {
528
+ utxoId: 'u64',
529
+ vaultId: 'u32',
530
+ liquidityPromised: 'u128',
531
+ securitization: 'u128',
532
+ lockedTargetPrice: 'u128',
533
+ accountId: 'AccountId32',
534
+ securityFee: 'u128',
535
+ },
536
+ BitcoinLockRatcheted: {
537
+ utxoId: 'u64',
538
+ vaultId: 'u32',
539
+ liquidityPromised: 'u128',
540
+ oldTargetPrice: 'u128',
541
+ securityFee: 'u128',
542
+ newTargetPrice: 'u128',
543
+ amountBurned: 'u128',
544
+ accountId: 'AccountId32',
545
+ },
546
+ BitcoinLockBurned: {
547
+ utxoId: 'u64',
548
+ vaultId: 'u32',
549
+ wasUtxoSpent: 'bool',
550
+ },
551
+ BitcoinUtxoCosignRequested: {
552
+ utxoId: 'u64',
553
+ vaultId: 'u32',
554
+ },
555
+ BitcoinUtxoCosigned: {
556
+ utxoId: 'u64',
557
+ vaultId: 'u32',
558
+ signature: 'Bytes',
559
+ },
560
+ BitcoinSpentAfterRelease: {
561
+ utxoId: 'u64',
562
+ vaultId: 'u32',
563
+ },
564
+ BitcoinCosignPastDue: {
565
+ utxoId: 'u64',
566
+ vaultId: 'u32',
567
+ compensationAmount: 'u128',
568
+ compensatedAccountId: 'AccountId32',
569
+ },
570
+ CosignOverdueError: {
571
+ utxoId: 'u64',
572
+ error: 'SpRuntimeDispatchError',
573
+ },
574
+ LockExpirationError: {
575
+ utxoId: 'u64',
576
+ error: 'SpRuntimeDispatchError',
577
+ },
578
+ OrphanedUtxoReceived: {
579
+ utxoId: 'u64',
580
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
581
+ vaultId: 'u32',
582
+ satoshis: 'u64',
583
+ },
584
+ OrphanedUtxoReleaseRequested: {
585
+ utxoId: 'u64',
586
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
587
+ vaultId: 'u32',
588
+ accountId: 'AccountId32',
589
+ },
590
+ OrphanedUtxoCosigned: {
591
+ utxoId: 'u64',
592
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
593
+ vaultId: 'u32',
594
+ accountId: 'AccountId32',
595
+ signature: 'Bytes',
596
+ },
597
+ UtxoFundedFromCandidate: {
598
+ utxoId: 'u64',
599
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
600
+ vaultId: 'u32',
601
+ accountId: 'AccountId32',
602
+ },
603
+ SecuritizationIncreased: {
604
+ utxoId: 'u64',
605
+ vaultId: 'u32',
606
+ newSatoshis: 'u64',
607
+ accountId: 'AccountId32',
608
+ },
609
+ },
610
+ },
611
+ /**
612
+ * Lookup60: pallet_notaries::pallet::Event<T>
613
+ **/
614
+ PalletNotariesEvent: {
615
+ _enum: {
616
+ NotaryProposed: {
617
+ operatorAccount: 'AccountId32',
618
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
619
+ expires: 'u32',
620
+ },
621
+ NotaryActivated: {
622
+ notary: 'ArgonPrimitivesNotaryNotaryRecord',
623
+ },
624
+ NotaryMetaUpdateQueued: {
625
+ notaryId: 'u32',
626
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
627
+ effectiveTick: 'u64',
628
+ },
629
+ NotaryMetaUpdated: {
630
+ notaryId: 'u32',
631
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
632
+ },
633
+ NotaryMetaUpdateError: {
634
+ notaryId: 'u32',
635
+ error: 'SpRuntimeDispatchError',
636
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
637
+ },
638
+ },
639
+ },
640
+ /**
641
+ * Lookup61: argon_primitives::notary::NotaryMeta<MaxHosts>
642
+ **/
643
+ ArgonPrimitivesNotaryNotaryMeta: {
644
+ name: 'Bytes',
645
+ public: '[u8;32]',
646
+ hosts: 'Vec<Bytes>',
647
+ },
648
+ /**
649
+ * Lookup68: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
650
+ **/
651
+ ArgonPrimitivesNotaryNotaryRecord: {
652
+ notaryId: 'Compact<u32>',
653
+ operatorAccountId: 'AccountId32',
654
+ activatedBlock: 'Compact<u32>',
655
+ metaUpdatedBlock: 'Compact<u32>',
656
+ metaUpdatedTick: 'Compact<u64>',
657
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
658
+ },
659
+ /**
660
+ * Lookup69: pallet_notebook::pallet::Event<T>
661
+ **/
662
+ PalletNotebookEvent: {
663
+ _enum: {
664
+ NotebookSubmitted: {
665
+ notaryId: 'u32',
666
+ notebookNumber: 'u32',
667
+ },
668
+ NotebookAuditFailure: {
669
+ notaryId: 'u32',
670
+ notebookNumber: 'u32',
671
+ notebookHash: 'H256',
672
+ firstFailureReason: 'ArgonNotaryAuditErrorVerifyError',
673
+ },
674
+ NotebookReadyForReprocess: {
675
+ notaryId: 'u32',
676
+ notebookNumber: 'u32',
677
+ },
678
+ },
679
+ },
680
+ /**
681
+ * Lookup70: argon_notary_audit::error::VerifyError
682
+ **/
683
+ ArgonNotaryAuditErrorVerifyError: {
684
+ _enum: {
685
+ MissingAccountOrigin: {
686
+ accountId: 'AccountId32',
687
+ accountType: 'ArgonPrimitivesAccountAccountType',
688
+ },
689
+ HistoryLookupError: {
690
+ source: 'ArgonNotaryAuditAccountHistoryLookupError',
691
+ },
692
+ InvalidAccountChangelist: 'Null',
693
+ InvalidChainTransfersList: 'Null',
694
+ InvalidBalanceChangeRoot: 'Null',
695
+ InvalidHeaderTaxRecorded: 'Null',
696
+ InvalidPreviousNonce: 'Null',
697
+ InvalidPreviousBalance: 'Null',
698
+ InvalidPreviousAccountOrigin: 'Null',
699
+ InvalidPreviousBalanceChangeNotebook: 'Null',
700
+ InvalidBalanceChange: 'Null',
701
+ InvalidBalanceChangeSignature: {
702
+ changeIndex: 'u16',
703
+ },
704
+ InvalidNoteRecipients: 'Null',
705
+ BalanceChangeError: {
706
+ changeIndex: 'u16',
707
+ noteIndex: 'u16',
708
+ message: 'Bytes',
709
+ },
710
+ InvalidNetBalanceChangeset: 'Null',
711
+ InsufficientBalance: {
712
+ balance: 'u128',
713
+ amount: 'u128',
714
+ noteIndex: 'u16',
715
+ changeIndex: 'u16',
716
+ },
717
+ ExceededMaxBalance: {
718
+ balance: 'u128',
719
+ amount: 'u128',
720
+ noteIndex: 'u16',
721
+ changeIndex: 'u16',
722
+ },
723
+ BalanceChangeMismatch: {
724
+ changeIndex: 'u16',
725
+ providedBalance: 'u128',
726
+ calculatedBalance: 'i128',
727
+ },
728
+ BalanceChangeNotNetZero: {
729
+ sent: 'u128',
730
+ claimed: 'u128',
731
+ },
732
+ InvalidDomainLeaseAllocation: 'Null',
733
+ TaxBalanceChangeNotNetZero: {
734
+ sent: 'u128',
735
+ claimed: 'u128',
736
+ },
737
+ MissingBalanceProof: 'Null',
738
+ InvalidPreviousBalanceProof: 'Null',
739
+ InvalidNotebookHash: 'Null',
740
+ InvalidNotebookHeaderHash: 'Null',
741
+ InvalidNotebookVersion: 'Null',
742
+ DuplicateChainTransfer: 'Null',
743
+ DuplicatedAccountOriginUid: 'Null',
744
+ InvalidNotarySignature: 'Null',
745
+ InvalidSecretProvided: 'Null',
746
+ NotebookTooOld: 'Null',
747
+ CatchupNotebooksMissing: 'Null',
748
+ DecodeError: 'Null',
749
+ AccountChannelHoldDoesntExist: 'Null',
750
+ AccountAlreadyHasChannelHold: 'Null',
751
+ ChannelHoldNotReadyForClaim: {
752
+ currentTick: 'u64',
753
+ claimTick: 'u64',
754
+ },
755
+ AccountLocked: 'Null',
756
+ MissingChannelHoldNote: 'Null',
757
+ InvalidChannelHoldNote: 'Null',
758
+ InvalidChannelHoldClaimers: 'Null',
759
+ ChannelHoldNoteBelowMinimum: 'Null',
760
+ InvalidTaxNoteAccount: 'Null',
761
+ InvalidTaxOperation: 'Null',
762
+ InsufficientTaxIncluded: {
763
+ taxSent: 'u128',
764
+ taxOwed: 'u128',
765
+ accountId: 'AccountId32',
766
+ },
767
+ InsufficientBlockVoteTax: 'Null',
768
+ IneligibleTaxVoter: 'Null',
769
+ BlockVoteInvalidSignature: 'Null',
770
+ InvalidBlockVoteAllocation: 'Null',
771
+ InvalidBlockVoteRoot: 'Null',
772
+ InvalidBlockVotesCount: 'Null',
773
+ InvalidBlockVotingPower: 'Null',
774
+ InvalidBlockVoteList: 'Null',
775
+ InvalidComputeProof: 'Null',
776
+ InvalidBlockVoteSource: 'Null',
777
+ InsufficientBlockVoteMinimum: 'Null',
778
+ InvalidBlockVoteTick: {
779
+ tick: 'u64',
780
+ notebookTick: 'u64',
781
+ },
782
+ InvalidDefaultBlockVote: 'Null',
783
+ InvalidDefaultBlockVoteAuthor: {
784
+ author: 'AccountId32',
785
+ expected: 'AccountId32',
786
+ },
787
+ NoDefaultBlockVote: 'Null',
788
+ },
789
+ },
790
+ /**
791
+ * Lookup71: argon_primitives::account::AccountType
792
+ **/
793
+ ArgonPrimitivesAccountAccountType: {
794
+ _enum: ['Tax', 'Deposit'],
795
+ },
796
+ /**
797
+ * Lookup72: argon_notary_audit::AccountHistoryLookupError
798
+ **/
799
+ ArgonNotaryAuditAccountHistoryLookupError: {
800
+ _enum: [
801
+ 'RootNotFound',
802
+ 'LastChangeNotFound',
803
+ 'InvalidTransferToLocalchain',
804
+ 'BlockSpecificationNotFound',
805
+ ],
806
+ },
807
+ /**
808
+ * Lookup76: pallet_localchain_transfer::pallet::Event<T>
809
+ **/
810
+ PalletLocalchainTransferEvent: {
811
+ _enum: {
812
+ TransferToLocalchain: {
813
+ accountId: 'AccountId32',
814
+ amount: 'u128',
815
+ transferId: 'u32',
816
+ notaryId: 'u32',
817
+ expirationTick: 'u64',
818
+ },
819
+ TransferToLocalchainExpired: {
820
+ accountId: 'AccountId32',
821
+ transferId: 'u32',
822
+ notaryId: 'u32',
823
+ },
824
+ TransferFromLocalchain: {
825
+ accountId: 'AccountId32',
826
+ amount: 'u128',
827
+ notaryId: 'u32',
828
+ },
829
+ TransferFromLocalchainError: {
830
+ accountId: 'AccountId32',
831
+ amount: 'u128',
832
+ notaryId: 'u32',
833
+ notebookNumber: 'u32',
834
+ error: 'SpRuntimeDispatchError',
835
+ },
836
+ TransferToLocalchainRefundError: {
837
+ accountId: 'AccountId32',
838
+ transferId: 'u32',
839
+ notaryId: 'u32',
840
+ notebookNumber: 'u32',
841
+ error: 'SpRuntimeDispatchError',
842
+ },
843
+ PossibleInvalidLocalchainTransferAllowed: {
844
+ transferId: 'u32',
845
+ notaryId: 'u32',
846
+ notebookNumber: 'u32',
847
+ },
848
+ TaxationError: {
849
+ notaryId: 'u32',
850
+ notebookNumber: 'u32',
851
+ tax: 'u128',
852
+ error: 'SpRuntimeDispatchError',
853
+ },
854
+ },
855
+ },
856
+ /**
857
+ * Lookup77: pallet_block_seal_spec::pallet::Event<T>
858
+ **/
859
+ PalletBlockSealSpecEvent: {
860
+ _enum: {
861
+ VoteMinimumAdjusted: {
862
+ expectedBlockVotes: 'u128',
863
+ actualBlockVotes: 'u128',
864
+ startVoteMinimum: 'u128',
865
+ newVoteMinimum: 'u128',
866
+ },
867
+ ComputeDifficultyAdjusted: {
868
+ expectedBlockTime: 'u64',
869
+ actualBlockTime: 'u64',
870
+ startDifficulty: 'u128',
871
+ newDifficulty: 'u128',
872
+ },
873
+ },
874
+ },
875
+ /**
876
+ * Lookup78: pallet_domains::pallet::Event<T>
877
+ **/
878
+ PalletDomainsEvent: {
879
+ _enum: {
880
+ ZoneRecordUpdated: {
881
+ domainHash: 'H256',
882
+ zoneRecord: 'ArgonPrimitivesDomainZoneRecord',
883
+ },
884
+ DomainRegistered: {
885
+ domainHash: 'H256',
886
+ registration: 'PalletDomainsDomainRegistration',
887
+ },
888
+ DomainRenewed: {
889
+ domainHash: 'H256',
890
+ },
891
+ DomainExpired: {
892
+ domainHash: 'H256',
893
+ },
894
+ DomainRegistrationCanceled: {
895
+ domainHash: 'H256',
896
+ registration: 'PalletDomainsDomainRegistration',
897
+ },
898
+ DomainRegistrationError: {
899
+ domainHash: 'H256',
900
+ accountId: 'AccountId32',
901
+ error: 'SpRuntimeDispatchError',
902
+ },
903
+ },
904
+ },
905
+ /**
906
+ * Lookup79: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
907
+ **/
908
+ ArgonPrimitivesDomainZoneRecord: {
909
+ paymentAccount: 'AccountId32',
910
+ notaryId: 'u32',
911
+ versions: 'BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>',
912
+ },
913
+ /**
914
+ * Lookup81: argon_primitives::domain::Semver
915
+ **/
916
+ ArgonPrimitivesDomainSemver: {
917
+ major: 'u32',
918
+ minor: 'u32',
919
+ patch: 'u32',
920
+ },
921
+ /**
922
+ * Lookup82: argon_primitives::domain::VersionHost
923
+ **/
924
+ ArgonPrimitivesDomainVersionHost: {
925
+ datastoreId: 'Bytes',
926
+ host: 'Bytes',
927
+ },
928
+ /**
929
+ * Lookup87: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
930
+ **/
931
+ PalletDomainsDomainRegistration: {
932
+ accountId: 'AccountId32',
933
+ registeredAtTick: 'u64',
934
+ },
935
+ /**
936
+ * Lookup88: pallet_price_index::pallet::Event<T>
937
+ **/
938
+ PalletPriceIndexEvent: {
939
+ _enum: {
940
+ NewIndex: 'Null',
941
+ OperatorChanged: {
942
+ operatorId: 'AccountId32',
943
+ },
944
+ },
945
+ },
946
+ /**
947
+ * Lookup89: pallet_grandpa::pallet::Event
948
+ **/
949
+ PalletGrandpaEvent: {
950
+ _enum: {
951
+ NewAuthorities: {
952
+ authoritySet: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
953
+ },
954
+ Paused: 'Null',
955
+ Resumed: 'Null',
956
+ },
957
+ },
958
+ /**
959
+ * Lookup92: pallet_block_rewards::pallet::Event<T>
960
+ **/
961
+ PalletBlockRewardsEvent: {
962
+ _enum: {
963
+ RewardCreated: {
964
+ rewards: 'Vec<ArgonPrimitivesBlockSealBlockPayout>',
965
+ },
966
+ RewardCreateError: {
967
+ accountId: 'AccountId32',
968
+ argons: 'Option<u128>',
969
+ ownership: 'Option<u128>',
970
+ error: 'SpRuntimeDispatchError',
971
+ },
972
+ },
973
+ },
974
+ /**
975
+ * Lookup94: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
976
+ **/
977
+ ArgonPrimitivesBlockSealBlockPayout: {
978
+ accountId: 'AccountId32',
979
+ ownership: 'Compact<u128>',
980
+ argons: 'Compact<u128>',
981
+ rewardType: 'ArgonPrimitivesBlockSealBlockRewardType',
982
+ blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
983
+ },
984
+ /**
985
+ * Lookup95: argon_primitives::block_seal::BlockRewardType
986
+ **/
987
+ ArgonPrimitivesBlockSealBlockRewardType: {
988
+ _enum: ['Miner', 'Voter', 'ProfitShare'],
989
+ },
990
+ /**
991
+ * Lookup98: pallet_mint::pallet::Event<T>
992
+ **/
993
+ PalletMintEvent: {
994
+ _enum: {
995
+ BitcoinMint: {
996
+ accountId: 'AccountId32',
997
+ utxoId: 'Option<u64>',
998
+ amount: 'u128',
999
+ },
1000
+ MiningMint: {
1001
+ amount: 'u128',
1002
+ perMiner: 'u128',
1003
+ argonCpi: 'i128',
1004
+ liquidity: 'u128',
1005
+ },
1006
+ MintError: {
1007
+ mintType: 'PalletMintMintType',
1008
+ accountId: 'AccountId32',
1009
+ utxoId: 'Option<u64>',
1010
+ amount: 'u128',
1011
+ error: 'SpRuntimeDispatchError',
1012
+ },
1013
+ },
1014
+ },
1015
+ /**
1016
+ * Lookup101: pallet_mint::pallet::MintType
1017
+ **/
1018
+ PalletMintMintType: {
1019
+ _enum: ['Bitcoin', 'Mining'],
1020
+ },
1021
+ /**
1022
+ * Lookup102: pallet_balances::pallet::Event<T, I>
1023
+ **/
1024
+ PalletBalancesEvent: {
1025
+ _enum: {
1026
+ Endowed: {
1027
+ account: 'AccountId32',
1028
+ freeBalance: 'u128',
1029
+ },
1030
+ DustLost: {
1031
+ account: 'AccountId32',
1032
+ amount: 'u128',
1033
+ },
1034
+ Transfer: {
1035
+ from: 'AccountId32',
1036
+ to: 'AccountId32',
1037
+ amount: 'u128',
1038
+ },
1039
+ BalanceSet: {
1040
+ who: 'AccountId32',
1041
+ free: 'u128',
1042
+ },
1043
+ Reserved: {
1044
+ who: 'AccountId32',
1045
+ amount: 'u128',
1046
+ },
1047
+ Unreserved: {
1048
+ who: 'AccountId32',
1049
+ amount: 'u128',
1050
+ },
1051
+ ReserveRepatriated: {
1052
+ from: 'AccountId32',
1053
+ to: 'AccountId32',
1054
+ amount: 'u128',
1055
+ destinationStatus: 'FrameSupportTokensMiscBalanceStatus',
1056
+ },
1057
+ Deposit: {
1058
+ who: 'AccountId32',
1059
+ amount: 'u128',
1060
+ },
1061
+ Withdraw: {
1062
+ who: 'AccountId32',
1063
+ amount: 'u128',
1064
+ },
1065
+ Slashed: {
1066
+ who: 'AccountId32',
1067
+ amount: 'u128',
1068
+ },
1069
+ Minted: {
1070
+ who: 'AccountId32',
1071
+ amount: 'u128',
1072
+ },
1073
+ MintedCredit: {
1074
+ amount: 'u128',
1075
+ },
1076
+ Burned: {
1077
+ who: 'AccountId32',
1078
+ amount: 'u128',
1079
+ },
1080
+ BurnedDebt: {
1081
+ amount: 'u128',
1082
+ },
1083
+ Suspended: {
1084
+ who: 'AccountId32',
1085
+ amount: 'u128',
1086
+ },
1087
+ Restored: {
1088
+ who: 'AccountId32',
1089
+ amount: 'u128',
1090
+ },
1091
+ Upgraded: {
1092
+ who: 'AccountId32',
1093
+ },
1094
+ Issued: {
1095
+ amount: 'u128',
1096
+ },
1097
+ Rescinded: {
1098
+ amount: 'u128',
1099
+ },
1100
+ Locked: {
1101
+ who: 'AccountId32',
1102
+ amount: 'u128',
1103
+ },
1104
+ Unlocked: {
1105
+ who: 'AccountId32',
1106
+ amount: 'u128',
1107
+ },
1108
+ Frozen: {
1109
+ who: 'AccountId32',
1110
+ amount: 'u128',
1111
+ },
1112
+ Thawed: {
1113
+ who: 'AccountId32',
1114
+ amount: 'u128',
1115
+ },
1116
+ TotalIssuanceForced: {
1117
+ _alias: {
1118
+ new_: 'new',
1119
+ },
1120
+ old: 'u128',
1121
+ new_: 'u128',
1122
+ },
1123
+ Held: {
1124
+ reason: 'ArgonRuntimeRuntimeHoldReason',
1125
+ who: 'AccountId32',
1126
+ amount: 'u128',
1127
+ },
1128
+ BurnedHeld: {
1129
+ reason: 'ArgonRuntimeRuntimeHoldReason',
1130
+ who: 'AccountId32',
1131
+ amount: 'u128',
1132
+ },
1133
+ TransferOnHold: {
1134
+ reason: 'ArgonRuntimeRuntimeHoldReason',
1135
+ source: 'AccountId32',
1136
+ dest: 'AccountId32',
1137
+ amount: 'u128',
1138
+ },
1139
+ TransferAndHold: {
1140
+ reason: 'ArgonRuntimeRuntimeHoldReason',
1141
+ source: 'AccountId32',
1142
+ dest: 'AccountId32',
1143
+ transferred: 'u128',
1144
+ },
1145
+ Released: {
1146
+ reason: 'ArgonRuntimeRuntimeHoldReason',
1147
+ who: 'AccountId32',
1148
+ amount: 'u128',
1149
+ },
1150
+ Unexpected: 'PalletBalancesUnexpectedKind',
1151
+ },
1152
+ },
1153
+ /**
1154
+ * Lookup103: frame_support::traits::tokens::misc::BalanceStatus
1155
+ **/
1156
+ FrameSupportTokensMiscBalanceStatus: {
1157
+ _enum: ['Free', 'Reserved'],
1158
+ },
1159
+ /**
1160
+ * Lookup104: argon_runtime::RuntimeHoldReason
1161
+ **/
1162
+ ArgonRuntimeRuntimeHoldReason: {
1163
+ _enum: {
1164
+ __Unused0: 'Null',
1165
+ __Unused1: 'Null',
1166
+ __Unused2: 'Null',
1167
+ __Unused3: 'Null',
1168
+ __Unused4: 'Null',
1169
+ __Unused5: 'Null',
1170
+ MiningSlot: 'PalletMiningSlotHoldReason',
1171
+ __Unused7: 'Null',
1172
+ Vaults: 'PalletVaultsHoldReason',
1173
+ BitcoinLocks: 'PalletBitcoinLocksHoldReason',
1174
+ __Unused10: 'Null',
1175
+ __Unused11: 'Null',
1176
+ __Unused12: 'Null',
1177
+ __Unused13: 'Null',
1178
+ __Unused14: 'Null',
1179
+ __Unused15: 'Null',
1180
+ __Unused16: 'Null',
1181
+ __Unused17: 'Null',
1182
+ __Unused18: 'Null',
1183
+ BlockRewards: 'PalletBlockRewardsHoldReason',
1184
+ __Unused20: 'Null',
1185
+ __Unused21: 'Null',
1186
+ __Unused22: 'Null',
1187
+ __Unused23: 'Null',
1188
+ __Unused24: 'Null',
1189
+ __Unused25: 'Null',
1190
+ __Unused26: 'Null',
1191
+ __Unused27: 'Null',
1192
+ __Unused28: 'Null',
1193
+ __Unused29: 'Null',
1194
+ __Unused30: 'Null',
1195
+ Treasury: 'PalletTreasuryHoldReason',
1196
+ __Unused32: 'Null',
1197
+ __Unused33: 'Null',
1198
+ __Unused34: 'Null',
1199
+ __Unused35: 'Null',
1200
+ CrosschainTransfer: 'PalletCrosschainTransferHoldReason',
1201
+ },
1202
+ },
1203
+ /**
1204
+ * Lookup105: pallet_mining_slot::pallet::HoldReason
1205
+ **/
1206
+ PalletMiningSlotHoldReason: {
1207
+ _enum: ['RegisterAsMiner'],
1208
+ },
1209
+ /**
1210
+ * Lookup106: pallet_vaults::pallet::HoldReason
1211
+ **/
1212
+ PalletVaultsHoldReason: {
1213
+ _enum: ['EnterVault', 'ObligationFee', 'PendingCollect'],
1214
+ },
1215
+ /**
1216
+ * Lookup107: pallet_bitcoin_locks::pallet::HoldReason
1217
+ **/
1218
+ PalletBitcoinLocksHoldReason: {
1219
+ _enum: ['ReleaseBitcoinLock'],
1220
+ },
1221
+ /**
1222
+ * Lookup108: pallet_block_rewards::pallet::HoldReason
1223
+ **/
1224
+ PalletBlockRewardsHoldReason: {
1225
+ _enum: ['MaturationPeriod'],
1226
+ },
1227
+ /**
1228
+ * Lookup109: pallet_treasury::pallet::HoldReason
1229
+ **/
1230
+ PalletTreasuryHoldReason: {
1231
+ _enum: ['ContributedToTreasury'],
1232
+ },
1233
+ /**
1234
+ * Lookup110: pallet_crosschain_transfer::pallet::HoldReason
1235
+ **/
1236
+ PalletCrosschainTransferHoldReason: {
1237
+ _enum: ['TransferOutMintingAuthorityTip', 'MintingAuthorityActivationRepayment'],
1238
+ },
1239
+ /**
1240
+ * Lookup111: pallet_balances::pallet::UnexpectedKind
1241
+ **/
1242
+ PalletBalancesUnexpectedKind: {
1243
+ _enum: ['BalanceUpdated', 'FailedToMutateAccount'],
1244
+ },
1245
+ /**
1246
+ * Lookup113: pallet_tx_pause::pallet::Event<T>
1247
+ **/
1248
+ PalletTxPauseEvent: {
1249
+ _enum: {
1250
+ CallPaused: {
1251
+ fullName: '(Bytes,Bytes)',
1252
+ },
1253
+ CallUnpaused: {
1254
+ fullName: '(Bytes,Bytes)',
1255
+ },
1256
+ },
1257
+ },
1258
+ /**
1259
+ * Lookup116: pallet_transaction_payment::pallet::Event<T>
1260
+ **/
1261
+ PalletTransactionPaymentEvent: {
1262
+ _enum: {
1263
+ TransactionFeePaid: {
1264
+ who: 'AccountId32',
1265
+ actualFee: 'u128',
1266
+ tip: 'u128',
1267
+ },
1268
+ },
1269
+ },
1270
+ /**
1271
+ * Lookup117: pallet_utility::pallet::Event
1272
+ **/
1273
+ PalletUtilityEvent: {
1274
+ _enum: {
1275
+ BatchInterrupted: {
1276
+ index: 'u32',
1277
+ error: 'SpRuntimeDispatchError',
1278
+ },
1279
+ BatchCompleted: 'Null',
1280
+ BatchCompletedWithErrors: 'Null',
1281
+ ItemCompleted: 'Null',
1282
+ ItemFailed: {
1283
+ error: 'SpRuntimeDispatchError',
1284
+ },
1285
+ DispatchedAs: {
1286
+ result: 'Result<Null, SpRuntimeDispatchError>',
1287
+ },
1288
+ IfElseMainSuccess: 'Null',
1289
+ IfElseFallbackCalled: {
1290
+ mainError: 'SpRuntimeDispatchError',
1291
+ },
1292
+ },
1293
+ },
1294
+ /**
1295
+ * Lookup118: pallet_sudo::pallet::Event<T>
1296
+ **/
1297
+ PalletSudoEvent: {
1298
+ _enum: {
1299
+ Sudid: {
1300
+ sudoResult: 'Result<Null, SpRuntimeDispatchError>',
1301
+ },
1302
+ KeyChanged: {
1303
+ _alias: {
1304
+ new_: 'new',
1305
+ },
1306
+ old: 'Option<AccountId32>',
1307
+ new_: 'AccountId32',
1308
+ },
1309
+ KeyRemoved: 'Null',
1310
+ SudoAsDone: {
1311
+ sudoResult: 'Result<Null, SpRuntimeDispatchError>',
1312
+ },
1313
+ },
1314
+ },
1315
+ /**
1316
+ * Lookup119: pallet_treasury::pallet::Event<T>
1317
+ **/
1318
+ PalletTreasuryEvent: {
1319
+ _enum: {
1320
+ CouldNotDistributeEarningsToBondLot: {
1321
+ frameId: 'u64',
1322
+ vaultId: 'u32',
1323
+ bondLotId: 'u64',
1324
+ accountId: 'AccountId32',
1325
+ amount: 'u128',
1326
+ dispatchError: 'SpRuntimeDispatchError',
1327
+ },
1328
+ CouldNotTransferToTreasuryReserves: {
1329
+ frameId: 'u64',
1330
+ amount: 'u128',
1331
+ dispatchError: 'SpRuntimeDispatchError',
1332
+ },
1333
+ FrameEarningsDistributed: {
1334
+ frameId: 'u64',
1335
+ bidPoolDistributed: 'u128',
1336
+ treasuryReserves: 'u128',
1337
+ participatingVaults: 'u32',
1338
+ },
1339
+ FrameVaultCapitalLocked: {
1340
+ frameId: 'u64',
1341
+ totalEligibleBonds: 'u128',
1342
+ participatingVaults: 'u32',
1343
+ },
1344
+ CouldNotReleaseBondLot: {
1345
+ frameId: 'u64',
1346
+ vaultId: 'u32',
1347
+ bondLotId: 'u64',
1348
+ amount: 'u128',
1349
+ accountId: 'AccountId32',
1350
+ dispatchError: 'SpRuntimeDispatchError',
1351
+ },
1352
+ BondLotPurchased: {
1353
+ vaultId: 'u32',
1354
+ bondLotId: 'u64',
1355
+ accountId: 'AccountId32',
1356
+ bonds: 'u32',
1357
+ },
1358
+ BondLotReleaseScheduled: {
1359
+ vaultId: 'u32',
1360
+ bondLotId: 'u64',
1361
+ accountId: 'AccountId32',
1362
+ bonds: 'u32',
1363
+ releaseFrameId: 'u64',
1364
+ reason: 'PalletTreasuryBondReleaseReason',
1365
+ },
1366
+ BondLotReleased: {
1367
+ frameId: 'u64',
1368
+ vaultId: 'u32',
1369
+ bondLotId: 'u64',
1370
+ accountId: 'AccountId32',
1371
+ bonds: 'u32',
1372
+ },
1373
+ EncumberedBondMicrogonsBurned: {
1374
+ accountId: 'AccountId32',
1375
+ burnedAmount: 'u128',
1376
+ releasedAmount: 'u128',
1377
+ },
1378
+ },
1379
+ },
1380
+ /**
1381
+ * Lookup120: pallet_treasury::pallet::BondReleaseReason
1382
+ **/
1383
+ PalletTreasuryBondReleaseReason: {
1384
+ _enum: ['UserLiquidation', 'Bumped', 'VaultClosed'],
1385
+ },
1386
+ /**
1387
+ * Lookup121: pallet_fee_control::pallet::Event<T>
1388
+ **/
1389
+ PalletFeeControlEvent: {
1390
+ _enum: {
1391
+ FeeSkipped: {
1392
+ origin: 'ArgonRuntimeOriginCaller',
1393
+ },
1394
+ FeeDelegated: {
1395
+ origin: 'ArgonRuntimeOriginCaller',
1396
+ from: 'AccountId32',
1397
+ to: 'AccountId32',
1398
+ },
1399
+ },
1400
+ },
1401
+ /**
1402
+ * Lookup122: argon_runtime::OriginCaller
1403
+ **/
1404
+ ArgonRuntimeOriginCaller: {
1405
+ _enum: {
1406
+ system: 'FrameSupportDispatchRawOrigin',
1407
+ },
1408
+ },
1409
+ /**
1410
+ * Lookup123: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1411
+ **/
1412
+ FrameSupportDispatchRawOrigin: {
1413
+ _enum: {
1414
+ Root: 'Null',
1415
+ Signed: 'AccountId32',
1416
+ None: 'Null',
1417
+ Authorized: 'Null',
1418
+ },
1419
+ },
1420
+ /**
1421
+ * Lookup124: pallet_operational_accounts::pallet::Event<T>
1422
+ **/
1423
+ PalletOperationalAccountsEvent: {
1424
+ _enum: {
1425
+ OperationalAccountRegistered: {
1426
+ operationalAccount: 'AccountId32',
1427
+ vaultAccount: 'AccountId32',
1428
+ miningFundingAccount: 'AccountId32',
1429
+ miningBotAccount: 'AccountId32',
1430
+ sponsor: 'Option<AccountId32>',
1431
+ },
1432
+ AccountWentOperational: {
1433
+ account: 'AccountId32',
1434
+ },
1435
+ OperationalRewardEarned: {
1436
+ account: 'AccountId32',
1437
+ rewardKind: 'ArgonPrimitivesProvidersOperationalRewardKind',
1438
+ amount: 'u128',
1439
+ },
1440
+ OperationalRewardsClaimed: {
1441
+ operationalAccount: 'AccountId32',
1442
+ claimant: 'AccountId32',
1443
+ amount: 'u128',
1444
+ remainingPending: 'u128',
1445
+ },
1446
+ RewardsConfigUpdated: {
1447
+ operationalReferralReward: 'u128',
1448
+ referralBonusReward: 'u128',
1449
+ },
1450
+ OperationalProgressForced: {
1451
+ account: 'AccountId32',
1452
+ updateOperationalProgress: 'bool',
1453
+ hasUniswapTransfer: 'bool',
1454
+ vaultCreated: 'bool',
1455
+ hasTreasuryPoolParticipation: 'bool',
1456
+ observedBitcoinTotal: 'u128',
1457
+ observedMiningSeatTotal: 'u32',
1458
+ },
1459
+ EncryptedServerUpdated: {
1460
+ sponsor: 'AccountId32',
1461
+ sponsee: 'AccountId32',
1462
+ },
1463
+ },
1464
+ },
1465
+ /**
1466
+ * Lookup125: argon_primitives::providers::OperationalRewardKind
1467
+ **/
1468
+ ArgonPrimitivesProvidersOperationalRewardKind: {
1469
+ _enum: ['Activation', 'ReferralBonus'],
1470
+ },
1471
+ /**
1472
+ * Lookup126: pallet_ethereum_verifier::pallet::Event<T>
1473
+ **/
1474
+ PalletEthereumVerifierEvent: {
1475
+ _enum: {
1476
+ BeaconHeaderImported: {
1477
+ blockHash: 'H256',
1478
+ slot: 'u64',
1479
+ },
1480
+ ExecutionHeaderAnchorImported: {
1481
+ blockHash: 'H256',
1482
+ blockNumber: 'u64',
1483
+ },
1484
+ SyncCommitteeUpdated: {
1485
+ period: 'u64',
1486
+ },
1487
+ OperatingModeChanged: {
1488
+ mode: 'PalletEthereumVerifierBasicOperatingMode',
1489
+ },
1490
+ },
1491
+ },
1492
+ /**
1493
+ * Lookup127: pallet_ethereum_verifier::types::BasicOperatingMode
1494
+ **/
1495
+ PalletEthereumVerifierBasicOperatingMode: {
1496
+ _enum: ['Normal', 'Halted'],
1497
+ },
1498
+ /**
1499
+ * Lookup128: pallet_crosschain_transfer::pallet::Event<T>
1500
+ **/
1501
+ PalletCrosschainTransferEvent: {
1502
+ _enum: {
1503
+ TransferToArgonSettled: {
1504
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1505
+ transfer: 'PalletCrosschainTransferTransferToArgonActivity',
1506
+ },
1507
+ GlobalIssuanceCouncilForced: {
1508
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1509
+ councilHash: 'H256',
1510
+ },
1511
+ CouncilSignerRegistered: {
1512
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1513
+ accountId: 'AccountId32',
1514
+ signer: 'H160',
1515
+ },
1516
+ CouncilSignerRotationQueued: {
1517
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1518
+ accountId: 'AccountId32',
1519
+ signer: 'H160',
1520
+ },
1521
+ MintingAuthorityRegistered: {
1522
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1523
+ destinationSigningKey: 'H160',
1524
+ accountId: 'AccountId32',
1525
+ approvalQueueNonce: 'u64',
1526
+ },
1527
+ MintingAuthorityDeactivationQueued: {
1528
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1529
+ destinationSigningKey: 'H160',
1530
+ approvalQueueNonce: 'u64',
1531
+ },
1532
+ MinimumMintingAuthorityValueSet: {
1533
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1534
+ minimumValue: 'u128',
1535
+ },
1536
+ MintingAuthorityActivationRepaymentPricingSet: {
1537
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1538
+ },
1539
+ QueueEntryApprovalRecorded: {
1540
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1541
+ target: 'PalletCrosschainTransferCouncilApprovalTargetId',
1542
+ approvalQueueNonce: 'u64',
1543
+ },
1544
+ QueueEntryApprovalReady: {
1545
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1546
+ target: 'PalletCrosschainTransferCouncilApprovalTargetId',
1547
+ approvalQueueNonce: 'u64',
1548
+ },
1549
+ MintingAuthorityActivationFinalized: {
1550
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1551
+ destinationSigningKey: 'H160',
1552
+ },
1553
+ MintingAuthorityActivationCompleted: {
1554
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1555
+ destinationSigningKey: 'H160',
1556
+ relayerArgonAccountId: 'AccountId32',
1557
+ repaymentAmount: 'u128',
1558
+ },
1559
+ MintingAuthorityDeactivationFinalized: {
1560
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1561
+ destinationSigningKey: 'H160',
1562
+ },
1563
+ GatewaySyncPaused: {
1564
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1565
+ pause: 'PalletCrosschainTransferGatewaySyncPause',
1566
+ },
1567
+ GatewayUnpaused: {
1568
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1569
+ },
1570
+ GatewayStateAdvanced: {
1571
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1572
+ gatewayState: 'PalletCrosschainTransferGatewayState',
1573
+ },
1574
+ TransferOutStarted: {
1575
+ destinationChain: 'PalletCrosschainTransferSourceChain',
1576
+ transferId: 'H256',
1577
+ accountId: 'AccountId32',
1578
+ asset: 'PalletCrosschainTransferAssetKind',
1579
+ amount: 'u128',
1580
+ mintingAuthorityTip: 'u128',
1581
+ },
1582
+ TransferCollateralized: {
1583
+ transferId: 'H256',
1584
+ destinationSigningKey: 'H160',
1585
+ microgonCollateral: 'u128',
1586
+ micronotCollateral: 'u128',
1587
+ },
1588
+ TransferOutReady: {
1589
+ transferId: 'H256',
1590
+ },
1591
+ TransferOutFinalized: {
1592
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1593
+ transferId: 'H256',
1594
+ },
1595
+ TransferOutCanceled: {
1596
+ sourceChain: 'PalletCrosschainTransferSourceChain',
1597
+ transferId: 'H256',
1598
+ },
1599
+ TransferCollateralInvalidated: {
1600
+ transferId: 'H256',
1601
+ destinationSigningKey: 'H160',
1602
+ },
1603
+ },
1604
+ },
1605
+ /**
1606
+ * Lookup129: pallet_crosschain_transfer::pallet::SourceChain
1607
+ **/
1608
+ PalletCrosschainTransferSourceChain: {
1609
+ _enum: ['Ethereum'],
1610
+ },
1611
+ /**
1612
+ * Lookup130: pallet_crosschain_transfer::pallet::TransferToArgonActivity<T>
1613
+ **/
1614
+ PalletCrosschainTransferTransferToArgonActivity: {
1615
+ gatewayActivityNonce: 'Compact<u64>',
1616
+ from: 'H160',
1617
+ asset: 'PalletCrosschainTransferAssetKind',
1618
+ to: 'AccountId32',
1619
+ amount: 'Compact<u128>',
1620
+ },
1621
+ /**
1622
+ * Lookup133: pallet_crosschain_transfer::pallet::AssetKind
1623
+ **/
1624
+ PalletCrosschainTransferAssetKind: {
1625
+ _enum: ['Argon', 'Argonot'],
1626
+ },
1627
+ /**
1628
+ * Lookup134: pallet_crosschain_transfer::pallet::CouncilApprovalTargetId
1629
+ **/
1630
+ PalletCrosschainTransferCouncilApprovalTargetId: {
1631
+ _enum: {
1632
+ MintingAuthorityActivation: 'H160',
1633
+ MintingAuthorityDeactivation: 'H160',
1634
+ GlobalIssuanceCouncilRotation: 'H256',
1635
+ },
1636
+ },
1637
+ /**
1638
+ * Lookup135: pallet_crosschain_transfer::pallet::GatewaySyncPause
1639
+ **/
1640
+ PalletCrosschainTransferGatewaySyncPause: {
1641
+ lastGoodGatewayActivityNonce: 'Compact<u64>',
1642
+ failedGatewayActivityNonce: 'Compact<u64>',
1643
+ reason: 'PalletCrosschainTransferGatewaySyncPauseReason',
1644
+ },
1645
+ /**
1646
+ * Lookup136: pallet_crosschain_transfer::pallet::GatewaySyncPauseReason
1647
+ **/
1648
+ PalletCrosschainTransferGatewaySyncPauseReason: {
1649
+ _enum: [
1650
+ 'Manual',
1651
+ 'MalformedGatewayActivity',
1652
+ 'UnsupportedToken',
1653
+ 'MintingAuthorityNotFound',
1654
+ 'UnexpectedMintingAuthorityState',
1655
+ 'MintingAuthorityMismatch',
1656
+ 'MissingMintingAuthorityActivationRepaymentPricing',
1657
+ 'MintingAuthorityActivationRepaymentMismatch',
1658
+ 'GlobalIssuanceCouncilNotFound',
1659
+ 'GatewayStateDrift',
1660
+ ],
1661
+ },
1662
+ /**
1663
+ * Lookup137: pallet_crosschain_transfer::pallet::GatewayState<T>
1664
+ **/
1665
+ PalletCrosschainTransferGatewayState: {
1666
+ gatewayActivityNonce: 'Compact<u64>',
1667
+ argonApprovalsNonce: 'Compact<u64>',
1668
+ argonCirculation: 'u128',
1669
+ argonotCirculation: 'u128',
1670
+ },
1671
+ /**
1672
+ * Lookup138: frame_system::Phase
1673
+ **/
1674
+ FrameSystemPhase: {
1675
+ _enum: {
1676
+ ApplyExtrinsic: 'u32',
1677
+ Finalization: 'Null',
1678
+ Initialization: 'Null',
1679
+ },
1680
+ },
1681
+ /**
1682
+ * Lookup142: frame_system::LastRuntimeUpgradeInfo
1683
+ **/
1684
+ FrameSystemLastRuntimeUpgradeInfo: {
1685
+ specVersion: 'Compact<u32>',
1686
+ specName: 'Text',
1687
+ },
1688
+ /**
1689
+ * Lookup145: frame_system::CodeUpgradeAuthorization<T>
1690
+ **/
1691
+ FrameSystemCodeUpgradeAuthorization: {
1692
+ codeHash: 'H256',
1693
+ checkVersion: 'bool',
1694
+ },
1695
+ /**
1696
+ * Lookup146: frame_system::pallet::Call<T>
1697
+ **/
1698
+ FrameSystemCall: {
1699
+ _enum: {
1700
+ remark: {
1701
+ remark: 'Bytes',
1702
+ },
1703
+ set_heap_pages: {
1704
+ pages: 'u64',
1705
+ },
1706
+ set_code: {
1707
+ code: 'Bytes',
1708
+ },
1709
+ set_code_without_checks: {
1710
+ code: 'Bytes',
1711
+ },
1712
+ set_storage: {
1713
+ items: 'Vec<(Bytes,Bytes)>',
1714
+ },
1715
+ kill_storage: {
1716
+ _alias: {
1717
+ keys_: 'keys',
1718
+ },
1719
+ keys_: 'Vec<Bytes>',
1720
+ },
1721
+ kill_prefix: {
1722
+ prefix: 'Bytes',
1723
+ subkeys: 'u32',
1724
+ },
1725
+ remark_with_event: {
1726
+ remark: 'Bytes',
1727
+ },
1728
+ __Unused8: 'Null',
1729
+ authorize_upgrade: {
1730
+ codeHash: 'H256',
1731
+ },
1732
+ authorize_upgrade_without_checks: {
1733
+ codeHash: 'H256',
1734
+ },
1735
+ apply_authorized_upgrade: {
1736
+ code: 'Bytes',
1737
+ },
1738
+ },
1739
+ },
1740
+ /**
1741
+ * Lookup150: frame_system::limits::BlockWeights
1742
+ **/
1743
+ FrameSystemLimitsBlockWeights: {
1744
+ baseBlock: 'SpWeightsWeightV2Weight',
1745
+ maxBlock: 'SpWeightsWeightV2Weight',
1746
+ perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass',
1747
+ },
1748
+ /**
1749
+ * Lookup151: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1750
+ **/
1751
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1752
+ normal: 'FrameSystemLimitsWeightsPerClass',
1753
+ operational: 'FrameSystemLimitsWeightsPerClass',
1754
+ mandatory: 'FrameSystemLimitsWeightsPerClass',
1755
+ },
1756
+ /**
1757
+ * Lookup152: frame_system::limits::WeightsPerClass
1758
+ **/
1759
+ FrameSystemLimitsWeightsPerClass: {
1760
+ baseExtrinsic: 'SpWeightsWeightV2Weight',
1761
+ maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
1762
+ maxTotal: 'Option<SpWeightsWeightV2Weight>',
1763
+ reserved: 'Option<SpWeightsWeightV2Weight>',
1764
+ },
1765
+ /**
1766
+ * Lookup154: frame_system::limits::BlockLength
1767
+ **/
1768
+ FrameSystemLimitsBlockLength: {
1769
+ max: 'FrameSupportDispatchPerDispatchClassU32',
1770
+ maxHeaderSize: 'Option<u32>',
1771
+ },
1772
+ /**
1773
+ * Lookup155: frame_support::dispatch::PerDispatchClass<T>
1774
+ **/
1775
+ FrameSupportDispatchPerDispatchClassU32: {
1776
+ normal: 'u32',
1777
+ operational: 'u32',
1778
+ mandatory: 'u32',
1779
+ },
1780
+ /**
1781
+ * Lookup157: sp_weights::RuntimeDbWeight
1782
+ **/
1783
+ SpWeightsRuntimeDbWeight: {
1784
+ read: 'u64',
1785
+ write: 'u64',
1786
+ },
1787
+ /**
1788
+ * Lookup158: sp_version::RuntimeVersion
1789
+ **/
1790
+ SpVersionRuntimeVersion: {
1791
+ specName: 'Text',
1792
+ implName: 'Text',
1793
+ authoringVersion: 'u32',
1794
+ specVersion: 'u32',
1795
+ implVersion: 'u32',
1796
+ apis: 'Vec<([u8;8],u32)>',
1797
+ transactionVersion: 'u32',
1798
+ systemVersion: 'u8',
1799
+ },
1800
+ /**
1801
+ * Lookup163: frame_system::pallet::Error<T>
1802
+ **/
1803
+ FrameSystemError: {
1804
+ _enum: [
1805
+ 'InvalidSpecName',
1806
+ 'SpecVersionNeedsToIncrease',
1807
+ 'FailedToExtractRuntimeVersion',
1808
+ 'NonDefaultComposite',
1809
+ 'NonZeroRefCount',
1810
+ 'CallFiltered',
1811
+ 'MultiBlockMigrationsOngoing',
1812
+ 'NothingAuthorized',
1813
+ 'Unauthorized',
1814
+ ],
1815
+ },
1816
+ /**
1817
+ * Lookup164: argon_primitives::digests::Digestset<argon_notary_audit::error::VerifyError, sp_core::crypto::AccountId32>
1818
+ **/
1819
+ ArgonPrimitivesDigestsDigestset: {
1820
+ author: 'AccountId32',
1821
+ blockVote: 'ArgonPrimitivesDigestsBlockVoteDigest',
1822
+ votingKey: 'Option<ArgonPrimitivesDigestsParentVotingKeyDigest>',
1823
+ forkPower: 'Option<ArgonPrimitivesForkPower>',
1824
+ frameInfo: 'Option<ArgonPrimitivesDigestsFrameInfo>',
1825
+ tick: 'u64',
1826
+ notebooks: 'ArgonPrimitivesDigestsNotebookDigest',
1827
+ },
1828
+ /**
1829
+ * Lookup165: argon_primitives::digests::BlockVoteDigest
1830
+ **/
1831
+ ArgonPrimitivesDigestsBlockVoteDigest: {
1832
+ votingPower: 'Compact<u128>',
1833
+ votesCount: 'Compact<u32>',
1834
+ },
1835
+ /**
1836
+ * Lookup167: argon_primitives::digests::ParentVotingKeyDigest
1837
+ **/
1838
+ ArgonPrimitivesDigestsParentVotingKeyDigest: {
1839
+ parentVotingKey: 'Option<H256>',
1840
+ },
1841
+ /**
1842
+ * Lookup170: argon_primitives::fork_power::ForkPower
1843
+ **/
1844
+ ArgonPrimitivesForkPower: {
1845
+ isLatestVote: 'bool',
1846
+ notebooks: 'Compact<u64>',
1847
+ votingPower: 'U256',
1848
+ sealStrength: 'U256',
1849
+ totalComputeDifficulty: 'U256',
1850
+ voteCreatedBlocks: 'Compact<u128>',
1851
+ minerNonceScore: 'Option<U256>',
1852
+ },
1853
+ /**
1854
+ * Lookup175: argon_primitives::digests::FrameInfo
1855
+ **/
1856
+ ArgonPrimitivesDigestsFrameInfo: {
1857
+ frameId: 'Compact<u64>',
1858
+ frameRewardTicksRemaining: 'Compact<u32>',
1859
+ isNewFrame: 'bool',
1860
+ },
1861
+ /**
1862
+ * Lookup177: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
1863
+ **/
1864
+ ArgonPrimitivesDigestsNotebookDigest: {
1865
+ notebooks: 'Vec<ArgonPrimitivesNotebookNotebookAuditResult>',
1866
+ },
1867
+ /**
1868
+ * Lookup179: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
1869
+ **/
1870
+ ArgonPrimitivesNotebookNotebookAuditResult: {
1871
+ notaryId: 'Compact<u32>',
1872
+ notebookNumber: 'Compact<u32>',
1873
+ tick: 'Compact<u64>',
1874
+ auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>',
1875
+ },
1876
+ /**
1877
+ * Lookup182: pallet_digests::pallet::Error<T>
1878
+ **/
1879
+ PalletDigestsError: {
1880
+ _enum: [
1881
+ 'DuplicateBlockVoteDigest',
1882
+ 'DuplicateAuthorDigest',
1883
+ 'DuplicateTickDigest',
1884
+ 'DuplicateParentVotingKeyDigest',
1885
+ 'DuplicateNotebookDigest',
1886
+ 'DuplicateForkPowerDigest',
1887
+ 'MissingBlockVoteDigest',
1888
+ 'MissingAuthorDigest',
1889
+ 'MissingTickDigest',
1890
+ 'MissingParentVotingKeyDigest',
1891
+ 'MissingNotebookDigest',
1892
+ 'CouldNotDecodeDigest',
1893
+ 'DuplicateFrameInfoDigest',
1894
+ ],
1895
+ },
1896
+ /**
1897
+ * Lookup183: pallet_timestamp::pallet::Call<T>
1898
+ **/
1899
+ PalletTimestampCall: {
1900
+ _enum: {
1901
+ set: {
1902
+ now: 'Compact<u64>',
1903
+ },
1904
+ },
1905
+ },
1906
+ /**
1907
+ * Lookup185: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
1908
+ **/
1909
+ PalletMultisigMultisig: {
1910
+ when: 'PalletMultisigTimepoint',
1911
+ deposit: 'u128',
1912
+ depositor: 'AccountId32',
1913
+ approvals: 'Vec<AccountId32>',
1914
+ },
1915
+ /**
1916
+ * Lookup188: pallet_multisig::pallet::Call<T>
1917
+ **/
1918
+ PalletMultisigCall: {
1919
+ _enum: {
1920
+ as_multi_threshold_1: {
1921
+ otherSignatories: 'Vec<AccountId32>',
1922
+ call: 'Call',
1923
+ },
1924
+ as_multi: {
1925
+ threshold: 'u16',
1926
+ otherSignatories: 'Vec<AccountId32>',
1927
+ maybeTimepoint: 'Option<PalletMultisigTimepoint>',
1928
+ call: 'Call',
1929
+ maxWeight: 'SpWeightsWeightV2Weight',
1930
+ },
1931
+ approve_as_multi: {
1932
+ threshold: 'u16',
1933
+ otherSignatories: 'Vec<AccountId32>',
1934
+ maybeTimepoint: 'Option<PalletMultisigTimepoint>',
1935
+ callHash: '[u8;32]',
1936
+ maxWeight: 'SpWeightsWeightV2Weight',
1937
+ },
1938
+ cancel_as_multi: {
1939
+ threshold: 'u16',
1940
+ otherSignatories: 'Vec<AccountId32>',
1941
+ timepoint: 'PalletMultisigTimepoint',
1942
+ callHash: '[u8;32]',
1943
+ },
1944
+ poke_deposit: {
1945
+ threshold: 'u16',
1946
+ otherSignatories: 'Vec<AccountId32>',
1947
+ callHash: '[u8;32]',
1948
+ },
1949
+ },
1950
+ },
1951
+ /**
1952
+ * Lookup190: pallet_proxy::pallet::Call<T>
1953
+ **/
1954
+ PalletProxyCall: {
1955
+ _enum: {
1956
+ proxy: {
1957
+ real: 'MultiAddress',
1958
+ forceProxyType: 'Option<ArgonRuntimeProxyType>',
1959
+ call: 'Call',
1960
+ },
1961
+ add_proxy: {
1962
+ delegate: 'MultiAddress',
1963
+ proxyType: 'ArgonRuntimeProxyType',
1964
+ delay: 'u32',
1965
+ },
1966
+ remove_proxy: {
1967
+ delegate: 'MultiAddress',
1968
+ proxyType: 'ArgonRuntimeProxyType',
1969
+ delay: 'u32',
1970
+ },
1971
+ remove_proxies: 'Null',
1972
+ create_pure: {
1973
+ proxyType: 'ArgonRuntimeProxyType',
1974
+ delay: 'u32',
1975
+ index: 'u16',
1976
+ },
1977
+ kill_pure: {
1978
+ spawner: 'MultiAddress',
1979
+ proxyType: 'ArgonRuntimeProxyType',
1980
+ index: 'u16',
1981
+ height: 'Compact<u32>',
1982
+ extIndex: 'Compact<u32>',
1983
+ },
1984
+ announce: {
1985
+ real: 'MultiAddress',
1986
+ callHash: 'H256',
1987
+ },
1988
+ remove_announcement: {
1989
+ real: 'MultiAddress',
1990
+ callHash: 'H256',
1991
+ },
1992
+ reject_announcement: {
1993
+ delegate: 'MultiAddress',
1994
+ callHash: 'H256',
1995
+ },
1996
+ proxy_announced: {
1997
+ delegate: 'MultiAddress',
1998
+ real: 'MultiAddress',
1999
+ forceProxyType: 'Option<ArgonRuntimeProxyType>',
2000
+ call: 'Call',
2001
+ },
2002
+ poke_deposit: 'Null',
2003
+ },
2004
+ },
2005
+ /**
2006
+ * Lookup194: pallet_ticks::pallet::Call<T>
2007
+ **/
2008
+ PalletTicksCall: 'Null',
2009
+ /**
2010
+ * Lookup195: pallet_mining_slot::pallet::Call<T>
2011
+ **/
2012
+ PalletMiningSlotCall: {
2013
+ _enum: {
2014
+ bid: {
2015
+ _alias: {
2016
+ keys_: 'keys',
2017
+ },
2018
+ bid: 'u128',
2019
+ keys_: 'ArgonRuntimeSessionKeys',
2020
+ miningAccountId: 'Option<AccountId32>',
2021
+ },
2022
+ configure_mining_slot_delay: {
2023
+ miningSlotDelay: 'Option<u64>',
2024
+ ticksBeforeBidEndForVrfClose: 'Option<u64>',
2025
+ },
2026
+ },
2027
+ },
2028
+ /**
2029
+ * Lookup196: pallet_bitcoin_utxos::pallet::Call<T>
2030
+ **/
2031
+ PalletBitcoinUtxosCall: {
2032
+ _enum: {
2033
+ sync: {
2034
+ utxoSync: 'ArgonPrimitivesInherentsBitcoinUtxoSync',
2035
+ },
2036
+ set_confirmed_block: {
2037
+ bitcoinHeight: 'u64',
2038
+ bitcoinBlockHash: 'ArgonPrimitivesBitcoinH256Le',
2039
+ },
2040
+ set_operator: {
2041
+ accountId: 'AccountId32',
2042
+ },
2043
+ fund_with_utxo_candidate: {
2044
+ utxoId: 'u64',
2045
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
2046
+ },
2047
+ reject_utxo_candidate: {
2048
+ utxoId: 'u64',
2049
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
2050
+ },
2051
+ },
2052
+ },
2053
+ /**
2054
+ * Lookup197: argon_primitives::inherents::BitcoinUtxoSync
2055
+ **/
2056
+ ArgonPrimitivesInherentsBitcoinUtxoSync: {
2057
+ spent: 'Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>',
2058
+ funded: 'Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>',
2059
+ syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock',
2060
+ },
2061
+ /**
2062
+ * Lookup199: argon_primitives::inherents::BitcoinUtxoSpend
2063
+ **/
2064
+ ArgonPrimitivesInherentsBitcoinUtxoSpend: {
2065
+ utxoId: 'Compact<u64>',
2066
+ utxoRef: 'Option<ArgonPrimitivesBitcoinUtxoRef>',
2067
+ bitcoinHeight: 'Compact<u64>',
2068
+ },
2069
+ /**
2070
+ * Lookup202: argon_primitives::inherents::BitcoinUtxoFunding
2071
+ **/
2072
+ ArgonPrimitivesInherentsBitcoinUtxoFunding: {
2073
+ utxoId: 'Compact<u64>',
2074
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
2075
+ satoshis: 'Compact<u64>',
2076
+ expectedSatoshis: 'Compact<u64>',
2077
+ bitcoinHeight: 'Compact<u64>',
2078
+ },
2079
+ /**
2080
+ * Lookup203: argon_primitives::bitcoin::BitcoinBlock
2081
+ **/
2082
+ ArgonPrimitivesBitcoinBitcoinBlock: {
2083
+ blockHeight: 'Compact<u64>',
2084
+ blockHash: 'ArgonPrimitivesBitcoinH256Le',
2085
+ },
2086
+ /**
2087
+ * Lookup204: pallet_vaults::pallet::Call<T>
2088
+ **/
2089
+ PalletVaultsCall: {
2090
+ _enum: {
2091
+ create: {
2092
+ vaultConfig: 'PalletVaultsVaultConfig',
2093
+ },
2094
+ modify_funding: {
2095
+ vaultId: 'u32',
2096
+ securitization: 'u128',
2097
+ securitizationRatio: 'u128',
2098
+ },
2099
+ modify_terms: {
2100
+ vaultId: 'u32',
2101
+ terms: 'ArgonPrimitivesVaultVaultTerms',
2102
+ },
2103
+ close: {
2104
+ vaultId: 'u32',
2105
+ },
2106
+ replace_bitcoin_xpub: {
2107
+ vaultId: 'u32',
2108
+ bitcoinXpub: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
2109
+ },
2110
+ collect: {
2111
+ vaultId: 'u32',
2112
+ },
2113
+ set_bitcoin_lock_delegate: {
2114
+ delegateAccountId: 'Option<AccountId32>',
2115
+ },
2116
+ set_name: {
2117
+ name: 'Option<Bytes>',
2118
+ },
2119
+ set_committed_argonots: {
2120
+ amount: 'Compact<u128>',
2121
+ },
2122
+ },
2123
+ },
2124
+ /**
2125
+ * Lookup205: pallet_vaults::pallet::VaultConfig<Balance>
2126
+ **/
2127
+ PalletVaultsVaultConfig: {
2128
+ terms: 'ArgonPrimitivesVaultVaultTerms',
2129
+ name: 'Option<Bytes>',
2130
+ securitization: 'Compact<u128>',
2131
+ bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
2132
+ securitizationRatio: 'Compact<u128>',
2133
+ },
2134
+ /**
2135
+ * Lookup206: argon_primitives::vault::VaultTerms<Balance>
2136
+ **/
2137
+ ArgonPrimitivesVaultVaultTerms: {
2138
+ bitcoinAnnualPercentRate: 'Compact<u128>',
2139
+ bitcoinBaseFee: 'Compact<u128>',
2140
+ treasuryProfitSharing: 'Compact<Permill>',
2141
+ },
2142
+ /**
2143
+ * Lookup212: argon_primitives::bitcoin::OpaqueBitcoinXpub
2144
+ **/
2145
+ ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
2146
+ /**
2147
+ * Lookup214: pallet_bitcoin_locks::pallet::Call<T>
2148
+ **/
2149
+ PalletBitcoinLocksCall: {
2150
+ _enum: {
2151
+ initialize: {
2152
+ vaultId: 'u32',
2153
+ satoshis: 'Compact<u64>',
2154
+ bitcoinPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
2155
+ options: 'Option<PalletBitcoinLocksLockOptions>',
2156
+ },
2157
+ request_release: {
2158
+ utxoId: 'u64',
2159
+ toScriptPubkey: 'Bytes',
2160
+ bitcoinNetworkFee: 'u64',
2161
+ },
2162
+ cosign_release: {
2163
+ utxoId: 'u64',
2164
+ signature: 'Bytes',
2165
+ },
2166
+ ratchet: {
2167
+ utxoId: 'u64',
2168
+ options: 'Option<PalletBitcoinLocksLockOptions>',
2169
+ },
2170
+ admin_modify_minimum_locked_sats: {
2171
+ satoshis: 'u64',
2172
+ },
2173
+ request_orphaned_utxo_release: {
2174
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
2175
+ toScriptPubkey: 'Bytes',
2176
+ bitcoinNetworkFee: 'u64',
2177
+ },
2178
+ cosign_orphaned_utxo_release: {
2179
+ orphanOwner: 'AccountId32',
2180
+ utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
2181
+ signature: 'Bytes',
2182
+ },
2183
+ __Unused7: 'Null',
2184
+ initialize_for: {
2185
+ accountId: 'AccountId32',
2186
+ vaultId: 'u32',
2187
+ satoshis: 'Compact<u64>',
2188
+ bitcoinPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
2189
+ options: 'Option<PalletBitcoinLocksLockOptions>',
2190
+ },
2191
+ increase_securitization: {
2192
+ utxoId: 'u64',
2193
+ newSatoshis: 'Compact<u64>',
2194
+ },
2195
+ },
2196
+ },
2197
+ /**
2198
+ * Lookup215: argon_primitives::bitcoin::CompressedBitcoinPubkey
2199
+ **/
2200
+ ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
2201
+ /**
2202
+ * Lookup218: pallet_bitcoin_locks::pallet::LockOptions<T>
2203
+ **/
2204
+ PalletBitcoinLocksLockOptions: {
2205
+ _enum: {
2206
+ V1: {
2207
+ microgonsAtTargetPerBtc: 'Option<u128>',
2208
+ },
2209
+ },
2210
+ },
2211
+ /**
2212
+ * Lookup221: pallet_notaries::pallet::Call<T>
2213
+ **/
2214
+ PalletNotariesCall: {
2215
+ _enum: {
2216
+ propose: {
2217
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
2218
+ },
2219
+ activate: {
2220
+ operatorAccount: 'AccountId32',
2221
+ },
2222
+ update: {
2223
+ notaryId: 'Compact<u32>',
2224
+ meta: 'ArgonPrimitivesNotaryNotaryMeta',
2225
+ effectiveTick: 'Compact<u64>',
2226
+ },
2227
+ },
2228
+ },
2229
+ /**
2230
+ * Lookup222: pallet_notebook::pallet::Call<T>
2231
+ **/
2232
+ PalletNotebookCall: {
2233
+ _enum: {
2234
+ submit: {
2235
+ notebooks: 'Vec<ArgonPrimitivesNotebookSignedNotebookHeader>',
2236
+ },
2237
+ unlock: {
2238
+ notaryId: 'u32',
2239
+ },
2240
+ },
2241
+ },
2242
+ /**
2243
+ * Lookup224: argon_primitives::notebook::SignedNotebookHeader
2244
+ **/
2245
+ ArgonPrimitivesNotebookSignedNotebookHeader: {
2246
+ header: 'ArgonPrimitivesNotebookNotebookHeader',
2247
+ signature: '[u8;64]',
2248
+ },
2249
+ /**
2250
+ * Lookup225: argon_primitives::notebook::NotebookHeader
2251
+ **/
2252
+ ArgonPrimitivesNotebookNotebookHeader: {
2253
+ version: 'Compact<u16>',
2254
+ notebookNumber: 'Compact<u32>',
2255
+ tick: 'Compact<u64>',
2256
+ tax: 'Compact<u128>',
2257
+ notaryId: 'Compact<u32>',
2258
+ chainTransfers: 'Vec<ArgonPrimitivesNotebookChainTransfer>',
2259
+ changedAccountsRoot: 'H256',
2260
+ changedAccountOrigins: 'Vec<ArgonPrimitivesBalanceChangeAccountOrigin>',
2261
+ blockVotesRoot: 'H256',
2262
+ blockVotesCount: 'Compact<u32>',
2263
+ blocksWithVotes: 'Vec<H256>',
2264
+ blockVotingPower: 'Compact<u128>',
2265
+ secretHash: 'H256',
2266
+ parentSecret: 'Option<H256>',
2267
+ domains: 'Vec<(H256,AccountId32)>',
2268
+ },
2269
+ /**
2270
+ * Lookup228: argon_primitives::notebook::ChainTransfer
2271
+ **/
2272
+ ArgonPrimitivesNotebookChainTransfer: {
2273
+ _enum: {
2274
+ ToMainchain: {
2275
+ accountId: 'AccountId32',
2276
+ amount: 'Compact<u128>',
2277
+ },
2278
+ ToLocalchain: {
2279
+ transferId: 'Compact<u32>',
2280
+ },
2281
+ },
2282
+ },
2283
+ /**
2284
+ * Lookup231: argon_primitives::balance_change::AccountOrigin
2285
+ **/
2286
+ ArgonPrimitivesBalanceChangeAccountOrigin: {
2287
+ notebookNumber: 'Compact<u32>',
2288
+ accountUid: 'Compact<u32>',
2289
+ },
2290
+ /**
2291
+ * Lookup238: pallet_localchain_transfer::pallet::Call<T>
2292
+ **/
2293
+ PalletLocalchainTransferCall: {
2294
+ _enum: {
2295
+ send_to_localchain: {
2296
+ amount: 'Compact<u128>',
2297
+ notaryId: 'u32',
2298
+ },
2299
+ },
2300
+ },
2301
+ /**
2302
+ * Lookup239: pallet_block_seal_spec::pallet::Call<T>
2303
+ **/
2304
+ PalletBlockSealSpecCall: {
2305
+ _enum: {
2306
+ configure: {
2307
+ voteMinimum: 'Option<u128>',
2308
+ computeDifficulty: 'Option<u128>',
2309
+ },
2310
+ },
2311
+ },
2312
+ /**
2313
+ * Lookup240: pallet_domains::pallet::Call<T>
2314
+ **/
2315
+ PalletDomainsCall: {
2316
+ _enum: {
2317
+ set_zone_record: {
2318
+ domainHash: 'H256',
2319
+ zoneRecord: 'ArgonPrimitivesDomainZoneRecord',
2320
+ },
2321
+ },
2322
+ },
2323
+ /**
2324
+ * Lookup241: pallet_price_index::pallet::Call<T>
2325
+ **/
2326
+ PalletPriceIndexCall: {
2327
+ _enum: {
2328
+ submit: {
2329
+ index: 'PalletPriceIndexPriceIndex',
2330
+ },
2331
+ set_operator: {
2332
+ accountId: 'AccountId32',
2333
+ },
2334
+ },
2335
+ },
2336
+ /**
2337
+ * Lookup242: pallet_price_index::PriceIndex
2338
+ **/
2339
+ PalletPriceIndexPriceIndex: {
2340
+ btcUsdPrice: 'Compact<u128>',
2341
+ argonotUsdPrice: 'u128',
2342
+ argonUsdPrice: 'Compact<u128>',
2343
+ argonUsdTargetPrice: 'u128',
2344
+ argonTimeWeightedAverageLiquidity: 'u128',
2345
+ tick: 'Compact<u64>',
2346
+ },
2347
+ /**
2348
+ * Lookup243: pallet_grandpa::pallet::Call<T>
2349
+ **/
2350
+ PalletGrandpaCall: {
2351
+ _enum: {
2352
+ report_equivocation: {
2353
+ equivocationProof: 'SpConsensusGrandpaEquivocationProof',
2354
+ keyOwnerProof: 'SpCoreVoid',
2355
+ },
2356
+ report_equivocation_unsigned: {
2357
+ equivocationProof: 'SpConsensusGrandpaEquivocationProof',
2358
+ keyOwnerProof: 'SpCoreVoid',
2359
+ },
2360
+ note_stalled: {
2361
+ delay: 'u32',
2362
+ bestFinalizedBlockNumber: 'u32',
2363
+ },
2364
+ },
2365
+ },
2366
+ /**
2367
+ * Lookup244: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
2368
+ **/
2369
+ SpConsensusGrandpaEquivocationProof: {
2370
+ setId: 'u64',
2371
+ equivocation: 'SpConsensusGrandpaEquivocation',
2372
+ },
2373
+ /**
2374
+ * Lookup245: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
2375
+ **/
2376
+ SpConsensusGrandpaEquivocation: {
2377
+ _enum: {
2378
+ Prevote: 'FinalityGrandpaEquivocationPrevote',
2379
+ Precommit: 'FinalityGrandpaEquivocationPrecommit',
2380
+ },
2381
+ },
2382
+ /**
2383
+ * Lookup246: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2384
+ **/
2385
+ FinalityGrandpaEquivocationPrevote: {
2386
+ roundNumber: 'u64',
2387
+ identity: 'SpConsensusGrandpaAppPublic',
2388
+ first: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
2389
+ second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
2390
+ },
2391
+ /**
2392
+ * Lookup247: finality_grandpa::Prevote<primitive_types::H256, N>
2393
+ **/
2394
+ FinalityGrandpaPrevote: {
2395
+ targetHash: 'H256',
2396
+ targetNumber: 'u32',
2397
+ },
2398
+ /**
2399
+ * Lookup248: sp_consensus_grandpa::app::Signature
2400
+ **/
2401
+ SpConsensusGrandpaAppSignature: '[u8;64]',
2402
+ /**
2403
+ * Lookup250: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2404
+ **/
2405
+ FinalityGrandpaEquivocationPrecommit: {
2406
+ roundNumber: 'u64',
2407
+ identity: 'SpConsensusGrandpaAppPublic',
2408
+ first: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
2409
+ second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
2410
+ },
2411
+ /**
2412
+ * Lookup251: finality_grandpa::Precommit<primitive_types::H256, N>
2413
+ **/
2414
+ FinalityGrandpaPrecommit: {
2415
+ targetHash: 'H256',
2416
+ targetNumber: 'u32',
2417
+ },
2418
+ /**
2419
+ * Lookup253: sp_core::Void
2420
+ **/
2421
+ SpCoreVoid: 'Null',
2422
+ /**
2423
+ * Lookup254: pallet_block_seal::pallet::Call<T>
2424
+ **/
2425
+ PalletBlockSealCall: {
2426
+ _enum: {
2427
+ apply: {
2428
+ seal: 'ArgonPrimitivesInherentsBlockSealInherent',
2429
+ },
2430
+ },
2431
+ },
2432
+ /**
2433
+ * Lookup255: argon_primitives::inherents::BlockSealInherent
2434
+ **/
2435
+ ArgonPrimitivesInherentsBlockSealInherent: {
2436
+ _enum: {
2437
+ Vote: {
2438
+ sealStrength: 'U256',
2439
+ notaryId: 'Compact<u32>',
2440
+ sourceNotebookNumber: 'Compact<u32>',
2441
+ sourceNotebookProof: 'ArgonPrimitivesBalanceChangeMerkleProof',
2442
+ blockVote: 'ArgonPrimitivesBlockVoteBlockVoteT',
2443
+ minerNonceScore: 'Option<U256>',
2444
+ },
2445
+ Compute: 'Null',
2446
+ },
2447
+ },
2448
+ /**
2449
+ * Lookup256: argon_primitives::balance_change::MerkleProof
2450
+ **/
2451
+ ArgonPrimitivesBalanceChangeMerkleProof: {
2452
+ proof: 'Vec<H256>',
2453
+ numberOfLeaves: 'Compact<u32>',
2454
+ leafIndex: 'Compact<u32>',
2455
+ },
2456
+ /**
2457
+ * Lookup258: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
2458
+ **/
2459
+ ArgonPrimitivesBlockVoteBlockVoteT: {
2460
+ accountId: 'AccountId32',
2461
+ blockHash: 'H256',
2462
+ index: 'Compact<u32>',
2463
+ power: 'Compact<u128>',
2464
+ signature: 'SpRuntimeMultiSignature',
2465
+ blockRewardsAccountId: 'AccountId32',
2466
+ tick: 'Compact<u64>',
2467
+ },
2468
+ /**
2469
+ * Lookup259: sp_runtime::MultiSignature
2470
+ **/
2471
+ SpRuntimeMultiSignature: {
2472
+ _enum: {
2473
+ Ed25519: '[u8;64]',
2474
+ Sr25519: '[u8;64]',
2475
+ Ecdsa: '[u8;65]',
2476
+ Eth: '[u8;65]',
2477
+ },
2478
+ },
2479
+ /**
2480
+ * Lookup261: pallet_block_rewards::pallet::Call<T>
2481
+ **/
2482
+ PalletBlockRewardsCall: {
2483
+ _enum: {
2484
+ set_block_rewards_paused: {
2485
+ paused: 'bool',
2486
+ },
2487
+ },
2488
+ },
2489
+ /**
2490
+ * Lookup262: pallet_mint::pallet::Call<T>
2491
+ **/
2492
+ PalletMintCall: 'Null',
2493
+ /**
2494
+ * Lookup263: pallet_balances::pallet::Call<T, I>
2495
+ **/
2496
+ PalletBalancesCall: {
2497
+ _enum: {
2498
+ transfer_allow_death: {
2499
+ dest: 'MultiAddress',
2500
+ value: 'Compact<u128>',
2501
+ },
2502
+ __Unused1: 'Null',
2503
+ force_transfer: {
2504
+ source: 'MultiAddress',
2505
+ dest: 'MultiAddress',
2506
+ value: 'Compact<u128>',
2507
+ },
2508
+ transfer_keep_alive: {
2509
+ dest: 'MultiAddress',
2510
+ value: 'Compact<u128>',
2511
+ },
2512
+ transfer_all: {
2513
+ dest: 'MultiAddress',
2514
+ keepAlive: 'bool',
2515
+ },
2516
+ force_unreserve: {
2517
+ who: 'MultiAddress',
2518
+ amount: 'u128',
2519
+ },
2520
+ upgrade_accounts: {
2521
+ who: 'Vec<AccountId32>',
2522
+ },
2523
+ __Unused7: 'Null',
2524
+ force_set_balance: {
2525
+ who: 'MultiAddress',
2526
+ newFree: 'Compact<u128>',
2527
+ },
2528
+ force_adjust_total_issuance: {
2529
+ direction: 'PalletBalancesAdjustmentDirection',
2530
+ delta: 'Compact<u128>',
2531
+ },
2532
+ burn: {
2533
+ value: 'Compact<u128>',
2534
+ keepAlive: 'bool',
2535
+ },
2536
+ },
2537
+ },
2538
+ /**
2539
+ * Lookup264: pallet_balances::types::AdjustmentDirection
2540
+ **/
2541
+ PalletBalancesAdjustmentDirection: {
2542
+ _enum: ['Increase', 'Decrease'],
2543
+ },
2544
+ /**
2545
+ * Lookup266: pallet_tx_pause::pallet::Call<T>
2546
+ **/
2547
+ PalletTxPauseCall: {
2548
+ _enum: {
2549
+ pause: {
2550
+ fullName: '(Bytes,Bytes)',
2551
+ },
2552
+ unpause: {
2553
+ ident: '(Bytes,Bytes)',
2554
+ },
2555
+ },
2556
+ },
2557
+ /**
2558
+ * Lookup267: pallet_utility::pallet::Call<T>
2559
+ **/
2560
+ PalletUtilityCall: {
2561
+ _enum: {
2562
+ batch: {
2563
+ calls: 'Vec<Call>',
2564
+ },
2565
+ as_derivative: {
2566
+ index: 'u16',
2567
+ call: 'Call',
2568
+ },
2569
+ batch_all: {
2570
+ calls: 'Vec<Call>',
2571
+ },
2572
+ dispatch_as: {
2573
+ asOrigin: 'ArgonRuntimeOriginCaller',
2574
+ call: 'Call',
2575
+ },
2576
+ force_batch: {
2577
+ calls: 'Vec<Call>',
2578
+ },
2579
+ with_weight: {
2580
+ call: 'Call',
2581
+ weight: 'SpWeightsWeightV2Weight',
2582
+ },
2583
+ if_else: {
2584
+ main: 'Call',
2585
+ fallback: 'Call',
2586
+ },
2587
+ dispatch_as_fallible: {
2588
+ asOrigin: 'ArgonRuntimeOriginCaller',
2589
+ call: 'Call',
2590
+ },
2591
+ },
2592
+ },
2593
+ /**
2594
+ * Lookup269: pallet_sudo::pallet::Call<T>
2595
+ **/
2596
+ PalletSudoCall: {
2597
+ _enum: {
2598
+ sudo: {
2599
+ call: 'Call',
2600
+ },
2601
+ sudo_unchecked_weight: {
2602
+ call: 'Call',
2603
+ weight: 'SpWeightsWeightV2Weight',
2604
+ },
2605
+ set_key: {
2606
+ _alias: {
2607
+ new_: 'new',
2608
+ },
2609
+ new_: 'MultiAddress',
2610
+ },
2611
+ sudo_as: {
2612
+ who: 'MultiAddress',
2613
+ call: 'Call',
2614
+ },
2615
+ remove_key: 'Null',
2616
+ },
2617
+ },
2618
+ /**
2619
+ * Lookup270: pallet_treasury::pallet::Call<T>
2620
+ **/
2621
+ PalletTreasuryCall: {
2622
+ _enum: {
2623
+ __Unused0: 'Null',
2624
+ __Unused1: 'Null',
2625
+ __Unused2: 'Null',
2626
+ __Unused3: 'Null',
2627
+ buy_bonds: {
2628
+ vaultId: 'u32',
2629
+ bonds: 'u32',
2630
+ },
2631
+ liquidate_bond_lot: {
2632
+ bondLotId: 'u64',
2633
+ },
2634
+ },
2635
+ },
2636
+ /**
2637
+ * Lookup271: pallet_operational_accounts::pallet::Call<T>
2638
+ **/
2639
+ PalletOperationalAccountsCall: {
2640
+ _enum: {
2641
+ register: {
2642
+ registration: 'PalletOperationalAccountsRegistration',
2643
+ },
2644
+ __Unused1: 'Null',
2645
+ set_reward_config: {
2646
+ operationalReferralReward: 'u128',
2647
+ referralBonusReward: 'u128',
2648
+ },
2649
+ force_set_progress: {
2650
+ owner: 'AccountId32',
2651
+ patch: 'PalletOperationalAccountsOperationalProgressPatch',
2652
+ updateOperationalProgress: 'bool',
2653
+ },
2654
+ set_encrypted_server_for_sponsee: {
2655
+ sponsee: 'AccountId32',
2656
+ encryptedServer: 'Bytes',
2657
+ },
2658
+ activate: 'Null',
2659
+ claim_rewards: {
2660
+ amount: 'u128',
2661
+ },
2662
+ },
2663
+ },
2664
+ /**
2665
+ * Lookup272: pallet_operational_accounts::pallet::Registration<T>
2666
+ **/
2667
+ PalletOperationalAccountsRegistration: {
2668
+ _enum: {
2669
+ V1: 'PalletOperationalAccountsRegistrationV1',
2670
+ },
2671
+ },
2672
+ /**
2673
+ * Lookup273: pallet_operational_accounts::pallet::RegistrationV1<T>
2674
+ **/
2675
+ PalletOperationalAccountsRegistrationV1: {
2676
+ operationalAccount: 'AccountId32',
2677
+ encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
2678
+ operationalAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
2679
+ vaultAccount: 'AccountId32',
2680
+ miningFundingAccount: 'AccountId32',
2681
+ miningBotAccount: 'AccountId32',
2682
+ vaultAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
2683
+ miningFundingAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
2684
+ miningBotAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
2685
+ referralProof: 'Option<PalletOperationalAccountsReferralProof>',
2686
+ },
2687
+ /**
2688
+ * Lookup274: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
2689
+ **/
2690
+ PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
2691
+ /**
2692
+ * Lookup275: pallet_operational_accounts::pallet::AccountOwnershipProof
2693
+ **/
2694
+ PalletOperationalAccountsAccountOwnershipProof: {
2695
+ signature: 'SpRuntimeMultiSignature',
2696
+ },
2697
+ /**
2698
+ * Lookup277: pallet_operational_accounts::pallet::ReferralProof<sp_core::crypto::AccountId32>
2699
+ **/
2700
+ PalletOperationalAccountsReferralProof: {
2701
+ referralCode: '[u8;32]',
2702
+ referralSignature: '[u8;64]',
2703
+ sponsor: 'AccountId32',
2704
+ expiresAtFrame: 'Compact<u64>',
2705
+ sponsorSignature: 'SpRuntimeMultiSignature',
2706
+ },
2707
+ /**
2708
+ * Lookup278: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
2709
+ **/
2710
+ PalletOperationalAccountsOperationalProgressPatch: {
2711
+ hasUniswapTransfer: 'Option<bool>',
2712
+ vaultCreated: 'Option<bool>',
2713
+ hasTreasuryPoolParticipation: 'Option<bool>',
2714
+ observedBitcoinTotal: 'Option<u128>',
2715
+ observedMiningSeatTotal: 'Option<u32>',
2716
+ },
2717
+ /**
2718
+ * Lookup280: pallet_ethereum_verifier::pallet::Call<T>
2719
+ **/
2720
+ PalletEthereumVerifierCall: {
2721
+ _enum: {
2722
+ force_checkpoint: {
2723
+ update: 'PalletEthereumVerifierCheckpointUpdate',
2724
+ forkVersions: 'PalletEthereumVerifierForkVersions',
2725
+ },
2726
+ submit: {
2727
+ update: 'PalletEthereumVerifierUpdate',
2728
+ },
2729
+ __Unused2: 'Null',
2730
+ set_operating_mode: {
2731
+ mode: 'PalletEthereumVerifierBasicOperatingMode',
2732
+ },
2733
+ },
2734
+ },
2735
+ /**
2736
+ * Lookup281: pallet_ethereum_verifier::types::CheckpointUpdate
2737
+ **/
2738
+ PalletEthereumVerifierCheckpointUpdate: {
2739
+ header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
2740
+ currentSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
2741
+ currentSyncCommitteeBranch: 'Vec<H256>',
2742
+ validatorsRoot: 'H256',
2743
+ executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
2744
+ },
2745
+ /**
2746
+ * Lookup282: snowbridge_beacon_primitives::types::BeaconHeader
2747
+ **/
2748
+ SnowbridgeBeaconPrimitivesBeaconHeader: {
2749
+ slot: 'u64',
2750
+ proposerIndex: 'u64',
2751
+ parentRoot: 'H256',
2752
+ stateRoot: 'H256',
2753
+ bodyRoot: 'H256',
2754
+ },
2755
+ /**
2756
+ * Lookup283: pallet_ethereum_verifier::types::SyncCommittee
2757
+ **/
2758
+ PalletEthereumVerifierSyncCommittee: {
2759
+ pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
2760
+ aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
2761
+ },
2762
+ /**
2763
+ * Lookup285: snowbridge_beacon_primitives::types::PublicKey
2764
+ **/
2765
+ SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
2766
+ /**
2767
+ * Lookup289: pallet_ethereum_verifier::types::ExecutionHeaderProof
2768
+ **/
2769
+ PalletEthereumVerifierExecutionHeaderProof: {
2770
+ executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
2771
+ executionBranch: 'Vec<H256>',
2772
+ },
2773
+ /**
2774
+ * Lookup290: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
2775
+ **/
2776
+ SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
2777
+ _enum: {
2778
+ Capella: 'SnowbridgeBeaconPrimitivesExecutionPayloadHeader',
2779
+ Deneb: 'SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader',
2780
+ },
2781
+ },
2782
+ /**
2783
+ * Lookup291: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
2784
+ **/
2785
+ SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
2786
+ parentHash: 'H256',
2787
+ feeRecipient: 'H160',
2788
+ stateRoot: 'H256',
2789
+ receiptsRoot: 'H256',
2790
+ logsBloom: 'Bytes',
2791
+ prevRandao: 'H256',
2792
+ blockNumber: 'u64',
2793
+ gasLimit: 'u64',
2794
+ gasUsed: 'u64',
2795
+ timestamp: 'u64',
2796
+ extraData: 'Bytes',
2797
+ baseFeePerGas: 'U256',
2798
+ blockHash: 'H256',
2799
+ transactionsRoot: 'H256',
2800
+ withdrawalsRoot: 'H256',
2801
+ },
2802
+ /**
2803
+ * Lookup292: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
2804
+ **/
2805
+ SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
2806
+ parentHash: 'H256',
2807
+ feeRecipient: 'H160',
2808
+ stateRoot: 'H256',
2809
+ receiptsRoot: 'H256',
2810
+ logsBloom: 'Bytes',
2811
+ prevRandao: 'H256',
2812
+ blockNumber: 'u64',
2813
+ gasLimit: 'u64',
2814
+ gasUsed: 'u64',
2815
+ timestamp: 'u64',
2816
+ extraData: 'Bytes',
2817
+ baseFeePerGas: 'U256',
2818
+ blockHash: 'H256',
2819
+ transactionsRoot: 'H256',
2820
+ withdrawalsRoot: 'H256',
2821
+ blobGasUsed: 'u64',
2822
+ excessBlobGas: 'u64',
2823
+ },
2824
+ /**
2825
+ * Lookup293: pallet_ethereum_verifier::types::ForkVersions
2826
+ **/
2827
+ PalletEthereumVerifierForkVersions: {
2828
+ genesis: 'PalletEthereumVerifierFork',
2829
+ altair: 'PalletEthereumVerifierFork',
2830
+ bellatrix: 'PalletEthereumVerifierFork',
2831
+ capella: 'PalletEthereumVerifierFork',
2832
+ deneb: 'PalletEthereumVerifierFork',
2833
+ electra: 'PalletEthereumVerifierFork',
2834
+ fulu: 'PalletEthereumVerifierFork',
2835
+ },
2836
+ /**
2837
+ * Lookup294: pallet_ethereum_verifier::types::Fork
2838
+ **/
2839
+ PalletEthereumVerifierFork: {
2840
+ version: '[u8;4]',
2841
+ epoch: 'Compact<u64>',
2842
+ },
2843
+ /**
2844
+ * Lookup295: pallet_ethereum_verifier::types::Update
2845
+ **/
2846
+ PalletEthereumVerifierUpdate: {
2847
+ attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
2848
+ syncAggregate: 'PalletEthereumVerifierSyncAggregate',
2849
+ signatureSlot: 'Compact<u64>',
2850
+ nextSyncCommitteeUpdate: 'Option<PalletEthereumVerifierNextSyncCommitteeUpdate>',
2851
+ finalizedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
2852
+ finalityBranch: 'Vec<H256>',
2853
+ executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
2854
+ },
2855
+ /**
2856
+ * Lookup296: pallet_ethereum_verifier::types::SyncAggregate
2857
+ **/
2858
+ PalletEthereumVerifierSyncAggregate: {
2859
+ syncCommitteeBits: 'Bytes',
2860
+ syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
2861
+ },
2862
+ /**
2863
+ * Lookup298: snowbridge_beacon_primitives::types::Signature
2864
+ **/
2865
+ SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
2866
+ /**
2867
+ * Lookup301: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
2868
+ **/
2869
+ PalletEthereumVerifierNextSyncCommitteeUpdate: {
2870
+ nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
2871
+ nextSyncCommitteeBranch: 'Vec<H256>',
2872
+ },
2873
+ /**
2874
+ * Lookup302: pallet_crosschain_transfer::pallet::Call<T>
2875
+ **/
2876
+ PalletCrosschainTransferCall: {
2877
+ _enum: {
2878
+ set_chain_config: {
2879
+ sourceChain: 'PalletCrosschainTransferSourceChain',
2880
+ config: 'PalletCrosschainTransferChainConfig',
2881
+ },
2882
+ force_set_global_issuance_council: {
2883
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2884
+ afterNonce: 'Compact<u64>',
2885
+ memberAccountIds: 'Vec<AccountId32>',
2886
+ },
2887
+ pause_gateway: {
2888
+ sourceChain: 'PalletCrosschainTransferSourceChain',
2889
+ },
2890
+ unpause_gateway: {
2891
+ sourceChain: 'PalletCrosschainTransferSourceChain',
2892
+ },
2893
+ set_minimum_minting_authority_value: {
2894
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2895
+ minimumValue: 'Compact<u128>',
2896
+ },
2897
+ set_minting_authority_activation_repayment_pricing: {
2898
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2899
+ pricing: 'PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing',
2900
+ },
2901
+ register_council_signer: {
2902
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2903
+ signingKey: 'H160',
2904
+ signature: '[u8;65]',
2905
+ },
2906
+ approve_queue_entries: {
2907
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2908
+ signatures: 'Vec<[u8;65]>',
2909
+ },
2910
+ prove_gateway_activity: {
2911
+ sourceChain: 'PalletCrosschainTransferSourceChain',
2912
+ previousGatewayActivityNonce: 'Compact<u64>',
2913
+ proofBatch: 'ArgonPrimitivesEthereumEthereumReceiptLogProofBatch',
2914
+ },
2915
+ register_minting_authority: {
2916
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2917
+ destinationSigningKey: 'H160',
2918
+ signature: '[u8;65]',
2919
+ microgonCollateral: 'Compact<u128>',
2920
+ micronotCollateral: 'Compact<u128>',
2921
+ },
2922
+ deactivate_minting_authority: {
2923
+ destinationSigningKey: 'H160',
2924
+ signature: '[u8;65]',
2925
+ },
2926
+ transfer_out: {
2927
+ destinationChain: 'PalletCrosschainTransferSourceChain',
2928
+ asset: 'PalletCrosschainTransferAssetKind',
2929
+ destinationAccount: 'H160',
2930
+ amount: 'Compact<u128>',
2931
+ },
2932
+ collateralize_transfer: {
2933
+ transferId: 'H256',
2934
+ signature: '[u8;65]',
2935
+ microgonCollateral: 'Compact<u128>',
2936
+ micronotCollateral: 'Compact<u128>',
2937
+ },
2938
+ },
2939
+ },
2940
+ /**
2941
+ * Lookup303: pallet_crosschain_transfer::pallet::ChainConfig
2942
+ **/
2943
+ PalletCrosschainTransferChainConfig: {
2944
+ _enum: {
2945
+ Evm: {
2946
+ chainId: 'Compact<u64>',
2947
+ gateway: 'H160',
2948
+ argonToken: 'H160',
2949
+ argonotToken: 'H160',
2950
+ },
2951
+ },
2952
+ },
2953
+ /**
2954
+ * Lookup305: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
2955
+ **/
2956
+ PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
2957
+ activationGasCost: 'Compact<u128>',
2958
+ signatureGasCost: 'Compact<u128>',
2959
+ estimatedWeiPerGas: 'Compact<u128>',
2960
+ estimatedMicrogonsPerEth: 'u128',
2961
+ },
2962
+ /**
2963
+ * Lookup308: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
2964
+ **/
2965
+ ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
2966
+ executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
2967
+ blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
2968
+ },
2969
+ /**
2970
+ * Lookup309: argon_primitives::ethereum::EthereumExecutionBlockProof
2971
+ **/
2972
+ ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
2973
+ anchorBlockHash: 'H256',
2974
+ targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
2975
+ },
2976
+ /**
2977
+ * Lookup311: argon_primitives::ethereum::EthereumExecutionHeader
2978
+ **/
2979
+ ArgonPrimitivesEthereumEthereumExecutionHeader: {
2980
+ rlp: 'Bytes',
2981
+ },
2982
+ /**
2983
+ * Lookup315: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
2984
+ **/
2985
+ ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
2986
+ targetBlockNumber: 'Compact<u64>',
2987
+ receiptProof: 'ArgonPrimitivesEthereumEthereumCombinedReceiptProof',
2988
+ receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
2989
+ },
2990
+ /**
2991
+ * Lookup316: argon_primitives::ethereum::EthereumCombinedReceiptProof
2992
+ **/
2993
+ ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
2994
+ nodes: 'Vec<Bytes>',
2995
+ receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
2996
+ },
2997
+ /**
2998
+ * Lookup320: argon_primitives::ethereum::EthereumReceiptProofReceipt
2999
+ **/
3000
+ ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
3001
+ transactionIndex: 'Compact<u64>',
3002
+ nodeIndexes: 'Vec<u16>',
3003
+ },
3004
+ /**
3005
+ * Lookup325: argon_primitives::ethereum::EthereumReceiptLog
3006
+ **/
3007
+ ArgonPrimitivesEthereumEthereumReceiptLog: {
3008
+ transactionIndex: 'Compact<u64>',
3009
+ eventLog: 'ArgonPrimitivesEthereumEthereumLog',
3010
+ },
3011
+ /**
3012
+ * Lookup326: argon_primitives::ethereum::EthereumLog
3013
+ **/
3014
+ ArgonPrimitivesEthereumEthereumLog: {
3015
+ address: 'H160',
3016
+ topics: 'Vec<H256>',
3017
+ data: 'Bytes',
3018
+ },
3019
+ /**
3020
+ * Lookup332: pallet_multisig::pallet::Error<T>
3021
+ **/
3022
+ PalletMultisigError: {
3023
+ _enum: [
3024
+ 'MinimumThreshold',
3025
+ 'AlreadyApproved',
3026
+ 'NoApprovalsNeeded',
3027
+ 'TooFewSignatories',
3028
+ 'TooManySignatories',
3029
+ 'SignatoriesOutOfOrder',
3030
+ 'SenderInSignatories',
3031
+ 'NotFound',
3032
+ 'NotOwner',
3033
+ 'NoTimepoint',
3034
+ 'WrongTimepoint',
3035
+ 'UnexpectedTimepoint',
3036
+ 'MaxWeightTooLow',
3037
+ 'AlreadyStored',
3038
+ ],
3039
+ },
3040
+ /**
3041
+ * Lookup335: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
3042
+ **/
3043
+ PalletProxyProxyDefinition: {
3044
+ delegate: 'AccountId32',
3045
+ proxyType: 'ArgonRuntimeProxyType',
3046
+ delay: 'u32',
3047
+ },
3048
+ /**
3049
+ * Lookup339: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
3050
+ **/
3051
+ PalletProxyAnnouncement: {
3052
+ real: 'AccountId32',
3053
+ callHash: 'H256',
3054
+ height: 'u32',
3055
+ },
3056
+ /**
3057
+ * Lookup341: pallet_proxy::pallet::Error<T>
3058
+ **/
3059
+ PalletProxyError: {
3060
+ _enum: [
3061
+ 'TooMany',
3062
+ 'NotFound',
3063
+ 'NotProxy',
3064
+ 'Unproxyable',
3065
+ 'Duplicate',
3066
+ 'NoPermission',
3067
+ 'Unannounced',
3068
+ 'NoSelfProxy',
3069
+ ],
3070
+ },
3071
+ /**
3072
+ * Lookup342: argon_primitives::tick::Ticker
3073
+ **/
3074
+ ArgonPrimitivesTickTicker: {
3075
+ tickDurationMillis: 'Compact<u64>',
3076
+ channelHoldExpirationTicks: 'Compact<u64>',
3077
+ },
3078
+ /**
3079
+ * Lookup344: pallet_ticks::pallet::Error<T>
3080
+ **/
3081
+ PalletTicksError: 'Null',
3082
+ /**
3083
+ * Lookup347: pallet_mining_slot::MinerNonceScoring<T>
3084
+ **/
3085
+ PalletMiningSlotMinerNonceScoring: {
3086
+ nonce: 'U256',
3087
+ lastWinBlock: 'Option<u32>',
3088
+ blocksWonInFrame: 'u16',
3089
+ frameStartBlocksWonSurplus: 'i16',
3090
+ },
3091
+ /**
3092
+ * Lookup359: argon_primitives::block_seal::MiningBidStats
3093
+ **/
3094
+ ArgonPrimitivesBlockSealMiningBidStats: {
3095
+ bidsCount: 'u32',
3096
+ bidAmountMin: 'u128',
3097
+ bidAmountMax: 'u128',
3098
+ bidAmountSum: 'u128',
3099
+ },
3100
+ /**
3101
+ * Lookup363: argon_primitives::block_seal::MiningSlotConfig
3102
+ **/
3103
+ ArgonPrimitivesBlockSealMiningSlotConfig: {
3104
+ ticksBeforeBidEndForVrfClose: 'Compact<u64>',
3105
+ ticksBetweenSlots: 'Compact<u64>',
3106
+ slotBiddingStartAfterTicks: 'Compact<u64>',
3107
+ },
3108
+ /**
3109
+ * Lookup374: pallet_mining_slot::pallet::Error<T>
3110
+ **/
3111
+ PalletMiningSlotError: {
3112
+ _enum: [
3113
+ 'SlotNotTakingBids',
3114
+ 'TooManyBlockRegistrants',
3115
+ 'InsufficientOwnershipTokens',
3116
+ 'BidTooLow',
3117
+ 'CannotRegisterOverlappingSessions',
3118
+ 'CannotChangeFundingAccount',
3119
+ 'InsufficientFunds',
3120
+ 'BidCannotBeReduced',
3121
+ 'InvalidBidAmount',
3122
+ 'UnrecoverableHold',
3123
+ ],
3124
+ },
3125
+ /**
3126
+ * Lookup375: argon_primitives::bitcoin::UtxoValue
3127
+ **/
3128
+ ArgonPrimitivesBitcoinUtxoValue: {
3129
+ utxoId: 'u64',
3130
+ scriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
3131
+ satoshis: 'Compact<u64>',
3132
+ submittedAtHeight: 'Compact<u64>',
3133
+ watchForSpentUntilHeight: 'Compact<u64>',
3134
+ },
3135
+ /**
3136
+ * Lookup376: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
3137
+ **/
3138
+ ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
3139
+ _enum: {
3140
+ P2WSH: {
3141
+ wscriptHash: 'H256',
3142
+ },
3143
+ },
3144
+ },
3145
+ /**
3146
+ * Lookup385: argon_primitives::bitcoin::BitcoinNetwork
3147
+ **/
3148
+ ArgonPrimitivesBitcoinBitcoinNetwork: {
3149
+ _enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
3150
+ },
3151
+ /**
3152
+ * Lookup386: pallet_bitcoin_utxos::pallet::Error<T>
3153
+ **/
3154
+ PalletBitcoinUtxosError: {
3155
+ _enum: [
3156
+ 'NoPermissions',
3157
+ 'NoBitcoinConfirmedBlock',
3158
+ 'InsufficientBitcoinAmount',
3159
+ 'NoBitcoinPricesAvailable',
3160
+ 'ScriptPubkeyConflict',
3161
+ 'UtxoNotLocked',
3162
+ 'RedemptionsUnavailable',
3163
+ 'InvalidBitcoinSyncHeight',
3164
+ 'BitcoinHeightNotConfirmed',
3165
+ 'MaxUtxosExceeded',
3166
+ 'InvalidBitcoinScript',
3167
+ 'DuplicateUtxoId',
3168
+ 'MaxCandidateUtxosExceeded',
3169
+ 'UtxoNotCandidate',
3170
+ 'LockAlreadyFunded',
3171
+ ],
3172
+ },
3173
+ /**
3174
+ * Lookup387: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
3175
+ **/
3176
+ ArgonPrimitivesVault: {
3177
+ operatorAccountId: 'AccountId32',
3178
+ bitcoinLockDelegateAccount: 'Option<AccountId32>',
3179
+ name: 'Option<Bytes>',
3180
+ lastNameChangeTick: 'Option<u64>',
3181
+ securitization: 'Compact<u128>',
3182
+ securitizationTarget: 'Compact<u128>',
3183
+ securitizationLocked: 'Compact<u128>',
3184
+ securitizationPendingActivation: 'Compact<u128>',
3185
+ lockedSatoshis: 'Compact<u64>',
3186
+ securitizedSatoshis: 'Compact<u64>',
3187
+ securitizationReleaseSchedule: 'BTreeMap<u64, u128>',
3188
+ securitizationRatio: 'Compact<u128>',
3189
+ isClosed: 'bool',
3190
+ terms: 'ArgonPrimitivesVaultVaultTerms',
3191
+ pendingTerms: 'Option<(u64,ArgonPrimitivesVaultVaultTerms)>',
3192
+ openedTick: 'Compact<u64>',
3193
+ operationalMinimumReleaseTick: 'Option<u64>',
3194
+ },
3195
+ /**
3196
+ * Lookup394: argon_primitives::vault::VaultArgonotCommitment<Balance>
3197
+ **/
3198
+ ArgonPrimitivesVaultVaultArgonotCommitment: {
3199
+ committedMicronots: 'Compact<u128>',
3200
+ encumberedMicronots: 'Compact<u128>',
3201
+ },
3202
+ /**
3203
+ * Lookup396: argon_primitives::bitcoin::BitcoinXPub
3204
+ **/
3205
+ ArgonPrimitivesBitcoinBitcoinXPub: {
3206
+ publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
3207
+ depth: 'Compact<u8>',
3208
+ parentFingerprint: '[u8;4]',
3209
+ childNumber: 'Compact<u32>',
3210
+ chainCode: '[u8;32]',
3211
+ network: 'ArgonPrimitivesBitcoinNetworkKind',
3212
+ },
3213
+ /**
3214
+ * Lookup398: argon_primitives::bitcoin::NetworkKind
3215
+ **/
3216
+ ArgonPrimitivesBitcoinNetworkKind: {
3217
+ _enum: ['Main', 'Test'],
3218
+ },
3219
+ /**
3220
+ * Lookup407: pallet_vaults::pallet::VaultFrameRevenue<T>
3221
+ **/
3222
+ PalletVaultsVaultFrameRevenue: {
3223
+ frameId: 'Compact<u64>',
3224
+ bitcoinLockFeeRevenue: 'Compact<u128>',
3225
+ bitcoinLockFeeCouponValueUsed: 'Compact<u128>',
3226
+ bitcoinLocksCreated: 'Compact<u32>',
3227
+ bitcoinLocksNewLiquidityPromised: 'Compact<u128>',
3228
+ bitcoinLocksReleasedLiquidity: 'Compact<u128>',
3229
+ bitcoinLocksAddedSatoshis: 'Compact<u64>',
3230
+ bitcoinLocksReleasedSatoshis: 'Compact<u64>',
3231
+ securitizationActivated: 'Compact<u128>',
3232
+ securitizationRelockable: 'Compact<u128>',
3233
+ securitization: 'Compact<u128>',
3234
+ treasuryVaultEarnings: 'Compact<u128>',
3235
+ treasuryTotalEarnings: 'Compact<u128>',
3236
+ treasuryVaultCapital: 'Compact<u128>',
3237
+ treasuryExternalCapital: 'Compact<u128>',
3238
+ uncollectedRevenue: 'Compact<u128>',
3239
+ },
3240
+ /**
3241
+ * Lookup410: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
3242
+ **/
3243
+ PalletVaultsRecentCapacityDrop: {
3244
+ blockNumber: 'Compact<u32>',
3245
+ availableBeforeDrop: 'Compact<u128>',
3246
+ availableAfterDrop: 'Compact<u128>',
3247
+ noFeeFailuresUsed: 'Compact<u32>',
3248
+ },
3249
+ /**
3250
+ * Lookup412: pallet_vaults::pallet::Error<T>
3251
+ **/
3252
+ PalletVaultsError: {
3253
+ _enum: [
3254
+ 'NoMoreVaultIds',
3255
+ 'InsufficientFunds',
3256
+ 'InsufficientVaultFunds',
3257
+ 'AccountBelowMinimumBalance',
3258
+ 'VaultClosed',
3259
+ 'InvalidVaultAmount',
3260
+ 'VaultReductionBelowSecuritization',
3261
+ 'InvalidSecuritization',
3262
+ 'ReusedVaultBitcoinXpub',
3263
+ 'InvalidBitcoinScript',
3264
+ 'InvalidXpubkey',
3265
+ 'WrongXpubNetwork',
3266
+ 'UnsafeXpubkey',
3267
+ 'UnableToDeriveVaultXpubChild',
3268
+ 'BitcoinConversionFailed',
3269
+ 'NoPermissions',
3270
+ 'HoldUnexpectedlyModified',
3271
+ 'UnrecoverableHold',
3272
+ 'VaultNotFound',
3273
+ 'VaultNotYetActive',
3274
+ 'NoVaultBitcoinPubkeysAvailable',
3275
+ 'TermsModificationOverflow',
3276
+ 'TermsChangeAlreadyScheduled',
3277
+ 'InternalError',
3278
+ 'UnableToGenerateVaultBitcoinPubkey',
3279
+ 'FundingChangeAlreadyScheduled',
3280
+ 'InvalidVaultName',
3281
+ 'PendingCosignsBeforeCollect',
3282
+ 'PendingOrphanedUtxoCosignsBeforeCollect',
3283
+ 'OverdueCollectBlockersBeforeCollect',
3284
+ 'AccountAlreadyHasVault',
3285
+ 'CommittedArgonotsBelowEncumberedBacking',
3286
+ ],
3287
+ },
3288
+ /**
3289
+ * Lookup413: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
3290
+ **/
3291
+ PalletBitcoinLocksLockedBitcoin: {
3292
+ vaultId: 'Compact<u32>',
3293
+ liquidityPromised: 'Compact<u128>',
3294
+ lockedTargetPrice: 'Compact<u128>',
3295
+ ownerAccount: 'AccountId32',
3296
+ securitizationRatio: 'u128',
3297
+ securityFees: 'Compact<u128>',
3298
+ couponPaidFees: 'Compact<u128>',
3299
+ satoshis: 'Compact<u64>',
3300
+ utxoSatoshis: 'Option<u64>',
3301
+ vaultPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
3302
+ vaultClaimPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
3303
+ vaultXpubSources: '([u8;4],u32,u32)',
3304
+ ownerPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
3305
+ vaultClaimHeight: 'Compact<u64>',
3306
+ openClaimHeight: 'Compact<u64>',
3307
+ createdAtHeight: 'Compact<u64>',
3308
+ utxoScriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
3309
+ isFunded: 'bool',
3310
+ fundHoldExtensions: 'BTreeMap<u64, u128>',
3311
+ createdAtArgonBlock: 'Compact<u32>',
3312
+ },
3313
+ /**
3314
+ * Lookup416: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
3315
+ **/
3316
+ PalletBitcoinLocksLockReleaseRequest: {
3317
+ utxoId: 'Compact<u64>',
3318
+ vaultId: 'Compact<u32>',
3319
+ bitcoinNetworkFee: 'Compact<u64>',
3320
+ cosignDueFrame: 'Compact<u64>',
3321
+ toScriptPubkey: 'Bytes',
3322
+ redemptionAmount: 'Compact<u128>',
3323
+ },
3324
+ /**
3325
+ * Lookup418: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
3326
+ **/
3327
+ PalletBitcoinLocksOrphanedUtxo: {
3328
+ utxoId: 'Compact<u64>',
3329
+ vaultId: 'Compact<u32>',
3330
+ satoshis: 'Compact<u64>',
3331
+ recordedArgonBlockNumber: 'Compact<u32>',
3332
+ cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
3333
+ },
3334
+ /**
3335
+ * Lookup420: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
3336
+ **/
3337
+ PalletBitcoinLocksOrphanedUtxoCosignRequest: {
3338
+ bitcoinNetworkFee: 'u64',
3339
+ toScriptPubkey: 'Bytes',
3340
+ createdAtArgonBlockNumber: 'u32',
3341
+ },
3342
+ /**
3343
+ * Lookup427: pallet_bitcoin_locks::pallet::Error<T>
3344
+ **/
3345
+ PalletBitcoinLocksError: {
3346
+ _enum: {
3347
+ InsufficientFunds: 'Null',
3348
+ InsufficientVaultFunds: 'Null',
3349
+ AccountWouldGoBelowMinimumBalance: 'Null',
3350
+ VaultClosed: 'Null',
3351
+ InvalidVaultAmount: 'Null',
3352
+ RedemptionNotLocked: 'Null',
3353
+ BitcoinReleaseInitiationDeadlinePassed: 'Null',
3354
+ BitcoinFeeTooHigh: 'Null',
3355
+ BitcoinUtxoNotFound: 'Null',
3356
+ BitcoinUnableToBeDecodedForRelease: 'Null',
3357
+ BitcoinSignatureUnableToBeDecoded: 'Null',
3358
+ BitcoinPubkeyUnableToBeDecoded: 'Null',
3359
+ BitcoinInvalidCosignature: 'Null',
3360
+ InsufficientSatoshisLocked: 'Null',
3361
+ NoBitcoinPricesAvailable: 'Null',
3362
+ InvalidBitcoinScript: 'Null',
3363
+ NoPermissions: 'Null',
3364
+ HoldUnexpectedlyModified: 'Null',
3365
+ UnrecoverableHold: 'Null',
3366
+ VaultNotFound: 'Null',
3367
+ GenericVaultError: 'ArgonPrimitivesVaultVaultError',
3368
+ LockNotFound: 'Null',
3369
+ NoVaultBitcoinPubkeysAvailable: 'Null',
3370
+ UnableToGenerateVaultBitcoinPubkey: 'Null',
3371
+ VaultNotYetActive: 'Null',
3372
+ ExpirationAtBlockOverflow: 'Null',
3373
+ NoRatchetingAvailable: 'Null',
3374
+ LockInProcessOfRelease: 'Null',
3375
+ LockPendingFunding: 'Null',
3376
+ OverflowError: 'Null',
3377
+ IneligibleMicrogonRateRequested: 'Null',
3378
+ OrphanedUtxoFundingConflict: 'Null',
3379
+ OrphanedUtxoReleaseRequested: 'Null',
3380
+ FundingUtxoCannotBeReleased: 'Null',
3381
+ MaxOrphanedUtxoReleaseRequestsExceeded: 'Null',
3382
+ },
3383
+ },
3384
+ /**
3385
+ * Lookup428: argon_primitives::vault::VaultError
3386
+ **/
3387
+ ArgonPrimitivesVaultVaultError: {
3388
+ _enum: [
3389
+ 'VaultClosed',
3390
+ 'AccountWouldBeBelowMinimum',
3391
+ 'InsufficientFunds',
3392
+ 'InsufficientVaultFunds',
3393
+ 'HoldUnexpectedlyModified',
3394
+ 'UnrecoverableHold',
3395
+ 'VaultNotFound',
3396
+ 'NoVaultBitcoinPubkeysAvailable',
3397
+ 'UnableToGenerateVaultBitcoinPubkey',
3398
+ 'InvalidBitcoinScript',
3399
+ 'InternalError',
3400
+ 'VaultNotYetActive',
3401
+ 'CommittedArgonotsBelowEncumberedBacking',
3402
+ ],
3403
+ },
3404
+ /**
3405
+ * Lookup440: pallet_notaries::pallet::Error<T>
3406
+ **/
3407
+ PalletNotariesError: {
3408
+ _enum: [
3409
+ 'ProposalNotFound',
3410
+ 'MaxNotariesExceeded',
3411
+ 'MaxProposalsPerBlockExceeded',
3412
+ 'NotAnActiveNotary',
3413
+ 'InvalidNotaryOperator',
3414
+ 'NoMoreNotaryIds',
3415
+ 'EffectiveTickTooSoon',
3416
+ 'TooManyKeys',
3417
+ 'InvalidNotary',
3418
+ ],
3419
+ },
3420
+ /**
3421
+ * Lookup444: argon_primitives::notary::NotaryNotebookKeyDetails
3422
+ **/
3423
+ ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
3424
+ notebookNumber: 'Compact<u32>',
3425
+ tick: 'Compact<u64>',
3426
+ blockVotesRoot: 'H256',
3427
+ secretHash: 'H256',
3428
+ parentSecret: 'Option<H256>',
3429
+ },
3430
+ /**
3431
+ * Lookup447: pallet_notebook::pallet::Error<T>
3432
+ **/
3433
+ PalletNotebookError: {
3434
+ _enum: [
3435
+ 'DuplicateNotebookNumber',
3436
+ 'MissingNotebookNumber',
3437
+ 'NotebookTickAlreadyUsed',
3438
+ 'InvalidNotebookSignature',
3439
+ 'InvalidSecretProvided',
3440
+ 'CouldNotDecodeNotebook',
3441
+ 'DuplicateNotebookDigest',
3442
+ 'MissingNotebookDigest',
3443
+ 'InvalidNotebookDigest',
3444
+ 'MultipleNotebookInherentsProvided',
3445
+ 'InternalError',
3446
+ 'NotebookSubmittedForLockedNotary',
3447
+ 'InvalidReprocessNotebook',
3448
+ 'InvalidNotaryOperator',
3449
+ 'InvalidNotebookSubmissionTick',
3450
+ ],
3451
+ },
3452
+ /**
3453
+ * Lookup448: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
3454
+ **/
3455
+ PalletLocalchainTransferQueuedTransferOut: {
3456
+ accountId: 'AccountId32',
3457
+ amount: 'u128',
3458
+ expirationTick: 'u64',
3459
+ notaryId: 'u32',
3460
+ },
3461
+ /**
3462
+ * Lookup450: frame_support::PalletId
3463
+ **/
3464
+ FrameSupportPalletId: '[u8;8]',
3465
+ /**
3466
+ * Lookup451: pallet_localchain_transfer::pallet::Error<T>
3467
+ **/
3468
+ PalletLocalchainTransferError: {
3469
+ _enum: [
3470
+ 'MaxBlockTransfersExceeded',
3471
+ 'InsufficientFunds',
3472
+ 'InsufficientNotarizedFunds',
3473
+ 'InvalidOrDuplicatedLocalchainTransfer',
3474
+ 'NotebookIncludesExpiredLocalchainTransfer',
3475
+ 'InvalidNotaryUsedForTransfer',
3476
+ 'NotaryLockedForTransfer',
3477
+ 'NoAvailableTransferId',
3478
+ ],
3479
+ },
3480
+ /**
3481
+ * Lookup455: argon_primitives::notary::NotaryNotebookVoteDigestDetails
3482
+ **/
3483
+ ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
3484
+ notaryId: 'Compact<u32>',
3485
+ notebookNumber: 'Compact<u32>',
3486
+ tick: 'Compact<u64>',
3487
+ blockVotesCount: 'Compact<u32>',
3488
+ blockVotingPower: 'Compact<u128>',
3489
+ },
3490
+ /**
3491
+ * Lookup460: pallet_block_seal_spec::pallet::Error<T>
3492
+ **/
3493
+ PalletBlockSealSpecError: {
3494
+ _enum: ['MaxNotebooksAtTickExceeded'],
3495
+ },
3496
+ /**
3497
+ * Lookup462: pallet_domains::pallet::Error<T>
3498
+ **/
3499
+ PalletDomainsError: {
3500
+ _enum: [
3501
+ 'DomainNotRegistered',
3502
+ 'NotDomainOwner',
3503
+ 'FailedToAddToAddressHistory',
3504
+ 'FailedToAddExpiringDomain',
3505
+ 'AccountDecodingError',
3506
+ ],
3507
+ },
3508
+ /**
3509
+ * Lookup464: pallet_price_index::CpiMeasurementBucket
3510
+ **/
3511
+ PalletPriceIndexCpiMeasurementBucket: {
3512
+ tickRange: '(u64,u64)',
3513
+ totalCpi: 'i128',
3514
+ measurementsCount: 'u32',
3515
+ },
3516
+ /**
3517
+ * Lookup467: pallet_price_index::pallet::Error<T>
3518
+ **/
3519
+ PalletPriceIndexError: {
3520
+ _enum: [
3521
+ 'NotAuthorizedOperator',
3522
+ 'MissingValue',
3523
+ 'PricesTooOld',
3524
+ 'MaxPriceChangePerTickExceeded',
3525
+ ],
3526
+ },
3527
+ /**
3528
+ * Lookup468: pallet_grandpa::StoredState<N>
3529
+ **/
3530
+ PalletGrandpaStoredState: {
3531
+ _enum: {
3532
+ Live: 'Null',
3533
+ PendingPause: {
3534
+ scheduledAt: 'u32',
3535
+ delay: 'u32',
3536
+ },
3537
+ Paused: 'Null',
3538
+ PendingResume: {
3539
+ scheduledAt: 'u32',
3540
+ delay: 'u32',
3541
+ },
3542
+ },
3543
+ },
3544
+ /**
3545
+ * Lookup469: pallet_grandpa::StoredPendingChange<N, Limit>
3546
+ **/
3547
+ PalletGrandpaStoredPendingChange: {
3548
+ scheduledAt: 'u32',
3549
+ delay: 'u32',
3550
+ nextAuthorities: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
3551
+ forced: 'Option<u32>',
3552
+ },
3553
+ /**
3554
+ * Lookup471: pallet_grandpa::pallet::Error<T>
3555
+ **/
3556
+ PalletGrandpaError: {
3557
+ _enum: [
3558
+ 'PauseFailed',
3559
+ 'ResumeFailed',
3560
+ 'ChangePending',
3561
+ 'TooSoon',
3562
+ 'InvalidKeyOwnershipProof',
3563
+ 'InvalidEquivocationProof',
3564
+ 'DuplicateOffenceReport',
3565
+ ],
3566
+ },
3567
+ /**
3568
+ * Lookup472: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
3569
+ **/
3570
+ ArgonPrimitivesProvidersBlockSealerInfo: {
3571
+ blockAuthorAccountId: 'AccountId32',
3572
+ blockVoteRewardsAccount: 'Option<AccountId32>',
3573
+ blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
3574
+ },
3575
+ /**
3576
+ * Lookup474: pallet_block_seal::pallet::Error<T>
3577
+ **/
3578
+ PalletBlockSealError: {
3579
+ _enum: [
3580
+ 'InvalidVoteSealStrength',
3581
+ 'InvalidSubmitter',
3582
+ 'UnableToDecodeVoteAccount',
3583
+ 'UnregisteredBlockAuthor',
3584
+ 'InvalidBlockVoteProof',
3585
+ 'NoGrandparentVoteMinimum',
3586
+ 'DuplicateBlockSealProvided',
3587
+ 'InsufficientVotingPower',
3588
+ 'ParentVotingKeyNotFound',
3589
+ 'InvalidVoteGrandparentHash',
3590
+ 'IneligibleNotebookUsed',
3591
+ 'NoEligibleVotingRoot',
3592
+ 'CouldNotDecodeVote',
3593
+ 'MaxNotebooksAtTickExceeded',
3594
+ 'NoClosestMinerFoundForVote',
3595
+ 'BlockVoteInvalidSignature',
3596
+ 'InvalidForkPowerParent',
3597
+ 'BlockSealDecodeError',
3598
+ 'InvalidComputeBlockTick',
3599
+ 'InvalidMinerNonceScore',
3600
+ 'DuplicateVoteBlockAtTick',
3601
+ ],
3602
+ },
3603
+ /**
3604
+ * Lookup478: pallet_block_rewards::pallet::Error<T>
3605
+ **/
3606
+ PalletBlockRewardsError: 'Null',
3607
+ /**
3608
+ * Lookup484: pallet_mint::pallet::MintAction<B>
3609
+ **/
3610
+ PalletMintMintAction: {
3611
+ argonBurned: 'u128',
3612
+ argonMinted: 'u128',
3613
+ bitcoinMinted: 'u128',
3614
+ },
3615
+ /**
3616
+ * Lookup485: pallet_mint::pallet::Error<T>
3617
+ **/
3618
+ PalletMintError: {
3619
+ _enum: ['TooManyPendingMints'],
3620
+ },
3621
+ /**
3622
+ * Lookup487: pallet_balances::types::BalanceLock<Balance>
3623
+ **/
3624
+ PalletBalancesBalanceLock: {
3625
+ id: '[u8;8]',
3626
+ amount: 'u128',
3627
+ reasons: 'PalletBalancesReasons',
3628
+ },
3629
+ /**
3630
+ * Lookup488: pallet_balances::types::Reasons
3631
+ **/
3632
+ PalletBalancesReasons: {
3633
+ _enum: ['Fee', 'Misc', 'All'],
3634
+ },
3635
+ /**
3636
+ * Lookup491: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
3637
+ **/
3638
+ PalletBalancesReserveData: {
3639
+ id: '[u8;8]',
3640
+ amount: 'u128',
3641
+ },
3642
+ /**
3643
+ * Lookup494: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
3644
+ **/
3645
+ FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
3646
+ id: 'ArgonRuntimeRuntimeHoldReason',
3647
+ amount: 'u128',
3648
+ },
3649
+ /**
3650
+ * Lookup497: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
3651
+ **/
3652
+ FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
3653
+ id: 'ArgonRuntimeRuntimeFreezeReason',
3654
+ amount: 'u128',
3655
+ },
3656
+ /**
3657
+ * Lookup498: argon_runtime::RuntimeFreezeReason
3658
+ **/
3659
+ ArgonRuntimeRuntimeFreezeReason: {
3660
+ _enum: {
3661
+ __Unused0: 'Null',
3662
+ __Unused1: 'Null',
3663
+ __Unused2: 'Null',
3664
+ __Unused3: 'Null',
3665
+ __Unused4: 'Null',
3666
+ __Unused5: 'Null',
3667
+ __Unused6: 'Null',
3668
+ __Unused7: 'Null',
3669
+ __Unused8: 'Null',
3670
+ __Unused9: 'Null',
3671
+ __Unused10: 'Null',
3672
+ __Unused11: 'Null',
3673
+ __Unused12: 'Null',
3674
+ __Unused13: 'Null',
3675
+ __Unused14: 'Null',
3676
+ __Unused15: 'Null',
3677
+ __Unused16: 'Null',
3678
+ __Unused17: 'Null',
3679
+ __Unused18: 'Null',
3680
+ BlockRewards: 'PalletBlockRewardsFreezeReason',
3681
+ },
3682
+ },
3683
+ /**
3684
+ * Lookup499: pallet_block_rewards::pallet::FreezeReason
3685
+ **/
3686
+ PalletBlockRewardsFreezeReason: {
3687
+ _enum: ['MaturationPeriod'],
3688
+ },
3689
+ /**
3690
+ * Lookup501: pallet_balances::pallet::Error<T, I>
3691
+ **/
3692
+ PalletBalancesError: {
3693
+ _enum: [
3694
+ 'VestingBalance',
3695
+ 'LiquidityRestrictions',
3696
+ 'InsufficientBalance',
3697
+ 'ExistentialDeposit',
3698
+ 'Expendability',
3699
+ 'ExistingVestingSchedule',
3700
+ 'DeadAccount',
3701
+ 'TooManyReserves',
3702
+ 'TooManyHolds',
3703
+ 'TooManyFreezes',
3704
+ 'IssuanceDeactivated',
3705
+ 'DeltaZero',
3706
+ ],
3707
+ },
3708
+ /**
3709
+ * Lookup503: pallet_tx_pause::pallet::Error<T>
3710
+ **/
3711
+ PalletTxPauseError: {
3712
+ _enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
3713
+ },
3714
+ /**
3715
+ * Lookup504: pallet_transaction_payment::Releases
3716
+ **/
3717
+ PalletTransactionPaymentReleases: {
3718
+ _enum: ['V1Ancient', 'V2'],
3719
+ },
3720
+ /**
3721
+ * Lookup505: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
3722
+ **/
3723
+ FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
3724
+ /**
3725
+ * Lookup506: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
3726
+ **/
3727
+ FrameSupportTokensFungibleImbalance: {
3728
+ amount: 'u128',
3729
+ },
3730
+ /**
3731
+ * Lookup507: pallet_utility::pallet::Error<T>
3732
+ **/
3733
+ PalletUtilityError: {
3734
+ _enum: ['TooManyCalls'],
3735
+ },
3736
+ /**
3737
+ * Lookup508: pallet_sudo::pallet::Error<T>
3738
+ **/
3739
+ PalletSudoError: {
3740
+ _enum: ['RequireSudo'],
3741
+ },
3742
+ /**
3743
+ * Lookup509: pallet_treasury::pallet::FrameVaultCapital<T>
3744
+ **/
3745
+ PalletTreasuryFrameVaultCapital: {
3746
+ frameId: 'Compact<u64>',
3747
+ vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
3748
+ },
3749
+ /**
3750
+ * Lookup511: pallet_treasury::pallet::VaultCapital<T>
3751
+ **/
3752
+ PalletTreasuryVaultCapital: {
3753
+ bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
3754
+ eligibleBonds: 'Compact<u32>',
3755
+ vaultSharingPercent: 'Compact<Permill>',
3756
+ },
3757
+ /**
3758
+ * Lookup513: pallet_treasury::pallet::BondLotAllocation
3759
+ **/
3760
+ PalletTreasuryBondLotAllocation: {
3761
+ bondLotId: 'Compact<u64>',
3762
+ prorata: 'u128',
3763
+ },
3764
+ /**
3765
+ * Lookup518: pallet_treasury::pallet::BondLot<T>
3766
+ **/
3767
+ PalletTreasuryBondLot: {
3768
+ owner: 'AccountId32',
3769
+ vaultId: 'Compact<u32>',
3770
+ bonds: 'Compact<u32>',
3771
+ createdFrameId: 'Compact<u64>',
3772
+ participatedFrames: 'Compact<u32>',
3773
+ lastFrameEarningsFrameId: 'Option<u64>',
3774
+ lastFrameEarnings: 'Option<u128>',
3775
+ cumulativeEarnings: 'Compact<u128>',
3776
+ releaseFrameId: 'Option<u64>',
3777
+ releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
3778
+ },
3779
+ /**
3780
+ * Lookup523: pallet_treasury::pallet::BondLotSummary
3781
+ **/
3782
+ PalletTreasuryBondLotSummary: {
3783
+ bondLotId: 'Compact<u64>',
3784
+ bonds: 'Compact<u32>',
3785
+ },
3786
+ /**
3787
+ * Lookup525: pallet_treasury::pallet::Error<T>
3788
+ **/
3789
+ PalletTreasuryError: {
3790
+ _enum: [
3791
+ 'BondPurchaseRejected',
3792
+ 'VaultNotAcceptingBondPurchases',
3793
+ 'BondPurchaseBelowMinimum',
3794
+ 'InternalError',
3795
+ 'MaxAcceptedBondLotsExceeded',
3796
+ 'MaxPendingBondReleasesExceeded',
3797
+ 'BondLotNotFound',
3798
+ 'NotBondLotOwner',
3799
+ 'BondLotAlreadyReleasing',
3800
+ 'BondPurchaseAboveSecurity',
3801
+ 'ActiveBondAmountBelowEncumberedBacking',
3802
+ ],
3803
+ },
3804
+ /**
3805
+ * Lookup526: pallet_fee_control::pallet::Error<T>
3806
+ **/
3807
+ PalletFeeControlError: {
3808
+ _enum: ['SponsoredFeeTooHigh'],
3809
+ },
3810
+ /**
3811
+ * Lookup527: pallet_operational_accounts::pallet::OperationalAccount<T>
3812
+ **/
3813
+ PalletOperationalAccountsOperationalAccount: {
3814
+ vaultAccount: 'AccountId32',
3815
+ miningFundingAccount: 'AccountId32',
3816
+ miningBotAccount: 'AccountId32',
3817
+ encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
3818
+ sponsor: 'Option<AccountId32>',
3819
+ hasUniswapTransfer: 'bool',
3820
+ vaultCreated: 'bool',
3821
+ bitcoinAccrual: 'u128',
3822
+ bitcoinAppliedTotal: 'u128',
3823
+ hasTreasuryPoolParticipation: 'bool',
3824
+ miningSeatAccrual: 'Compact<u32>',
3825
+ miningSeatAppliedTotal: 'Compact<u32>',
3826
+ operationalReferralsCount: 'Compact<u32>',
3827
+ referralPending: 'bool',
3828
+ availableReferrals: 'Compact<u32>',
3829
+ rewardsEarnedCount: 'Compact<u32>',
3830
+ rewardsEarnedAmount: 'u128',
3831
+ rewardsCollectedAmount: 'u128',
3832
+ isOperational: 'bool',
3833
+ },
3834
+ /**
3835
+ * Lookup529: pallet_operational_accounts::pallet::RewardsConfig<Balance>
3836
+ **/
3837
+ PalletOperationalAccountsRewardsConfig: {
3838
+ operationalReferralReward: 'Compact<u128>',
3839
+ referralBonusReward: 'Compact<u128>',
3840
+ },
3841
+ /**
3842
+ * Lookup531: pallet_operational_accounts::pallet::Error<T>
3843
+ **/
3844
+ PalletOperationalAccountsError: {
3845
+ _enum: [
3846
+ 'AlreadyRegistered',
3847
+ 'InvalidRegistrationSubmitter',
3848
+ 'AccountAlreadyLinked',
3849
+ 'InvalidAccountProof',
3850
+ 'NotOperationalAccount',
3851
+ 'InvalidReferralProof',
3852
+ 'ReferralProofExpired',
3853
+ 'NoProgressUpdateProvided',
3854
+ 'EncryptedServerTooLong',
3855
+ 'NotSponsorOfSponsee',
3856
+ 'NoPendingRewards',
3857
+ 'RewardClaimBelowMinimum',
3858
+ 'RewardClaimNotWholeArgon',
3859
+ 'RewardClaimExceedsPending',
3860
+ 'TreasuryInsufficientFunds',
3861
+ 'AlreadyOperational',
3862
+ 'NotEligibleForActivation',
3863
+ ],
3864
+ },
3865
+ /**
3866
+ * Lookup532: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
3867
+ **/
3868
+ PalletEthereumVerifierFinalizedBeaconHeaderState: {
3869
+ slot: 'Compact<u64>',
3870
+ },
3871
+ /**
3872
+ * Lookup533: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
3873
+ **/
3874
+ PalletEthereumVerifierExecutionHeaderAnchor: {
3875
+ blockNumber: 'Compact<u64>',
3876
+ timestampMillis: 'Compact<u64>',
3877
+ blockHash: 'H256',
3878
+ parentHash: 'H256',
3879
+ receiptsRoot: 'H256',
3880
+ },
3881
+ /**
3882
+ * Lookup534: pallet_ethereum_verifier::types::SyncCommitteePrepared
3883
+ **/
3884
+ PalletEthereumVerifierSyncCommitteePrepared: {
3885
+ root: 'H256',
3886
+ pubkeys: 'Vec<SnowbridgeMilagroBlsKeysPublicKey>',
3887
+ aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
3888
+ },
3889
+ /**
3890
+ * Lookup536: snowbridge_milagro_bls::keys::PublicKey
3891
+ **/
3892
+ SnowbridgeMilagroBlsKeysPublicKey: {
3893
+ point: 'SnowbridgeAmclBls381Ecp',
3894
+ },
3895
+ /**
3896
+ * Lookup537: snowbridge_amcl::bls381::ecp::ECP
3897
+ **/
3898
+ SnowbridgeAmclBls381Ecp: {
3899
+ x: 'SnowbridgeAmclBls381Fp',
3900
+ y: 'SnowbridgeAmclBls381Fp',
3901
+ z: 'SnowbridgeAmclBls381Fp',
3902
+ },
3903
+ /**
3904
+ * Lookup538: snowbridge_amcl::bls381::fp::FP
3905
+ **/
3906
+ SnowbridgeAmclBls381Fp: {
3907
+ x: 'SnowbridgeAmclBls381Big',
3908
+ xes: 'i32',
3909
+ },
3910
+ /**
3911
+ * Lookup539: snowbridge_amcl::bls381::big::Big
3912
+ **/
3913
+ SnowbridgeAmclBls381Big: {
3914
+ w: '[i32;14]',
3915
+ },
3916
+ /**
3917
+ * Lookup543: argon_primitives::ethereum::EthereumBeaconPreset
3918
+ **/
3919
+ ArgonPrimitivesEthereumEthereumBeaconPreset: {
3920
+ _enum: ['Mainnet', 'Minimal'],
3921
+ },
3922
+ /**
3923
+ * Lookup544: pallet_ethereum_verifier::pallet::Error<T>
3924
+ **/
3925
+ PalletEthereumVerifierError: {
3926
+ _enum: [
3927
+ 'SkippedSyncCommitteePeriod',
3928
+ 'SyncCommitteeUpdateRequired',
3929
+ 'IrrelevantUpdate',
3930
+ 'NotBootstrapped',
3931
+ 'SyncCommitteeParticipantsNotSupermajority',
3932
+ 'InvalidHeaderMerkleProof',
3933
+ 'InvalidSyncCommitteeMerkleProof',
3934
+ 'InvalidExecutionHeaderProof',
3935
+ 'InvalidFinalizedHeaderGap',
3936
+ 'HeaderHashTreeRootFailed',
3937
+ 'BlockBodyHashTreeRootFailed',
3938
+ 'SyncCommitteeHashTreeRootFailed',
3939
+ 'SigningRootHashTreeRootFailed',
3940
+ 'ForkDataHashTreeRootFailed',
3941
+ 'ExpectedFinalizedHeaderNotStored',
3942
+ 'BLSPreparePublicKeysFailed',
3943
+ 'BLSVerificationFailed',
3944
+ 'UnexpectedBeaconPreset',
3945
+ 'InvalidUpdateSlot',
3946
+ 'InvalidSyncCommitteeUpdate',
3947
+ 'Halted',
3948
+ ],
3949
+ },
3950
+ /**
3951
+ * Lookup546: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
3952
+ **/
3953
+ PalletCrosschainTransferGlobalIssuanceCouncil: {
3954
+ epochMicrogonsPerArgonot: 'u128',
3955
+ members: 'BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>',
3956
+ totalWeight: 'u128',
3957
+ },
3958
+ /**
3959
+ * Lookup548: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
3960
+ **/
3961
+ PalletCrosschainTransferGlobalIssuanceCouncilMember: {
3962
+ accountId: 'AccountId32',
3963
+ signer: 'H160',
3964
+ weight: 'u128',
3965
+ },
3966
+ /**
3967
+ * Lookup553: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
3968
+ **/
3969
+ PalletCrosschainTransferCouncilApprovalQueueEntry: {
3970
+ approvingCouncilHash: 'H256',
3971
+ target: 'PalletCrosschainTransferCouncilApprovalTargetId',
3972
+ targetPayloadHash: 'H256',
3973
+ dueFrameId: 'Compact<u64>',
3974
+ previousApprovalHash: 'H256',
3975
+ approvalHash: 'H256',
3976
+ approvedTotalWeight: 'u128',
3977
+ signatures: 'BTreeMap<H160, [u8;65]>',
3978
+ },
3979
+ /**
3980
+ * Lookup558: pallet_crosschain_transfer::pallet::MintingAuthority<T>
3981
+ **/
3982
+ PalletCrosschainTransferMintingAuthority: {
3983
+ accountId: 'AccountId32',
3984
+ destinationChain: 'PalletCrosschainTransferSourceChain',
3985
+ destinationSigningKey: 'H160',
3986
+ state: 'PalletCrosschainTransferMintingAuthorityState',
3987
+ gatewayRemainingMicrogonCollateral: 'u128',
3988
+ gatewayRemainingMicronotCollateral: 'u128',
3989
+ pendingReservedMicrogonCollateral: 'u128',
3990
+ pendingReservedMicronotCollateral: 'u128',
3991
+ activePendingTransferIds: 'Vec<H256>',
3992
+ activationApprovalQueueNonce: 'u64',
3993
+ activationBaseRepaymentQuote: 'Compact<u128>',
3994
+ activationSignatureRepaymentQuote: 'Compact<u128>',
3995
+ deactivationApprovalQueueNonce: 'Option<u64>',
3996
+ },
3997
+ /**
3998
+ * Lookup559: pallet_crosschain_transfer::pallet::MintingAuthorityState
3999
+ **/
4000
+ PalletCrosschainTransferMintingAuthorityState: {
4001
+ _enum: ['PendingActivation', 'Active', 'Deactivating'],
4002
+ },
4003
+ /**
4004
+ * Lookup561: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
4005
+ **/
4006
+ PalletCrosschainTransferTransferOutTransferOutOfArgon: {
4007
+ argonAccountId: 'AccountId32',
4008
+ argonTransferNonce: 'Compact<u64>',
4009
+ destinationChain: 'PalletCrosschainTransferSourceChain',
4010
+ microgonsPerArgonot: 'Compact<u128>',
4011
+ destinationAccount: 'H160',
4012
+ validUntilEthereumBlock: 'Compact<u64>',
4013
+ asset: 'PalletCrosschainTransferAssetKind',
4014
+ amount: 'u128',
4015
+ mintingAuthorityTip: 'u128',
4016
+ totalAttachedCollateral: 'u128',
4017
+ mintingAuthorityCollateralBySigner:
4018
+ 'BTreeMap<H160, PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation>',
4019
+ state: 'PalletCrosschainTransferTransferOutTransferOutState',
4020
+ },
4021
+ /**
4022
+ * Lookup563: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
4023
+ **/
4024
+ PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
4025
+ microgonCollateral: 'u128',
4026
+ micronotCollateral: 'u128',
4027
+ collateralShare: 'u128',
4028
+ signature: '[u8;65]',
4029
+ },
4030
+ /**
4031
+ * Lookup567: pallet_crosschain_transfer::transfer_out::TransferOutState
4032
+ **/
4033
+ PalletCrosschainTransferTransferOutTransferOutState: {
4034
+ _enum: ['Started', 'Ready'],
4035
+ },
4036
+ /**
4037
+ * Lookup569: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
4038
+ **/
4039
+ PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
4040
+ transferId: 'H256',
4041
+ remainingCollateral: 'u128',
4042
+ remainingMintingAuthorityTip: 'u128',
4043
+ },
4044
+ /**
4045
+ * Lookup571: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
4046
+ **/
4047
+ PalletCrosschainTransferSourceChainCirculation: {
4048
+ argonCirculation: 'u128',
4049
+ argonotCirculation: 'u128',
4050
+ },
4051
+ /**
4052
+ * Lookup572: pallet_crosschain_transfer::pallet::Error<T>
4053
+ **/
4054
+ PalletCrosschainTransferError: {
4055
+ _enum: [
4056
+ 'InvalidTransferToArgonActivity',
4057
+ 'NoGatewayProofBlocksProvided',
4058
+ 'NoGatewayActivitiesProvided',
4059
+ 'InvalidProof',
4060
+ 'UnsupportedSource',
4061
+ 'UnsupportedGateway',
4062
+ 'UnsupportedToken',
4063
+ 'UnexpectedPreviousGatewayActivityNonce',
4064
+ 'UnexpectedGatewayActivityNonce',
4065
+ 'InvalidChainConfig',
4066
+ 'InsufficientLiquidity',
4067
+ 'MintingAuthorityNotFound',
4068
+ 'MintingAuthorityMismatch',
4069
+ 'UnexpectedMintingAuthorityState',
4070
+ 'UnknownOwnerVault',
4071
+ 'InvalidMintingAuthoritySigningKey',
4072
+ 'MintingAuthorityAlreadyRegistered',
4073
+ 'InvalidMintingAuthoritySigningKeyProof',
4074
+ 'InvalidMintingAuthorityCollateral',
4075
+ 'GlobalIssuanceCouncilNotFound',
4076
+ 'InvalidGlobalIssuanceCouncil',
4077
+ 'DuplicateGlobalIssuanceCouncilSigner',
4078
+ 'DuplicateGlobalIssuanceCouncilAccount',
4079
+ 'InvalidCouncilSignerProof',
4080
+ 'GlobalIssuanceCouncilMemberNotFound',
4081
+ 'CouncilSignerNotRegistered',
4082
+ 'CouncilApprovalQueueEntryNotFound',
4083
+ 'CouncilApprovalAlreadyRecorded',
4084
+ 'InvalidForceSetAfterNonce',
4085
+ 'CannotForceSetQuorumApprovedQueueEntry',
4086
+ 'InvalidCouncilApprovalSignature',
4087
+ 'NoCouncilApprovalSignaturesProvided',
4088
+ 'InsufficientCommittedMicrogonCollateral',
4089
+ 'InsufficientCommittedArgonotCollateral',
4090
+ 'InvalidMintingAuthorityDeactivationSignature',
4091
+ 'InvalidMicrogonsPerArgonot',
4092
+ 'MintingAuthorityCollateralBelowMinimum',
4093
+ 'InvalidMintingAuthorityActivationRepaymentPricing',
4094
+ 'MissingMintingAuthorityActivationRepaymentPricing',
4095
+ 'InvalidGatewayActivity',
4096
+ 'GatewaySyncPaused',
4097
+ 'InvalidTransferOutAmount',
4098
+ 'InvalidTransferOutRecipient',
4099
+ 'MissingVerifiedExecutionBlock',
4100
+ 'StaleVerifiedExecutionBlock',
4101
+ 'TransferOutNotFound',
4102
+ 'TransferOutAlreadyReady',
4103
+ 'TransferOutExpired',
4104
+ 'InvalidTransferCollateral',
4105
+ 'InvalidTransferCollateralUpdate',
4106
+ 'InvalidTransferCollateralSignature',
4107
+ 'InsufficientMintingAuthorityCollateral',
4108
+ 'TransferCollateralIncrementTooSmall',
4109
+ 'TooManyPendingTransferOuts',
4110
+ ],
4111
+ },
4112
+ /**
4113
+ * Lookup575: frame_system::extensions::authorize_call::AuthorizeCall<T>
4114
+ **/
4115
+ FrameSystemExtensionsAuthorizeCall: 'Null',
4116
+ /**
4117
+ * Lookup576: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
4118
+ **/
4119
+ FrameSystemExtensionsCheckNonZeroSender: 'Null',
4120
+ /**
4121
+ * Lookup577: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
4122
+ **/
4123
+ FrameSystemExtensionsCheckSpecVersion: 'Null',
4124
+ /**
4125
+ * Lookup578: frame_system::extensions::check_tx_version::CheckTxVersion<T>
4126
+ **/
4127
+ FrameSystemExtensionsCheckTxVersion: 'Null',
4128
+ /**
4129
+ * Lookup579: frame_system::extensions::check_genesis::CheckGenesis<T>
4130
+ **/
4131
+ FrameSystemExtensionsCheckGenesis: 'Null',
4132
+ /**
4133
+ * Lookup582: frame_system::extensions::check_nonce::CheckNonce<T>
4134
+ **/
4135
+ FrameSystemExtensionsCheckNonce: 'Compact<u32>',
4136
+ /**
4137
+ * Lookup583: frame_system::extensions::check_weight::CheckWeight<T>
4138
+ **/
4139
+ FrameSystemExtensionsCheckWeight: 'Null',
4140
+ /**
4141
+ * Lookup584: pallet_transaction_payment::ChargeTransactionPayment<T>
4142
+ **/
4143
+ PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
4144
+ /**
4145
+ * Lookup585: frame_metadata_hash_extension::CheckMetadataHash<T>
4146
+ **/
4147
+ FrameMetadataHashExtensionCheckMetadataHash: {
4148
+ mode: 'FrameMetadataHashExtensionMode',
4149
+ },
4150
+ /**
4151
+ * Lookup586: frame_metadata_hash_extension::Mode
4152
+ **/
4153
+ FrameMetadataHashExtensionMode: {
4154
+ _enum: ['Disabled', 'Enabled'],
4155
+ },
4156
+ /**
4157
+ * Lookup587: frame_system::extensions::weight_reclaim::WeightReclaim<T>
4158
+ **/
4159
+ FrameSystemExtensionsWeightReclaim: 'Null',
4160
+ /**
4161
+ * Lookup589: argon_runtime::Runtime
4162
+ **/
4163
+ ArgonRuntimeRuntime: 'Null',
4164
+ };