@argonprotocol/mainchain 0.0.8 → 0.0.10
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/lib/cjs/examples/decodePkcs.d.ts +1 -0
- package/lib/cjs/examples/decodePkcs.js +48 -0
- package/lib/cjs/examples/decodePkcs.js.map +1 -0
- package/lib/cjs/examples/findSs58Formats.d.ts +1 -0
- package/lib/cjs/examples/findSs58Formats.js +37 -0
- package/lib/cjs/examples/findSs58Formats.js.map +1 -0
- package/lib/cjs/index.d.ts +4 -1
- package/lib/cjs/index.js +9 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -8
- package/lib/cjs/interfaces/augment-api-errors.d.ts +1 -23
- package/lib/cjs/interfaces/augment-api-events.d.ts +7 -27
- package/lib/cjs/interfaces/augment-api-query.d.ts +3 -59
- package/lib/cjs/interfaces/augment-api-tx.d.ts +8 -45
- package/lib/cjs/interfaces/augment-types.d.ts +63 -4
- package/lib/cjs/interfaces/lookup.d.ts +196 -257
- package/lib/cjs/interfaces/lookup.js +202 -263
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +1 -9
- package/lib/cjs/interfaces/types-lookup.d.ts +192 -238
- package/lib/esm/examples/decodePkcs.d.ts +1 -0
- package/lib/esm/examples/decodePkcs.js +45 -0
- package/lib/esm/examples/decodePkcs.js.map +1 -0
- package/lib/esm/examples/findSs58Formats.d.ts +1 -0
- package/lib/esm/examples/findSs58Formats.js +34 -0
- package/lib/esm/examples/findSs58Formats.js.map +1 -0
- package/lib/esm/index.d.ts +4 -1
- package/lib/esm/index.js +6 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/interfaces/augment-api-consts.d.ts +0 -8
- package/lib/esm/interfaces/augment-api-errors.d.ts +1 -23
- package/lib/esm/interfaces/augment-api-events.d.ts +7 -27
- package/lib/esm/interfaces/augment-api-query.d.ts +3 -59
- package/lib/esm/interfaces/augment-api-tx.d.ts +8 -45
- package/lib/esm/interfaces/augment-types.d.ts +63 -4
- package/lib/esm/interfaces/lookup.d.ts +196 -257
- package/lib/esm/interfaces/lookup.js +202 -263
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +1 -9
- package/lib/esm/interfaces/types-lookup.d.ts +192 -238
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/examples/decodePkcs.d.ts +1 -0
- package/lib/types/examples/findSs58Formats.d.ts +1 -0
- package/lib/types/index.d.ts +4 -1
- package/lib/types/interfaces/augment-api-consts.d.ts +0 -8
- package/lib/types/interfaces/augment-api-errors.d.ts +1 -23
- package/lib/types/interfaces/augment-api-events.d.ts +7 -27
- package/lib/types/interfaces/augment-api-query.d.ts +3 -59
- package/lib/types/interfaces/augment-api-tx.d.ts +8 -45
- package/lib/types/interfaces/augment-types.d.ts +63 -4
- package/lib/types/interfaces/lookup.d.ts +196 -257
- package/lib/types/interfaces/registry.d.ts +1 -9
- package/lib/types/interfaces/types-lookup.d.ts +192 -238
- package/package.json +5 -5
|
@@ -270,7 +270,7 @@ declare const _default: {
|
|
|
270
270
|
};
|
|
271
271
|
};
|
|
272
272
|
/**
|
|
273
|
-
* Lookup40: argon_primitives::block_seal::MiningRegistration<sp_core::crypto::AccountId32, Balance>
|
|
273
|
+
* Lookup40: argon_primitives::block_seal::MiningRegistration<sp_core::crypto::AccountId32, Balance, argon_node_runtime::opaque::SessionKeys>
|
|
274
274
|
**/
|
|
275
275
|
ArgonPrimitivesBlockSealMiningRegistration: {
|
|
276
276
|
accountId: string;
|
|
@@ -279,9 +279,25 @@ declare const _default: {
|
|
|
279
279
|
bondAmount: string;
|
|
280
280
|
ownershipTokens: string;
|
|
281
281
|
rewardSharing: string;
|
|
282
|
+
authorityKeys: string;
|
|
282
283
|
};
|
|
283
284
|
/**
|
|
284
|
-
* Lookup41:
|
|
285
|
+
* Lookup41: argon_node_runtime::opaque::SessionKeys
|
|
286
|
+
**/
|
|
287
|
+
ArgonNodeRuntimeOpaqueSessionKeys: {
|
|
288
|
+
grandpa: string;
|
|
289
|
+
blockSealAuthority: string;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* Lookup42: sp_consensus_grandpa::app::Public
|
|
293
|
+
**/
|
|
294
|
+
SpConsensusGrandpaAppPublic: string;
|
|
295
|
+
/**
|
|
296
|
+
* Lookup43: argon_primitives::block_seal::app::Public
|
|
297
|
+
**/
|
|
298
|
+
ArgonPrimitivesBlockSealAppPublic: string;
|
|
299
|
+
/**
|
|
300
|
+
* Lookup44: argon_primitives::block_seal::RewardDestination<sp_core::crypto::AccountId32>
|
|
285
301
|
**/
|
|
286
302
|
ArgonPrimitivesBlockSealRewardDestination: {
|
|
287
303
|
_enum: {
|
|
@@ -290,14 +306,14 @@ declare const _default: {
|
|
|
290
306
|
};
|
|
291
307
|
};
|
|
292
308
|
/**
|
|
293
|
-
*
|
|
309
|
+
* Lookup48: argon_primitives::block_seal::RewardSharing<sp_core::crypto::AccountId32>
|
|
294
310
|
**/
|
|
295
311
|
ArgonPrimitivesBlockSealRewardSharing: {
|
|
296
312
|
accountId: string;
|
|
297
313
|
percentTake: string;
|
|
298
314
|
};
|
|
299
315
|
/**
|
|
300
|
-
*
|
|
316
|
+
* Lookup52: pallet_bitcoin_utxos::pallet::Event<T>
|
|
301
317
|
**/
|
|
302
318
|
PalletBitcoinUtxosEvent: {
|
|
303
319
|
_enum: {
|
|
@@ -334,24 +350,24 @@ declare const _default: {
|
|
|
334
350
|
};
|
|
335
351
|
};
|
|
336
352
|
/**
|
|
337
|
-
*
|
|
353
|
+
* Lookup53: argon_primitives::bitcoin::BitcoinRejectedReason
|
|
338
354
|
**/
|
|
339
355
|
ArgonPrimitivesBitcoinBitcoinRejectedReason: {
|
|
340
356
|
_enum: string[];
|
|
341
357
|
};
|
|
342
358
|
/**
|
|
343
|
-
*
|
|
359
|
+
* Lookup54: argon_primitives::bitcoin::UtxoRef
|
|
344
360
|
**/
|
|
345
361
|
ArgonPrimitivesBitcoinUtxoRef: {
|
|
346
362
|
txid: string;
|
|
347
363
|
outputIndex: string;
|
|
348
364
|
};
|
|
349
365
|
/**
|
|
350
|
-
*
|
|
366
|
+
* Lookup55: argon_primitives::bitcoin::H256Le
|
|
351
367
|
**/
|
|
352
368
|
ArgonPrimitivesBitcoinH256Le: string;
|
|
353
369
|
/**
|
|
354
|
-
*
|
|
370
|
+
* Lookup57: pallet_vaults::pallet::Event<T>
|
|
355
371
|
**/
|
|
356
372
|
PalletVaultsEvent: {
|
|
357
373
|
_enum: {
|
|
@@ -387,7 +403,7 @@ declare const _default: {
|
|
|
387
403
|
};
|
|
388
404
|
};
|
|
389
405
|
/**
|
|
390
|
-
*
|
|
406
|
+
* Lookup58: pallet_bond::pallet::Event<T>
|
|
391
407
|
**/
|
|
392
408
|
PalletBondEvent: {
|
|
393
409
|
_enum: {
|
|
@@ -449,13 +465,13 @@ declare const _default: {
|
|
|
449
465
|
};
|
|
450
466
|
};
|
|
451
467
|
/**
|
|
452
|
-
*
|
|
468
|
+
* Lookup59: argon_primitives::bond::BondType
|
|
453
469
|
**/
|
|
454
470
|
ArgonPrimitivesBondBondType: {
|
|
455
471
|
_enum: string[];
|
|
456
472
|
};
|
|
457
473
|
/**
|
|
458
|
-
*
|
|
474
|
+
* Lookup60: argon_primitives::bond::BondExpiration<BlockNumber>
|
|
459
475
|
**/
|
|
460
476
|
ArgonPrimitivesBondBondExpiration: {
|
|
461
477
|
_enum: {
|
|
@@ -464,7 +480,7 @@ declare const _default: {
|
|
|
464
480
|
};
|
|
465
481
|
};
|
|
466
482
|
/**
|
|
467
|
-
*
|
|
483
|
+
* Lookup63: pallet_notaries::pallet::Event<T>
|
|
468
484
|
**/
|
|
469
485
|
PalletNotariesEvent: {
|
|
470
486
|
_enum: {
|
|
@@ -493,7 +509,7 @@ declare const _default: {
|
|
|
493
509
|
};
|
|
494
510
|
};
|
|
495
511
|
/**
|
|
496
|
-
*
|
|
512
|
+
* Lookup64: argon_primitives::notary::NotaryMeta<MaxHosts>
|
|
497
513
|
**/
|
|
498
514
|
ArgonPrimitivesNotaryNotaryMeta: {
|
|
499
515
|
name: string;
|
|
@@ -501,7 +517,7 @@ declare const _default: {
|
|
|
501
517
|
hosts: string;
|
|
502
518
|
};
|
|
503
519
|
/**
|
|
504
|
-
*
|
|
520
|
+
* Lookup71: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
|
|
505
521
|
**/
|
|
506
522
|
ArgonPrimitivesNotaryNotaryRecord: {
|
|
507
523
|
notaryId: string;
|
|
@@ -512,7 +528,7 @@ declare const _default: {
|
|
|
512
528
|
meta: string;
|
|
513
529
|
};
|
|
514
530
|
/**
|
|
515
|
-
*
|
|
531
|
+
* Lookup72: pallet_notebook::pallet::Event<T>
|
|
516
532
|
**/
|
|
517
533
|
PalletNotebookEvent: {
|
|
518
534
|
_enum: {
|
|
@@ -528,7 +544,7 @@ declare const _default: {
|
|
|
528
544
|
};
|
|
529
545
|
};
|
|
530
546
|
/**
|
|
531
|
-
*
|
|
547
|
+
* Lookup73: argon_notary_audit::error::VerifyError
|
|
532
548
|
**/
|
|
533
549
|
ArgonNotaryAuditErrorVerifyError: {
|
|
534
550
|
_enum: {
|
|
@@ -624,22 +640,26 @@ declare const _default: {
|
|
|
624
640
|
InvalidComputeProof: string;
|
|
625
641
|
InvalidBlockVoteSource: string;
|
|
626
642
|
InsufficientBlockVoteMinimum: string;
|
|
643
|
+
InvalidBlockVoteTick: {
|
|
644
|
+
tick: string;
|
|
645
|
+
notebookTick: string;
|
|
646
|
+
};
|
|
627
647
|
};
|
|
628
648
|
};
|
|
629
649
|
/**
|
|
630
|
-
*
|
|
650
|
+
* Lookup74: argon_primitives::account::AccountType
|
|
631
651
|
**/
|
|
632
652
|
ArgonPrimitivesAccountAccountType: {
|
|
633
653
|
_enum: string[];
|
|
634
654
|
};
|
|
635
655
|
/**
|
|
636
|
-
*
|
|
656
|
+
* Lookup75: argon_notary_audit::AccountHistoryLookupError
|
|
637
657
|
**/
|
|
638
658
|
ArgonNotaryAuditAccountHistoryLookupError: {
|
|
639
659
|
_enum: string[];
|
|
640
660
|
};
|
|
641
661
|
/**
|
|
642
|
-
*
|
|
662
|
+
* Lookup78: pallet_chain_transfer::pallet::Event<T>
|
|
643
663
|
**/
|
|
644
664
|
PalletChainTransferEvent: {
|
|
645
665
|
_enum: {
|
|
@@ -688,7 +708,7 @@ declare const _default: {
|
|
|
688
708
|
};
|
|
689
709
|
};
|
|
690
710
|
/**
|
|
691
|
-
*
|
|
711
|
+
* Lookup79: pallet_block_seal_spec::pallet::Event<T>
|
|
692
712
|
**/
|
|
693
713
|
PalletBlockSealSpecEvent: {
|
|
694
714
|
_enum: {
|
|
@@ -707,7 +727,7 @@ declare const _default: {
|
|
|
707
727
|
};
|
|
708
728
|
};
|
|
709
729
|
/**
|
|
710
|
-
*
|
|
730
|
+
* Lookup80: pallet_domains::pallet::Event<T>
|
|
711
731
|
**/
|
|
712
732
|
PalletDomainsEvent: {
|
|
713
733
|
_enum: {
|
|
@@ -737,7 +757,7 @@ declare const _default: {
|
|
|
737
757
|
};
|
|
738
758
|
};
|
|
739
759
|
/**
|
|
740
|
-
*
|
|
760
|
+
* Lookup81: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
|
|
741
761
|
**/
|
|
742
762
|
ArgonPrimitivesDomainZoneRecord: {
|
|
743
763
|
paymentAccount: string;
|
|
@@ -745,7 +765,7 @@ declare const _default: {
|
|
|
745
765
|
versions: string;
|
|
746
766
|
};
|
|
747
767
|
/**
|
|
748
|
-
*
|
|
768
|
+
* Lookup83: argon_primitives::domain::Semver
|
|
749
769
|
**/
|
|
750
770
|
ArgonPrimitivesDomainSemver: {
|
|
751
771
|
major: string;
|
|
@@ -753,21 +773,21 @@ declare const _default: {
|
|
|
753
773
|
patch: string;
|
|
754
774
|
};
|
|
755
775
|
/**
|
|
756
|
-
*
|
|
776
|
+
* Lookup84: argon_primitives::domain::VersionHost
|
|
757
777
|
**/
|
|
758
778
|
ArgonPrimitivesDomainVersionHost: {
|
|
759
779
|
datastoreId: string;
|
|
760
780
|
host: string;
|
|
761
781
|
};
|
|
762
782
|
/**
|
|
763
|
-
*
|
|
783
|
+
* Lookup88: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
|
|
764
784
|
**/
|
|
765
785
|
PalletDomainsDomainRegistration: {
|
|
766
786
|
accountId: string;
|
|
767
787
|
registeredAtTick: string;
|
|
768
788
|
};
|
|
769
789
|
/**
|
|
770
|
-
*
|
|
790
|
+
* Lookup89: pallet_price_index::pallet::Event<T>
|
|
771
791
|
**/
|
|
772
792
|
PalletPriceIndexEvent: {
|
|
773
793
|
_enum: {
|
|
@@ -778,17 +798,7 @@ declare const _default: {
|
|
|
778
798
|
};
|
|
779
799
|
};
|
|
780
800
|
/**
|
|
781
|
-
*
|
|
782
|
-
**/
|
|
783
|
-
PalletSessionEvent: {
|
|
784
|
-
_enum: {
|
|
785
|
-
NewSession: {
|
|
786
|
-
sessionIndex: string;
|
|
787
|
-
};
|
|
788
|
-
};
|
|
789
|
-
};
|
|
790
|
-
/**
|
|
791
|
-
* Lookup88: pallet_block_rewards::pallet::Event<T>
|
|
801
|
+
* Lookup90: pallet_block_rewards::pallet::Event<T>
|
|
792
802
|
**/
|
|
793
803
|
PalletBlockRewardsEvent: {
|
|
794
804
|
_enum: {
|
|
@@ -814,7 +824,7 @@ declare const _default: {
|
|
|
814
824
|
};
|
|
815
825
|
};
|
|
816
826
|
/**
|
|
817
|
-
*
|
|
827
|
+
* Lookup92: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
|
|
818
828
|
**/
|
|
819
829
|
ArgonPrimitivesBlockSealBlockPayout: {
|
|
820
830
|
accountId: string;
|
|
@@ -822,7 +832,7 @@ declare const _default: {
|
|
|
822
832
|
argons: string;
|
|
823
833
|
};
|
|
824
834
|
/**
|
|
825
|
-
*
|
|
835
|
+
* Lookup94: pallet_grandpa::pallet::Event
|
|
826
836
|
**/
|
|
827
837
|
PalletGrandpaEvent: {
|
|
828
838
|
_enum: {
|
|
@@ -834,22 +844,7 @@ declare const _default: {
|
|
|
834
844
|
};
|
|
835
845
|
};
|
|
836
846
|
/**
|
|
837
|
-
*
|
|
838
|
-
**/
|
|
839
|
-
SpConsensusGrandpaAppPublic: string;
|
|
840
|
-
/**
|
|
841
|
-
* Lookup96: pallet_offences::pallet::Event
|
|
842
|
-
**/
|
|
843
|
-
PalletOffencesEvent: {
|
|
844
|
-
_enum: {
|
|
845
|
-
Offence: {
|
|
846
|
-
kind: string;
|
|
847
|
-
timeslot: string;
|
|
848
|
-
};
|
|
849
|
-
};
|
|
850
|
-
};
|
|
851
|
-
/**
|
|
852
|
-
* Lookup98: pallet_mint::pallet::Event<T>
|
|
847
|
+
* Lookup97: pallet_mint::pallet::Event<T>
|
|
853
848
|
**/
|
|
854
849
|
PalletMintEvent: {
|
|
855
850
|
_enum: {
|
|
@@ -869,13 +864,13 @@ declare const _default: {
|
|
|
869
864
|
};
|
|
870
865
|
};
|
|
871
866
|
/**
|
|
872
|
-
*
|
|
867
|
+
* Lookup98: pallet_mint::pallet::MintType
|
|
873
868
|
**/
|
|
874
869
|
PalletMintMintType: {
|
|
875
870
|
_enum: string[];
|
|
876
871
|
};
|
|
877
872
|
/**
|
|
878
|
-
*
|
|
873
|
+
* Lookup99: pallet_balances::pallet::Event<T, I>
|
|
879
874
|
**/
|
|
880
875
|
PalletBalancesEvent: {
|
|
881
876
|
_enum: {
|
|
@@ -973,13 +968,13 @@ declare const _default: {
|
|
|
973
968
|
};
|
|
974
969
|
};
|
|
975
970
|
/**
|
|
976
|
-
*
|
|
971
|
+
* Lookup100: frame_support::traits::tokens::misc::BalanceStatus
|
|
977
972
|
**/
|
|
978
973
|
FrameSupportTokensMiscBalanceStatus: {
|
|
979
974
|
_enum: string[];
|
|
980
975
|
};
|
|
981
976
|
/**
|
|
982
|
-
*
|
|
977
|
+
* Lookup102: pallet_tx_pause::pallet::Event<T>
|
|
983
978
|
**/
|
|
984
979
|
PalletTxPauseEvent: {
|
|
985
980
|
_enum: {
|
|
@@ -992,7 +987,7 @@ declare const _default: {
|
|
|
992
987
|
};
|
|
993
988
|
};
|
|
994
989
|
/**
|
|
995
|
-
*
|
|
990
|
+
* Lookup105: pallet_transaction_payment::pallet::Event<T>
|
|
996
991
|
**/
|
|
997
992
|
PalletTransactionPaymentEvent: {
|
|
998
993
|
_enum: {
|
|
@@ -1004,7 +999,7 @@ declare const _default: {
|
|
|
1004
999
|
};
|
|
1005
1000
|
};
|
|
1006
1001
|
/**
|
|
1007
|
-
*
|
|
1002
|
+
* Lookup106: pallet_utility::pallet::Event
|
|
1008
1003
|
**/
|
|
1009
1004
|
PalletUtilityEvent: {
|
|
1010
1005
|
_enum: {
|
|
@@ -1024,7 +1019,7 @@ declare const _default: {
|
|
|
1024
1019
|
};
|
|
1025
1020
|
};
|
|
1026
1021
|
/**
|
|
1027
|
-
*
|
|
1022
|
+
* Lookup107: pallet_sudo::pallet::Event<T>
|
|
1028
1023
|
**/
|
|
1029
1024
|
PalletSudoEvent: {
|
|
1030
1025
|
_enum: {
|
|
@@ -1045,7 +1040,7 @@ declare const _default: {
|
|
|
1045
1040
|
};
|
|
1046
1041
|
};
|
|
1047
1042
|
/**
|
|
1048
|
-
*
|
|
1043
|
+
* Lookup109: frame_system::Phase
|
|
1049
1044
|
**/
|
|
1050
1045
|
FrameSystemPhase: {
|
|
1051
1046
|
_enum: {
|
|
@@ -1055,21 +1050,21 @@ declare const _default: {
|
|
|
1055
1050
|
};
|
|
1056
1051
|
};
|
|
1057
1052
|
/**
|
|
1058
|
-
*
|
|
1053
|
+
* Lookup113: frame_system::LastRuntimeUpgradeInfo
|
|
1059
1054
|
**/
|
|
1060
1055
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1061
1056
|
specVersion: string;
|
|
1062
1057
|
specName: string;
|
|
1063
1058
|
};
|
|
1064
1059
|
/**
|
|
1065
|
-
*
|
|
1060
|
+
* Lookup114: frame_system::CodeUpgradeAuthorization<T>
|
|
1066
1061
|
**/
|
|
1067
1062
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1068
1063
|
codeHash: string;
|
|
1069
1064
|
checkVersion: string;
|
|
1070
1065
|
};
|
|
1071
1066
|
/**
|
|
1072
|
-
*
|
|
1067
|
+
* Lookup115: frame_system::pallet::Call<T>
|
|
1073
1068
|
**/
|
|
1074
1069
|
FrameSystemCall: {
|
|
1075
1070
|
_enum: {
|
|
@@ -1114,7 +1109,7 @@ declare const _default: {
|
|
|
1114
1109
|
};
|
|
1115
1110
|
};
|
|
1116
1111
|
/**
|
|
1117
|
-
*
|
|
1112
|
+
* Lookup119: frame_system::limits::BlockWeights
|
|
1118
1113
|
**/
|
|
1119
1114
|
FrameSystemLimitsBlockWeights: {
|
|
1120
1115
|
baseBlock: string;
|
|
@@ -1122,7 +1117,7 @@ declare const _default: {
|
|
|
1122
1117
|
perClass: string;
|
|
1123
1118
|
};
|
|
1124
1119
|
/**
|
|
1125
|
-
*
|
|
1120
|
+
* Lookup120: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1126
1121
|
**/
|
|
1127
1122
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1128
1123
|
normal: string;
|
|
@@ -1130,7 +1125,7 @@ declare const _default: {
|
|
|
1130
1125
|
mandatory: string;
|
|
1131
1126
|
};
|
|
1132
1127
|
/**
|
|
1133
|
-
*
|
|
1128
|
+
* Lookup121: frame_system::limits::WeightsPerClass
|
|
1134
1129
|
**/
|
|
1135
1130
|
FrameSystemLimitsWeightsPerClass: {
|
|
1136
1131
|
baseExtrinsic: string;
|
|
@@ -1139,13 +1134,13 @@ declare const _default: {
|
|
|
1139
1134
|
reserved: string;
|
|
1140
1135
|
};
|
|
1141
1136
|
/**
|
|
1142
|
-
*
|
|
1137
|
+
* Lookup123: frame_system::limits::BlockLength
|
|
1143
1138
|
**/
|
|
1144
1139
|
FrameSystemLimitsBlockLength: {
|
|
1145
1140
|
max: string;
|
|
1146
1141
|
};
|
|
1147
1142
|
/**
|
|
1148
|
-
*
|
|
1143
|
+
* Lookup124: frame_support::dispatch::PerDispatchClass<T>
|
|
1149
1144
|
**/
|
|
1150
1145
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1151
1146
|
normal: string;
|
|
@@ -1153,14 +1148,14 @@ declare const _default: {
|
|
|
1153
1148
|
mandatory: string;
|
|
1154
1149
|
};
|
|
1155
1150
|
/**
|
|
1156
|
-
*
|
|
1151
|
+
* Lookup125: sp_weights::RuntimeDbWeight
|
|
1157
1152
|
**/
|
|
1158
1153
|
SpWeightsRuntimeDbWeight: {
|
|
1159
1154
|
read: string;
|
|
1160
1155
|
write: string;
|
|
1161
1156
|
};
|
|
1162
1157
|
/**
|
|
1163
|
-
*
|
|
1158
|
+
* Lookup126: sp_version::RuntimeVersion
|
|
1164
1159
|
**/
|
|
1165
1160
|
SpVersionRuntimeVersion: {
|
|
1166
1161
|
specName: string;
|
|
@@ -1173,13 +1168,13 @@ declare const _default: {
|
|
|
1173
1168
|
stateVersion: string;
|
|
1174
1169
|
};
|
|
1175
1170
|
/**
|
|
1176
|
-
*
|
|
1171
|
+
* Lookup131: frame_system::pallet::Error<T>
|
|
1177
1172
|
**/
|
|
1178
1173
|
FrameSystemError: {
|
|
1179
1174
|
_enum: string[];
|
|
1180
1175
|
};
|
|
1181
1176
|
/**
|
|
1182
|
-
*
|
|
1177
|
+
* Lookup132: pallet_timestamp::pallet::Call<T>
|
|
1183
1178
|
**/
|
|
1184
1179
|
PalletTimestampCall: {
|
|
1185
1180
|
_enum: {
|
|
@@ -1189,7 +1184,7 @@ declare const _default: {
|
|
|
1189
1184
|
};
|
|
1190
1185
|
};
|
|
1191
1186
|
/**
|
|
1192
|
-
*
|
|
1187
|
+
* Lookup134: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
1193
1188
|
**/
|
|
1194
1189
|
PalletMultisigMultisig: {
|
|
1195
1190
|
when: string;
|
|
@@ -1198,7 +1193,7 @@ declare const _default: {
|
|
|
1198
1193
|
approvals: string;
|
|
1199
1194
|
};
|
|
1200
1195
|
/**
|
|
1201
|
-
*
|
|
1196
|
+
* Lookup137: pallet_multisig::pallet::Call<T>
|
|
1202
1197
|
**/
|
|
1203
1198
|
PalletMultisigCall: {
|
|
1204
1199
|
_enum: {
|
|
@@ -1229,7 +1224,7 @@ declare const _default: {
|
|
|
1229
1224
|
};
|
|
1230
1225
|
};
|
|
1231
1226
|
/**
|
|
1232
|
-
*
|
|
1227
|
+
* Lookup139: pallet_proxy::pallet::Call<T>
|
|
1233
1228
|
**/
|
|
1234
1229
|
PalletProxyCall: {
|
|
1235
1230
|
_enum: {
|
|
@@ -1282,29 +1277,33 @@ declare const _default: {
|
|
|
1282
1277
|
};
|
|
1283
1278
|
};
|
|
1284
1279
|
/**
|
|
1285
|
-
*
|
|
1280
|
+
* Lookup144: pallet_ticks::pallet::Call<T>
|
|
1286
1281
|
**/
|
|
1287
1282
|
PalletTicksCall: string;
|
|
1288
1283
|
/**
|
|
1289
|
-
*
|
|
1284
|
+
* Lookup145: pallet_mining_slot::pallet::Call<T>
|
|
1290
1285
|
**/
|
|
1291
1286
|
PalletMiningSlotCall: {
|
|
1292
1287
|
_enum: {
|
|
1293
1288
|
bid: {
|
|
1289
|
+
_alias: {
|
|
1290
|
+
keys_: string;
|
|
1291
|
+
};
|
|
1294
1292
|
bondInfo: string;
|
|
1295
1293
|
rewardDestination: string;
|
|
1294
|
+
keys_: string;
|
|
1296
1295
|
};
|
|
1297
1296
|
};
|
|
1298
1297
|
};
|
|
1299
1298
|
/**
|
|
1300
|
-
*
|
|
1299
|
+
* Lookup147: pallet_mining_slot::MiningSlotBid<VaultId, Balance>
|
|
1301
1300
|
**/
|
|
1302
1301
|
PalletMiningSlotMiningSlotBid: {
|
|
1303
1302
|
vaultId: string;
|
|
1304
1303
|
amount: string;
|
|
1305
1304
|
};
|
|
1306
1305
|
/**
|
|
1307
|
-
*
|
|
1306
|
+
* Lookup148: pallet_bitcoin_utxos::pallet::Call<T>
|
|
1308
1307
|
**/
|
|
1309
1308
|
PalletBitcoinUtxosCall: {
|
|
1310
1309
|
_enum: {
|
|
@@ -1321,7 +1320,7 @@ declare const _default: {
|
|
|
1321
1320
|
};
|
|
1322
1321
|
};
|
|
1323
1322
|
/**
|
|
1324
|
-
*
|
|
1323
|
+
* Lookup149: argon_primitives::inherents::BitcoinUtxoSync
|
|
1325
1324
|
**/
|
|
1326
1325
|
ArgonPrimitivesInherentsBitcoinUtxoSync: {
|
|
1327
1326
|
spent: string;
|
|
@@ -1330,14 +1329,14 @@ declare const _default: {
|
|
|
1330
1329
|
syncToBlock: string;
|
|
1331
1330
|
};
|
|
1332
1331
|
/**
|
|
1333
|
-
*
|
|
1332
|
+
* Lookup159: argon_primitives::bitcoin::BitcoinBlock
|
|
1334
1333
|
**/
|
|
1335
1334
|
ArgonPrimitivesBitcoinBitcoinBlock: {
|
|
1336
1335
|
blockHeight: string;
|
|
1337
1336
|
blockHash: string;
|
|
1338
1337
|
};
|
|
1339
1338
|
/**
|
|
1340
|
-
*
|
|
1339
|
+
* Lookup160: pallet_vaults::pallet::Call<T>
|
|
1341
1340
|
**/
|
|
1342
1341
|
PalletVaultsCall: {
|
|
1343
1342
|
_enum: {
|
|
@@ -1364,7 +1363,7 @@ declare const _default: {
|
|
|
1364
1363
|
};
|
|
1365
1364
|
};
|
|
1366
1365
|
/**
|
|
1367
|
-
*
|
|
1366
|
+
* Lookup161: pallet_vaults::pallet::VaultConfig<Balance>
|
|
1368
1367
|
**/
|
|
1369
1368
|
PalletVaultsVaultConfig: {
|
|
1370
1369
|
terms: string;
|
|
@@ -1374,7 +1373,7 @@ declare const _default: {
|
|
|
1374
1373
|
securitizationPercent: string;
|
|
1375
1374
|
};
|
|
1376
1375
|
/**
|
|
1377
|
-
*
|
|
1376
|
+
* Lookup162: argon_primitives::bond::VaultTerms<Balance>
|
|
1378
1377
|
**/
|
|
1379
1378
|
ArgonPrimitivesBondVaultTerms: {
|
|
1380
1379
|
bitcoinAnnualPercentRate: string;
|
|
@@ -1384,11 +1383,11 @@ declare const _default: {
|
|
|
1384
1383
|
miningRewardSharingPercentTake: string;
|
|
1385
1384
|
};
|
|
1386
1385
|
/**
|
|
1387
|
-
*
|
|
1386
|
+
* Lookup163: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
1388
1387
|
**/
|
|
1389
1388
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: string;
|
|
1390
1389
|
/**
|
|
1391
|
-
*
|
|
1390
|
+
* Lookup165: pallet_bond::pallet::Call<T>
|
|
1392
1391
|
**/
|
|
1393
1392
|
PalletBondCall: {
|
|
1394
1393
|
_enum: {
|
|
@@ -1412,11 +1411,11 @@ declare const _default: {
|
|
|
1412
1411
|
};
|
|
1413
1412
|
};
|
|
1414
1413
|
/**
|
|
1415
|
-
*
|
|
1414
|
+
* Lookup166: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
1416
1415
|
**/
|
|
1417
1416
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: string;
|
|
1418
1417
|
/**
|
|
1419
|
-
*
|
|
1418
|
+
* Lookup170: pallet_notaries::pallet::Call<T>
|
|
1420
1419
|
**/
|
|
1421
1420
|
PalletNotariesCall: {
|
|
1422
1421
|
_enum: {
|
|
@@ -1434,7 +1433,7 @@ declare const _default: {
|
|
|
1434
1433
|
};
|
|
1435
1434
|
};
|
|
1436
1435
|
/**
|
|
1437
|
-
*
|
|
1436
|
+
* Lookup171: pallet_notebook::pallet::Call<T>
|
|
1438
1437
|
**/
|
|
1439
1438
|
PalletNotebookCall: {
|
|
1440
1439
|
_enum: {
|
|
@@ -1444,14 +1443,14 @@ declare const _default: {
|
|
|
1444
1443
|
};
|
|
1445
1444
|
};
|
|
1446
1445
|
/**
|
|
1447
|
-
*
|
|
1446
|
+
* Lookup173: argon_primitives::notebook::SignedNotebookHeader
|
|
1448
1447
|
**/
|
|
1449
1448
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
1450
1449
|
header: string;
|
|
1451
1450
|
signature: string;
|
|
1452
1451
|
};
|
|
1453
1452
|
/**
|
|
1454
|
-
*
|
|
1453
|
+
* Lookup174: argon_primitives::notebook::NotebookHeader
|
|
1455
1454
|
**/
|
|
1456
1455
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
1457
1456
|
version: string;
|
|
@@ -1471,7 +1470,7 @@ declare const _default: {
|
|
|
1471
1470
|
domains: string;
|
|
1472
1471
|
};
|
|
1473
1472
|
/**
|
|
1474
|
-
*
|
|
1473
|
+
* Lookup177: argon_primitives::notebook::ChainTransfer
|
|
1475
1474
|
**/
|
|
1476
1475
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
1477
1476
|
_enum: {
|
|
@@ -1485,14 +1484,14 @@ declare const _default: {
|
|
|
1485
1484
|
};
|
|
1486
1485
|
};
|
|
1487
1486
|
/**
|
|
1488
|
-
*
|
|
1487
|
+
* Lookup180: argon_primitives::balance_change::AccountOrigin
|
|
1489
1488
|
**/
|
|
1490
1489
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
1491
1490
|
notebookNumber: string;
|
|
1492
1491
|
accountUid: string;
|
|
1493
1492
|
};
|
|
1494
1493
|
/**
|
|
1495
|
-
*
|
|
1494
|
+
* Lookup188: pallet_chain_transfer::pallet::Call<T>
|
|
1496
1495
|
**/
|
|
1497
1496
|
PalletChainTransferCall: {
|
|
1498
1497
|
_enum: {
|
|
@@ -1503,7 +1502,7 @@ declare const _default: {
|
|
|
1503
1502
|
};
|
|
1504
1503
|
};
|
|
1505
1504
|
/**
|
|
1506
|
-
*
|
|
1505
|
+
* Lookup189: pallet_block_seal_spec::pallet::Call<T>
|
|
1507
1506
|
**/
|
|
1508
1507
|
PalletBlockSealSpecCall: {
|
|
1509
1508
|
_enum: {
|
|
@@ -1514,7 +1513,7 @@ declare const _default: {
|
|
|
1514
1513
|
};
|
|
1515
1514
|
};
|
|
1516
1515
|
/**
|
|
1517
|
-
*
|
|
1516
|
+
* Lookup190: pallet_domains::pallet::Call<T>
|
|
1518
1517
|
**/
|
|
1519
1518
|
PalletDomainsCall: {
|
|
1520
1519
|
_enum: {
|
|
@@ -1525,7 +1524,7 @@ declare const _default: {
|
|
|
1525
1524
|
};
|
|
1526
1525
|
};
|
|
1527
1526
|
/**
|
|
1528
|
-
*
|
|
1527
|
+
* Lookup191: pallet_price_index::pallet::Call<T>
|
|
1529
1528
|
**/
|
|
1530
1529
|
PalletPriceIndexCall: {
|
|
1531
1530
|
_enum: {
|
|
@@ -1538,7 +1537,7 @@ declare const _default: {
|
|
|
1538
1537
|
};
|
|
1539
1538
|
};
|
|
1540
1539
|
/**
|
|
1541
|
-
*
|
|
1540
|
+
* Lookup192: pallet_price_index::PriceIndex
|
|
1542
1541
|
**/
|
|
1543
1542
|
PalletPriceIndexPriceIndex: {
|
|
1544
1543
|
btcUsdPrice: string;
|
|
@@ -1547,33 +1546,7 @@ declare const _default: {
|
|
|
1547
1546
|
tick: string;
|
|
1548
1547
|
};
|
|
1549
1548
|
/**
|
|
1550
|
-
*
|
|
1551
|
-
**/
|
|
1552
|
-
PalletSessionCall: {
|
|
1553
|
-
_enum: {
|
|
1554
|
-
set_keys: {
|
|
1555
|
-
_alias: {
|
|
1556
|
-
keys_: string;
|
|
1557
|
-
};
|
|
1558
|
-
keys_: string;
|
|
1559
|
-
proof: string;
|
|
1560
|
-
};
|
|
1561
|
-
purge_keys: string;
|
|
1562
|
-
};
|
|
1563
|
-
};
|
|
1564
|
-
/**
|
|
1565
|
-
* Lookup195: argon_node_runtime::opaque::SessionKeys
|
|
1566
|
-
**/
|
|
1567
|
-
ArgonNodeRuntimeOpaqueSessionKeys: {
|
|
1568
|
-
grandpa: string;
|
|
1569
|
-
blockSealAuthority: string;
|
|
1570
|
-
};
|
|
1571
|
-
/**
|
|
1572
|
-
* Lookup196: argon_primitives::block_seal::app::Public
|
|
1573
|
-
**/
|
|
1574
|
-
ArgonPrimitivesBlockSealAppPublic: string;
|
|
1575
|
-
/**
|
|
1576
|
-
* Lookup197: pallet_block_seal::pallet::Call<T>
|
|
1549
|
+
* Lookup193: pallet_block_seal::pallet::Call<T>
|
|
1577
1550
|
**/
|
|
1578
1551
|
PalletBlockSealCall: {
|
|
1579
1552
|
_enum: {
|
|
@@ -1583,7 +1556,7 @@ declare const _default: {
|
|
|
1583
1556
|
};
|
|
1584
1557
|
};
|
|
1585
1558
|
/**
|
|
1586
|
-
*
|
|
1559
|
+
* Lookup194: argon_primitives::inherents::BlockSealInherent
|
|
1587
1560
|
**/
|
|
1588
1561
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
1589
1562
|
_enum: {
|
|
@@ -1599,7 +1572,7 @@ declare const _default: {
|
|
|
1599
1572
|
};
|
|
1600
1573
|
};
|
|
1601
1574
|
/**
|
|
1602
|
-
*
|
|
1575
|
+
* Lookup197: argon_primitives::balance_change::MerkleProof
|
|
1603
1576
|
**/
|
|
1604
1577
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
1605
1578
|
proof: string;
|
|
@@ -1607,7 +1580,7 @@ declare const _default: {
|
|
|
1607
1580
|
leafIndex: string;
|
|
1608
1581
|
};
|
|
1609
1582
|
/**
|
|
1610
|
-
*
|
|
1583
|
+
* Lookup199: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
1611
1584
|
**/
|
|
1612
1585
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
1613
1586
|
accountId: string;
|
|
@@ -1616,9 +1589,10 @@ declare const _default: {
|
|
|
1616
1589
|
power: string;
|
|
1617
1590
|
signature: string;
|
|
1618
1591
|
blockRewardsAccountId: string;
|
|
1592
|
+
tick: string;
|
|
1619
1593
|
};
|
|
1620
1594
|
/**
|
|
1621
|
-
*
|
|
1595
|
+
* Lookup200: sp_runtime::MultiSignature
|
|
1622
1596
|
**/
|
|
1623
1597
|
SpRuntimeMultiSignature: {
|
|
1624
1598
|
_enum: {
|
|
@@ -1628,15 +1602,15 @@ declare const _default: {
|
|
|
1628
1602
|
};
|
|
1629
1603
|
};
|
|
1630
1604
|
/**
|
|
1631
|
-
*
|
|
1605
|
+
* Lookup202: argon_primitives::block_seal::app::Signature
|
|
1632
1606
|
**/
|
|
1633
1607
|
ArgonPrimitivesBlockSealAppSignature: string;
|
|
1634
1608
|
/**
|
|
1635
|
-
*
|
|
1609
|
+
* Lookup203: pallet_block_rewards::pallet::Call<T>
|
|
1636
1610
|
**/
|
|
1637
1611
|
PalletBlockRewardsCall: string;
|
|
1638
1612
|
/**
|
|
1639
|
-
*
|
|
1613
|
+
* Lookup204: pallet_grandpa::pallet::Call<T>
|
|
1640
1614
|
**/
|
|
1641
1615
|
PalletGrandpaCall: {
|
|
1642
1616
|
_enum: {
|
|
@@ -1655,14 +1629,14 @@ declare const _default: {
|
|
|
1655
1629
|
};
|
|
1656
1630
|
};
|
|
1657
1631
|
/**
|
|
1658
|
-
*
|
|
1632
|
+
* Lookup205: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1659
1633
|
**/
|
|
1660
1634
|
SpConsensusGrandpaEquivocationProof: {
|
|
1661
1635
|
setId: string;
|
|
1662
1636
|
equivocation: string;
|
|
1663
1637
|
};
|
|
1664
1638
|
/**
|
|
1665
|
-
*
|
|
1639
|
+
* Lookup206: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1666
1640
|
**/
|
|
1667
1641
|
SpConsensusGrandpaEquivocation: {
|
|
1668
1642
|
_enum: {
|
|
@@ -1671,7 +1645,7 @@ declare const _default: {
|
|
|
1671
1645
|
};
|
|
1672
1646
|
};
|
|
1673
1647
|
/**
|
|
1674
|
-
*
|
|
1648
|
+
* Lookup207: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1675
1649
|
**/
|
|
1676
1650
|
FinalityGrandpaEquivocationPrevote: {
|
|
1677
1651
|
roundNumber: string;
|
|
@@ -1680,18 +1654,18 @@ declare const _default: {
|
|
|
1680
1654
|
second: string;
|
|
1681
1655
|
};
|
|
1682
1656
|
/**
|
|
1683
|
-
*
|
|
1657
|
+
* Lookup208: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1684
1658
|
**/
|
|
1685
1659
|
FinalityGrandpaPrevote: {
|
|
1686
1660
|
targetHash: string;
|
|
1687
1661
|
targetNumber: string;
|
|
1688
1662
|
};
|
|
1689
1663
|
/**
|
|
1690
|
-
*
|
|
1664
|
+
* Lookup209: sp_consensus_grandpa::app::Signature
|
|
1691
1665
|
**/
|
|
1692
1666
|
SpConsensusGrandpaAppSignature: string;
|
|
1693
1667
|
/**
|
|
1694
|
-
*
|
|
1668
|
+
* Lookup211: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1695
1669
|
**/
|
|
1696
1670
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1697
1671
|
roundNumber: string;
|
|
@@ -1700,26 +1674,22 @@ declare const _default: {
|
|
|
1700
1674
|
second: string;
|
|
1701
1675
|
};
|
|
1702
1676
|
/**
|
|
1703
|
-
*
|
|
1677
|
+
* Lookup212: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1704
1678
|
**/
|
|
1705
1679
|
FinalityGrandpaPrecommit: {
|
|
1706
1680
|
targetHash: string;
|
|
1707
1681
|
targetNumber: string;
|
|
1708
1682
|
};
|
|
1709
1683
|
/**
|
|
1710
|
-
*
|
|
1684
|
+
* Lookup214: sp_core::Void
|
|
1711
1685
|
**/
|
|
1712
|
-
|
|
1713
|
-
session: string;
|
|
1714
|
-
trieNodes: string;
|
|
1715
|
-
validatorCount: string;
|
|
1716
|
-
};
|
|
1686
|
+
SpCoreVoid: string;
|
|
1717
1687
|
/**
|
|
1718
|
-
*
|
|
1688
|
+
* Lookup215: pallet_mint::pallet::Call<T>
|
|
1719
1689
|
**/
|
|
1720
1690
|
PalletMintCall: string;
|
|
1721
1691
|
/**
|
|
1722
|
-
*
|
|
1692
|
+
* Lookup216: pallet_balances::pallet::Call<T, I>
|
|
1723
1693
|
**/
|
|
1724
1694
|
PalletBalancesCall: {
|
|
1725
1695
|
_enum: {
|
|
@@ -1764,13 +1734,13 @@ declare const _default: {
|
|
|
1764
1734
|
};
|
|
1765
1735
|
};
|
|
1766
1736
|
/**
|
|
1767
|
-
*
|
|
1737
|
+
* Lookup217: pallet_balances::types::AdjustmentDirection
|
|
1768
1738
|
**/
|
|
1769
1739
|
PalletBalancesAdjustmentDirection: {
|
|
1770
1740
|
_enum: string[];
|
|
1771
1741
|
};
|
|
1772
1742
|
/**
|
|
1773
|
-
*
|
|
1743
|
+
* Lookup219: pallet_tx_pause::pallet::Call<T>
|
|
1774
1744
|
**/
|
|
1775
1745
|
PalletTxPauseCall: {
|
|
1776
1746
|
_enum: {
|
|
@@ -1783,7 +1753,7 @@ declare const _default: {
|
|
|
1783
1753
|
};
|
|
1784
1754
|
};
|
|
1785
1755
|
/**
|
|
1786
|
-
*
|
|
1756
|
+
* Lookup220: pallet_utility::pallet::Call<T>
|
|
1787
1757
|
**/
|
|
1788
1758
|
PalletUtilityCall: {
|
|
1789
1759
|
_enum: {
|
|
@@ -1811,7 +1781,7 @@ declare const _default: {
|
|
|
1811
1781
|
};
|
|
1812
1782
|
};
|
|
1813
1783
|
/**
|
|
1814
|
-
*
|
|
1784
|
+
* Lookup222: argon_node_runtime::OriginCaller
|
|
1815
1785
|
**/
|
|
1816
1786
|
ArgonNodeRuntimeOriginCaller: {
|
|
1817
1787
|
_enum: {
|
|
@@ -1820,7 +1790,7 @@ declare const _default: {
|
|
|
1820
1790
|
};
|
|
1821
1791
|
};
|
|
1822
1792
|
/**
|
|
1823
|
-
*
|
|
1793
|
+
* Lookup223: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1824
1794
|
**/
|
|
1825
1795
|
FrameSupportDispatchRawOrigin: {
|
|
1826
1796
|
_enum: {
|
|
@@ -1830,11 +1800,7 @@ declare const _default: {
|
|
|
1830
1800
|
};
|
|
1831
1801
|
};
|
|
1832
1802
|
/**
|
|
1833
|
-
*
|
|
1834
|
-
**/
|
|
1835
|
-
SpCoreVoid: string;
|
|
1836
|
-
/**
|
|
1837
|
-
* Lookup229: pallet_sudo::pallet::Call<T>
|
|
1803
|
+
* Lookup224: pallet_sudo::pallet::Call<T>
|
|
1838
1804
|
**/
|
|
1839
1805
|
PalletSudoCall: {
|
|
1840
1806
|
_enum: {
|
|
@@ -1859,13 +1825,13 @@ declare const _default: {
|
|
|
1859
1825
|
};
|
|
1860
1826
|
};
|
|
1861
1827
|
/**
|
|
1862
|
-
*
|
|
1828
|
+
* Lookup226: pallet_multisig::pallet::Error<T>
|
|
1863
1829
|
**/
|
|
1864
1830
|
PalletMultisigError: {
|
|
1865
1831
|
_enum: string[];
|
|
1866
1832
|
};
|
|
1867
1833
|
/**
|
|
1868
|
-
*
|
|
1834
|
+
* Lookup229: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_node_runtime::ProxyType, BlockNumber>
|
|
1869
1835
|
**/
|
|
1870
1836
|
PalletProxyProxyDefinition: {
|
|
1871
1837
|
delegate: string;
|
|
@@ -1873,7 +1839,7 @@ declare const _default: {
|
|
|
1873
1839
|
delay: string;
|
|
1874
1840
|
};
|
|
1875
1841
|
/**
|
|
1876
|
-
*
|
|
1842
|
+
* Lookup233: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
1877
1843
|
**/
|
|
1878
1844
|
PalletProxyAnnouncement: {
|
|
1879
1845
|
real: string;
|
|
@@ -1881,13 +1847,13 @@ declare const _default: {
|
|
|
1881
1847
|
height: string;
|
|
1882
1848
|
};
|
|
1883
1849
|
/**
|
|
1884
|
-
*
|
|
1850
|
+
* Lookup235: pallet_proxy::pallet::Error<T>
|
|
1885
1851
|
**/
|
|
1886
1852
|
PalletProxyError: {
|
|
1887
1853
|
_enum: string[];
|
|
1888
1854
|
};
|
|
1889
1855
|
/**
|
|
1890
|
-
*
|
|
1856
|
+
* Lookup236: argon_primitives::tick::Ticker
|
|
1891
1857
|
**/
|
|
1892
1858
|
ArgonPrimitivesTickTicker: {
|
|
1893
1859
|
tickDurationMillis: string;
|
|
@@ -1895,11 +1861,11 @@ declare const _default: {
|
|
|
1895
1861
|
channelHoldExpirationTicks: string;
|
|
1896
1862
|
};
|
|
1897
1863
|
/**
|
|
1898
|
-
*
|
|
1864
|
+
* Lookup238: pallet_ticks::pallet::Error<T>
|
|
1899
1865
|
**/
|
|
1900
1866
|
PalletTicksError: string;
|
|
1901
1867
|
/**
|
|
1902
|
-
*
|
|
1868
|
+
* Lookup245: argon_primitives::block_seal::MiningSlotConfig<BlockNumber>
|
|
1903
1869
|
**/
|
|
1904
1870
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
1905
1871
|
blocksBeforeBidEndForVrfClose: string;
|
|
@@ -1907,7 +1873,7 @@ declare const _default: {
|
|
|
1907
1873
|
slotBiddingStartBlock: string;
|
|
1908
1874
|
};
|
|
1909
1875
|
/**
|
|
1910
|
-
*
|
|
1876
|
+
* Lookup246: pallet_mining_slot::pallet::Error<T>
|
|
1911
1877
|
**/
|
|
1912
1878
|
PalletMiningSlotError: {
|
|
1913
1879
|
_enum: {
|
|
@@ -1935,13 +1901,13 @@ declare const _default: {
|
|
|
1935
1901
|
};
|
|
1936
1902
|
};
|
|
1937
1903
|
/**
|
|
1938
|
-
*
|
|
1904
|
+
* Lookup247: argon_primitives::bond::BondError
|
|
1939
1905
|
**/
|
|
1940
1906
|
ArgonPrimitivesBondBondError: {
|
|
1941
1907
|
_enum: string[];
|
|
1942
1908
|
};
|
|
1943
1909
|
/**
|
|
1944
|
-
*
|
|
1910
|
+
* Lookup248: argon_primitives::bitcoin::UtxoValue
|
|
1945
1911
|
**/
|
|
1946
1912
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
1947
1913
|
utxoId: string;
|
|
@@ -1951,7 +1917,7 @@ declare const _default: {
|
|
|
1951
1917
|
watchForSpentUntilHeight: string;
|
|
1952
1918
|
};
|
|
1953
1919
|
/**
|
|
1954
|
-
*
|
|
1920
|
+
* Lookup249: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
1955
1921
|
**/
|
|
1956
1922
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
1957
1923
|
_enum: {
|
|
@@ -1961,19 +1927,19 @@ declare const _default: {
|
|
|
1961
1927
|
};
|
|
1962
1928
|
};
|
|
1963
1929
|
/**
|
|
1964
|
-
*
|
|
1930
|
+
* Lookup254: argon_primitives::bitcoin::BitcoinNetwork
|
|
1965
1931
|
**/
|
|
1966
1932
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
1967
1933
|
_enum: string[];
|
|
1968
1934
|
};
|
|
1969
1935
|
/**
|
|
1970
|
-
*
|
|
1936
|
+
* Lookup257: pallet_bitcoin_utxos::pallet::Error<T>
|
|
1971
1937
|
**/
|
|
1972
1938
|
PalletBitcoinUtxosError: {
|
|
1973
1939
|
_enum: string[];
|
|
1974
1940
|
};
|
|
1975
1941
|
/**
|
|
1976
|
-
*
|
|
1942
|
+
* Lookup258: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1977
1943
|
**/
|
|
1978
1944
|
ArgonPrimitivesBondVault: {
|
|
1979
1945
|
operatorAccountId: string;
|
|
@@ -1986,7 +1952,7 @@ declare const _default: {
|
|
|
1986
1952
|
pendingTerms: string;
|
|
1987
1953
|
};
|
|
1988
1954
|
/**
|
|
1989
|
-
*
|
|
1955
|
+
* Lookup259: argon_primitives::bond::VaultArgons<Balance>
|
|
1990
1956
|
**/
|
|
1991
1957
|
ArgonPrimitivesBondVaultArgons: {
|
|
1992
1958
|
annualPercentRate: string;
|
|
@@ -1995,7 +1961,7 @@ declare const _default: {
|
|
|
1995
1961
|
baseFee: string;
|
|
1996
1962
|
};
|
|
1997
1963
|
/**
|
|
1998
|
-
*
|
|
1964
|
+
* Lookup263: argon_primitives::bitcoin::BitcoinXPub
|
|
1999
1965
|
**/
|
|
2000
1966
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
2001
1967
|
publicKey: string;
|
|
@@ -2006,19 +1972,19 @@ declare const _default: {
|
|
|
2006
1972
|
network: string;
|
|
2007
1973
|
};
|
|
2008
1974
|
/**
|
|
2009
|
-
*
|
|
1975
|
+
* Lookup265: argon_primitives::bitcoin::NetworkKind
|
|
2010
1976
|
**/
|
|
2011
1977
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
2012
1978
|
_enum: string[];
|
|
2013
1979
|
};
|
|
2014
1980
|
/**
|
|
2015
|
-
*
|
|
1981
|
+
* Lookup267: pallet_vaults::pallet::Error<T>
|
|
2016
1982
|
**/
|
|
2017
1983
|
PalletVaultsError: {
|
|
2018
1984
|
_enum: string[];
|
|
2019
1985
|
};
|
|
2020
1986
|
/**
|
|
2021
|
-
*
|
|
1987
|
+
* Lookup268: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
2022
1988
|
**/
|
|
2023
1989
|
ArgonPrimitivesBond: {
|
|
2024
1990
|
bondType: string;
|
|
@@ -2032,7 +1998,7 @@ declare const _default: {
|
|
|
2032
1998
|
expiration: string;
|
|
2033
1999
|
};
|
|
2034
2000
|
/**
|
|
2035
|
-
*
|
|
2001
|
+
* Lookup271: pallet_bond::pallet::UtxoState
|
|
2036
2002
|
**/
|
|
2037
2003
|
PalletBondUtxoState: {
|
|
2038
2004
|
bondId: string;
|
|
@@ -2048,7 +2014,7 @@ declare const _default: {
|
|
|
2048
2014
|
isVerified: string;
|
|
2049
2015
|
};
|
|
2050
2016
|
/**
|
|
2051
|
-
*
|
|
2017
|
+
* Lookup275: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
2052
2018
|
**/
|
|
2053
2019
|
PalletBondUtxoCosignRequest: {
|
|
2054
2020
|
bondId: string;
|
|
@@ -2059,7 +2025,7 @@ declare const _default: {
|
|
|
2059
2025
|
redemptionPrice: string;
|
|
2060
2026
|
};
|
|
2061
2027
|
/**
|
|
2062
|
-
*
|
|
2028
|
+
* Lookup279: pallet_bond::pallet::Error<T>
|
|
2063
2029
|
**/
|
|
2064
2030
|
PalletBondError: {
|
|
2065
2031
|
_enum: {
|
|
@@ -2095,13 +2061,13 @@ declare const _default: {
|
|
|
2095
2061
|
};
|
|
2096
2062
|
};
|
|
2097
2063
|
/**
|
|
2098
|
-
*
|
|
2064
|
+
* Lookup291: pallet_notaries::pallet::Error<T>
|
|
2099
2065
|
**/
|
|
2100
2066
|
PalletNotariesError: {
|
|
2101
2067
|
_enum: string[];
|
|
2102
2068
|
};
|
|
2103
2069
|
/**
|
|
2104
|
-
*
|
|
2070
|
+
* Lookup295: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2105
2071
|
**/
|
|
2106
2072
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2107
2073
|
notebookNumber: string;
|
|
@@ -2111,13 +2077,13 @@ declare const _default: {
|
|
|
2111
2077
|
parentSecret: string;
|
|
2112
2078
|
};
|
|
2113
2079
|
/**
|
|
2114
|
-
*
|
|
2080
|
+
* Lookup297: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
2115
2081
|
**/
|
|
2116
2082
|
ArgonPrimitivesDigestsNotebookDigest: {
|
|
2117
2083
|
notebooks: string;
|
|
2118
2084
|
};
|
|
2119
2085
|
/**
|
|
2120
|
-
*
|
|
2086
|
+
* Lookup299: argon_primitives::digests::NotebookDigestRecord<argon_notary_audit::error::VerifyError>
|
|
2121
2087
|
**/
|
|
2122
2088
|
ArgonPrimitivesDigestsNotebookDigestRecord: {
|
|
2123
2089
|
notaryId: string;
|
|
@@ -2126,13 +2092,13 @@ declare const _default: {
|
|
|
2126
2092
|
auditFirstFailure: string;
|
|
2127
2093
|
};
|
|
2128
2094
|
/**
|
|
2129
|
-
*
|
|
2095
|
+
* Lookup302: pallet_notebook::pallet::Error<T>
|
|
2130
2096
|
**/
|
|
2131
2097
|
PalletNotebookError: {
|
|
2132
2098
|
_enum: string[];
|
|
2133
2099
|
};
|
|
2134
2100
|
/**
|
|
2135
|
-
*
|
|
2101
|
+
* Lookup303: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2136
2102
|
**/
|
|
2137
2103
|
PalletChainTransferQueuedTransferOut: {
|
|
2138
2104
|
accountId: string;
|
|
@@ -2141,17 +2107,17 @@ declare const _default: {
|
|
|
2141
2107
|
notaryId: string;
|
|
2142
2108
|
};
|
|
2143
2109
|
/**
|
|
2144
|
-
*
|
|
2110
|
+
* Lookup308: frame_support::PalletId
|
|
2145
2111
|
**/
|
|
2146
2112
|
FrameSupportPalletId: string;
|
|
2147
2113
|
/**
|
|
2148
|
-
*
|
|
2114
|
+
* Lookup309: pallet_chain_transfer::pallet::Error<T>
|
|
2149
2115
|
**/
|
|
2150
2116
|
PalletChainTransferError: {
|
|
2151
2117
|
_enum: string[];
|
|
2152
2118
|
};
|
|
2153
2119
|
/**
|
|
2154
|
-
*
|
|
2120
|
+
* Lookup314: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2155
2121
|
**/
|
|
2156
2122
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2157
2123
|
notaryId: string;
|
|
@@ -2161,65 +2127,55 @@ declare const _default: {
|
|
|
2161
2127
|
blockVotingPower: string;
|
|
2162
2128
|
};
|
|
2163
2129
|
/**
|
|
2164
|
-
*
|
|
2130
|
+
* Lookup316: argon_primitives::digests::BlockVoteDigest
|
|
2165
2131
|
**/
|
|
2166
2132
|
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
2167
2133
|
votingPower: string;
|
|
2168
2134
|
votesCount: string;
|
|
2169
2135
|
};
|
|
2170
2136
|
/**
|
|
2171
|
-
*
|
|
2137
|
+
* Lookup320: pallet_block_seal_spec::pallet::Error<T>
|
|
2172
2138
|
**/
|
|
2173
2139
|
PalletBlockSealSpecError: {
|
|
2174
2140
|
_enum: string[];
|
|
2175
2141
|
};
|
|
2176
2142
|
/**
|
|
2177
|
-
*
|
|
2143
|
+
* Lookup322: pallet_domains::pallet::Error<T>
|
|
2178
2144
|
**/
|
|
2179
2145
|
PalletDomainsError: {
|
|
2180
2146
|
_enum: string[];
|
|
2181
2147
|
};
|
|
2182
2148
|
/**
|
|
2183
|
-
*
|
|
2149
|
+
* Lookup323: pallet_price_index::pallet::Error<T>
|
|
2184
2150
|
**/
|
|
2185
2151
|
PalletPriceIndexError: {
|
|
2186
2152
|
_enum: string[];
|
|
2187
2153
|
};
|
|
2188
2154
|
/**
|
|
2189
|
-
*
|
|
2190
|
-
**/
|
|
2191
|
-
SpCoreCryptoKeyTypeId: string;
|
|
2192
|
-
/**
|
|
2193
|
-
* Lookup335: pallet_session::pallet::Error<T>
|
|
2194
|
-
**/
|
|
2195
|
-
PalletSessionError: {
|
|
2196
|
-
_enum: string[];
|
|
2197
|
-
};
|
|
2198
|
-
/**
|
|
2199
|
-
* Lookup336: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2155
|
+
* Lookup324: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2200
2156
|
**/
|
|
2201
2157
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2202
2158
|
blockAuthorAccountId: string;
|
|
2203
2159
|
blockVoteRewardsAccount: string;
|
|
2204
2160
|
};
|
|
2205
2161
|
/**
|
|
2206
|
-
*
|
|
2162
|
+
* Lookup325: argon_primitives::digests::ParentVotingKeyDigest
|
|
2207
2163
|
**/
|
|
2208
2164
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
2209
2165
|
parentVotingKey: string;
|
|
2210
2166
|
};
|
|
2211
2167
|
/**
|
|
2212
|
-
*
|
|
2168
|
+
* Lookup326: pallet_block_seal::pallet::Error<T>
|
|
2213
2169
|
**/
|
|
2214
2170
|
PalletBlockSealError: {
|
|
2215
2171
|
_enum: string[];
|
|
2216
2172
|
};
|
|
2217
2173
|
/**
|
|
2218
|
-
*
|
|
2174
|
+
* Lookup328: pallet_block_rewards::pallet::Error<T>
|
|
2219
2175
|
**/
|
|
2220
2176
|
PalletBlockRewardsError: string;
|
|
2221
2177
|
/**
|
|
2222
|
-
*
|
|
2178
|
+
* Lookup329: pallet_grandpa::StoredState<N>
|
|
2223
2179
|
**/
|
|
2224
2180
|
PalletGrandpaStoredState: {
|
|
2225
2181
|
_enum: {
|
|
@@ -2236,7 +2192,7 @@ declare const _default: {
|
|
|
2236
2192
|
};
|
|
2237
2193
|
};
|
|
2238
2194
|
/**
|
|
2239
|
-
*
|
|
2195
|
+
* Lookup330: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2240
2196
|
**/
|
|
2241
2197
|
PalletGrandpaStoredPendingChange: {
|
|
2242
2198
|
scheduledAt: string;
|
|
@@ -2245,32 +2201,19 @@ declare const _default: {
|
|
|
2245
2201
|
forced: string;
|
|
2246
2202
|
};
|
|
2247
2203
|
/**
|
|
2248
|
-
*
|
|
2204
|
+
* Lookup333: pallet_grandpa::pallet::Error<T>
|
|
2249
2205
|
**/
|
|
2250
2206
|
PalletGrandpaError: {
|
|
2251
2207
|
_enum: string[];
|
|
2252
2208
|
};
|
|
2253
2209
|
/**
|
|
2254
|
-
*
|
|
2255
|
-
**/
|
|
2256
|
-
SpStakingOffenceOffenceDetails: {
|
|
2257
|
-
offender: string;
|
|
2258
|
-
reporters: string;
|
|
2259
|
-
};
|
|
2260
|
-
/**
|
|
2261
|
-
* Lookup348: pallet_mining_slot::MinerHistory
|
|
2262
|
-
**/
|
|
2263
|
-
PalletMiningSlotMinerHistory: {
|
|
2264
|
-
authorityIndex: string;
|
|
2265
|
-
};
|
|
2266
|
-
/**
|
|
2267
|
-
* Lookup353: pallet_mint::pallet::Error<T>
|
|
2210
|
+
* Lookup337: pallet_mint::pallet::Error<T>
|
|
2268
2211
|
**/
|
|
2269
2212
|
PalletMintError: {
|
|
2270
2213
|
_enum: string[];
|
|
2271
2214
|
};
|
|
2272
2215
|
/**
|
|
2273
|
-
*
|
|
2216
|
+
* Lookup339: pallet_balances::types::BalanceLock<Balance>
|
|
2274
2217
|
**/
|
|
2275
2218
|
PalletBalancesBalanceLock: {
|
|
2276
2219
|
id: string;
|
|
@@ -2278,27 +2221,27 @@ declare const _default: {
|
|
|
2278
2221
|
reasons: string;
|
|
2279
2222
|
};
|
|
2280
2223
|
/**
|
|
2281
|
-
*
|
|
2224
|
+
* Lookup340: pallet_balances::types::Reasons
|
|
2282
2225
|
**/
|
|
2283
2226
|
PalletBalancesReasons: {
|
|
2284
2227
|
_enum: string[];
|
|
2285
2228
|
};
|
|
2286
2229
|
/**
|
|
2287
|
-
*
|
|
2230
|
+
* Lookup343: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2288
2231
|
**/
|
|
2289
2232
|
PalletBalancesReserveData: {
|
|
2290
2233
|
id: string;
|
|
2291
2234
|
amount: string;
|
|
2292
2235
|
};
|
|
2293
2236
|
/**
|
|
2294
|
-
*
|
|
2237
|
+
* Lookup346: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeHoldReason, Balance>
|
|
2295
2238
|
**/
|
|
2296
2239
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2297
2240
|
id: string;
|
|
2298
2241
|
amount: string;
|
|
2299
2242
|
};
|
|
2300
2243
|
/**
|
|
2301
|
-
*
|
|
2244
|
+
* Lookup347: argon_node_runtime::RuntimeHoldReason
|
|
2302
2245
|
**/
|
|
2303
2246
|
ArgonNodeRuntimeRuntimeHoldReason: {
|
|
2304
2247
|
_enum: {
|
|
@@ -2319,44 +2262,42 @@ declare const _default: {
|
|
|
2319
2262
|
__Unused14: string;
|
|
2320
2263
|
__Unused15: string;
|
|
2321
2264
|
__Unused16: string;
|
|
2322
|
-
__Unused17: string;
|
|
2323
|
-
__Unused18: string;
|
|
2324
2265
|
BlockRewards: string;
|
|
2325
2266
|
};
|
|
2326
2267
|
};
|
|
2327
2268
|
/**
|
|
2328
|
-
*
|
|
2269
|
+
* Lookup348: pallet_mining_slot::pallet::HoldReason
|
|
2329
2270
|
**/
|
|
2330
2271
|
PalletMiningSlotHoldReason: {
|
|
2331
2272
|
_enum: string[];
|
|
2332
2273
|
};
|
|
2333
2274
|
/**
|
|
2334
|
-
*
|
|
2275
|
+
* Lookup349: pallet_vaults::pallet::HoldReason
|
|
2335
2276
|
**/
|
|
2336
2277
|
PalletVaultsHoldReason: {
|
|
2337
2278
|
_enum: string[];
|
|
2338
2279
|
};
|
|
2339
2280
|
/**
|
|
2340
|
-
*
|
|
2281
|
+
* Lookup350: pallet_bond::pallet::HoldReason
|
|
2341
2282
|
**/
|
|
2342
2283
|
PalletBondHoldReason: {
|
|
2343
2284
|
_enum: string[];
|
|
2344
2285
|
};
|
|
2345
2286
|
/**
|
|
2346
|
-
*
|
|
2287
|
+
* Lookup351: pallet_block_rewards::pallet::HoldReason
|
|
2347
2288
|
**/
|
|
2348
2289
|
PalletBlockRewardsHoldReason: {
|
|
2349
2290
|
_enum: string[];
|
|
2350
2291
|
};
|
|
2351
2292
|
/**
|
|
2352
|
-
*
|
|
2293
|
+
* Lookup354: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeFreezeReason, Balance>
|
|
2353
2294
|
**/
|
|
2354
2295
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2355
2296
|
id: string;
|
|
2356
2297
|
amount: string;
|
|
2357
2298
|
};
|
|
2358
2299
|
/**
|
|
2359
|
-
*
|
|
2300
|
+
* Lookup355: argon_node_runtime::RuntimeFreezeReason
|
|
2360
2301
|
**/
|
|
2361
2302
|
ArgonNodeRuntimeRuntimeFreezeReason: {
|
|
2362
2303
|
_enum: {
|
|
@@ -2377,89 +2318,87 @@ declare const _default: {
|
|
|
2377
2318
|
__Unused14: string;
|
|
2378
2319
|
__Unused15: string;
|
|
2379
2320
|
__Unused16: string;
|
|
2380
|
-
__Unused17: string;
|
|
2381
|
-
__Unused18: string;
|
|
2382
2321
|
BlockRewards: string;
|
|
2383
2322
|
};
|
|
2384
2323
|
};
|
|
2385
2324
|
/**
|
|
2386
|
-
*
|
|
2325
|
+
* Lookup356: pallet_block_rewards::pallet::FreezeReason
|
|
2387
2326
|
**/
|
|
2388
2327
|
PalletBlockRewardsFreezeReason: {
|
|
2389
2328
|
_enum: string[];
|
|
2390
2329
|
};
|
|
2391
2330
|
/**
|
|
2392
|
-
*
|
|
2331
|
+
* Lookup358: pallet_balances::pallet::Error<T, I>
|
|
2393
2332
|
**/
|
|
2394
2333
|
PalletBalancesError: {
|
|
2395
2334
|
_enum: string[];
|
|
2396
2335
|
};
|
|
2397
2336
|
/**
|
|
2398
|
-
*
|
|
2337
|
+
* Lookup360: pallet_tx_pause::pallet::Error<T>
|
|
2399
2338
|
**/
|
|
2400
2339
|
PalletTxPauseError: {
|
|
2401
2340
|
_enum: string[];
|
|
2402
2341
|
};
|
|
2403
2342
|
/**
|
|
2404
|
-
*
|
|
2343
|
+
* Lookup361: pallet_transaction_payment::Releases
|
|
2405
2344
|
**/
|
|
2406
2345
|
PalletTransactionPaymentReleases: {
|
|
2407
2346
|
_enum: string[];
|
|
2408
2347
|
};
|
|
2409
2348
|
/**
|
|
2410
|
-
*
|
|
2349
|
+
* Lookup362: pallet_utility::pallet::Error<T>
|
|
2411
2350
|
**/
|
|
2412
2351
|
PalletUtilityError: {
|
|
2413
2352
|
_enum: string[];
|
|
2414
2353
|
};
|
|
2415
2354
|
/**
|
|
2416
|
-
*
|
|
2355
|
+
* Lookup363: pallet_sudo::pallet::Error<T>
|
|
2417
2356
|
**/
|
|
2418
2357
|
PalletSudoError: {
|
|
2419
2358
|
_enum: string[];
|
|
2420
2359
|
};
|
|
2421
2360
|
/**
|
|
2422
|
-
*
|
|
2361
|
+
* Lookup366: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2423
2362
|
**/
|
|
2424
2363
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2425
2364
|
/**
|
|
2426
|
-
*
|
|
2365
|
+
* Lookup367: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2427
2366
|
**/
|
|
2428
2367
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2429
2368
|
/**
|
|
2430
|
-
*
|
|
2369
|
+
* Lookup368: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2431
2370
|
**/
|
|
2432
2371
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2433
2372
|
/**
|
|
2434
|
-
*
|
|
2373
|
+
* Lookup369: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2435
2374
|
**/
|
|
2436
2375
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2437
2376
|
/**
|
|
2438
|
-
*
|
|
2377
|
+
* Lookup372: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2439
2378
|
**/
|
|
2440
2379
|
FrameSystemExtensionsCheckNonce: string;
|
|
2441
2380
|
/**
|
|
2442
|
-
*
|
|
2381
|
+
* Lookup373: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2443
2382
|
**/
|
|
2444
2383
|
FrameSystemExtensionsCheckWeight: string;
|
|
2445
2384
|
/**
|
|
2446
|
-
*
|
|
2385
|
+
* Lookup374: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2447
2386
|
**/
|
|
2448
2387
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2449
2388
|
/**
|
|
2450
|
-
*
|
|
2389
|
+
* Lookup375: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2451
2390
|
**/
|
|
2452
2391
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2453
2392
|
mode: string;
|
|
2454
2393
|
};
|
|
2455
2394
|
/**
|
|
2456
|
-
*
|
|
2395
|
+
* Lookup376: frame_metadata_hash_extension::Mode
|
|
2457
2396
|
**/
|
|
2458
2397
|
FrameMetadataHashExtensionMode: {
|
|
2459
2398
|
_enum: string[];
|
|
2460
2399
|
};
|
|
2461
2400
|
/**
|
|
2462
|
-
*
|
|
2401
|
+
* Lookup378: argon_node_runtime::Runtime
|
|
2463
2402
|
**/
|
|
2464
2403
|
ArgonNodeRuntimeRuntime: string;
|
|
2465
2404
|
};
|