@argonprotocol/mainchain 0.0.16 → 0.0.18
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.
- package/README.md +46 -0
- package/lib/cjs/WageProtector.d.ts +37 -0
- package/lib/cjs/WageProtector.js +63 -0
- package/lib/cjs/WageProtector.js.map +1 -0
- package/lib/cjs/__test__/WageProtector.test.d.ts +1 -0
- package/lib/cjs/__test__/WageProtector.test.js +28 -0
- package/lib/cjs/__test__/WageProtector.test.js.map +1 -0
- package/lib/cjs/index.d.ts +16 -1
- package/lib/cjs/index.js +22 -7
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/interfaces/augment-api-consts.d.ts +34 -7
- package/lib/cjs/interfaces/augment-api-errors.d.ts +115 -4
- package/lib/cjs/interfaces/augment-api-events.d.ts +172 -14
- package/lib/cjs/interfaces/augment-api-query.d.ts +160 -29
- package/lib/cjs/interfaces/augment-api-tx.d.ts +140 -13
- package/lib/cjs/interfaces/augment-types.d.ts +4 -1
- package/lib/cjs/interfaces/lookup.d.ts +809 -307
- package/lib/cjs/interfaces/lookup.js +840 -338
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +55 -9
- package/lib/cjs/interfaces/types-lookup.d.ts +792 -328
- package/lib/esm/WageProtector.d.ts +37 -0
- package/lib/esm/WageProtector.js +59 -0
- package/lib/esm/WageProtector.js.map +1 -0
- package/lib/esm/__test__/WageProtector.test.d.ts +1 -0
- package/lib/esm/__test__/WageProtector.test.js +26 -0
- package/lib/esm/__test__/WageProtector.test.js.map +1 -0
- package/lib/esm/index.d.ts +16 -1
- package/lib/esm/index.js +16 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/interfaces/augment-api-consts.d.ts +34 -7
- package/lib/esm/interfaces/augment-api-errors.d.ts +115 -4
- package/lib/esm/interfaces/augment-api-events.d.ts +172 -14
- package/lib/esm/interfaces/augment-api-query.d.ts +160 -29
- package/lib/esm/interfaces/augment-api-tx.d.ts +140 -13
- package/lib/esm/interfaces/augment-types.d.ts +4 -1
- package/lib/esm/interfaces/lookup.d.ts +809 -307
- package/lib/esm/interfaces/lookup.js +840 -338
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +55 -9
- package/lib/esm/interfaces/types-lookup.d.ts +792 -328
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/WageProtector.d.ts +37 -0
- package/lib/types/__test__/WageProtector.test.d.ts +1 -0
- package/lib/types/index.d.ts +16 -1
- package/lib/types/interfaces/augment-api-consts.d.ts +34 -7
- package/lib/types/interfaces/augment-api-errors.d.ts +115 -4
- package/lib/types/interfaces/augment-api-events.d.ts +172 -14
- package/lib/types/interfaces/augment-api-query.d.ts +160 -29
- package/lib/types/interfaces/augment-api-tx.d.ts +140 -13
- package/lib/types/interfaces/augment-types.d.ts +4 -1
- package/lib/types/interfaces/lookup.d.ts +809 -307
- package/lib/types/interfaces/registry.d.ts +55 -9
- package/lib/types/interfaces/types-lookup.d.ts +792 -328
- package/package.json +28 -7
|
@@ -61,7 +61,7 @@ exports.default = {
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
/**
|
|
64
|
-
* Lookup20: frame_system::EventRecord<
|
|
64
|
+
* Lookup20: frame_system::EventRecord<argon_runtime::RuntimeEvent, primitive_types::H256>
|
|
65
65
|
**/
|
|
66
66
|
FrameSystemEventRecord: {
|
|
67
67
|
phase: 'FrameSystemPhase',
|
|
@@ -167,7 +167,11 @@ exports.default = {
|
|
|
167
167
|
_enum: ['LimitReached', 'NoLayer']
|
|
168
168
|
},
|
|
169
169
|
/**
|
|
170
|
-
* Lookup31:
|
|
170
|
+
* Lookup31: pallet_digests::pallet::Event<T>
|
|
171
|
+
**/
|
|
172
|
+
PalletDigestsEvent: 'Null',
|
|
173
|
+
/**
|
|
174
|
+
* Lookup32: pallet_multisig::pallet::Event<T>
|
|
171
175
|
**/
|
|
172
176
|
PalletMultisigEvent: {
|
|
173
177
|
_enum: {
|
|
@@ -198,14 +202,14 @@ exports.default = {
|
|
|
198
202
|
}
|
|
199
203
|
},
|
|
200
204
|
/**
|
|
201
|
-
*
|
|
205
|
+
* Lookup33: pallet_multisig::Timepoint<BlockNumber>
|
|
202
206
|
**/
|
|
203
207
|
PalletMultisigTimepoint: {
|
|
204
208
|
height: 'u32',
|
|
205
209
|
index: 'u32'
|
|
206
210
|
},
|
|
207
211
|
/**
|
|
208
|
-
*
|
|
212
|
+
* Lookup36: pallet_proxy::pallet::Event<T>
|
|
209
213
|
**/
|
|
210
214
|
PalletProxyEvent: {
|
|
211
215
|
_enum: {
|
|
@@ -215,7 +219,7 @@ exports.default = {
|
|
|
215
219
|
PureCreated: {
|
|
216
220
|
pure: 'AccountId32',
|
|
217
221
|
who: 'AccountId32',
|
|
218
|
-
proxyType: '
|
|
222
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
219
223
|
disambiguationIndex: 'u16',
|
|
220
224
|
},
|
|
221
225
|
Announced: {
|
|
@@ -226,25 +230,25 @@ exports.default = {
|
|
|
226
230
|
ProxyAdded: {
|
|
227
231
|
delegator: 'AccountId32',
|
|
228
232
|
delegatee: 'AccountId32',
|
|
229
|
-
proxyType: '
|
|
233
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
230
234
|
delay: 'u32',
|
|
231
235
|
},
|
|
232
236
|
ProxyRemoved: {
|
|
233
237
|
delegator: 'AccountId32',
|
|
234
238
|
delegatee: 'AccountId32',
|
|
235
|
-
proxyType: '
|
|
239
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
236
240
|
delay: 'u32'
|
|
237
241
|
}
|
|
238
242
|
}
|
|
239
243
|
},
|
|
240
244
|
/**
|
|
241
|
-
*
|
|
245
|
+
* Lookup37: argon_runtime::configs::ProxyType
|
|
242
246
|
**/
|
|
243
|
-
|
|
247
|
+
ArgonRuntimeConfigsProxyType: {
|
|
244
248
|
_enum: ['Any', 'NonTransfer', 'PriceIndex']
|
|
245
249
|
},
|
|
246
250
|
/**
|
|
247
|
-
*
|
|
251
|
+
* Lookup39: pallet_mining_slot::pallet::Event<T>
|
|
248
252
|
**/
|
|
249
253
|
PalletMiningSlotEvent: {
|
|
250
254
|
_enum: {
|
|
@@ -275,7 +279,7 @@ exports.default = {
|
|
|
275
279
|
}
|
|
276
280
|
},
|
|
277
281
|
/**
|
|
278
|
-
*
|
|
282
|
+
* Lookup41: argon_primitives::block_seal::MiningRegistration<sp_core::crypto::AccountId32, Balance, argon_runtime::SessionKeys>
|
|
279
283
|
**/
|
|
280
284
|
ArgonPrimitivesBlockSealMiningRegistration: {
|
|
281
285
|
accountId: 'AccountId32',
|
|
@@ -284,25 +288,25 @@ exports.default = {
|
|
|
284
288
|
bondAmount: 'Compact<u128>',
|
|
285
289
|
ownershipTokens: 'Compact<u128>',
|
|
286
290
|
rewardSharing: 'Option<ArgonPrimitivesBlockSealRewardSharing>',
|
|
287
|
-
authorityKeys: '
|
|
291
|
+
authorityKeys: 'ArgonRuntimeSessionKeys'
|
|
288
292
|
},
|
|
289
293
|
/**
|
|
290
|
-
*
|
|
294
|
+
* Lookup42: argon_runtime::SessionKeys
|
|
291
295
|
**/
|
|
292
|
-
|
|
296
|
+
ArgonRuntimeSessionKeys: {
|
|
293
297
|
grandpa: 'SpConsensusGrandpaAppPublic',
|
|
294
298
|
blockSealAuthority: 'ArgonPrimitivesBlockSealAppPublic'
|
|
295
299
|
},
|
|
296
300
|
/**
|
|
297
|
-
*
|
|
301
|
+
* Lookup43: sp_consensus_grandpa::app::Public
|
|
298
302
|
**/
|
|
299
303
|
SpConsensusGrandpaAppPublic: '[u8;32]',
|
|
300
304
|
/**
|
|
301
|
-
*
|
|
305
|
+
* Lookup44: argon_primitives::block_seal::app::Public
|
|
302
306
|
**/
|
|
303
307
|
ArgonPrimitivesBlockSealAppPublic: '[u8;32]',
|
|
304
308
|
/**
|
|
305
|
-
*
|
|
309
|
+
* Lookup45: argon_primitives::block_seal::RewardDestination<sp_core::crypto::AccountId32>
|
|
306
310
|
**/
|
|
307
311
|
ArgonPrimitivesBlockSealRewardDestination: {
|
|
308
312
|
_enum: {
|
|
@@ -311,14 +315,14 @@ exports.default = {
|
|
|
311
315
|
}
|
|
312
316
|
},
|
|
313
317
|
/**
|
|
314
|
-
*
|
|
318
|
+
* Lookup49: argon_primitives::block_seal::RewardSharing<sp_core::crypto::AccountId32>
|
|
315
319
|
**/
|
|
316
320
|
ArgonPrimitivesBlockSealRewardSharing: {
|
|
317
321
|
accountId: 'AccountId32',
|
|
318
322
|
percentTake: 'Compact<u128>'
|
|
319
323
|
},
|
|
320
324
|
/**
|
|
321
|
-
*
|
|
325
|
+
* Lookup53: pallet_bitcoin_utxos::pallet::Event<T>
|
|
322
326
|
**/
|
|
323
327
|
PalletBitcoinUtxosEvent: {
|
|
324
328
|
_enum: {
|
|
@@ -355,24 +359,24 @@ exports.default = {
|
|
|
355
359
|
}
|
|
356
360
|
},
|
|
357
361
|
/**
|
|
358
|
-
*
|
|
362
|
+
* Lookup54: argon_primitives::bitcoin::BitcoinRejectedReason
|
|
359
363
|
**/
|
|
360
364
|
ArgonPrimitivesBitcoinBitcoinRejectedReason: {
|
|
361
365
|
_enum: ['SatoshisMismatch', 'Spent', 'LookupExpired', 'DuplicateUtxo']
|
|
362
366
|
},
|
|
363
367
|
/**
|
|
364
|
-
*
|
|
368
|
+
* Lookup55: argon_primitives::bitcoin::UtxoRef
|
|
365
369
|
**/
|
|
366
370
|
ArgonPrimitivesBitcoinUtxoRef: {
|
|
367
371
|
txid: 'ArgonPrimitivesBitcoinH256Le',
|
|
368
372
|
outputIndex: 'Compact<u32>'
|
|
369
373
|
},
|
|
370
374
|
/**
|
|
371
|
-
*
|
|
375
|
+
* Lookup56: argon_primitives::bitcoin::H256Le
|
|
372
376
|
**/
|
|
373
377
|
ArgonPrimitivesBitcoinH256Le: '[u8;32]',
|
|
374
378
|
/**
|
|
375
|
-
*
|
|
379
|
+
* Lookup58: pallet_vaults::pallet::Event<T>
|
|
376
380
|
**/
|
|
377
381
|
PalletVaultsEvent: {
|
|
378
382
|
_enum: {
|
|
@@ -408,7 +412,7 @@ exports.default = {
|
|
|
408
412
|
}
|
|
409
413
|
},
|
|
410
414
|
/**
|
|
411
|
-
*
|
|
415
|
+
* Lookup59: pallet_bond::pallet::Event<T>
|
|
412
416
|
**/
|
|
413
417
|
PalletBondEvent: {
|
|
414
418
|
_enum: {
|
|
@@ -470,13 +474,13 @@ exports.default = {
|
|
|
470
474
|
}
|
|
471
475
|
},
|
|
472
476
|
/**
|
|
473
|
-
*
|
|
477
|
+
* Lookup60: argon_primitives::bond::BondType
|
|
474
478
|
**/
|
|
475
479
|
ArgonPrimitivesBondBondType: {
|
|
476
480
|
_enum: ['Mining', 'Bitcoin']
|
|
477
481
|
},
|
|
478
482
|
/**
|
|
479
|
-
*
|
|
483
|
+
* Lookup61: argon_primitives::bond::BondExpiration<BlockNumber>
|
|
480
484
|
**/
|
|
481
485
|
ArgonPrimitivesBondBondExpiration: {
|
|
482
486
|
_enum: {
|
|
@@ -485,7 +489,7 @@ exports.default = {
|
|
|
485
489
|
}
|
|
486
490
|
},
|
|
487
491
|
/**
|
|
488
|
-
*
|
|
492
|
+
* Lookup64: pallet_notaries::pallet::Event<T>
|
|
489
493
|
**/
|
|
490
494
|
PalletNotariesEvent: {
|
|
491
495
|
_enum: {
|
|
@@ -500,7 +504,7 @@ exports.default = {
|
|
|
500
504
|
NotaryMetaUpdateQueued: {
|
|
501
505
|
notaryId: 'u32',
|
|
502
506
|
meta: 'ArgonPrimitivesNotaryNotaryMeta',
|
|
503
|
-
effectiveTick: '
|
|
507
|
+
effectiveTick: 'u64',
|
|
504
508
|
},
|
|
505
509
|
NotaryMetaUpdated: {
|
|
506
510
|
notaryId: 'u32',
|
|
@@ -514,7 +518,7 @@ exports.default = {
|
|
|
514
518
|
}
|
|
515
519
|
},
|
|
516
520
|
/**
|
|
517
|
-
*
|
|
521
|
+
* Lookup65: argon_primitives::notary::NotaryMeta<MaxHosts>
|
|
518
522
|
**/
|
|
519
523
|
ArgonPrimitivesNotaryNotaryMeta: {
|
|
520
524
|
name: 'Bytes',
|
|
@@ -522,18 +526,18 @@ exports.default = {
|
|
|
522
526
|
hosts: 'Vec<Bytes>'
|
|
523
527
|
},
|
|
524
528
|
/**
|
|
525
|
-
*
|
|
529
|
+
* Lookup72: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
|
|
526
530
|
**/
|
|
527
531
|
ArgonPrimitivesNotaryNotaryRecord: {
|
|
528
532
|
notaryId: 'Compact<u32>',
|
|
529
533
|
operatorAccountId: 'AccountId32',
|
|
530
534
|
activatedBlock: 'Compact<u32>',
|
|
531
535
|
metaUpdatedBlock: 'Compact<u32>',
|
|
532
|
-
metaUpdatedTick: 'Compact<
|
|
536
|
+
metaUpdatedTick: 'Compact<u64>',
|
|
533
537
|
meta: 'ArgonPrimitivesNotaryNotaryMeta'
|
|
534
538
|
},
|
|
535
539
|
/**
|
|
536
|
-
*
|
|
540
|
+
* Lookup73: pallet_notebook::pallet::Event<T>
|
|
537
541
|
**/
|
|
538
542
|
PalletNotebookEvent: {
|
|
539
543
|
_enum: {
|
|
@@ -554,7 +558,7 @@ exports.default = {
|
|
|
554
558
|
}
|
|
555
559
|
},
|
|
556
560
|
/**
|
|
557
|
-
*
|
|
561
|
+
* Lookup74: argon_notary_audit::error::VerifyError
|
|
558
562
|
**/
|
|
559
563
|
ArgonNotaryAuditErrorVerifyError: {
|
|
560
564
|
_enum: {
|
|
@@ -624,8 +628,8 @@ exports.default = {
|
|
|
624
628
|
AccountChannelHoldDoesntExist: 'Null',
|
|
625
629
|
AccountAlreadyHasChannelHold: 'Null',
|
|
626
630
|
ChannelHoldNotReadyForClaim: {
|
|
627
|
-
currentTick: '
|
|
628
|
-
claimTick: '
|
|
631
|
+
currentTick: 'u64',
|
|
632
|
+
claimTick: 'u64',
|
|
629
633
|
},
|
|
630
634
|
AccountLocked: 'Null',
|
|
631
635
|
MissingChannelHoldNote: 'Null',
|
|
@@ -651,25 +655,31 @@ exports.default = {
|
|
|
651
655
|
InvalidBlockVoteSource: 'Null',
|
|
652
656
|
InsufficientBlockVoteMinimum: 'Null',
|
|
653
657
|
InvalidBlockVoteTick: {
|
|
654
|
-
tick: '
|
|
655
|
-
notebookTick: '
|
|
656
|
-
}
|
|
658
|
+
tick: 'u64',
|
|
659
|
+
notebookTick: 'u64',
|
|
660
|
+
},
|
|
661
|
+
InvalidDefaultBlockVote: 'Null',
|
|
662
|
+
InvalidDefaultBlockVoteAuthor: {
|
|
663
|
+
author: 'AccountId32',
|
|
664
|
+
expected: 'AccountId32',
|
|
665
|
+
},
|
|
666
|
+
NoDefaultBlockVote: 'Null'
|
|
657
667
|
}
|
|
658
668
|
},
|
|
659
669
|
/**
|
|
660
|
-
*
|
|
670
|
+
* Lookup75: argon_primitives::account::AccountType
|
|
661
671
|
**/
|
|
662
672
|
ArgonPrimitivesAccountAccountType: {
|
|
663
673
|
_enum: ['Tax', 'Deposit']
|
|
664
674
|
},
|
|
665
675
|
/**
|
|
666
|
-
*
|
|
676
|
+
* Lookup76: argon_notary_audit::AccountHistoryLookupError
|
|
667
677
|
**/
|
|
668
678
|
ArgonNotaryAuditAccountHistoryLookupError: {
|
|
669
679
|
_enum: ['RootNotFound', 'LastChangeNotFound', 'InvalidTransferToLocalchain', 'BlockSpecificationNotFound']
|
|
670
680
|
},
|
|
671
681
|
/**
|
|
672
|
-
*
|
|
682
|
+
* Lookup79: pallet_chain_transfer::pallet::Event<T>
|
|
673
683
|
**/
|
|
674
684
|
PalletChainTransferEvent: {
|
|
675
685
|
_enum: {
|
|
@@ -678,19 +688,19 @@ exports.default = {
|
|
|
678
688
|
amount: 'u128',
|
|
679
689
|
transferId: 'u32',
|
|
680
690
|
notaryId: 'u32',
|
|
681
|
-
expirationTick: '
|
|
691
|
+
expirationTick: 'u64',
|
|
682
692
|
},
|
|
683
693
|
TransferToLocalchainExpired: {
|
|
684
694
|
accountId: 'AccountId32',
|
|
685
695
|
transferId: 'u32',
|
|
686
696
|
notaryId: 'u32',
|
|
687
697
|
},
|
|
688
|
-
|
|
698
|
+
TransferFromLocalchain: {
|
|
689
699
|
accountId: 'AccountId32',
|
|
690
700
|
amount: 'u128',
|
|
691
701
|
notaryId: 'u32',
|
|
692
702
|
},
|
|
693
|
-
|
|
703
|
+
TransferFromLocalchainError: {
|
|
694
704
|
accountId: 'AccountId32',
|
|
695
705
|
amount: 'u128',
|
|
696
706
|
notaryId: 'u32',
|
|
@@ -704,7 +714,7 @@ exports.default = {
|
|
|
704
714
|
notebookNumber: 'u32',
|
|
705
715
|
error: 'SpRuntimeDispatchError',
|
|
706
716
|
},
|
|
707
|
-
|
|
717
|
+
PossibleInvalidLocalchainTransferAllowed: {
|
|
708
718
|
transferId: 'u32',
|
|
709
719
|
notaryId: 'u32',
|
|
710
720
|
notebookNumber: 'u32',
|
|
@@ -718,7 +728,7 @@ exports.default = {
|
|
|
718
728
|
}
|
|
719
729
|
},
|
|
720
730
|
/**
|
|
721
|
-
*
|
|
731
|
+
* Lookup80: pallet_block_seal_spec::pallet::Event<T>
|
|
722
732
|
**/
|
|
723
733
|
PalletBlockSealSpecEvent: {
|
|
724
734
|
_enum: {
|
|
@@ -737,7 +747,7 @@ exports.default = {
|
|
|
737
747
|
}
|
|
738
748
|
},
|
|
739
749
|
/**
|
|
740
|
-
*
|
|
750
|
+
* Lookup81: pallet_domains::pallet::Event<T>
|
|
741
751
|
**/
|
|
742
752
|
PalletDomainsEvent: {
|
|
743
753
|
_enum: {
|
|
@@ -767,7 +777,7 @@ exports.default = {
|
|
|
767
777
|
}
|
|
768
778
|
},
|
|
769
779
|
/**
|
|
770
|
-
*
|
|
780
|
+
* Lookup82: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
|
|
771
781
|
**/
|
|
772
782
|
ArgonPrimitivesDomainZoneRecord: {
|
|
773
783
|
paymentAccount: 'AccountId32',
|
|
@@ -775,7 +785,7 @@ exports.default = {
|
|
|
775
785
|
versions: 'BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>'
|
|
776
786
|
},
|
|
777
787
|
/**
|
|
778
|
-
*
|
|
788
|
+
* Lookup84: argon_primitives::domain::Semver
|
|
779
789
|
**/
|
|
780
790
|
ArgonPrimitivesDomainSemver: {
|
|
781
791
|
major: 'u32',
|
|
@@ -783,21 +793,21 @@ exports.default = {
|
|
|
783
793
|
patch: 'u32'
|
|
784
794
|
},
|
|
785
795
|
/**
|
|
786
|
-
*
|
|
796
|
+
* Lookup85: argon_primitives::domain::VersionHost
|
|
787
797
|
**/
|
|
788
798
|
ArgonPrimitivesDomainVersionHost: {
|
|
789
799
|
datastoreId: 'Bytes',
|
|
790
800
|
host: 'Bytes'
|
|
791
801
|
},
|
|
792
802
|
/**
|
|
793
|
-
*
|
|
803
|
+
* Lookup89: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
|
|
794
804
|
**/
|
|
795
805
|
PalletDomainsDomainRegistration: {
|
|
796
806
|
accountId: 'AccountId32',
|
|
797
|
-
registeredAtTick: '
|
|
807
|
+
registeredAtTick: 'u64'
|
|
798
808
|
},
|
|
799
809
|
/**
|
|
800
|
-
*
|
|
810
|
+
* Lookup90: pallet_price_index::pallet::Event<T>
|
|
801
811
|
**/
|
|
802
812
|
PalletPriceIndexEvent: {
|
|
803
813
|
_enum: {
|
|
@@ -808,7 +818,19 @@ exports.default = {
|
|
|
808
818
|
}
|
|
809
819
|
},
|
|
810
820
|
/**
|
|
811
|
-
*
|
|
821
|
+
* Lookup91: pallet_grandpa::pallet::Event
|
|
822
|
+
**/
|
|
823
|
+
PalletGrandpaEvent: {
|
|
824
|
+
_enum: {
|
|
825
|
+
NewAuthorities: {
|
|
826
|
+
authoritySet: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
|
|
827
|
+
},
|
|
828
|
+
Paused: 'Null',
|
|
829
|
+
Resumed: 'Null'
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
/**
|
|
833
|
+
* Lookup94: pallet_block_rewards::pallet::Event<T>
|
|
812
834
|
**/
|
|
813
835
|
PalletBlockRewardsEvent: {
|
|
814
836
|
_enum: {
|
|
@@ -834,7 +856,7 @@ exports.default = {
|
|
|
834
856
|
}
|
|
835
857
|
},
|
|
836
858
|
/**
|
|
837
|
-
*
|
|
859
|
+
* Lookup96: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
|
|
838
860
|
**/
|
|
839
861
|
ArgonPrimitivesBlockSealBlockPayout: {
|
|
840
862
|
accountId: 'AccountId32',
|
|
@@ -842,19 +864,7 @@ exports.default = {
|
|
|
842
864
|
argons: 'Compact<u128>'
|
|
843
865
|
},
|
|
844
866
|
/**
|
|
845
|
-
*
|
|
846
|
-
**/
|
|
847
|
-
PalletGrandpaEvent: {
|
|
848
|
-
_enum: {
|
|
849
|
-
NewAuthorities: {
|
|
850
|
-
authoritySet: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
|
|
851
|
-
},
|
|
852
|
-
Paused: 'Null',
|
|
853
|
-
Resumed: 'Null'
|
|
854
|
-
}
|
|
855
|
-
},
|
|
856
|
-
/**
|
|
857
|
-
* Lookup97: pallet_mint::pallet::Event<T>
|
|
867
|
+
* Lookup98: pallet_mint::pallet::Event<T>
|
|
858
868
|
**/
|
|
859
869
|
PalletMintEvent: {
|
|
860
870
|
_enum: {
|
|
@@ -874,13 +884,13 @@ exports.default = {
|
|
|
874
884
|
}
|
|
875
885
|
},
|
|
876
886
|
/**
|
|
877
|
-
*
|
|
887
|
+
* Lookup99: pallet_mint::pallet::MintType
|
|
878
888
|
**/
|
|
879
889
|
PalletMintMintType: {
|
|
880
890
|
_enum: ['Bitcoin', 'Mining']
|
|
881
891
|
},
|
|
882
892
|
/**
|
|
883
|
-
*
|
|
893
|
+
* Lookup100: pallet_balances::pallet::Event<T, I>
|
|
884
894
|
**/
|
|
885
895
|
PalletBalancesEvent: {
|
|
886
896
|
_enum: {
|
|
@@ -978,13 +988,13 @@ exports.default = {
|
|
|
978
988
|
}
|
|
979
989
|
},
|
|
980
990
|
/**
|
|
981
|
-
*
|
|
991
|
+
* Lookup101: frame_support::traits::tokens::misc::BalanceStatus
|
|
982
992
|
**/
|
|
983
993
|
FrameSupportTokensMiscBalanceStatus: {
|
|
984
994
|
_enum: ['Free', 'Reserved']
|
|
985
995
|
},
|
|
986
996
|
/**
|
|
987
|
-
*
|
|
997
|
+
* Lookup103: pallet_tx_pause::pallet::Event<T>
|
|
988
998
|
**/
|
|
989
999
|
PalletTxPauseEvent: {
|
|
990
1000
|
_enum: {
|
|
@@ -997,7 +1007,7 @@ exports.default = {
|
|
|
997
1007
|
}
|
|
998
1008
|
},
|
|
999
1009
|
/**
|
|
1000
|
-
*
|
|
1010
|
+
* Lookup106: pallet_transaction_payment::pallet::Event<T>
|
|
1001
1011
|
**/
|
|
1002
1012
|
PalletTransactionPaymentEvent: {
|
|
1003
1013
|
_enum: {
|
|
@@ -1009,7 +1019,7 @@ exports.default = {
|
|
|
1009
1019
|
}
|
|
1010
1020
|
},
|
|
1011
1021
|
/**
|
|
1012
|
-
*
|
|
1022
|
+
* Lookup107: pallet_utility::pallet::Event
|
|
1013
1023
|
**/
|
|
1014
1024
|
PalletUtilityEvent: {
|
|
1015
1025
|
_enum: {
|
|
@@ -1029,7 +1039,7 @@ exports.default = {
|
|
|
1029
1039
|
}
|
|
1030
1040
|
},
|
|
1031
1041
|
/**
|
|
1032
|
-
*
|
|
1042
|
+
* Lookup108: pallet_sudo::pallet::Event<T>
|
|
1033
1043
|
**/
|
|
1034
1044
|
PalletSudoEvent: {
|
|
1035
1045
|
_enum: {
|
|
@@ -1050,7 +1060,175 @@ exports.default = {
|
|
|
1050
1060
|
}
|
|
1051
1061
|
},
|
|
1052
1062
|
/**
|
|
1053
|
-
*
|
|
1063
|
+
* Lookup110: pallet_ismp::pallet::Event<T>
|
|
1064
|
+
**/
|
|
1065
|
+
PalletIsmpEvent: {
|
|
1066
|
+
_enum: {
|
|
1067
|
+
StateMachineUpdated: {
|
|
1068
|
+
stateMachineId: 'IsmpConsensusStateMachineId',
|
|
1069
|
+
latestHeight: 'u64',
|
|
1070
|
+
},
|
|
1071
|
+
StateCommitmentVetoed: {
|
|
1072
|
+
height: 'IsmpConsensusStateMachineHeight',
|
|
1073
|
+
fisherman: 'Bytes',
|
|
1074
|
+
},
|
|
1075
|
+
ConsensusClientCreated: {
|
|
1076
|
+
consensusClientId: '[u8;4]',
|
|
1077
|
+
},
|
|
1078
|
+
ConsensusClientFrozen: {
|
|
1079
|
+
consensusClientId: '[u8;4]',
|
|
1080
|
+
},
|
|
1081
|
+
Response: {
|
|
1082
|
+
destChain: 'IsmpHostStateMachine',
|
|
1083
|
+
sourceChain: 'IsmpHostStateMachine',
|
|
1084
|
+
requestNonce: 'u64',
|
|
1085
|
+
commitment: 'H256',
|
|
1086
|
+
reqCommitment: 'H256',
|
|
1087
|
+
},
|
|
1088
|
+
Request: {
|
|
1089
|
+
destChain: 'IsmpHostStateMachine',
|
|
1090
|
+
sourceChain: 'IsmpHostStateMachine',
|
|
1091
|
+
requestNonce: 'u64',
|
|
1092
|
+
commitment: 'H256',
|
|
1093
|
+
},
|
|
1094
|
+
Errors: {
|
|
1095
|
+
errors: 'Vec<PalletIsmpErrorsHandlingError>',
|
|
1096
|
+
},
|
|
1097
|
+
PostRequestHandled: 'IsmpEventsRequestResponseHandled',
|
|
1098
|
+
PostResponseHandled: 'IsmpEventsRequestResponseHandled',
|
|
1099
|
+
GetRequestHandled: 'IsmpEventsRequestResponseHandled',
|
|
1100
|
+
PostRequestTimeoutHandled: 'IsmpEventsTimeoutHandled',
|
|
1101
|
+
PostResponseTimeoutHandled: 'IsmpEventsTimeoutHandled',
|
|
1102
|
+
GetRequestTimeoutHandled: 'IsmpEventsTimeoutHandled'
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
/**
|
|
1106
|
+
* Lookup111: ismp::consensus::StateMachineId
|
|
1107
|
+
**/
|
|
1108
|
+
IsmpConsensusStateMachineId: {
|
|
1109
|
+
stateId: 'IsmpHostStateMachine',
|
|
1110
|
+
consensusStateId: '[u8;4]'
|
|
1111
|
+
},
|
|
1112
|
+
/**
|
|
1113
|
+
* Lookup112: ismp::host::StateMachine
|
|
1114
|
+
**/
|
|
1115
|
+
IsmpHostStateMachine: {
|
|
1116
|
+
_enum: {
|
|
1117
|
+
Evm: 'u32',
|
|
1118
|
+
Polkadot: 'u32',
|
|
1119
|
+
Kusama: 'u32',
|
|
1120
|
+
Substrate: '[u8;4]',
|
|
1121
|
+
Tendermint: '[u8;4]'
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
/**
|
|
1125
|
+
* Lookup113: ismp::consensus::StateMachineHeight
|
|
1126
|
+
**/
|
|
1127
|
+
IsmpConsensusStateMachineHeight: {
|
|
1128
|
+
id: 'IsmpConsensusStateMachineId',
|
|
1129
|
+
height: 'u64'
|
|
1130
|
+
},
|
|
1131
|
+
/**
|
|
1132
|
+
* Lookup116: pallet_ismp::errors::HandlingError
|
|
1133
|
+
**/
|
|
1134
|
+
PalletIsmpErrorsHandlingError: {
|
|
1135
|
+
message: 'Bytes'
|
|
1136
|
+
},
|
|
1137
|
+
/**
|
|
1138
|
+
* Lookup118: ismp::events::RequestResponseHandled
|
|
1139
|
+
**/
|
|
1140
|
+
IsmpEventsRequestResponseHandled: {
|
|
1141
|
+
commitment: 'H256',
|
|
1142
|
+
relayer: 'Bytes'
|
|
1143
|
+
},
|
|
1144
|
+
/**
|
|
1145
|
+
* Lookup119: ismp::events::TimeoutHandled
|
|
1146
|
+
**/
|
|
1147
|
+
IsmpEventsTimeoutHandled: {
|
|
1148
|
+
commitment: 'H256',
|
|
1149
|
+
source: 'IsmpHostStateMachine',
|
|
1150
|
+
dest: 'IsmpHostStateMachine'
|
|
1151
|
+
},
|
|
1152
|
+
/**
|
|
1153
|
+
* Lookup120: ismp_grandpa::pallet::Event<T>
|
|
1154
|
+
**/
|
|
1155
|
+
IsmpGrandpaEvent: {
|
|
1156
|
+
_enum: {
|
|
1157
|
+
StateMachineAdded: {
|
|
1158
|
+
stateMachines: 'Vec<IsmpHostStateMachine>',
|
|
1159
|
+
},
|
|
1160
|
+
StateMachineRemoved: {
|
|
1161
|
+
stateMachines: 'Vec<IsmpHostStateMachine>'
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
/**
|
|
1166
|
+
* Lookup122: pallet_hyperbridge::pallet::Event<T>
|
|
1167
|
+
**/
|
|
1168
|
+
PalletHyperbridgeEvent: {
|
|
1169
|
+
_enum: {
|
|
1170
|
+
HostParamsUpdated: {
|
|
1171
|
+
_alias: {
|
|
1172
|
+
new_: 'new',
|
|
1173
|
+
},
|
|
1174
|
+
old: 'PalletHyperbridgeVersionedHostParams',
|
|
1175
|
+
new_: 'PalletHyperbridgeVersionedHostParams',
|
|
1176
|
+
},
|
|
1177
|
+
RelayerFeeWithdrawn: {
|
|
1178
|
+
amount: 'u128',
|
|
1179
|
+
account: 'AccountId32',
|
|
1180
|
+
},
|
|
1181
|
+
ProtocolRevenueWithdrawn: {
|
|
1182
|
+
amount: 'u128',
|
|
1183
|
+
account: 'AccountId32'
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
/**
|
|
1188
|
+
* Lookup123: pallet_hyperbridge::VersionedHostParams<Balance>
|
|
1189
|
+
**/
|
|
1190
|
+
PalletHyperbridgeVersionedHostParams: {
|
|
1191
|
+
_enum: {
|
|
1192
|
+
V1: 'PalletHyperbridgeSubstrateHostParams'
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
/**
|
|
1196
|
+
* Lookup124: pallet_hyperbridge::SubstrateHostParams<B>
|
|
1197
|
+
**/
|
|
1198
|
+
PalletHyperbridgeSubstrateHostParams: {
|
|
1199
|
+
defaultPerByteFee: 'u128',
|
|
1200
|
+
perByteFees: 'BTreeMap<IsmpHostStateMachine, u128>',
|
|
1201
|
+
assetRegistrationFee: 'u128'
|
|
1202
|
+
},
|
|
1203
|
+
/**
|
|
1204
|
+
* Lookup128: pallet_token_gateway::pallet::Event<T>
|
|
1205
|
+
**/
|
|
1206
|
+
PalletTokenGatewayEvent: {
|
|
1207
|
+
_enum: {
|
|
1208
|
+
AssetTeleported: {
|
|
1209
|
+
from: 'AccountId32',
|
|
1210
|
+
to: 'H256',
|
|
1211
|
+
amount: 'u128',
|
|
1212
|
+
dest: 'IsmpHostStateMachine',
|
|
1213
|
+
commitment: 'H256',
|
|
1214
|
+
},
|
|
1215
|
+
AssetReceived: {
|
|
1216
|
+
beneficiary: 'AccountId32',
|
|
1217
|
+
amount: 'u128',
|
|
1218
|
+
source: 'IsmpHostStateMachine',
|
|
1219
|
+
},
|
|
1220
|
+
AssetRefunded: {
|
|
1221
|
+
beneficiary: 'AccountId32',
|
|
1222
|
+
amount: 'u128',
|
|
1223
|
+
source: 'IsmpHostStateMachine',
|
|
1224
|
+
},
|
|
1225
|
+
ERC6160AssetRegistrationDispatched: {
|
|
1226
|
+
commitment: 'H256'
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
/**
|
|
1231
|
+
* Lookup129: frame_system::Phase
|
|
1054
1232
|
**/
|
|
1055
1233
|
FrameSystemPhase: {
|
|
1056
1234
|
_enum: {
|
|
@@ -1060,21 +1238,21 @@ exports.default = {
|
|
|
1060
1238
|
}
|
|
1061
1239
|
},
|
|
1062
1240
|
/**
|
|
1063
|
-
*
|
|
1241
|
+
* Lookup133: frame_system::LastRuntimeUpgradeInfo
|
|
1064
1242
|
**/
|
|
1065
1243
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1066
1244
|
specVersion: 'Compact<u32>',
|
|
1067
1245
|
specName: 'Text'
|
|
1068
1246
|
},
|
|
1069
1247
|
/**
|
|
1070
|
-
*
|
|
1248
|
+
* Lookup134: frame_system::CodeUpgradeAuthorization<T>
|
|
1071
1249
|
**/
|
|
1072
1250
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1073
1251
|
codeHash: 'H256',
|
|
1074
1252
|
checkVersion: 'bool'
|
|
1075
1253
|
},
|
|
1076
1254
|
/**
|
|
1077
|
-
*
|
|
1255
|
+
* Lookup135: frame_system::pallet::Call<T>
|
|
1078
1256
|
**/
|
|
1079
1257
|
FrameSystemCall: {
|
|
1080
1258
|
_enum: {
|
|
@@ -1119,7 +1297,7 @@ exports.default = {
|
|
|
1119
1297
|
}
|
|
1120
1298
|
},
|
|
1121
1299
|
/**
|
|
1122
|
-
*
|
|
1300
|
+
* Lookup139: frame_system::limits::BlockWeights
|
|
1123
1301
|
**/
|
|
1124
1302
|
FrameSystemLimitsBlockWeights: {
|
|
1125
1303
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
@@ -1127,7 +1305,7 @@ exports.default = {
|
|
|
1127
1305
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
|
1128
1306
|
},
|
|
1129
1307
|
/**
|
|
1130
|
-
*
|
|
1308
|
+
* Lookup140: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1131
1309
|
**/
|
|
1132
1310
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1133
1311
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
@@ -1135,7 +1313,7 @@ exports.default = {
|
|
|
1135
1313
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
|
1136
1314
|
},
|
|
1137
1315
|
/**
|
|
1138
|
-
*
|
|
1316
|
+
* Lookup141: frame_system::limits::WeightsPerClass
|
|
1139
1317
|
**/
|
|
1140
1318
|
FrameSystemLimitsWeightsPerClass: {
|
|
1141
1319
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -1144,13 +1322,13 @@ exports.default = {
|
|
|
1144
1322
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
|
1145
1323
|
},
|
|
1146
1324
|
/**
|
|
1147
|
-
*
|
|
1325
|
+
* Lookup143: frame_system::limits::BlockLength
|
|
1148
1326
|
**/
|
|
1149
1327
|
FrameSystemLimitsBlockLength: {
|
|
1150
1328
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
|
1151
1329
|
},
|
|
1152
1330
|
/**
|
|
1153
|
-
*
|
|
1331
|
+
* Lookup144: frame_support::dispatch::PerDispatchClass<T>
|
|
1154
1332
|
**/
|
|
1155
1333
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1156
1334
|
normal: 'u32',
|
|
@@ -1158,14 +1336,14 @@ exports.default = {
|
|
|
1158
1336
|
mandatory: 'u32'
|
|
1159
1337
|
},
|
|
1160
1338
|
/**
|
|
1161
|
-
*
|
|
1339
|
+
* Lookup145: sp_weights::RuntimeDbWeight
|
|
1162
1340
|
**/
|
|
1163
1341
|
SpWeightsRuntimeDbWeight: {
|
|
1164
1342
|
read: 'u64',
|
|
1165
1343
|
write: 'u64'
|
|
1166
1344
|
},
|
|
1167
1345
|
/**
|
|
1168
|
-
*
|
|
1346
|
+
* Lookup146: sp_version::RuntimeVersion
|
|
1169
1347
|
**/
|
|
1170
1348
|
SpVersionRuntimeVersion: {
|
|
1171
1349
|
specName: 'Text',
|
|
@@ -1178,13 +1356,69 @@ exports.default = {
|
|
|
1178
1356
|
stateVersion: 'u8'
|
|
1179
1357
|
},
|
|
1180
1358
|
/**
|
|
1181
|
-
*
|
|
1359
|
+
* Lookup151: frame_system::pallet::Error<T>
|
|
1182
1360
|
**/
|
|
1183
1361
|
FrameSystemError: {
|
|
1184
1362
|
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'MultiBlockMigrationsOngoing', 'NothingAuthorized', 'Unauthorized']
|
|
1185
1363
|
},
|
|
1186
1364
|
/**
|
|
1187
|
-
*
|
|
1365
|
+
* Lookup152: argon_primitives::digests::Digestset<argon_notary_audit::error::VerifyError, sp_core::crypto::AccountId32>
|
|
1366
|
+
**/
|
|
1367
|
+
ArgonPrimitivesDigestsDigestset: {
|
|
1368
|
+
author: 'AccountId32',
|
|
1369
|
+
blockVote: 'ArgonPrimitivesDigestsBlockVoteDigest',
|
|
1370
|
+
votingKey: 'Option<ArgonPrimitivesDigestsParentVotingKeyDigest>',
|
|
1371
|
+
forkPower: 'Option<ArgonPrimitivesForkPower>',
|
|
1372
|
+
tick: 'u64',
|
|
1373
|
+
notebooks: 'ArgonPrimitivesDigestsNotebookDigest'
|
|
1374
|
+
},
|
|
1375
|
+
/**
|
|
1376
|
+
* Lookup153: argon_primitives::digests::BlockVoteDigest
|
|
1377
|
+
**/
|
|
1378
|
+
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
1379
|
+
votingPower: 'Compact<u128>',
|
|
1380
|
+
votesCount: 'Compact<u32>'
|
|
1381
|
+
},
|
|
1382
|
+
/**
|
|
1383
|
+
* Lookup155: argon_primitives::digests::ParentVotingKeyDigest
|
|
1384
|
+
**/
|
|
1385
|
+
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
1386
|
+
parentVotingKey: 'Option<H256>'
|
|
1387
|
+
},
|
|
1388
|
+
/**
|
|
1389
|
+
* Lookup158: argon_primitives::fork_power::ForkPower
|
|
1390
|
+
**/
|
|
1391
|
+
ArgonPrimitivesForkPower: {
|
|
1392
|
+
isLatestVote: 'bool',
|
|
1393
|
+
notebooks: 'Compact<u64>',
|
|
1394
|
+
votingPower: 'U256',
|
|
1395
|
+
sealStrength: 'U256',
|
|
1396
|
+
totalComputeDifficulty: 'U256',
|
|
1397
|
+
voteCreatedBlocks: 'Compact<u128>'
|
|
1398
|
+
},
|
|
1399
|
+
/**
|
|
1400
|
+
* Lookup162: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
1401
|
+
**/
|
|
1402
|
+
ArgonPrimitivesDigestsNotebookDigest: {
|
|
1403
|
+
notebooks: 'Vec<ArgonPrimitivesNotebookNotebookAuditResult>'
|
|
1404
|
+
},
|
|
1405
|
+
/**
|
|
1406
|
+
* Lookup164: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
|
|
1407
|
+
**/
|
|
1408
|
+
ArgonPrimitivesNotebookNotebookAuditResult: {
|
|
1409
|
+
notaryId: 'Compact<u32>',
|
|
1410
|
+
notebookNumber: 'Compact<u32>',
|
|
1411
|
+
tick: 'Compact<u64>',
|
|
1412
|
+
auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>'
|
|
1413
|
+
},
|
|
1414
|
+
/**
|
|
1415
|
+
* Lookup166: pallet_digests::pallet::Error<T>
|
|
1416
|
+
**/
|
|
1417
|
+
PalletDigestsError: {
|
|
1418
|
+
_enum: ['DuplicateBlockVoteDigest', 'DuplicateAuthorDigest', 'DuplicateTickDigest', 'DuplicateParentVotingKeyDigest', 'DuplicateNotebookDigest', 'DuplicateForkPowerDigest', 'MissingBlockVoteDigest', 'MissingAuthorDigest', 'MissingTickDigest', 'MissingParentVotingKeyDigest', 'MissingNotebookDigest', 'CouldNotDecodeDigest']
|
|
1419
|
+
},
|
|
1420
|
+
/**
|
|
1421
|
+
* Lookup167: pallet_timestamp::pallet::Call<T>
|
|
1188
1422
|
**/
|
|
1189
1423
|
PalletTimestampCall: {
|
|
1190
1424
|
_enum: {
|
|
@@ -1194,7 +1428,7 @@ exports.default = {
|
|
|
1194
1428
|
}
|
|
1195
1429
|
},
|
|
1196
1430
|
/**
|
|
1197
|
-
*
|
|
1431
|
+
* Lookup169: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
1198
1432
|
**/
|
|
1199
1433
|
PalletMultisigMultisig: {
|
|
1200
1434
|
when: 'PalletMultisigTimepoint',
|
|
@@ -1203,7 +1437,7 @@ exports.default = {
|
|
|
1203
1437
|
approvals: 'Vec<AccountId32>'
|
|
1204
1438
|
},
|
|
1205
1439
|
/**
|
|
1206
|
-
*
|
|
1440
|
+
* Lookup172: pallet_multisig::pallet::Call<T>
|
|
1207
1441
|
**/
|
|
1208
1442
|
PalletMultisigCall: {
|
|
1209
1443
|
_enum: {
|
|
@@ -1234,34 +1468,34 @@ exports.default = {
|
|
|
1234
1468
|
}
|
|
1235
1469
|
},
|
|
1236
1470
|
/**
|
|
1237
|
-
*
|
|
1471
|
+
* Lookup174: pallet_proxy::pallet::Call<T>
|
|
1238
1472
|
**/
|
|
1239
1473
|
PalletProxyCall: {
|
|
1240
1474
|
_enum: {
|
|
1241
1475
|
proxy: {
|
|
1242
1476
|
real: 'MultiAddress',
|
|
1243
|
-
forceProxyType: 'Option<
|
|
1477
|
+
forceProxyType: 'Option<ArgonRuntimeConfigsProxyType>',
|
|
1244
1478
|
call: 'Call',
|
|
1245
1479
|
},
|
|
1246
1480
|
add_proxy: {
|
|
1247
1481
|
delegate: 'MultiAddress',
|
|
1248
|
-
proxyType: '
|
|
1482
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
1249
1483
|
delay: 'u32',
|
|
1250
1484
|
},
|
|
1251
1485
|
remove_proxy: {
|
|
1252
1486
|
delegate: 'MultiAddress',
|
|
1253
|
-
proxyType: '
|
|
1487
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
1254
1488
|
delay: 'u32',
|
|
1255
1489
|
},
|
|
1256
1490
|
remove_proxies: 'Null',
|
|
1257
1491
|
create_pure: {
|
|
1258
|
-
proxyType: '
|
|
1492
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
1259
1493
|
delay: 'u32',
|
|
1260
1494
|
index: 'u16',
|
|
1261
1495
|
},
|
|
1262
1496
|
kill_pure: {
|
|
1263
1497
|
spawner: 'MultiAddress',
|
|
1264
|
-
proxyType: '
|
|
1498
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
1265
1499
|
index: 'u16',
|
|
1266
1500
|
height: 'Compact<u32>',
|
|
1267
1501
|
extIndex: 'Compact<u32>',
|
|
@@ -1281,17 +1515,17 @@ exports.default = {
|
|
|
1281
1515
|
proxy_announced: {
|
|
1282
1516
|
delegate: 'MultiAddress',
|
|
1283
1517
|
real: 'MultiAddress',
|
|
1284
|
-
forceProxyType: 'Option<
|
|
1518
|
+
forceProxyType: 'Option<ArgonRuntimeConfigsProxyType>',
|
|
1285
1519
|
call: 'Call'
|
|
1286
1520
|
}
|
|
1287
1521
|
}
|
|
1288
1522
|
},
|
|
1289
1523
|
/**
|
|
1290
|
-
*
|
|
1524
|
+
* Lookup179: pallet_ticks::pallet::Call<T>
|
|
1291
1525
|
**/
|
|
1292
1526
|
PalletTicksCall: 'Null',
|
|
1293
1527
|
/**
|
|
1294
|
-
*
|
|
1528
|
+
* Lookup180: pallet_mining_slot::pallet::Call<T>
|
|
1295
1529
|
**/
|
|
1296
1530
|
PalletMiningSlotCall: {
|
|
1297
1531
|
_enum: {
|
|
@@ -1301,19 +1535,19 @@ exports.default = {
|
|
|
1301
1535
|
},
|
|
1302
1536
|
bondInfo: 'Option<PalletMiningSlotMiningSlotBid>',
|
|
1303
1537
|
rewardDestination: 'ArgonPrimitivesBlockSealRewardDestination',
|
|
1304
|
-
keys_: '
|
|
1538
|
+
keys_: 'ArgonRuntimeSessionKeys'
|
|
1305
1539
|
}
|
|
1306
1540
|
}
|
|
1307
1541
|
},
|
|
1308
1542
|
/**
|
|
1309
|
-
*
|
|
1543
|
+
* Lookup182: pallet_mining_slot::MiningSlotBid<VaultId, Balance>
|
|
1310
1544
|
**/
|
|
1311
1545
|
PalletMiningSlotMiningSlotBid: {
|
|
1312
1546
|
vaultId: 'u32',
|
|
1313
1547
|
amount: 'u128'
|
|
1314
1548
|
},
|
|
1315
1549
|
/**
|
|
1316
|
-
*
|
|
1550
|
+
* Lookup183: pallet_bitcoin_utxos::pallet::Call<T>
|
|
1317
1551
|
**/
|
|
1318
1552
|
PalletBitcoinUtxosCall: {
|
|
1319
1553
|
_enum: {
|
|
@@ -1330,7 +1564,7 @@ exports.default = {
|
|
|
1330
1564
|
}
|
|
1331
1565
|
},
|
|
1332
1566
|
/**
|
|
1333
|
-
*
|
|
1567
|
+
* Lookup184: argon_primitives::inherents::BitcoinUtxoSync
|
|
1334
1568
|
**/
|
|
1335
1569
|
ArgonPrimitivesInherentsBitcoinUtxoSync: {
|
|
1336
1570
|
spent: 'BTreeMap<u64, u64>',
|
|
@@ -1339,14 +1573,14 @@ exports.default = {
|
|
|
1339
1573
|
syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock'
|
|
1340
1574
|
},
|
|
1341
1575
|
/**
|
|
1342
|
-
*
|
|
1576
|
+
* Lookup194: argon_primitives::bitcoin::BitcoinBlock
|
|
1343
1577
|
**/
|
|
1344
1578
|
ArgonPrimitivesBitcoinBitcoinBlock: {
|
|
1345
1579
|
blockHeight: 'Compact<u64>',
|
|
1346
1580
|
blockHash: 'ArgonPrimitivesBitcoinH256Le'
|
|
1347
1581
|
},
|
|
1348
1582
|
/**
|
|
1349
|
-
*
|
|
1583
|
+
* Lookup195: pallet_vaults::pallet::Call<T>
|
|
1350
1584
|
**/
|
|
1351
1585
|
PalletVaultsCall: {
|
|
1352
1586
|
_enum: {
|
|
@@ -1373,7 +1607,7 @@ exports.default = {
|
|
|
1373
1607
|
}
|
|
1374
1608
|
},
|
|
1375
1609
|
/**
|
|
1376
|
-
*
|
|
1610
|
+
* Lookup196: pallet_vaults::pallet::VaultConfig<Balance>
|
|
1377
1611
|
**/
|
|
1378
1612
|
PalletVaultsVaultConfig: {
|
|
1379
1613
|
terms: 'ArgonPrimitivesBondVaultTerms',
|
|
@@ -1383,7 +1617,7 @@ exports.default = {
|
|
|
1383
1617
|
securitizationPercent: 'Compact<u128>'
|
|
1384
1618
|
},
|
|
1385
1619
|
/**
|
|
1386
|
-
*
|
|
1620
|
+
* Lookup197: argon_primitives::bond::VaultTerms<Balance>
|
|
1387
1621
|
**/
|
|
1388
1622
|
ArgonPrimitivesBondVaultTerms: {
|
|
1389
1623
|
bitcoinAnnualPercentRate: 'Compact<u128>',
|
|
@@ -1393,11 +1627,11 @@ exports.default = {
|
|
|
1393
1627
|
miningRewardSharingPercentTake: 'Compact<u128>'
|
|
1394
1628
|
},
|
|
1395
1629
|
/**
|
|
1396
|
-
*
|
|
1630
|
+
* Lookup198: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
1397
1631
|
**/
|
|
1398
1632
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
|
|
1399
1633
|
/**
|
|
1400
|
-
*
|
|
1634
|
+
* Lookup200: pallet_bond::pallet::Call<T>
|
|
1401
1635
|
**/
|
|
1402
1636
|
PalletBondCall: {
|
|
1403
1637
|
_enum: {
|
|
@@ -1421,11 +1655,11 @@ exports.default = {
|
|
|
1421
1655
|
}
|
|
1422
1656
|
},
|
|
1423
1657
|
/**
|
|
1424
|
-
*
|
|
1658
|
+
* Lookup201: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
1425
1659
|
**/
|
|
1426
1660
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
|
|
1427
1661
|
/**
|
|
1428
|
-
*
|
|
1662
|
+
* Lookup205: pallet_notaries::pallet::Call<T>
|
|
1429
1663
|
**/
|
|
1430
1664
|
PalletNotariesCall: {
|
|
1431
1665
|
_enum: {
|
|
@@ -1438,12 +1672,12 @@ exports.default = {
|
|
|
1438
1672
|
update: {
|
|
1439
1673
|
notaryId: 'Compact<u32>',
|
|
1440
1674
|
meta: 'ArgonPrimitivesNotaryNotaryMeta',
|
|
1441
|
-
effectiveTick: 'Compact<
|
|
1675
|
+
effectiveTick: 'Compact<u64>'
|
|
1442
1676
|
}
|
|
1443
1677
|
}
|
|
1444
1678
|
},
|
|
1445
1679
|
/**
|
|
1446
|
-
*
|
|
1680
|
+
* Lookup206: pallet_notebook::pallet::Call<T>
|
|
1447
1681
|
**/
|
|
1448
1682
|
PalletNotebookCall: {
|
|
1449
1683
|
_enum: {
|
|
@@ -1456,19 +1690,19 @@ exports.default = {
|
|
|
1456
1690
|
}
|
|
1457
1691
|
},
|
|
1458
1692
|
/**
|
|
1459
|
-
*
|
|
1693
|
+
* Lookup208: argon_primitives::notebook::SignedNotebookHeader
|
|
1460
1694
|
**/
|
|
1461
1695
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
1462
1696
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
1463
1697
|
signature: '[u8;64]'
|
|
1464
1698
|
},
|
|
1465
1699
|
/**
|
|
1466
|
-
*
|
|
1700
|
+
* Lookup209: argon_primitives::notebook::NotebookHeader
|
|
1467
1701
|
**/
|
|
1468
1702
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
1469
1703
|
version: 'Compact<u16>',
|
|
1470
1704
|
notebookNumber: 'Compact<u32>',
|
|
1471
|
-
tick: 'Compact<
|
|
1705
|
+
tick: 'Compact<u64>',
|
|
1472
1706
|
tax: 'Compact<u128>',
|
|
1473
1707
|
notaryId: 'Compact<u32>',
|
|
1474
1708
|
chainTransfers: 'Vec<ArgonPrimitivesNotebookChainTransfer>',
|
|
@@ -1483,7 +1717,7 @@ exports.default = {
|
|
|
1483
1717
|
domains: 'Vec<(H256,AccountId32)>'
|
|
1484
1718
|
},
|
|
1485
1719
|
/**
|
|
1486
|
-
*
|
|
1720
|
+
* Lookup212: argon_primitives::notebook::ChainTransfer
|
|
1487
1721
|
**/
|
|
1488
1722
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
1489
1723
|
_enum: {
|
|
@@ -1497,14 +1731,14 @@ exports.default = {
|
|
|
1497
1731
|
}
|
|
1498
1732
|
},
|
|
1499
1733
|
/**
|
|
1500
|
-
*
|
|
1734
|
+
* Lookup215: argon_primitives::balance_change::AccountOrigin
|
|
1501
1735
|
**/
|
|
1502
1736
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
1503
1737
|
notebookNumber: 'Compact<u32>',
|
|
1504
1738
|
accountUid: 'Compact<u32>'
|
|
1505
1739
|
},
|
|
1506
1740
|
/**
|
|
1507
|
-
*
|
|
1741
|
+
* Lookup222: pallet_chain_transfer::pallet::Call<T>
|
|
1508
1742
|
**/
|
|
1509
1743
|
PalletChainTransferCall: {
|
|
1510
1744
|
_enum: {
|
|
@@ -1515,7 +1749,7 @@ exports.default = {
|
|
|
1515
1749
|
}
|
|
1516
1750
|
},
|
|
1517
1751
|
/**
|
|
1518
|
-
*
|
|
1752
|
+
* Lookup223: pallet_block_seal_spec::pallet::Call<T>
|
|
1519
1753
|
**/
|
|
1520
1754
|
PalletBlockSealSpecCall: {
|
|
1521
1755
|
_enum: {
|
|
@@ -1526,7 +1760,7 @@ exports.default = {
|
|
|
1526
1760
|
}
|
|
1527
1761
|
},
|
|
1528
1762
|
/**
|
|
1529
|
-
*
|
|
1763
|
+
* Lookup224: pallet_domains::pallet::Call<T>
|
|
1530
1764
|
**/
|
|
1531
1765
|
PalletDomainsCall: {
|
|
1532
1766
|
_enum: {
|
|
@@ -1537,7 +1771,7 @@ exports.default = {
|
|
|
1537
1771
|
}
|
|
1538
1772
|
},
|
|
1539
1773
|
/**
|
|
1540
|
-
*
|
|
1774
|
+
* Lookup225: pallet_price_index::pallet::Call<T>
|
|
1541
1775
|
**/
|
|
1542
1776
|
PalletPriceIndexCall: {
|
|
1543
1777
|
_enum: {
|
|
@@ -1550,80 +1784,16 @@ exports.default = {
|
|
|
1550
1784
|
}
|
|
1551
1785
|
},
|
|
1552
1786
|
/**
|
|
1553
|
-
*
|
|
1787
|
+
* Lookup226: pallet_price_index::PriceIndex
|
|
1554
1788
|
**/
|
|
1555
1789
|
PalletPriceIndexPriceIndex: {
|
|
1556
1790
|
btcUsdPrice: 'Compact<u128>',
|
|
1557
1791
|
argonUsdPrice: 'Compact<u128>',
|
|
1558
1792
|
argonUsdTargetPrice: 'u128',
|
|
1559
|
-
tick: 'Compact<
|
|
1560
|
-
},
|
|
1561
|
-
/**
|
|
1562
|
-
* Lookup193: pallet_block_seal::pallet::Call<T>
|
|
1563
|
-
**/
|
|
1564
|
-
PalletBlockSealCall: {
|
|
1565
|
-
_enum: {
|
|
1566
|
-
apply: {
|
|
1567
|
-
seal: 'ArgonPrimitivesInherentsBlockSealInherent'
|
|
1568
|
-
}
|
|
1569
|
-
}
|
|
1570
|
-
},
|
|
1571
|
-
/**
|
|
1572
|
-
* Lookup194: argon_primitives::inherents::BlockSealInherent
|
|
1573
|
-
**/
|
|
1574
|
-
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
1575
|
-
_enum: {
|
|
1576
|
-
Vote: {
|
|
1577
|
-
sealStrength: 'U256',
|
|
1578
|
-
notaryId: 'Compact<u32>',
|
|
1579
|
-
sourceNotebookNumber: 'Compact<u32>',
|
|
1580
|
-
sourceNotebookProof: 'ArgonPrimitivesBalanceChangeMerkleProof',
|
|
1581
|
-
blockVote: 'ArgonPrimitivesBlockVoteBlockVoteT',
|
|
1582
|
-
minerSignature: 'ArgonPrimitivesBlockSealAppSignature',
|
|
1583
|
-
},
|
|
1584
|
-
Compute: 'Null'
|
|
1585
|
-
}
|
|
1586
|
-
},
|
|
1587
|
-
/**
|
|
1588
|
-
* Lookup197: argon_primitives::balance_change::MerkleProof
|
|
1589
|
-
**/
|
|
1590
|
-
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
1591
|
-
proof: 'Vec<H256>',
|
|
1592
|
-
numberOfLeaves: 'Compact<u32>',
|
|
1593
|
-
leafIndex: 'Compact<u32>'
|
|
1793
|
+
tick: 'Compact<u64>'
|
|
1594
1794
|
},
|
|
1595
1795
|
/**
|
|
1596
|
-
*
|
|
1597
|
-
**/
|
|
1598
|
-
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
1599
|
-
accountId: 'AccountId32',
|
|
1600
|
-
blockHash: 'H256',
|
|
1601
|
-
index: 'Compact<u32>',
|
|
1602
|
-
power: 'Compact<u128>',
|
|
1603
|
-
signature: 'SpRuntimeMultiSignature',
|
|
1604
|
-
blockRewardsAccountId: 'AccountId32',
|
|
1605
|
-
tick: 'Compact<u32>'
|
|
1606
|
-
},
|
|
1607
|
-
/**
|
|
1608
|
-
* Lookup200: sp_runtime::MultiSignature
|
|
1609
|
-
**/
|
|
1610
|
-
SpRuntimeMultiSignature: {
|
|
1611
|
-
_enum: {
|
|
1612
|
-
Ed25519: '[u8;64]',
|
|
1613
|
-
Sr25519: '[u8;64]',
|
|
1614
|
-
Ecdsa: '[u8;65]'
|
|
1615
|
-
}
|
|
1616
|
-
},
|
|
1617
|
-
/**
|
|
1618
|
-
* Lookup202: argon_primitives::block_seal::app::Signature
|
|
1619
|
-
**/
|
|
1620
|
-
ArgonPrimitivesBlockSealAppSignature: '[u8;64]',
|
|
1621
|
-
/**
|
|
1622
|
-
* Lookup203: pallet_block_rewards::pallet::Call<T>
|
|
1623
|
-
**/
|
|
1624
|
-
PalletBlockRewardsCall: 'Null',
|
|
1625
|
-
/**
|
|
1626
|
-
* Lookup204: pallet_grandpa::pallet::Call<T>
|
|
1796
|
+
* Lookup227: pallet_grandpa::pallet::Call<T>
|
|
1627
1797
|
**/
|
|
1628
1798
|
PalletGrandpaCall: {
|
|
1629
1799
|
_enum: {
|
|
@@ -1642,14 +1812,14 @@ exports.default = {
|
|
|
1642
1812
|
}
|
|
1643
1813
|
},
|
|
1644
1814
|
/**
|
|
1645
|
-
*
|
|
1815
|
+
* Lookup228: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1646
1816
|
**/
|
|
1647
1817
|
SpConsensusGrandpaEquivocationProof: {
|
|
1648
1818
|
setId: 'u64',
|
|
1649
1819
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
|
1650
1820
|
},
|
|
1651
1821
|
/**
|
|
1652
|
-
*
|
|
1822
|
+
* Lookup229: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1653
1823
|
**/
|
|
1654
1824
|
SpConsensusGrandpaEquivocation: {
|
|
1655
1825
|
_enum: {
|
|
@@ -1658,7 +1828,7 @@ exports.default = {
|
|
|
1658
1828
|
}
|
|
1659
1829
|
},
|
|
1660
1830
|
/**
|
|
1661
|
-
*
|
|
1831
|
+
* Lookup230: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1662
1832
|
**/
|
|
1663
1833
|
FinalityGrandpaEquivocationPrevote: {
|
|
1664
1834
|
roundNumber: 'u64',
|
|
@@ -1667,18 +1837,18 @@ exports.default = {
|
|
|
1667
1837
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
|
1668
1838
|
},
|
|
1669
1839
|
/**
|
|
1670
|
-
*
|
|
1840
|
+
* Lookup231: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1671
1841
|
**/
|
|
1672
1842
|
FinalityGrandpaPrevote: {
|
|
1673
1843
|
targetHash: 'H256',
|
|
1674
1844
|
targetNumber: 'u32'
|
|
1675
1845
|
},
|
|
1676
1846
|
/**
|
|
1677
|
-
*
|
|
1847
|
+
* Lookup232: sp_consensus_grandpa::app::Signature
|
|
1678
1848
|
**/
|
|
1679
1849
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
1680
1850
|
/**
|
|
1681
|
-
*
|
|
1851
|
+
* Lookup234: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1682
1852
|
**/
|
|
1683
1853
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1684
1854
|
roundNumber: 'u64',
|
|
@@ -1687,22 +1857,81 @@ exports.default = {
|
|
|
1687
1857
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
|
1688
1858
|
},
|
|
1689
1859
|
/**
|
|
1690
|
-
*
|
|
1860
|
+
* Lookup235: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1691
1861
|
**/
|
|
1692
1862
|
FinalityGrandpaPrecommit: {
|
|
1693
1863
|
targetHash: 'H256',
|
|
1694
1864
|
targetNumber: 'u32'
|
|
1695
1865
|
},
|
|
1696
1866
|
/**
|
|
1697
|
-
*
|
|
1867
|
+
* Lookup237: sp_core::Void
|
|
1698
1868
|
**/
|
|
1699
1869
|
SpCoreVoid: 'Null',
|
|
1700
1870
|
/**
|
|
1701
|
-
*
|
|
1871
|
+
* Lookup238: pallet_block_seal::pallet::Call<T>
|
|
1872
|
+
**/
|
|
1873
|
+
PalletBlockSealCall: {
|
|
1874
|
+
_enum: {
|
|
1875
|
+
apply: {
|
|
1876
|
+
seal: 'ArgonPrimitivesInherentsBlockSealInherent'
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
/**
|
|
1881
|
+
* Lookup239: argon_primitives::inherents::BlockSealInherent
|
|
1882
|
+
**/
|
|
1883
|
+
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
1884
|
+
_enum: {
|
|
1885
|
+
Vote: {
|
|
1886
|
+
sealStrength: 'U256',
|
|
1887
|
+
notaryId: 'Compact<u32>',
|
|
1888
|
+
sourceNotebookNumber: 'Compact<u32>',
|
|
1889
|
+
sourceNotebookProof: 'ArgonPrimitivesBalanceChangeMerkleProof',
|
|
1890
|
+
blockVote: 'ArgonPrimitivesBlockVoteBlockVoteT',
|
|
1891
|
+
},
|
|
1892
|
+
Compute: 'Null'
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
/**
|
|
1896
|
+
* Lookup240: argon_primitives::balance_change::MerkleProof
|
|
1897
|
+
**/
|
|
1898
|
+
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
1899
|
+
proof: 'Vec<H256>',
|
|
1900
|
+
numberOfLeaves: 'Compact<u32>',
|
|
1901
|
+
leafIndex: 'Compact<u32>'
|
|
1902
|
+
},
|
|
1903
|
+
/**
|
|
1904
|
+
* Lookup242: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
1905
|
+
**/
|
|
1906
|
+
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
1907
|
+
accountId: 'AccountId32',
|
|
1908
|
+
blockHash: 'H256',
|
|
1909
|
+
index: 'Compact<u32>',
|
|
1910
|
+
power: 'Compact<u128>',
|
|
1911
|
+
signature: 'SpRuntimeMultiSignature',
|
|
1912
|
+
blockRewardsAccountId: 'AccountId32',
|
|
1913
|
+
tick: 'Compact<u64>'
|
|
1914
|
+
},
|
|
1915
|
+
/**
|
|
1916
|
+
* Lookup243: sp_runtime::MultiSignature
|
|
1917
|
+
**/
|
|
1918
|
+
SpRuntimeMultiSignature: {
|
|
1919
|
+
_enum: {
|
|
1920
|
+
Ed25519: '[u8;64]',
|
|
1921
|
+
Sr25519: '[u8;64]',
|
|
1922
|
+
Ecdsa: '[u8;65]'
|
|
1923
|
+
}
|
|
1924
|
+
},
|
|
1925
|
+
/**
|
|
1926
|
+
* Lookup245: pallet_block_rewards::pallet::Call<T>
|
|
1927
|
+
**/
|
|
1928
|
+
PalletBlockRewardsCall: 'Null',
|
|
1929
|
+
/**
|
|
1930
|
+
* Lookup246: pallet_mint::pallet::Call<T>
|
|
1702
1931
|
**/
|
|
1703
1932
|
PalletMintCall: 'Null',
|
|
1704
1933
|
/**
|
|
1705
|
-
*
|
|
1934
|
+
* Lookup247: pallet_balances::pallet::Call<T, I>
|
|
1706
1935
|
**/
|
|
1707
1936
|
PalletBalancesCall: {
|
|
1708
1937
|
_enum: {
|
|
@@ -1747,13 +1976,13 @@ exports.default = {
|
|
|
1747
1976
|
}
|
|
1748
1977
|
},
|
|
1749
1978
|
/**
|
|
1750
|
-
*
|
|
1979
|
+
* Lookup248: pallet_balances::types::AdjustmentDirection
|
|
1751
1980
|
**/
|
|
1752
1981
|
PalletBalancesAdjustmentDirection: {
|
|
1753
1982
|
_enum: ['Increase', 'Decrease']
|
|
1754
1983
|
},
|
|
1755
1984
|
/**
|
|
1756
|
-
*
|
|
1985
|
+
* Lookup250: pallet_tx_pause::pallet::Call<T>
|
|
1757
1986
|
**/
|
|
1758
1987
|
PalletTxPauseCall: {
|
|
1759
1988
|
_enum: {
|
|
@@ -1766,7 +1995,7 @@ exports.default = {
|
|
|
1766
1995
|
}
|
|
1767
1996
|
},
|
|
1768
1997
|
/**
|
|
1769
|
-
*
|
|
1998
|
+
* Lookup251: pallet_utility::pallet::Call<T>
|
|
1770
1999
|
**/
|
|
1771
2000
|
PalletUtilityCall: {
|
|
1772
2001
|
_enum: {
|
|
@@ -1781,7 +2010,7 @@ exports.default = {
|
|
|
1781
2010
|
calls: 'Vec<Call>',
|
|
1782
2011
|
},
|
|
1783
2012
|
dispatch_as: {
|
|
1784
|
-
asOrigin: '
|
|
2013
|
+
asOrigin: 'ArgonRuntimeOriginCaller',
|
|
1785
2014
|
call: 'Call',
|
|
1786
2015
|
},
|
|
1787
2016
|
force_batch: {
|
|
@@ -1794,16 +2023,16 @@ exports.default = {
|
|
|
1794
2023
|
}
|
|
1795
2024
|
},
|
|
1796
2025
|
/**
|
|
1797
|
-
*
|
|
2026
|
+
* Lookup253: argon_runtime::OriginCaller
|
|
1798
2027
|
**/
|
|
1799
|
-
|
|
2028
|
+
ArgonRuntimeOriginCaller: {
|
|
1800
2029
|
_enum: {
|
|
1801
2030
|
system: 'FrameSupportDispatchRawOrigin',
|
|
1802
2031
|
Void: 'SpCoreVoid'
|
|
1803
2032
|
}
|
|
1804
2033
|
},
|
|
1805
2034
|
/**
|
|
1806
|
-
*
|
|
2035
|
+
* Lookup254: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1807
2036
|
**/
|
|
1808
2037
|
FrameSupportDispatchRawOrigin: {
|
|
1809
2038
|
_enum: {
|
|
@@ -1813,7 +2042,7 @@ exports.default = {
|
|
|
1813
2042
|
}
|
|
1814
2043
|
},
|
|
1815
2044
|
/**
|
|
1816
|
-
*
|
|
2045
|
+
* Lookup255: pallet_sudo::pallet::Call<T>
|
|
1817
2046
|
**/
|
|
1818
2047
|
PalletSudoCall: {
|
|
1819
2048
|
_enum: {
|
|
@@ -1838,21 +2067,313 @@ exports.default = {
|
|
|
1838
2067
|
}
|
|
1839
2068
|
},
|
|
1840
2069
|
/**
|
|
1841
|
-
*
|
|
2070
|
+
* Lookup256: pallet_ismp::pallet::Call<T>
|
|
2071
|
+
**/
|
|
2072
|
+
PalletIsmpCall: {
|
|
2073
|
+
_enum: {
|
|
2074
|
+
handle_unsigned: {
|
|
2075
|
+
messages: 'Vec<IsmpMessagingMessage>',
|
|
2076
|
+
},
|
|
2077
|
+
__Unused1: 'Null',
|
|
2078
|
+
create_consensus_client: {
|
|
2079
|
+
message: 'IsmpMessagingCreateConsensusState',
|
|
2080
|
+
},
|
|
2081
|
+
update_consensus_state: {
|
|
2082
|
+
message: 'PalletIsmpUtilsUpdateConsensusState',
|
|
2083
|
+
},
|
|
2084
|
+
fund_message: {
|
|
2085
|
+
message: 'PalletIsmpUtilsFundMessageParams'
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
/**
|
|
2090
|
+
* Lookup258: ismp::messaging::Message
|
|
2091
|
+
**/
|
|
2092
|
+
IsmpMessagingMessage: {
|
|
2093
|
+
_enum: {
|
|
2094
|
+
Consensus: 'IsmpMessagingConsensusMessage',
|
|
2095
|
+
FraudProof: 'IsmpMessagingFraudProofMessage',
|
|
2096
|
+
Request: 'IsmpMessagingRequestMessage',
|
|
2097
|
+
Response: 'IsmpMessagingResponseMessage',
|
|
2098
|
+
Timeout: 'IsmpMessagingTimeoutMessage'
|
|
2099
|
+
}
|
|
2100
|
+
},
|
|
2101
|
+
/**
|
|
2102
|
+
* Lookup259: ismp::messaging::ConsensusMessage
|
|
2103
|
+
**/
|
|
2104
|
+
IsmpMessagingConsensusMessage: {
|
|
2105
|
+
consensusProof: 'Bytes',
|
|
2106
|
+
consensusStateId: '[u8;4]',
|
|
2107
|
+
signer: 'Bytes'
|
|
2108
|
+
},
|
|
2109
|
+
/**
|
|
2110
|
+
* Lookup260: ismp::messaging::FraudProofMessage
|
|
2111
|
+
**/
|
|
2112
|
+
IsmpMessagingFraudProofMessage: {
|
|
2113
|
+
proof1: 'Bytes',
|
|
2114
|
+
proof2: 'Bytes',
|
|
2115
|
+
consensusStateId: '[u8;4]'
|
|
2116
|
+
},
|
|
2117
|
+
/**
|
|
2118
|
+
* Lookup261: ismp::messaging::RequestMessage
|
|
2119
|
+
**/
|
|
2120
|
+
IsmpMessagingRequestMessage: {
|
|
2121
|
+
requests: 'Vec<IsmpRouterPostRequest>',
|
|
2122
|
+
proof: 'IsmpMessagingProof',
|
|
2123
|
+
signer: 'Bytes'
|
|
2124
|
+
},
|
|
2125
|
+
/**
|
|
2126
|
+
* Lookup263: ismp::router::PostRequest
|
|
2127
|
+
**/
|
|
2128
|
+
IsmpRouterPostRequest: {
|
|
2129
|
+
source: 'IsmpHostStateMachine',
|
|
2130
|
+
dest: 'IsmpHostStateMachine',
|
|
2131
|
+
nonce: 'u64',
|
|
2132
|
+
from: 'Bytes',
|
|
2133
|
+
to: 'Bytes',
|
|
2134
|
+
timeoutTimestamp: 'u64',
|
|
2135
|
+
body: 'Bytes'
|
|
2136
|
+
},
|
|
2137
|
+
/**
|
|
2138
|
+
* Lookup264: ismp::messaging::Proof
|
|
2139
|
+
**/
|
|
2140
|
+
IsmpMessagingProof: {
|
|
2141
|
+
height: 'IsmpConsensusStateMachineHeight',
|
|
2142
|
+
proof: 'Bytes'
|
|
2143
|
+
},
|
|
2144
|
+
/**
|
|
2145
|
+
* Lookup265: ismp::messaging::ResponseMessage
|
|
2146
|
+
**/
|
|
2147
|
+
IsmpMessagingResponseMessage: {
|
|
2148
|
+
datagram: 'IsmpRouterRequestResponse',
|
|
2149
|
+
proof: 'IsmpMessagingProof',
|
|
2150
|
+
signer: 'Bytes'
|
|
2151
|
+
},
|
|
2152
|
+
/**
|
|
2153
|
+
* Lookup266: ismp::router::RequestResponse
|
|
2154
|
+
**/
|
|
2155
|
+
IsmpRouterRequestResponse: {
|
|
2156
|
+
_enum: {
|
|
2157
|
+
Request: 'Vec<IsmpRouterRequest>',
|
|
2158
|
+
Response: 'Vec<IsmpRouterResponse>'
|
|
2159
|
+
}
|
|
2160
|
+
},
|
|
2161
|
+
/**
|
|
2162
|
+
* Lookup268: ismp::router::Request
|
|
2163
|
+
**/
|
|
2164
|
+
IsmpRouterRequest: {
|
|
2165
|
+
_enum: {
|
|
2166
|
+
Post: 'IsmpRouterPostRequest',
|
|
2167
|
+
Get: 'IsmpRouterGetRequest'
|
|
2168
|
+
}
|
|
2169
|
+
},
|
|
2170
|
+
/**
|
|
2171
|
+
* Lookup269: ismp::router::GetRequest
|
|
2172
|
+
**/
|
|
2173
|
+
IsmpRouterGetRequest: {
|
|
2174
|
+
_alias: {
|
|
2175
|
+
keys_: 'keys'
|
|
2176
|
+
},
|
|
2177
|
+
source: 'IsmpHostStateMachine',
|
|
2178
|
+
dest: 'IsmpHostStateMachine',
|
|
2179
|
+
nonce: 'u64',
|
|
2180
|
+
from: 'Bytes',
|
|
2181
|
+
keys_: 'Vec<Bytes>',
|
|
2182
|
+
height: 'u64',
|
|
2183
|
+
context: 'Bytes',
|
|
2184
|
+
timeoutTimestamp: 'u64'
|
|
2185
|
+
},
|
|
2186
|
+
/**
|
|
2187
|
+
* Lookup271: ismp::router::Response
|
|
2188
|
+
**/
|
|
2189
|
+
IsmpRouterResponse: {
|
|
2190
|
+
_enum: {
|
|
2191
|
+
Post: 'IsmpRouterPostResponse',
|
|
2192
|
+
Get: 'IsmpRouterGetResponse'
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
/**
|
|
2196
|
+
* Lookup272: ismp::router::PostResponse
|
|
2197
|
+
**/
|
|
2198
|
+
IsmpRouterPostResponse: {
|
|
2199
|
+
post: 'IsmpRouterPostRequest',
|
|
2200
|
+
response: 'Bytes',
|
|
2201
|
+
timeoutTimestamp: 'u64'
|
|
2202
|
+
},
|
|
2203
|
+
/**
|
|
2204
|
+
* Lookup273: ismp::router::GetResponse
|
|
2205
|
+
**/
|
|
2206
|
+
IsmpRouterGetResponse: {
|
|
2207
|
+
get: 'IsmpRouterGetRequest',
|
|
2208
|
+
values: 'Vec<IsmpRouterStorageValue>'
|
|
2209
|
+
},
|
|
2210
|
+
/**
|
|
2211
|
+
* Lookup275: ismp::router::StorageValue
|
|
2212
|
+
**/
|
|
2213
|
+
IsmpRouterStorageValue: {
|
|
2214
|
+
key: 'Bytes',
|
|
2215
|
+
value: 'Option<Bytes>'
|
|
2216
|
+
},
|
|
2217
|
+
/**
|
|
2218
|
+
* Lookup277: ismp::messaging::TimeoutMessage
|
|
2219
|
+
**/
|
|
2220
|
+
IsmpMessagingTimeoutMessage: {
|
|
2221
|
+
_enum: {
|
|
2222
|
+
Post: {
|
|
2223
|
+
requests: 'Vec<IsmpRouterRequest>',
|
|
2224
|
+
timeoutProof: 'IsmpMessagingProof',
|
|
2225
|
+
},
|
|
2226
|
+
PostResponse: {
|
|
2227
|
+
responses: 'Vec<IsmpRouterPostResponse>',
|
|
2228
|
+
timeoutProof: 'IsmpMessagingProof',
|
|
2229
|
+
},
|
|
2230
|
+
Get: {
|
|
2231
|
+
requests: 'Vec<IsmpRouterRequest>'
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
/**
|
|
2236
|
+
* Lookup279: ismp::messaging::CreateConsensusState
|
|
2237
|
+
**/
|
|
2238
|
+
IsmpMessagingCreateConsensusState: {
|
|
2239
|
+
consensusState: 'Bytes',
|
|
2240
|
+
consensusClientId: '[u8;4]',
|
|
2241
|
+
consensusStateId: '[u8;4]',
|
|
2242
|
+
unbondingPeriod: 'u64',
|
|
2243
|
+
challengePeriods: 'BTreeMap<IsmpHostStateMachine, u64>',
|
|
2244
|
+
stateMachineCommitments: 'Vec<(IsmpConsensusStateMachineId,IsmpMessagingStateCommitmentHeight)>'
|
|
2245
|
+
},
|
|
2246
|
+
/**
|
|
2247
|
+
* Lookup285: ismp::messaging::StateCommitmentHeight
|
|
2248
|
+
**/
|
|
2249
|
+
IsmpMessagingStateCommitmentHeight: {
|
|
2250
|
+
commitment: 'IsmpConsensusStateCommitment',
|
|
2251
|
+
height: 'u64'
|
|
2252
|
+
},
|
|
2253
|
+
/**
|
|
2254
|
+
* Lookup286: ismp::consensus::StateCommitment
|
|
2255
|
+
**/
|
|
2256
|
+
IsmpConsensusStateCommitment: {
|
|
2257
|
+
timestamp: 'u64',
|
|
2258
|
+
overlayRoot: 'Option<H256>',
|
|
2259
|
+
stateRoot: 'H256'
|
|
2260
|
+
},
|
|
2261
|
+
/**
|
|
2262
|
+
* Lookup287: pallet_ismp::utils::UpdateConsensusState
|
|
2263
|
+
**/
|
|
2264
|
+
PalletIsmpUtilsUpdateConsensusState: {
|
|
2265
|
+
consensusStateId: '[u8;4]',
|
|
2266
|
+
unbondingPeriod: 'Option<u64>',
|
|
2267
|
+
challengePeriods: 'BTreeMap<IsmpHostStateMachine, u64>'
|
|
2268
|
+
},
|
|
2269
|
+
/**
|
|
2270
|
+
* Lookup288: pallet_ismp::utils::FundMessageParams<Balance>
|
|
2271
|
+
**/
|
|
2272
|
+
PalletIsmpUtilsFundMessageParams: {
|
|
2273
|
+
commitment: 'PalletIsmpUtilsMessageCommitment',
|
|
2274
|
+
amount: 'u128'
|
|
2275
|
+
},
|
|
2276
|
+
/**
|
|
2277
|
+
* Lookup289: pallet_ismp::utils::MessageCommitment
|
|
2278
|
+
**/
|
|
2279
|
+
PalletIsmpUtilsMessageCommitment: {
|
|
2280
|
+
_enum: {
|
|
2281
|
+
Request: 'H256',
|
|
2282
|
+
Response: 'H256'
|
|
2283
|
+
}
|
|
2284
|
+
},
|
|
2285
|
+
/**
|
|
2286
|
+
* Lookup290: ismp_grandpa::pallet::Call<T>
|
|
2287
|
+
**/
|
|
2288
|
+
IsmpGrandpaCall: {
|
|
2289
|
+
_enum: {
|
|
2290
|
+
add_state_machines: {
|
|
2291
|
+
newStateMachines: 'Vec<IsmpGrandpaAddStateMachine>',
|
|
2292
|
+
},
|
|
2293
|
+
remove_state_machines: {
|
|
2294
|
+
stateMachines: 'Vec<IsmpHostStateMachine>'
|
|
2295
|
+
}
|
|
2296
|
+
}
|
|
2297
|
+
},
|
|
2298
|
+
/**
|
|
2299
|
+
* Lookup292: ismp_grandpa::AddStateMachine
|
|
2300
|
+
**/
|
|
2301
|
+
IsmpGrandpaAddStateMachine: {
|
|
2302
|
+
stateMachine: 'IsmpHostStateMachine',
|
|
2303
|
+
slotDuration: 'u64'
|
|
2304
|
+
},
|
|
2305
|
+
/**
|
|
2306
|
+
* Lookup293: pallet_token_gateway::pallet::Call<T>
|
|
2307
|
+
**/
|
|
2308
|
+
PalletTokenGatewayCall: {
|
|
2309
|
+
_enum: {
|
|
2310
|
+
teleport: {
|
|
2311
|
+
params: 'PalletTokenGatewayTeleportParams',
|
|
2312
|
+
},
|
|
2313
|
+
set_token_gateway_addresses: {
|
|
2314
|
+
addresses: 'BTreeMap<IsmpHostStateMachine, Bytes>',
|
|
2315
|
+
},
|
|
2316
|
+
create_erc6160_asset: {
|
|
2317
|
+
asset: 'PalletTokenGatewayAssetRegistration',
|
|
2318
|
+
},
|
|
2319
|
+
update_erc6160_asset: {
|
|
2320
|
+
asset: 'TokenGatewayPrimitivesGatewayAssetUpdate'
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
2324
|
+
/**
|
|
2325
|
+
* Lookup294: pallet_token_gateway::types::TeleportParams<AssetId, Balance>
|
|
2326
|
+
**/
|
|
2327
|
+
PalletTokenGatewayTeleportParams: {
|
|
2328
|
+
assetId: 'u32',
|
|
2329
|
+
destination: 'IsmpHostStateMachine',
|
|
2330
|
+
recepient: 'H256',
|
|
2331
|
+
amount: 'u128',
|
|
2332
|
+
timeout: 'u64',
|
|
2333
|
+
tokenGateway: 'Bytes',
|
|
2334
|
+
relayerFee: 'u128'
|
|
2335
|
+
},
|
|
2336
|
+
/**
|
|
2337
|
+
* Lookup298: pallet_token_gateway::types::AssetRegistration<AssetId>
|
|
2338
|
+
**/
|
|
2339
|
+
PalletTokenGatewayAssetRegistration: {
|
|
2340
|
+
localId: 'u32',
|
|
2341
|
+
reg: 'TokenGatewayPrimitivesGatewayAssetRegistration'
|
|
2342
|
+
},
|
|
2343
|
+
/**
|
|
2344
|
+
* Lookup299: token_gateway_primitives::GatewayAssetRegistration
|
|
2345
|
+
**/
|
|
2346
|
+
TokenGatewayPrimitivesGatewayAssetRegistration: {
|
|
2347
|
+
name: 'Bytes',
|
|
2348
|
+
symbol: 'Bytes',
|
|
2349
|
+
chains: 'Vec<IsmpHostStateMachine>',
|
|
2350
|
+
minimumBalance: 'Option<u128>'
|
|
2351
|
+
},
|
|
2352
|
+
/**
|
|
2353
|
+
* Lookup301: token_gateway_primitives::GatewayAssetUpdate
|
|
2354
|
+
**/
|
|
2355
|
+
TokenGatewayPrimitivesGatewayAssetUpdate: {
|
|
2356
|
+
assetId: 'H256',
|
|
2357
|
+
addChains: 'Vec<IsmpHostStateMachine>',
|
|
2358
|
+
removeChains: 'Vec<IsmpHostStateMachine>',
|
|
2359
|
+
newAdmins: 'Vec<(IsmpHostStateMachine,H160)>'
|
|
2360
|
+
},
|
|
2361
|
+
/**
|
|
2362
|
+
* Lookup308: pallet_multisig::pallet::Error<T>
|
|
1842
2363
|
**/
|
|
1843
2364
|
PalletMultisigError: {
|
|
1844
2365
|
_enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored']
|
|
1845
2366
|
},
|
|
1846
2367
|
/**
|
|
1847
|
-
*
|
|
2368
|
+
* Lookup311: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::configs::ProxyType, BlockNumber>
|
|
1848
2369
|
**/
|
|
1849
2370
|
PalletProxyProxyDefinition: {
|
|
1850
2371
|
delegate: 'AccountId32',
|
|
1851
|
-
proxyType: '
|
|
2372
|
+
proxyType: 'ArgonRuntimeConfigsProxyType',
|
|
1852
2373
|
delay: 'u32'
|
|
1853
2374
|
},
|
|
1854
2375
|
/**
|
|
1855
|
-
*
|
|
2376
|
+
* Lookup315: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
1856
2377
|
**/
|
|
1857
2378
|
PalletProxyAnnouncement: {
|
|
1858
2379
|
real: 'AccountId32',
|
|
@@ -1860,25 +2381,24 @@ exports.default = {
|
|
|
1860
2381
|
height: 'u32'
|
|
1861
2382
|
},
|
|
1862
2383
|
/**
|
|
1863
|
-
*
|
|
2384
|
+
* Lookup317: pallet_proxy::pallet::Error<T>
|
|
1864
2385
|
**/
|
|
1865
2386
|
PalletProxyError: {
|
|
1866
2387
|
_enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy']
|
|
1867
2388
|
},
|
|
1868
2389
|
/**
|
|
1869
|
-
*
|
|
2390
|
+
* Lookup318: argon_primitives::tick::Ticker
|
|
1870
2391
|
**/
|
|
1871
2392
|
ArgonPrimitivesTickTicker: {
|
|
1872
2393
|
tickDurationMillis: 'Compact<u64>',
|
|
1873
|
-
|
|
1874
|
-
channelHoldExpirationTicks: 'Compact<u32>'
|
|
2394
|
+
channelHoldExpirationTicks: 'Compact<u64>'
|
|
1875
2395
|
},
|
|
1876
2396
|
/**
|
|
1877
|
-
*
|
|
2397
|
+
* Lookup320: pallet_ticks::pallet::Error<T>
|
|
1878
2398
|
**/
|
|
1879
2399
|
PalletTicksError: 'Null',
|
|
1880
2400
|
/**
|
|
1881
|
-
*
|
|
2401
|
+
* Lookup327: argon_primitives::block_seal::MiningSlotConfig<BlockNumber>
|
|
1882
2402
|
**/
|
|
1883
2403
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
1884
2404
|
blocksBeforeBidEndForVrfClose: 'Compact<u32>',
|
|
@@ -1886,7 +2406,7 @@ exports.default = {
|
|
|
1886
2406
|
slotBiddingStartBlock: 'Compact<u32>'
|
|
1887
2407
|
},
|
|
1888
2408
|
/**
|
|
1889
|
-
*
|
|
2409
|
+
* Lookup328: pallet_mining_slot::pallet::Error<T>
|
|
1890
2410
|
**/
|
|
1891
2411
|
PalletMiningSlotError: {
|
|
1892
2412
|
_enum: {
|
|
@@ -1914,13 +2434,13 @@ exports.default = {
|
|
|
1914
2434
|
}
|
|
1915
2435
|
},
|
|
1916
2436
|
/**
|
|
1917
|
-
*
|
|
2437
|
+
* Lookup329: argon_primitives::bond::BondError
|
|
1918
2438
|
**/
|
|
1919
2439
|
ArgonPrimitivesBondBondError: {
|
|
1920
2440
|
_enum: ['BondNotFound', 'NoMoreBondIds', 'MinimumBondAmountNotMet', 'VaultClosed', 'ExpirationAtBlockOverflow', 'AccountWouldBeBelowMinimum', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBitcoinsForMining', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'NoVaultBitcoinPubkeysAvailable', 'UnableToGenerateVaultBitcoinPubkey', 'UnableToDecodeVaultBitcoinPubkey', 'FeeExceedsBondAmount', 'InvalidBitcoinScript', 'InternalError']
|
|
1921
2441
|
},
|
|
1922
2442
|
/**
|
|
1923
|
-
*
|
|
2443
|
+
* Lookup330: argon_primitives::bitcoin::UtxoValue
|
|
1924
2444
|
**/
|
|
1925
2445
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
1926
2446
|
utxoId: 'u64',
|
|
@@ -1930,7 +2450,7 @@ exports.default = {
|
|
|
1930
2450
|
watchForSpentUntilHeight: 'Compact<u64>'
|
|
1931
2451
|
},
|
|
1932
2452
|
/**
|
|
1933
|
-
*
|
|
2453
|
+
* Lookup331: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
1934
2454
|
**/
|
|
1935
2455
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
1936
2456
|
_enum: {
|
|
@@ -1940,19 +2460,19 @@ exports.default = {
|
|
|
1940
2460
|
}
|
|
1941
2461
|
},
|
|
1942
2462
|
/**
|
|
1943
|
-
*
|
|
2463
|
+
* Lookup336: argon_primitives::bitcoin::BitcoinNetwork
|
|
1944
2464
|
**/
|
|
1945
2465
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
1946
2466
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest']
|
|
1947
2467
|
},
|
|
1948
2468
|
/**
|
|
1949
|
-
*
|
|
2469
|
+
* Lookup339: pallet_bitcoin_utxos::pallet::Error<T>
|
|
1950
2470
|
**/
|
|
1951
2471
|
PalletBitcoinUtxosError: {
|
|
1952
2472
|
_enum: ['NoPermissions', 'NoBitcoinConfirmedBlock', 'InsufficientBitcoinAmount', 'NoBitcoinPricesAvailable', 'ScriptPubkeyConflict', 'UtxoNotLocked', 'RedemptionsUnavailable', 'InvalidBitcoinSyncHeight', 'BitcoinHeightNotConfirmed', 'MaxUtxosExceeded', 'InvalidBitcoinScript']
|
|
1953
2473
|
},
|
|
1954
2474
|
/**
|
|
1955
|
-
*
|
|
2475
|
+
* Lookup340: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1956
2476
|
**/
|
|
1957
2477
|
ArgonPrimitivesBondVault: {
|
|
1958
2478
|
operatorAccountId: 'AccountId32',
|
|
@@ -1965,7 +2485,7 @@ exports.default = {
|
|
|
1965
2485
|
pendingTerms: 'Option<(u32,ArgonPrimitivesBondVaultTerms)>'
|
|
1966
2486
|
},
|
|
1967
2487
|
/**
|
|
1968
|
-
*
|
|
2488
|
+
* Lookup341: argon_primitives::bond::VaultArgons<Balance>
|
|
1969
2489
|
**/
|
|
1970
2490
|
ArgonPrimitivesBondVaultArgons: {
|
|
1971
2491
|
annualPercentRate: 'Compact<u128>',
|
|
@@ -1974,7 +2494,7 @@ exports.default = {
|
|
|
1974
2494
|
baseFee: 'Compact<u128>'
|
|
1975
2495
|
},
|
|
1976
2496
|
/**
|
|
1977
|
-
*
|
|
2497
|
+
* Lookup345: argon_primitives::bitcoin::BitcoinXPub
|
|
1978
2498
|
**/
|
|
1979
2499
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
1980
2500
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -1985,19 +2505,19 @@ exports.default = {
|
|
|
1985
2505
|
network: 'ArgonPrimitivesBitcoinNetworkKind'
|
|
1986
2506
|
},
|
|
1987
2507
|
/**
|
|
1988
|
-
*
|
|
2508
|
+
* Lookup347: argon_primitives::bitcoin::NetworkKind
|
|
1989
2509
|
**/
|
|
1990
2510
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
1991
2511
|
_enum: ['Main', 'Test']
|
|
1992
2512
|
},
|
|
1993
2513
|
/**
|
|
1994
|
-
*
|
|
2514
|
+
* Lookup349: pallet_vaults::pallet::Error<T>
|
|
1995
2515
|
**/
|
|
1996
2516
|
PalletVaultsError: {
|
|
1997
2517
|
_enum: ['BondNotFound', 'NoMoreVaultIds', 'NoMoreBondIds', 'MinimumBondAmountNotMet', 'ExpirationAtBlockOverflow', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBitcoinsForMining', 'AccountBelowMinimumBalance', 'VaultClosed', 'InvalidVaultAmount', 'VaultReductionBelowAllocatedFunds', 'InvalidSecuritization', 'ReusedVaultBitcoinXpub', 'MaxSecuritizationPercentExceeded', 'InvalidBondType', 'BitcoinUtxoNotFound', 'InsufficientSatoshisBonded', 'NoBitcoinPricesAvailable', 'InvalidBitcoinScript', 'InvalidXpubkey', 'WrongXpubNetwork', 'UnsafeXpubkey', 'UnableToDeriveVaultXpubChild', 'BitcoinConversionFailed', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'FeeExceedsBondAmount', 'NoVaultBitcoinPubkeysAvailable', 'TermsModificationOverflow', 'TermsChangeAlreadyScheduled', 'InternalError', 'UnableToGenerateVaultBitcoinPubkey', 'UnableToDecodeVaultBitcoinPubkey']
|
|
1998
2518
|
},
|
|
1999
2519
|
/**
|
|
2000
|
-
*
|
|
2520
|
+
* Lookup350: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
2001
2521
|
**/
|
|
2002
2522
|
ArgonPrimitivesBond: {
|
|
2003
2523
|
bondType: 'ArgonPrimitivesBondBondType',
|
|
@@ -2011,7 +2531,7 @@ exports.default = {
|
|
|
2011
2531
|
expiration: 'ArgonPrimitivesBondBondExpiration'
|
|
2012
2532
|
},
|
|
2013
2533
|
/**
|
|
2014
|
-
*
|
|
2534
|
+
* Lookup353: pallet_bond::pallet::UtxoState
|
|
2015
2535
|
**/
|
|
2016
2536
|
PalletBondUtxoState: {
|
|
2017
2537
|
bondId: 'Compact<u64>',
|
|
@@ -2027,7 +2547,7 @@ exports.default = {
|
|
|
2027
2547
|
isVerified: 'bool'
|
|
2028
2548
|
},
|
|
2029
2549
|
/**
|
|
2030
|
-
*
|
|
2550
|
+
* Lookup357: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
2031
2551
|
**/
|
|
2032
2552
|
PalletBondUtxoCosignRequest: {
|
|
2033
2553
|
bondId: 'Compact<u64>',
|
|
@@ -2038,7 +2558,7 @@ exports.default = {
|
|
|
2038
2558
|
redemptionPrice: 'Compact<u128>'
|
|
2039
2559
|
},
|
|
2040
2560
|
/**
|
|
2041
|
-
*
|
|
2561
|
+
* Lookup361: pallet_bond::pallet::Error<T>
|
|
2042
2562
|
**/
|
|
2043
2563
|
PalletBondError: {
|
|
2044
2564
|
_enum: {
|
|
@@ -2074,131 +2594,76 @@ exports.default = {
|
|
|
2074
2594
|
}
|
|
2075
2595
|
},
|
|
2076
2596
|
/**
|
|
2077
|
-
*
|
|
2597
|
+
* Lookup373: pallet_notaries::pallet::Error<T>
|
|
2078
2598
|
**/
|
|
2079
2599
|
PalletNotariesError: {
|
|
2080
2600
|
_enum: ['ProposalNotFound', 'MaxNotariesExceeded', 'MaxProposalsPerBlockExceeded', 'NotAnActiveNotary', 'InvalidNotaryOperator', 'NoMoreNotaryIds', 'EffectiveTickTooSoon', 'TooManyKeys', 'InvalidNotary']
|
|
2081
2601
|
},
|
|
2082
2602
|
/**
|
|
2083
|
-
*
|
|
2603
|
+
* Lookup377: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2084
2604
|
**/
|
|
2085
2605
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2086
2606
|
notebookNumber: 'Compact<u32>',
|
|
2087
|
-
tick: 'Compact<
|
|
2607
|
+
tick: 'Compact<u64>',
|
|
2088
2608
|
blockVotesRoot: 'H256',
|
|
2089
2609
|
secretHash: 'H256',
|
|
2090
2610
|
parentSecret: 'Option<H256>'
|
|
2091
2611
|
},
|
|
2092
2612
|
/**
|
|
2093
|
-
*
|
|
2094
|
-
**/
|
|
2095
|
-
ArgonPrimitivesDigestsNotebookDigest: {
|
|
2096
|
-
notebooks: 'Vec<ArgonPrimitivesDigestsNotebookDigestRecord>'
|
|
2097
|
-
},
|
|
2098
|
-
/**
|
|
2099
|
-
* Lookup302: argon_primitives::digests::NotebookDigestRecord<argon_notary_audit::error::VerifyError>
|
|
2100
|
-
**/
|
|
2101
|
-
ArgonPrimitivesDigestsNotebookDigestRecord: {
|
|
2102
|
-
notaryId: 'Compact<u32>',
|
|
2103
|
-
notebookNumber: 'Compact<u32>',
|
|
2104
|
-
tick: 'Compact<u32>',
|
|
2105
|
-
auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>'
|
|
2106
|
-
},
|
|
2107
|
-
/**
|
|
2108
|
-
* Lookup305: pallet_notebook::pallet::Error<T>
|
|
2613
|
+
* Lookup380: pallet_notebook::pallet::Error<T>
|
|
2109
2614
|
**/
|
|
2110
2615
|
PalletNotebookError: {
|
|
2111
2616
|
_enum: ['DuplicateNotebookNumber', 'MissingNotebookNumber', 'NotebookTickAlreadyUsed', 'InvalidNotebookSignature', 'InvalidSecretProvided', 'CouldNotDecodeNotebook', 'DuplicateNotebookDigest', 'MissingNotebookDigest', 'InvalidNotebookDigest', 'MultipleNotebookInherentsProvided', 'InternalError', 'NotebookSubmittedForLockedNotary', 'InvalidReprocessNotebook', 'InvalidNotaryOperator']
|
|
2112
2617
|
},
|
|
2113
2618
|
/**
|
|
2114
|
-
*
|
|
2619
|
+
* Lookup381: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2115
2620
|
**/
|
|
2116
2621
|
PalletChainTransferQueuedTransferOut: {
|
|
2117
2622
|
accountId: 'AccountId32',
|
|
2118
2623
|
amount: 'u128',
|
|
2119
|
-
expirationTick: '
|
|
2624
|
+
expirationTick: 'u64',
|
|
2120
2625
|
notaryId: 'u32'
|
|
2121
2626
|
},
|
|
2122
2627
|
/**
|
|
2123
|
-
*
|
|
2628
|
+
* Lookup387: frame_support::PalletId
|
|
2124
2629
|
**/
|
|
2125
2630
|
FrameSupportPalletId: '[u8;8]',
|
|
2126
2631
|
/**
|
|
2127
|
-
*
|
|
2632
|
+
* Lookup388: pallet_chain_transfer::pallet::Error<T>
|
|
2128
2633
|
**/
|
|
2129
2634
|
PalletChainTransferError: {
|
|
2130
2635
|
_enum: ['MaxBlockTransfersExceeded', 'InsufficientFunds', 'InsufficientNotarizedFunds', 'InvalidOrDuplicatedLocalchainTransfer', 'NotebookIncludesExpiredLocalchainTransfer', 'InvalidNotaryUsedForTransfer']
|
|
2131
2636
|
},
|
|
2132
2637
|
/**
|
|
2133
|
-
*
|
|
2638
|
+
* Lookup393: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2134
2639
|
**/
|
|
2135
2640
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2136
2641
|
notaryId: 'Compact<u32>',
|
|
2137
2642
|
notebookNumber: 'Compact<u32>',
|
|
2138
|
-
tick: 'Compact<
|
|
2643
|
+
tick: 'Compact<u64>',
|
|
2139
2644
|
blockVotesCount: 'Compact<u32>',
|
|
2140
2645
|
blockVotingPower: 'Compact<u128>'
|
|
2141
2646
|
},
|
|
2142
2647
|
/**
|
|
2143
|
-
*
|
|
2144
|
-
**/
|
|
2145
|
-
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
2146
|
-
votingPower: 'Compact<u128>',
|
|
2147
|
-
votesCount: 'Compact<u32>'
|
|
2148
|
-
},
|
|
2149
|
-
/**
|
|
2150
|
-
* Lookup323: pallet_block_seal_spec::pallet::Error<T>
|
|
2648
|
+
* Lookup398: pallet_block_seal_spec::pallet::Error<T>
|
|
2151
2649
|
**/
|
|
2152
2650
|
PalletBlockSealSpecError: {
|
|
2153
2651
|
_enum: ['MaxNotebooksAtTickExceeded']
|
|
2154
2652
|
},
|
|
2155
2653
|
/**
|
|
2156
|
-
*
|
|
2654
|
+
* Lookup400: pallet_domains::pallet::Error<T>
|
|
2157
2655
|
**/
|
|
2158
2656
|
PalletDomainsError: {
|
|
2159
2657
|
_enum: ['DomainNotRegistered', 'NotDomainOwner', 'FailedToAddToAddressHistory', 'FailedToAddExpiringDomain', 'AccountDecodingError']
|
|
2160
2658
|
},
|
|
2161
2659
|
/**
|
|
2162
|
-
*
|
|
2660
|
+
* Lookup401: pallet_price_index::pallet::Error<T>
|
|
2163
2661
|
**/
|
|
2164
2662
|
PalletPriceIndexError: {
|
|
2165
2663
|
_enum: ['NotAuthorizedOperator', 'MissingValue', 'PricesTooOld', 'MaxPriceChangePerTickExceeded']
|
|
2166
2664
|
},
|
|
2167
2665
|
/**
|
|
2168
|
-
*
|
|
2169
|
-
**/
|
|
2170
|
-
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2171
|
-
blockAuthorAccountId: 'AccountId32',
|
|
2172
|
-
blockVoteRewardsAccount: 'Option<AccountId32>'
|
|
2173
|
-
},
|
|
2174
|
-
/**
|
|
2175
|
-
* Lookup328: argon_primitives::fork_power::ForkPower
|
|
2176
|
-
**/
|
|
2177
|
-
ArgonPrimitivesForkPower: {
|
|
2178
|
-
notebooks: 'Compact<u64>',
|
|
2179
|
-
votingPower: 'U256',
|
|
2180
|
-
sealStrength: 'U256',
|
|
2181
|
-
totalComputeDifficulty: 'U256',
|
|
2182
|
-
voteCreatedBlocks: 'Compact<u128>'
|
|
2183
|
-
},
|
|
2184
|
-
/**
|
|
2185
|
-
* Lookup330: argon_primitives::digests::ParentVotingKeyDigest
|
|
2186
|
-
**/
|
|
2187
|
-
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
2188
|
-
parentVotingKey: 'Option<H256>'
|
|
2189
|
-
},
|
|
2190
|
-
/**
|
|
2191
|
-
* Lookup331: pallet_block_seal::pallet::Error<T>
|
|
2192
|
-
**/
|
|
2193
|
-
PalletBlockSealError: {
|
|
2194
|
-
_enum: ['InvalidVoteSealStrength', 'InvalidSubmitter', 'UnableToDecodeVoteAccount', 'UnregisteredBlockAuthor', 'InvalidBlockVoteProof', 'NoGrandparentVoteMinimum', 'DuplicateBlockSealProvided', 'InsufficientVotingPower', 'ParentVotingKeyNotFound', 'InvalidVoteGrandparentHash', 'IneligibleNotebookUsed', 'NoEligibleVotingRoot', 'InvalidAuthoritySignature', 'CouldNotDecodeVote', 'MaxNotebooksAtTickExceeded', 'NoClosestMinerFoundForVote', 'BlockVoteInvalidSignature']
|
|
2195
|
-
},
|
|
2196
|
-
/**
|
|
2197
|
-
* Lookup333: pallet_block_rewards::pallet::Error<T>
|
|
2198
|
-
**/
|
|
2199
|
-
PalletBlockRewardsError: 'Null',
|
|
2200
|
-
/**
|
|
2201
|
-
* Lookup334: pallet_grandpa::StoredState<N>
|
|
2666
|
+
* Lookup402: pallet_grandpa::StoredState<N>
|
|
2202
2667
|
**/
|
|
2203
2668
|
PalletGrandpaStoredState: {
|
|
2204
2669
|
_enum: {
|
|
@@ -2215,7 +2680,7 @@ exports.default = {
|
|
|
2215
2680
|
}
|
|
2216
2681
|
},
|
|
2217
2682
|
/**
|
|
2218
|
-
*
|
|
2683
|
+
* Lookup403: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2219
2684
|
**/
|
|
2220
2685
|
PalletGrandpaStoredPendingChange: {
|
|
2221
2686
|
scheduledAt: 'u32',
|
|
@@ -2224,19 +2689,36 @@ exports.default = {
|
|
|
2224
2689
|
forced: 'Option<u32>'
|
|
2225
2690
|
},
|
|
2226
2691
|
/**
|
|
2227
|
-
*
|
|
2692
|
+
* Lookup406: pallet_grandpa::pallet::Error<T>
|
|
2228
2693
|
**/
|
|
2229
2694
|
PalletGrandpaError: {
|
|
2230
2695
|
_enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
|
|
2231
2696
|
},
|
|
2232
2697
|
/**
|
|
2233
|
-
*
|
|
2698
|
+
* Lookup407: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2699
|
+
**/
|
|
2700
|
+
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2701
|
+
blockAuthorAccountId: 'AccountId32',
|
|
2702
|
+
blockVoteRewardsAccount: 'Option<AccountId32>'
|
|
2703
|
+
},
|
|
2704
|
+
/**
|
|
2705
|
+
* Lookup411: pallet_block_seal::pallet::Error<T>
|
|
2706
|
+
**/
|
|
2707
|
+
PalletBlockSealError: {
|
|
2708
|
+
_enum: ['InvalidVoteSealStrength', 'InvalidSubmitter', 'UnableToDecodeVoteAccount', 'UnregisteredBlockAuthor', 'InvalidBlockVoteProof', 'NoGrandparentVoteMinimum', 'DuplicateBlockSealProvided', 'InsufficientVotingPower', 'ParentVotingKeyNotFound', 'InvalidVoteGrandparentHash', 'IneligibleNotebookUsed', 'NoEligibleVotingRoot', 'CouldNotDecodeVote', 'MaxNotebooksAtTickExceeded', 'NoClosestMinerFoundForVote', 'BlockVoteInvalidSignature', 'InvalidForkPowerParent']
|
|
2709
|
+
},
|
|
2710
|
+
/**
|
|
2711
|
+
* Lookup414: pallet_block_rewards::pallet::Error<T>
|
|
2712
|
+
**/
|
|
2713
|
+
PalletBlockRewardsError: 'Null',
|
|
2714
|
+
/**
|
|
2715
|
+
* Lookup418: pallet_mint::pallet::Error<T>
|
|
2234
2716
|
**/
|
|
2235
2717
|
PalletMintError: {
|
|
2236
2718
|
_enum: ['TooManyPendingMints']
|
|
2237
2719
|
},
|
|
2238
2720
|
/**
|
|
2239
|
-
*
|
|
2721
|
+
* Lookup420: pallet_balances::types::BalanceLock<Balance>
|
|
2240
2722
|
**/
|
|
2241
2723
|
PalletBalancesBalanceLock: {
|
|
2242
2724
|
id: '[u8;8]',
|
|
@@ -2244,40 +2726,40 @@ exports.default = {
|
|
|
2244
2726
|
reasons: 'PalletBalancesReasons'
|
|
2245
2727
|
},
|
|
2246
2728
|
/**
|
|
2247
|
-
*
|
|
2729
|
+
* Lookup421: pallet_balances::types::Reasons
|
|
2248
2730
|
**/
|
|
2249
2731
|
PalletBalancesReasons: {
|
|
2250
2732
|
_enum: ['Fee', 'Misc', 'All']
|
|
2251
2733
|
},
|
|
2252
2734
|
/**
|
|
2253
|
-
*
|
|
2735
|
+
* Lookup424: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2254
2736
|
**/
|
|
2255
2737
|
PalletBalancesReserveData: {
|
|
2256
2738
|
id: '[u8;8]',
|
|
2257
2739
|
amount: 'u128'
|
|
2258
2740
|
},
|
|
2259
2741
|
/**
|
|
2260
|
-
*
|
|
2742
|
+
* Lookup427: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
2261
2743
|
**/
|
|
2262
2744
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2263
|
-
id: '
|
|
2745
|
+
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
2264
2746
|
amount: 'u128'
|
|
2265
2747
|
},
|
|
2266
2748
|
/**
|
|
2267
|
-
*
|
|
2749
|
+
* Lookup428: argon_runtime::RuntimeHoldReason
|
|
2268
2750
|
**/
|
|
2269
|
-
|
|
2751
|
+
ArgonRuntimeRuntimeHoldReason: {
|
|
2270
2752
|
_enum: {
|
|
2271
2753
|
__Unused0: 'Null',
|
|
2272
2754
|
__Unused1: 'Null',
|
|
2273
2755
|
__Unused2: 'Null',
|
|
2274
2756
|
__Unused3: 'Null',
|
|
2275
2757
|
__Unused4: 'Null',
|
|
2758
|
+
__Unused5: 'Null',
|
|
2276
2759
|
MiningSlot: 'PalletMiningSlotHoldReason',
|
|
2277
|
-
|
|
2760
|
+
__Unused7: 'Null',
|
|
2278
2761
|
Vaults: 'PalletVaultsHoldReason',
|
|
2279
2762
|
Bonds: 'PalletBondHoldReason',
|
|
2280
|
-
__Unused9: 'Null',
|
|
2281
2763
|
__Unused10: 'Null',
|
|
2282
2764
|
__Unused11: 'Null',
|
|
2283
2765
|
__Unused12: 'Null',
|
|
@@ -2285,44 +2767,46 @@ exports.default = {
|
|
|
2285
2767
|
__Unused14: 'Null',
|
|
2286
2768
|
__Unused15: 'Null',
|
|
2287
2769
|
__Unused16: 'Null',
|
|
2770
|
+
__Unused17: 'Null',
|
|
2771
|
+
__Unused18: 'Null',
|
|
2288
2772
|
BlockRewards: 'PalletBlockRewardsHoldReason'
|
|
2289
2773
|
}
|
|
2290
2774
|
},
|
|
2291
2775
|
/**
|
|
2292
|
-
*
|
|
2776
|
+
* Lookup429: pallet_mining_slot::pallet::HoldReason
|
|
2293
2777
|
**/
|
|
2294
2778
|
PalletMiningSlotHoldReason: {
|
|
2295
2779
|
_enum: ['RegisterAsMiner']
|
|
2296
2780
|
},
|
|
2297
2781
|
/**
|
|
2298
|
-
*
|
|
2782
|
+
* Lookup430: pallet_vaults::pallet::HoldReason
|
|
2299
2783
|
**/
|
|
2300
2784
|
PalletVaultsHoldReason: {
|
|
2301
2785
|
_enum: ['EnterVault', 'BondFee']
|
|
2302
2786
|
},
|
|
2303
2787
|
/**
|
|
2304
|
-
*
|
|
2788
|
+
* Lookup431: pallet_bond::pallet::HoldReason
|
|
2305
2789
|
**/
|
|
2306
2790
|
PalletBondHoldReason: {
|
|
2307
2791
|
_enum: ['UnlockingBitcoin']
|
|
2308
2792
|
},
|
|
2309
2793
|
/**
|
|
2310
|
-
*
|
|
2794
|
+
* Lookup432: pallet_block_rewards::pallet::HoldReason
|
|
2311
2795
|
**/
|
|
2312
2796
|
PalletBlockRewardsHoldReason: {
|
|
2313
2797
|
_enum: ['MaturationPeriod']
|
|
2314
2798
|
},
|
|
2315
2799
|
/**
|
|
2316
|
-
*
|
|
2800
|
+
* Lookup435: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
2317
2801
|
**/
|
|
2318
2802
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2319
|
-
id: '
|
|
2803
|
+
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
2320
2804
|
amount: 'u128'
|
|
2321
2805
|
},
|
|
2322
2806
|
/**
|
|
2323
|
-
*
|
|
2807
|
+
* Lookup436: argon_runtime::RuntimeFreezeReason
|
|
2324
2808
|
**/
|
|
2325
|
-
|
|
2809
|
+
ArgonRuntimeRuntimeFreezeReason: {
|
|
2326
2810
|
_enum: {
|
|
2327
2811
|
__Unused0: 'Null',
|
|
2328
2812
|
__Unused1: 'Null',
|
|
@@ -2341,88 +2825,106 @@ exports.default = {
|
|
|
2341
2825
|
__Unused14: 'Null',
|
|
2342
2826
|
__Unused15: 'Null',
|
|
2343
2827
|
__Unused16: 'Null',
|
|
2828
|
+
__Unused17: 'Null',
|
|
2829
|
+
__Unused18: 'Null',
|
|
2344
2830
|
BlockRewards: 'PalletBlockRewardsFreezeReason'
|
|
2345
2831
|
}
|
|
2346
2832
|
},
|
|
2347
2833
|
/**
|
|
2348
|
-
*
|
|
2834
|
+
* Lookup437: pallet_block_rewards::pallet::FreezeReason
|
|
2349
2835
|
**/
|
|
2350
2836
|
PalletBlockRewardsFreezeReason: {
|
|
2351
2837
|
_enum: ['MaturationPeriod']
|
|
2352
2838
|
},
|
|
2353
2839
|
/**
|
|
2354
|
-
*
|
|
2840
|
+
* Lookup439: pallet_balances::pallet::Error<T, I>
|
|
2355
2841
|
**/
|
|
2356
2842
|
PalletBalancesError: {
|
|
2357
2843
|
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes', 'IssuanceDeactivated', 'DeltaZero']
|
|
2358
2844
|
},
|
|
2359
2845
|
/**
|
|
2360
|
-
*
|
|
2846
|
+
* Lookup441: pallet_tx_pause::pallet::Error<T>
|
|
2361
2847
|
**/
|
|
2362
2848
|
PalletTxPauseError: {
|
|
2363
2849
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound']
|
|
2364
2850
|
},
|
|
2365
2851
|
/**
|
|
2366
|
-
*
|
|
2852
|
+
* Lookup442: pallet_transaction_payment::Releases
|
|
2367
2853
|
**/
|
|
2368
2854
|
PalletTransactionPaymentReleases: {
|
|
2369
2855
|
_enum: ['V1Ancient', 'V2']
|
|
2370
2856
|
},
|
|
2371
2857
|
/**
|
|
2372
|
-
*
|
|
2858
|
+
* Lookup443: pallet_utility::pallet::Error<T>
|
|
2373
2859
|
**/
|
|
2374
2860
|
PalletUtilityError: {
|
|
2375
2861
|
_enum: ['TooManyCalls']
|
|
2376
2862
|
},
|
|
2377
2863
|
/**
|
|
2378
|
-
*
|
|
2864
|
+
* Lookup444: pallet_sudo::pallet::Error<T>
|
|
2379
2865
|
**/
|
|
2380
2866
|
PalletSudoError: {
|
|
2381
2867
|
_enum: ['RequireSudo']
|
|
2382
2868
|
},
|
|
2383
2869
|
/**
|
|
2384
|
-
*
|
|
2870
|
+
* Lookup445: pallet_ismp::pallet::Error<T>
|
|
2871
|
+
**/
|
|
2872
|
+
PalletIsmpError: {
|
|
2873
|
+
_enum: ['InvalidMessage', 'MessageNotFound', 'ConsensusClientCreationFailed', 'UnbondingPeriodUpdateFailed', 'ChallengePeriodUpdateFailed']
|
|
2874
|
+
},
|
|
2875
|
+
/**
|
|
2876
|
+
* Lookup446: pallet_hyperbridge::pallet::Error<T>
|
|
2877
|
+
**/
|
|
2878
|
+
PalletHyperbridgeError: 'Null',
|
|
2879
|
+
/**
|
|
2880
|
+
* Lookup447: pallet_token_gateway::pallet::Error<T>
|
|
2881
|
+
**/
|
|
2882
|
+
PalletTokenGatewayError: {
|
|
2883
|
+
_enum: ['UnregisteredAsset', 'AssetTeleportError', 'CoprocessorNotConfigured', 'DispatchError', 'AssetCreationError', 'AssetDecimalsNotFound', 'NotInitialized', 'UnknownAsset', 'NotAssetOwner']
|
|
2884
|
+
},
|
|
2885
|
+
/**
|
|
2886
|
+
* Lookup450: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2385
2887
|
**/
|
|
2386
2888
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
2387
2889
|
/**
|
|
2388
|
-
*
|
|
2890
|
+
* Lookup451: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2389
2891
|
**/
|
|
2390
2892
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
2391
2893
|
/**
|
|
2392
|
-
*
|
|
2894
|
+
* Lookup452: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2393
2895
|
**/
|
|
2394
2896
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
2395
2897
|
/**
|
|
2396
|
-
*
|
|
2898
|
+
* Lookup453: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2397
2899
|
**/
|
|
2398
2900
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
2399
2901
|
/**
|
|
2400
|
-
*
|
|
2902
|
+
* Lookup456: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2401
2903
|
**/
|
|
2402
2904
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
2403
2905
|
/**
|
|
2404
|
-
*
|
|
2906
|
+
* Lookup457: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2405
2907
|
**/
|
|
2406
2908
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
2407
2909
|
/**
|
|
2408
|
-
*
|
|
2910
|
+
* Lookup458: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2409
2911
|
**/
|
|
2410
2912
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
2411
2913
|
/**
|
|
2412
|
-
*
|
|
2914
|
+
* Lookup459: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2413
2915
|
**/
|
|
2414
2916
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2415
2917
|
mode: 'FrameMetadataHashExtensionMode'
|
|
2416
2918
|
},
|
|
2417
2919
|
/**
|
|
2418
|
-
*
|
|
2920
|
+
* Lookup460: frame_metadata_hash_extension::Mode
|
|
2419
2921
|
**/
|
|
2420
2922
|
FrameMetadataHashExtensionMode: {
|
|
2421
2923
|
_enum: ['Disabled', 'Enabled']
|
|
2422
2924
|
},
|
|
2423
2925
|
/**
|
|
2424
|
-
*
|
|
2926
|
+
* Lookup462: argon_runtime::Runtime
|
|
2425
2927
|
**/
|
|
2426
|
-
|
|
2928
|
+
ArgonRuntimeRuntime: 'Null'
|
|
2427
2929
|
};
|
|
2428
2930
|
//# sourceMappingURL=lookup.js.map
|