@argonprotocol/mainchain 0.0.7 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/lib/cjs/index.d.ts +4 -1
  2. package/lib/cjs/index.js +9 -1
  3. package/lib/cjs/index.js.map +1 -1
  4. package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -8
  5. package/lib/cjs/interfaces/augment-api-errors.d.ts +1 -23
  6. package/lib/cjs/interfaces/augment-api-events.d.ts +7 -27
  7. package/lib/cjs/interfaces/augment-api-query.d.ts +3 -59
  8. package/lib/cjs/interfaces/augment-api-tx.d.ts +8 -45
  9. package/lib/cjs/interfaces/augment-types.d.ts +63 -4
  10. package/lib/cjs/interfaces/lookup.d.ts +191 -257
  11. package/lib/cjs/interfaces/lookup.js +195 -261
  12. package/lib/cjs/interfaces/lookup.js.map +1 -1
  13. package/lib/cjs/interfaces/registry.d.ts +1 -9
  14. package/lib/cjs/interfaces/types-lookup.d.ts +185 -237
  15. package/lib/esm/index.d.ts +4 -1
  16. package/lib/esm/index.js +6 -1
  17. package/lib/esm/index.js.map +1 -1
  18. package/lib/esm/interfaces/augment-api-consts.d.ts +0 -8
  19. package/lib/esm/interfaces/augment-api-errors.d.ts +1 -23
  20. package/lib/esm/interfaces/augment-api-events.d.ts +7 -27
  21. package/lib/esm/interfaces/augment-api-query.d.ts +3 -59
  22. package/lib/esm/interfaces/augment-api-tx.d.ts +8 -45
  23. package/lib/esm/interfaces/augment-types.d.ts +63 -4
  24. package/lib/esm/interfaces/lookup.d.ts +191 -257
  25. package/lib/esm/interfaces/lookup.js +195 -261
  26. package/lib/esm/interfaces/lookup.js.map +1 -1
  27. package/lib/esm/interfaces/registry.d.ts +1 -9
  28. package/lib/esm/interfaces/types-lookup.d.ts +185 -237
  29. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  30. package/lib/tsconfig-types.tsbuildinfo +1 -1
  31. package/lib/tsconfig.tsbuildinfo +1 -1
  32. package/lib/types/index.d.ts +4 -1
  33. package/lib/types/interfaces/augment-api-consts.d.ts +0 -8
  34. package/lib/types/interfaces/augment-api-errors.d.ts +1 -23
  35. package/lib/types/interfaces/augment-api-events.d.ts +7 -27
  36. package/lib/types/interfaces/augment-api-query.d.ts +3 -59
  37. package/lib/types/interfaces/augment-api-tx.d.ts +8 -45
  38. package/lib/types/interfaces/augment-types.d.ts +63 -4
  39. package/lib/types/interfaces/lookup.d.ts +191 -257
  40. package/lib/types/interfaces/registry.d.ts +1 -9
  41. package/lib/types/interfaces/types-lookup.d.ts +185 -237
  42. package/package.json +5 -5
@@ -278,20 +278,32 @@ declare module '@polkadot/types/lookup' {
278
278
  readonly bondAmount: Compact<u128>;
279
279
  readonly ownershipTokens: Compact<u128>;
280
280
  readonly rewardSharing: Option<ArgonPrimitivesBlockSealRewardSharing>;
281
+ readonly authorityKeys: ArgonNodeRuntimeOpaqueSessionKeys;
281
282
  }
282
- /** @name ArgonPrimitivesBlockSealRewardDestination (41) */
283
+ /** @name ArgonNodeRuntimeOpaqueSessionKeys (41) */
284
+ interface ArgonNodeRuntimeOpaqueSessionKeys extends Struct {
285
+ readonly grandpa: SpConsensusGrandpaAppPublic;
286
+ readonly blockSealAuthority: ArgonPrimitivesBlockSealAppPublic;
287
+ }
288
+ /** @name SpConsensusGrandpaAppPublic (42) */
289
+ interface SpConsensusGrandpaAppPublic extends U8aFixed {
290
+ }
291
+ /** @name ArgonPrimitivesBlockSealAppPublic (43) */
292
+ interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {
293
+ }
294
+ /** @name ArgonPrimitivesBlockSealRewardDestination (44) */
283
295
  interface ArgonPrimitivesBlockSealRewardDestination extends Enum {
284
296
  readonly isOwner: boolean;
285
297
  readonly isAccount: boolean;
286
298
  readonly asAccount: AccountId32;
287
299
  readonly type: 'Owner' | 'Account';
288
300
  }
289
- /** @name ArgonPrimitivesBlockSealRewardSharing (45) */
301
+ /** @name ArgonPrimitivesBlockSealRewardSharing (48) */
290
302
  interface ArgonPrimitivesBlockSealRewardSharing extends Struct {
291
303
  readonly accountId: AccountId32;
292
304
  readonly percentTake: Compact<u128>;
293
305
  }
294
- /** @name PalletBitcoinUtxosEvent (49) */
306
+ /** @name PalletBitcoinUtxosEvent (52) */
295
307
  interface PalletBitcoinUtxosEvent extends Enum {
296
308
  readonly isUtxoVerified: boolean;
297
309
  readonly asUtxoVerified: {
@@ -333,7 +345,7 @@ declare module '@polkadot/types/lookup' {
333
345
  } & Struct;
334
346
  readonly type: 'UtxoVerified' | 'UtxoRejected' | 'UtxoSpent' | 'UtxoUnwatched' | 'UtxoSpentError' | 'UtxoVerifiedError' | 'UtxoRejectedError' | 'UtxoExpiredError';
335
347
  }
336
- /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (50) */
348
+ /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (53) */
337
349
  interface ArgonPrimitivesBitcoinBitcoinRejectedReason extends Enum {
338
350
  readonly isSatoshisMismatch: boolean;
339
351
  readonly isSpent: boolean;
@@ -341,15 +353,15 @@ declare module '@polkadot/types/lookup' {
341
353
  readonly isDuplicateUtxo: boolean;
342
354
  readonly type: 'SatoshisMismatch' | 'Spent' | 'LookupExpired' | 'DuplicateUtxo';
343
355
  }
344
- /** @name ArgonPrimitivesBitcoinUtxoRef (51) */
356
+ /** @name ArgonPrimitivesBitcoinUtxoRef (54) */
345
357
  interface ArgonPrimitivesBitcoinUtxoRef extends Struct {
346
358
  readonly txid: ArgonPrimitivesBitcoinH256Le;
347
359
  readonly outputIndex: Compact<u32>;
348
360
  }
349
- /** @name ArgonPrimitivesBitcoinH256Le (52) */
361
+ /** @name ArgonPrimitivesBitcoinH256Le (55) */
350
362
  interface ArgonPrimitivesBitcoinH256Le extends U8aFixed {
351
363
  }
352
- /** @name PalletVaultsEvent (54) */
364
+ /** @name PalletVaultsEvent (57) */
353
365
  interface PalletVaultsEvent extends Enum {
354
366
  readonly isVaultCreated: boolean;
355
367
  readonly asVaultCreated: {
@@ -388,7 +400,7 @@ declare module '@polkadot/types/lookup' {
388
400
  } & Struct;
389
401
  readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange';
390
402
  }
391
- /** @name PalletBondEvent (55) */
403
+ /** @name PalletBondEvent (58) */
392
404
  interface PalletBondEvent extends Enum {
393
405
  readonly isBondCreated: boolean;
394
406
  readonly asBondCreated: {
@@ -456,13 +468,13 @@ declare module '@polkadot/types/lookup' {
456
468
  } & Struct;
457
469
  readonly type: 'BondCreated' | 'BondCompleted' | 'BondCanceled' | 'BitcoinBondBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'BondCompletionError' | 'CosignOverdueError';
458
470
  }
459
- /** @name ArgonPrimitivesBondBondType (56) */
471
+ /** @name ArgonPrimitivesBondBondType (59) */
460
472
  interface ArgonPrimitivesBondBondType extends Enum {
461
473
  readonly isMining: boolean;
462
474
  readonly isBitcoin: boolean;
463
475
  readonly type: 'Mining' | 'Bitcoin';
464
476
  }
465
- /** @name ArgonPrimitivesBondBondExpiration (57) */
477
+ /** @name ArgonPrimitivesBondBondExpiration (60) */
466
478
  interface ArgonPrimitivesBondBondExpiration extends Enum {
467
479
  readonly isArgonBlock: boolean;
468
480
  readonly asArgonBlock: Compact<u32>;
@@ -470,7 +482,7 @@ declare module '@polkadot/types/lookup' {
470
482
  readonly asBitcoinBlock: Compact<u64>;
471
483
  readonly type: 'ArgonBlock' | 'BitcoinBlock';
472
484
  }
473
- /** @name PalletNotariesEvent (60) */
485
+ /** @name PalletNotariesEvent (63) */
474
486
  interface PalletNotariesEvent extends Enum {
475
487
  readonly isNotaryProposed: boolean;
476
488
  readonly asNotaryProposed: {
@@ -501,13 +513,13 @@ declare module '@polkadot/types/lookup' {
501
513
  } & Struct;
502
514
  readonly type: 'NotaryProposed' | 'NotaryActivated' | 'NotaryMetaUpdateQueued' | 'NotaryMetaUpdated' | 'NotaryMetaUpdateError';
503
515
  }
504
- /** @name ArgonPrimitivesNotaryNotaryMeta (61) */
516
+ /** @name ArgonPrimitivesNotaryNotaryMeta (64) */
505
517
  interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
506
518
  readonly name: Bytes;
507
519
  readonly public: U8aFixed;
508
520
  readonly hosts: Vec<Bytes>;
509
521
  }
510
- /** @name ArgonPrimitivesNotaryNotaryRecord (68) */
522
+ /** @name ArgonPrimitivesNotaryNotaryRecord (71) */
511
523
  interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
512
524
  readonly notaryId: Compact<u32>;
513
525
  readonly operatorAccountId: AccountId32;
@@ -516,7 +528,7 @@ declare module '@polkadot/types/lookup' {
516
528
  readonly metaUpdatedTick: Compact<u32>;
517
529
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
518
530
  }
519
- /** @name PalletNotebookEvent (69) */
531
+ /** @name PalletNotebookEvent (72) */
520
532
  interface PalletNotebookEvent extends Enum {
521
533
  readonly isNotebookSubmitted: boolean;
522
534
  readonly asNotebookSubmitted: {
@@ -531,7 +543,7 @@ declare module '@polkadot/types/lookup' {
531
543
  } & Struct;
532
544
  readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure';
533
545
  }
534
- /** @name ArgonNotaryAuditErrorVerifyError (70) */
546
+ /** @name ArgonNotaryAuditErrorVerifyError (73) */
535
547
  interface ArgonNotaryAuditErrorVerifyError extends Enum {
536
548
  readonly isMissingAccountOrigin: boolean;
537
549
  readonly asMissingAccountOrigin: {
@@ -638,13 +650,13 @@ declare module '@polkadot/types/lookup' {
638
650
  readonly isInsufficientBlockVoteMinimum: boolean;
639
651
  readonly type: 'MissingAccountOrigin' | 'HistoryLookupError' | 'InvalidAccountChangelist' | 'InvalidChainTransfersList' | 'InvalidBalanceChangeRoot' | 'InvalidHeaderTaxRecorded' | 'InvalidPreviousNonce' | 'InvalidPreviousBalance' | 'InvalidPreviousAccountOrigin' | 'InvalidPreviousBalanceChangeNotebook' | 'InvalidBalanceChange' | 'InvalidBalanceChangeSignature' | 'InvalidNoteRecipients' | 'BalanceChangeError' | 'InvalidNetBalanceChangeset' | 'InsufficientBalance' | 'ExceededMaxBalance' | 'BalanceChangeMismatch' | 'BalanceChangeNotNetZero' | 'InvalidDomainLeaseAllocation' | 'TaxBalanceChangeNotNetZero' | 'MissingBalanceProof' | 'InvalidPreviousBalanceProof' | 'InvalidNotebookHash' | 'InvalidNotebookHeaderHash' | 'DuplicateChainTransfer' | 'DuplicatedAccountOriginUid' | 'InvalidNotarySignature' | 'InvalidSecretProvided' | 'NotebookTooOld' | 'CatchupNotebooksMissing' | 'DecodeError' | 'AccountChannelHoldDoesntExist' | 'AccountAlreadyHasChannelHold' | 'ChannelHoldNotReadyForClaim' | 'AccountLocked' | 'MissingChannelHoldNote' | 'InvalidChannelHoldNote' | 'InvalidChannelHoldClaimers' | 'ChannelHoldNoteBelowMinimum' | 'InvalidTaxNoteAccount' | 'InvalidTaxOperation' | 'InsufficientTaxIncluded' | 'InsufficientBlockVoteTax' | 'IneligibleTaxVoter' | 'BlockVoteInvalidSignature' | 'InvalidBlockVoteAllocation' | 'InvalidBlockVoteRoot' | 'InvalidBlockVotesCount' | 'InvalidBlockVotingPower' | 'InvalidBlockVoteList' | 'InvalidComputeProof' | 'InvalidBlockVoteSource' | 'InsufficientBlockVoteMinimum';
640
652
  }
641
- /** @name ArgonPrimitivesAccountAccountType (71) */
653
+ /** @name ArgonPrimitivesAccountAccountType (74) */
642
654
  interface ArgonPrimitivesAccountAccountType extends Enum {
643
655
  readonly isTax: boolean;
644
656
  readonly isDeposit: boolean;
645
657
  readonly type: 'Tax' | 'Deposit';
646
658
  }
647
- /** @name ArgonNotaryAuditAccountHistoryLookupError (72) */
659
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (75) */
648
660
  interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
649
661
  readonly isRootNotFound: boolean;
650
662
  readonly isLastChangeNotFound: boolean;
@@ -652,7 +664,7 @@ declare module '@polkadot/types/lookup' {
652
664
  readonly isBlockSpecificationNotFound: boolean;
653
665
  readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
654
666
  }
655
- /** @name PalletChainTransferEvent (75) */
667
+ /** @name PalletChainTransferEvent (78) */
656
668
  interface PalletChainTransferEvent extends Enum {
657
669
  readonly isTransferToLocalchain: boolean;
658
670
  readonly asTransferToLocalchain: {
@@ -705,7 +717,7 @@ declare module '@polkadot/types/lookup' {
705
717
  } & Struct;
706
718
  readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferIn' | 'TransferInError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidTransferAllowed' | 'TaxationError';
707
719
  }
708
- /** @name PalletBlockSealSpecEvent (76) */
720
+ /** @name PalletBlockSealSpecEvent (79) */
709
721
  interface PalletBlockSealSpecEvent extends Enum {
710
722
  readonly isVoteMinimumAdjusted: boolean;
711
723
  readonly asVoteMinimumAdjusted: {
@@ -723,7 +735,7 @@ declare module '@polkadot/types/lookup' {
723
735
  } & Struct;
724
736
  readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
725
737
  }
726
- /** @name PalletDomainsEvent (77) */
738
+ /** @name PalletDomainsEvent (80) */
727
739
  interface PalletDomainsEvent extends Enum {
728
740
  readonly isZoneRecordUpdated: boolean;
729
741
  readonly asZoneRecordUpdated: {
@@ -756,29 +768,29 @@ declare module '@polkadot/types/lookup' {
756
768
  } & Struct;
757
769
  readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
758
770
  }
759
- /** @name ArgonPrimitivesDomainZoneRecord (78) */
771
+ /** @name ArgonPrimitivesDomainZoneRecord (81) */
760
772
  interface ArgonPrimitivesDomainZoneRecord extends Struct {
761
773
  readonly paymentAccount: AccountId32;
762
774
  readonly notaryId: u32;
763
775
  readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
764
776
  }
765
- /** @name ArgonPrimitivesDomainSemver (80) */
777
+ /** @name ArgonPrimitivesDomainSemver (83) */
766
778
  interface ArgonPrimitivesDomainSemver extends Struct {
767
779
  readonly major: u32;
768
780
  readonly minor: u32;
769
781
  readonly patch: u32;
770
782
  }
771
- /** @name ArgonPrimitivesDomainVersionHost (81) */
783
+ /** @name ArgonPrimitivesDomainVersionHost (84) */
772
784
  interface ArgonPrimitivesDomainVersionHost extends Struct {
773
785
  readonly datastoreId: Bytes;
774
786
  readonly host: Bytes;
775
787
  }
776
- /** @name PalletDomainsDomainRegistration (85) */
788
+ /** @name PalletDomainsDomainRegistration (88) */
777
789
  interface PalletDomainsDomainRegistration extends Struct {
778
790
  readonly accountId: AccountId32;
779
791
  readonly registeredAtTick: u32;
780
792
  }
781
- /** @name PalletPriceIndexEvent (86) */
793
+ /** @name PalletPriceIndexEvent (89) */
782
794
  interface PalletPriceIndexEvent extends Enum {
783
795
  readonly isNewIndex: boolean;
784
796
  readonly isOperatorChanged: boolean;
@@ -787,15 +799,7 @@ declare module '@polkadot/types/lookup' {
787
799
  } & Struct;
788
800
  readonly type: 'NewIndex' | 'OperatorChanged';
789
801
  }
790
- /** @name PalletSessionEvent (87) */
791
- interface PalletSessionEvent extends Enum {
792
- readonly isNewSession: boolean;
793
- readonly asNewSession: {
794
- readonly sessionIndex: u32;
795
- } & Struct;
796
- readonly type: 'NewSession';
797
- }
798
- /** @name PalletBlockRewardsEvent (88) */
802
+ /** @name PalletBlockRewardsEvent (90) */
799
803
  interface PalletBlockRewardsEvent extends Enum {
800
804
  readonly isRewardCreated: boolean;
801
805
  readonly asRewardCreated: {
@@ -822,13 +826,13 @@ declare module '@polkadot/types/lookup' {
822
826
  } & Struct;
823
827
  readonly type: 'RewardCreated' | 'RewardUnlocked' | 'RewardUnlockError' | 'RewardCreateError';
824
828
  }
825
- /** @name ArgonPrimitivesBlockSealBlockPayout (90) */
829
+ /** @name ArgonPrimitivesBlockSealBlockPayout (92) */
826
830
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
827
831
  readonly accountId: AccountId32;
828
832
  readonly ownership: Compact<u128>;
829
833
  readonly argons: Compact<u128>;
830
834
  }
831
- /** @name PalletGrandpaEvent (92) */
835
+ /** @name PalletGrandpaEvent (94) */
832
836
  interface PalletGrandpaEvent extends Enum {
833
837
  readonly isNewAuthorities: boolean;
834
838
  readonly asNewAuthorities: {
@@ -838,19 +842,7 @@ declare module '@polkadot/types/lookup' {
838
842
  readonly isResumed: boolean;
839
843
  readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
840
844
  }
841
- /** @name SpConsensusGrandpaAppPublic (95) */
842
- interface SpConsensusGrandpaAppPublic extends U8aFixed {
843
- }
844
- /** @name PalletOffencesEvent (96) */
845
- interface PalletOffencesEvent extends Enum {
846
- readonly isOffence: boolean;
847
- readonly asOffence: {
848
- readonly kind: U8aFixed;
849
- readonly timeslot: Bytes;
850
- } & Struct;
851
- readonly type: 'Offence';
852
- }
853
- /** @name PalletMintEvent (98) */
845
+ /** @name PalletMintEvent (97) */
854
846
  interface PalletMintEvent extends Enum {
855
847
  readonly isArgonsMinted: boolean;
856
848
  readonly asArgonsMinted: {
@@ -869,13 +861,13 @@ declare module '@polkadot/types/lookup' {
869
861
  } & Struct;
870
862
  readonly type: 'ArgonsMinted' | 'MintError';
871
863
  }
872
- /** @name PalletMintMintType (99) */
864
+ /** @name PalletMintMintType (98) */
873
865
  interface PalletMintMintType extends Enum {
874
866
  readonly isBitcoin: boolean;
875
867
  readonly isMining: boolean;
876
868
  readonly type: 'Bitcoin' | 'Mining';
877
869
  }
878
- /** @name PalletBalancesEvent (100) */
870
+ /** @name PalletBalancesEvent (99) */
879
871
  interface PalletBalancesEvent extends Enum {
880
872
  readonly isEndowed: boolean;
881
873
  readonly asEndowed: {
@@ -989,13 +981,13 @@ declare module '@polkadot/types/lookup' {
989
981
  } & Struct;
990
982
  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
991
983
  }
992
- /** @name FrameSupportTokensMiscBalanceStatus (101) */
984
+ /** @name FrameSupportTokensMiscBalanceStatus (100) */
993
985
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
994
986
  readonly isFree: boolean;
995
987
  readonly isReserved: boolean;
996
988
  readonly type: 'Free' | 'Reserved';
997
989
  }
998
- /** @name PalletTxPauseEvent (103) */
990
+ /** @name PalletTxPauseEvent (102) */
999
991
  interface PalletTxPauseEvent extends Enum {
1000
992
  readonly isCallPaused: boolean;
1001
993
  readonly asCallPaused: {
@@ -1007,7 +999,7 @@ declare module '@polkadot/types/lookup' {
1007
999
  } & Struct;
1008
1000
  readonly type: 'CallPaused' | 'CallUnpaused';
1009
1001
  }
1010
- /** @name PalletTransactionPaymentEvent (106) */
1002
+ /** @name PalletTransactionPaymentEvent (105) */
1011
1003
  interface PalletTransactionPaymentEvent extends Enum {
1012
1004
  readonly isTransactionFeePaid: boolean;
1013
1005
  readonly asTransactionFeePaid: {
@@ -1017,7 +1009,7 @@ declare module '@polkadot/types/lookup' {
1017
1009
  } & Struct;
1018
1010
  readonly type: 'TransactionFeePaid';
1019
1011
  }
1020
- /** @name PalletUtilityEvent (107) */
1012
+ /** @name PalletUtilityEvent (106) */
1021
1013
  interface PalletUtilityEvent extends Enum {
1022
1014
  readonly isBatchInterrupted: boolean;
1023
1015
  readonly asBatchInterrupted: {
@@ -1037,7 +1029,7 @@ declare module '@polkadot/types/lookup' {
1037
1029
  } & Struct;
1038
1030
  readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1039
1031
  }
1040
- /** @name PalletSudoEvent (108) */
1032
+ /** @name PalletSudoEvent (107) */
1041
1033
  interface PalletSudoEvent extends Enum {
1042
1034
  readonly isSudid: boolean;
1043
1035
  readonly asSudid: {
@@ -1055,7 +1047,7 @@ declare module '@polkadot/types/lookup' {
1055
1047
  } & Struct;
1056
1048
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1057
1049
  }
1058
- /** @name FrameSystemPhase (110) */
1050
+ /** @name FrameSystemPhase (109) */
1059
1051
  interface FrameSystemPhase extends Enum {
1060
1052
  readonly isApplyExtrinsic: boolean;
1061
1053
  readonly asApplyExtrinsic: u32;
@@ -1063,17 +1055,17 @@ declare module '@polkadot/types/lookup' {
1063
1055
  readonly isInitialization: boolean;
1064
1056
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1065
1057
  }
1066
- /** @name FrameSystemLastRuntimeUpgradeInfo (114) */
1058
+ /** @name FrameSystemLastRuntimeUpgradeInfo (113) */
1067
1059
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1068
1060
  readonly specVersion: Compact<u32>;
1069
1061
  readonly specName: Text;
1070
1062
  }
1071
- /** @name FrameSystemCodeUpgradeAuthorization (115) */
1063
+ /** @name FrameSystemCodeUpgradeAuthorization (114) */
1072
1064
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1073
1065
  readonly codeHash: H256;
1074
1066
  readonly checkVersion: bool;
1075
1067
  }
1076
- /** @name FrameSystemCall (116) */
1068
+ /** @name FrameSystemCall (115) */
1077
1069
  interface FrameSystemCall extends Enum {
1078
1070
  readonly isRemark: boolean;
1079
1071
  readonly asRemark: {
@@ -1122,41 +1114,41 @@ declare module '@polkadot/types/lookup' {
1122
1114
  } & Struct;
1123
1115
  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1124
1116
  }
1125
- /** @name FrameSystemLimitsBlockWeights (120) */
1117
+ /** @name FrameSystemLimitsBlockWeights (119) */
1126
1118
  interface FrameSystemLimitsBlockWeights extends Struct {
1127
1119
  readonly baseBlock: SpWeightsWeightV2Weight;
1128
1120
  readonly maxBlock: SpWeightsWeightV2Weight;
1129
1121
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1130
1122
  }
1131
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (121) */
1123
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (120) */
1132
1124
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1133
1125
  readonly normal: FrameSystemLimitsWeightsPerClass;
1134
1126
  readonly operational: FrameSystemLimitsWeightsPerClass;
1135
1127
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1136
1128
  }
1137
- /** @name FrameSystemLimitsWeightsPerClass (122) */
1129
+ /** @name FrameSystemLimitsWeightsPerClass (121) */
1138
1130
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1139
1131
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1140
1132
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1141
1133
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1142
1134
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1143
1135
  }
1144
- /** @name FrameSystemLimitsBlockLength (124) */
1136
+ /** @name FrameSystemLimitsBlockLength (123) */
1145
1137
  interface FrameSystemLimitsBlockLength extends Struct {
1146
1138
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1147
1139
  }
1148
- /** @name FrameSupportDispatchPerDispatchClassU32 (125) */
1140
+ /** @name FrameSupportDispatchPerDispatchClassU32 (124) */
1149
1141
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1150
1142
  readonly normal: u32;
1151
1143
  readonly operational: u32;
1152
1144
  readonly mandatory: u32;
1153
1145
  }
1154
- /** @name SpWeightsRuntimeDbWeight (126) */
1146
+ /** @name SpWeightsRuntimeDbWeight (125) */
1155
1147
  interface SpWeightsRuntimeDbWeight extends Struct {
1156
1148
  readonly read: u64;
1157
1149
  readonly write: u64;
1158
1150
  }
1159
- /** @name SpVersionRuntimeVersion (127) */
1151
+ /** @name SpVersionRuntimeVersion (126) */
1160
1152
  interface SpVersionRuntimeVersion extends Struct {
1161
1153
  readonly specName: Text;
1162
1154
  readonly implName: Text;
@@ -1167,7 +1159,7 @@ declare module '@polkadot/types/lookup' {
1167
1159
  readonly transactionVersion: u32;
1168
1160
  readonly stateVersion: u8;
1169
1161
  }
1170
- /** @name FrameSystemError (132) */
1162
+ /** @name FrameSystemError (131) */
1171
1163
  interface FrameSystemError extends Enum {
1172
1164
  readonly isInvalidSpecName: boolean;
1173
1165
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1180,7 +1172,7 @@ declare module '@polkadot/types/lookup' {
1180
1172
  readonly isUnauthorized: boolean;
1181
1173
  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
1182
1174
  }
1183
- /** @name PalletTimestampCall (133) */
1175
+ /** @name PalletTimestampCall (132) */
1184
1176
  interface PalletTimestampCall extends Enum {
1185
1177
  readonly isSet: boolean;
1186
1178
  readonly asSet: {
@@ -1188,14 +1180,14 @@ declare module '@polkadot/types/lookup' {
1188
1180
  } & Struct;
1189
1181
  readonly type: 'Set';
1190
1182
  }
1191
- /** @name PalletMultisigMultisig (135) */
1183
+ /** @name PalletMultisigMultisig (134) */
1192
1184
  interface PalletMultisigMultisig extends Struct {
1193
1185
  readonly when: PalletMultisigTimepoint;
1194
1186
  readonly deposit: u128;
1195
1187
  readonly depositor: AccountId32;
1196
1188
  readonly approvals: Vec<AccountId32>;
1197
1189
  }
1198
- /** @name PalletMultisigCall (138) */
1190
+ /** @name PalletMultisigCall (137) */
1199
1191
  interface PalletMultisigCall extends Enum {
1200
1192
  readonly isAsMultiThreshold1: boolean;
1201
1193
  readonly asAsMultiThreshold1: {
@@ -1227,7 +1219,7 @@ declare module '@polkadot/types/lookup' {
1227
1219
  } & Struct;
1228
1220
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
1229
1221
  }
1230
- /** @name PalletProxyCall (140) */
1222
+ /** @name PalletProxyCall (139) */
1231
1223
  interface PalletProxyCall extends Enum {
1232
1224
  readonly isProxy: boolean;
1233
1225
  readonly asProxy: {
@@ -1286,23 +1278,24 @@ declare module '@polkadot/types/lookup' {
1286
1278
  } & Struct;
1287
1279
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
1288
1280
  }
1289
- /** @name PalletTicksCall (145) */
1281
+ /** @name PalletTicksCall (144) */
1290
1282
  type PalletTicksCall = Null;
1291
- /** @name PalletMiningSlotCall (146) */
1283
+ /** @name PalletMiningSlotCall (145) */
1292
1284
  interface PalletMiningSlotCall extends Enum {
1293
1285
  readonly isBid: boolean;
1294
1286
  readonly asBid: {
1295
1287
  readonly bondInfo: Option<PalletMiningSlotMiningSlotBid>;
1296
1288
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
1289
+ readonly keys_: ArgonNodeRuntimeOpaqueSessionKeys;
1297
1290
  } & Struct;
1298
1291
  readonly type: 'Bid';
1299
1292
  }
1300
- /** @name PalletMiningSlotMiningSlotBid (148) */
1293
+ /** @name PalletMiningSlotMiningSlotBid (147) */
1301
1294
  interface PalletMiningSlotMiningSlotBid extends Struct {
1302
1295
  readonly vaultId: u32;
1303
1296
  readonly amount: u128;
1304
1297
  }
1305
- /** @name PalletBitcoinUtxosCall (149) */
1298
+ /** @name PalletBitcoinUtxosCall (148) */
1306
1299
  interface PalletBitcoinUtxosCall extends Enum {
1307
1300
  readonly isSync: boolean;
1308
1301
  readonly asSync: {
@@ -1319,19 +1312,19 @@ declare module '@polkadot/types/lookup' {
1319
1312
  } & Struct;
1320
1313
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1321
1314
  }
1322
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (150) */
1315
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (149) */
1323
1316
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1324
1317
  readonly spent: BTreeMap<u64, u64>;
1325
1318
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1326
1319
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1327
1320
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1328
1321
  }
1329
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (160) */
1322
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (159) */
1330
1323
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1331
1324
  readonly blockHeight: Compact<u64>;
1332
1325
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1333
1326
  }
1334
- /** @name PalletVaultsCall (161) */
1327
+ /** @name PalletVaultsCall (160) */
1335
1328
  interface PalletVaultsCall extends Enum {
1336
1329
  readonly isCreate: boolean;
1337
1330
  readonly asCreate: {
@@ -1360,7 +1353,7 @@ declare module '@polkadot/types/lookup' {
1360
1353
  } & Struct;
1361
1354
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1362
1355
  }
1363
- /** @name PalletVaultsVaultConfig (162) */
1356
+ /** @name PalletVaultsVaultConfig (161) */
1364
1357
  interface PalletVaultsVaultConfig extends Struct {
1365
1358
  readonly terms: ArgonPrimitivesBondVaultTerms;
1366
1359
  readonly bitcoinAmountAllocated: Compact<u128>;
@@ -1368,7 +1361,7 @@ declare module '@polkadot/types/lookup' {
1368
1361
  readonly miningAmountAllocated: Compact<u128>;
1369
1362
  readonly securitizationPercent: Compact<u128>;
1370
1363
  }
1371
- /** @name ArgonPrimitivesBondVaultTerms (163) */
1364
+ /** @name ArgonPrimitivesBondVaultTerms (162) */
1372
1365
  interface ArgonPrimitivesBondVaultTerms extends Struct {
1373
1366
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1374
1367
  readonly bitcoinBaseFee: Compact<u128>;
@@ -1376,10 +1369,10 @@ declare module '@polkadot/types/lookup' {
1376
1369
  readonly miningBaseFee: Compact<u128>;
1377
1370
  readonly miningRewardSharingPercentTake: Compact<u128>;
1378
1371
  }
1379
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (164) */
1372
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (163) */
1380
1373
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1381
1374
  }
1382
- /** @name PalletBondCall (166) */
1375
+ /** @name PalletBondCall (165) */
1383
1376
  interface PalletBondCall extends Enum {
1384
1377
  readonly isBondBitcoin: boolean;
1385
1378
  readonly asBondBitcoin: {
@@ -1400,10 +1393,10 @@ declare module '@polkadot/types/lookup' {
1400
1393
  } & Struct;
1401
1394
  readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
1402
1395
  }
1403
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (167) */
1396
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (166) */
1404
1397
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1405
1398
  }
1406
- /** @name PalletNotariesCall (171) */
1399
+ /** @name PalletNotariesCall (170) */
1407
1400
  interface PalletNotariesCall extends Enum {
1408
1401
  readonly isPropose: boolean;
1409
1402
  readonly asPropose: {
@@ -1421,7 +1414,7 @@ declare module '@polkadot/types/lookup' {
1421
1414
  } & Struct;
1422
1415
  readonly type: 'Propose' | 'Activate' | 'Update';
1423
1416
  }
1424
- /** @name PalletNotebookCall (172) */
1417
+ /** @name PalletNotebookCall (171) */
1425
1418
  interface PalletNotebookCall extends Enum {
1426
1419
  readonly isSubmit: boolean;
1427
1420
  readonly asSubmit: {
@@ -1429,12 +1422,12 @@ declare module '@polkadot/types/lookup' {
1429
1422
  } & Struct;
1430
1423
  readonly type: 'Submit';
1431
1424
  }
1432
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (174) */
1425
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (173) */
1433
1426
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1434
1427
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1435
1428
  readonly signature: U8aFixed;
1436
1429
  }
1437
- /** @name ArgonPrimitivesNotebookNotebookHeader (175) */
1430
+ /** @name ArgonPrimitivesNotebookNotebookHeader (174) */
1438
1431
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1439
1432
  readonly version: Compact<u16>;
1440
1433
  readonly notebookNumber: Compact<u32>;
@@ -1452,7 +1445,7 @@ declare module '@polkadot/types/lookup' {
1452
1445
  readonly parentSecret: Option<H256>;
1453
1446
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
1454
1447
  }
1455
- /** @name ArgonPrimitivesNotebookChainTransfer (178) */
1448
+ /** @name ArgonPrimitivesNotebookChainTransfer (177) */
1456
1449
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1457
1450
  readonly isToMainchain: boolean;
1458
1451
  readonly asToMainchain: {
@@ -1465,12 +1458,12 @@ declare module '@polkadot/types/lookup' {
1465
1458
  } & Struct;
1466
1459
  readonly type: 'ToMainchain' | 'ToLocalchain';
1467
1460
  }
1468
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (181) */
1461
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (180) */
1469
1462
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1470
1463
  readonly notebookNumber: Compact<u32>;
1471
1464
  readonly accountUid: Compact<u32>;
1472
1465
  }
1473
- /** @name PalletChainTransferCall (189) */
1466
+ /** @name PalletChainTransferCall (188) */
1474
1467
  interface PalletChainTransferCall extends Enum {
1475
1468
  readonly isSendToLocalchain: boolean;
1476
1469
  readonly asSendToLocalchain: {
@@ -1479,7 +1472,7 @@ declare module '@polkadot/types/lookup' {
1479
1472
  } & Struct;
1480
1473
  readonly type: 'SendToLocalchain';
1481
1474
  }
1482
- /** @name PalletBlockSealSpecCall (190) */
1475
+ /** @name PalletBlockSealSpecCall (189) */
1483
1476
  interface PalletBlockSealSpecCall extends Enum {
1484
1477
  readonly isConfigure: boolean;
1485
1478
  readonly asConfigure: {
@@ -1488,7 +1481,7 @@ declare module '@polkadot/types/lookup' {
1488
1481
  } & Struct;
1489
1482
  readonly type: 'Configure';
1490
1483
  }
1491
- /** @name PalletDomainsCall (191) */
1484
+ /** @name PalletDomainsCall (190) */
1492
1485
  interface PalletDomainsCall extends Enum {
1493
1486
  readonly isSetZoneRecord: boolean;
1494
1487
  readonly asSetZoneRecord: {
@@ -1497,7 +1490,7 @@ declare module '@polkadot/types/lookup' {
1497
1490
  } & Struct;
1498
1491
  readonly type: 'SetZoneRecord';
1499
1492
  }
1500
- /** @name PalletPriceIndexCall (192) */
1493
+ /** @name PalletPriceIndexCall (191) */
1501
1494
  interface PalletPriceIndexCall extends Enum {
1502
1495
  readonly isSubmit: boolean;
1503
1496
  readonly asSubmit: {
@@ -1509,32 +1502,14 @@ declare module '@polkadot/types/lookup' {
1509
1502
  } & Struct;
1510
1503
  readonly type: 'Submit' | 'SetOperator';
1511
1504
  }
1512
- /** @name PalletPriceIndexPriceIndex (193) */
1505
+ /** @name PalletPriceIndexPriceIndex (192) */
1513
1506
  interface PalletPriceIndexPriceIndex extends Struct {
1514
1507
  readonly btcUsdPrice: Compact<u128>;
1515
1508
  readonly argonUsdPrice: Compact<u128>;
1516
1509
  readonly argonUsdTargetPrice: u128;
1517
1510
  readonly tick: Compact<u32>;
1518
1511
  }
1519
- /** @name PalletSessionCall (194) */
1520
- interface PalletSessionCall extends Enum {
1521
- readonly isSetKeys: boolean;
1522
- readonly asSetKeys: {
1523
- readonly keys_: ArgonNodeRuntimeOpaqueSessionKeys;
1524
- readonly proof: Bytes;
1525
- } & Struct;
1526
- readonly isPurgeKeys: boolean;
1527
- readonly type: 'SetKeys' | 'PurgeKeys';
1528
- }
1529
- /** @name ArgonNodeRuntimeOpaqueSessionKeys (195) */
1530
- interface ArgonNodeRuntimeOpaqueSessionKeys extends Struct {
1531
- readonly grandpa: SpConsensusGrandpaAppPublic;
1532
- readonly blockSealAuthority: ArgonPrimitivesBlockSealAppPublic;
1533
- }
1534
- /** @name ArgonPrimitivesBlockSealAppPublic (196) */
1535
- interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {
1536
- }
1537
- /** @name PalletBlockSealCall (197) */
1512
+ /** @name PalletBlockSealCall (193) */
1538
1513
  interface PalletBlockSealCall extends Enum {
1539
1514
  readonly isApply: boolean;
1540
1515
  readonly asApply: {
@@ -1542,7 +1517,7 @@ declare module '@polkadot/types/lookup' {
1542
1517
  } & Struct;
1543
1518
  readonly type: 'Apply';
1544
1519
  }
1545
- /** @name ArgonPrimitivesInherentsBlockSealInherent (198) */
1520
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (194) */
1546
1521
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1547
1522
  readonly isVote: boolean;
1548
1523
  readonly asVote: {
@@ -1556,13 +1531,13 @@ declare module '@polkadot/types/lookup' {
1556
1531
  readonly isCompute: boolean;
1557
1532
  readonly type: 'Vote' | 'Compute';
1558
1533
  }
1559
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (201) */
1534
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (197) */
1560
1535
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1561
1536
  readonly proof: Vec<H256>;
1562
1537
  readonly numberOfLeaves: Compact<u32>;
1563
1538
  readonly leafIndex: Compact<u32>;
1564
1539
  }
1565
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (203) */
1540
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (199) */
1566
1541
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1567
1542
  readonly accountId: AccountId32;
1568
1543
  readonly blockHash: H256;
@@ -1571,7 +1546,7 @@ declare module '@polkadot/types/lookup' {
1571
1546
  readonly signature: SpRuntimeMultiSignature;
1572
1547
  readonly blockRewardsAccountId: AccountId32;
1573
1548
  }
1574
- /** @name SpRuntimeMultiSignature (204) */
1549
+ /** @name SpRuntimeMultiSignature (200) */
1575
1550
  interface SpRuntimeMultiSignature extends Enum {
1576
1551
  readonly isEd25519: boolean;
1577
1552
  readonly asEd25519: U8aFixed;
@@ -1581,22 +1556,22 @@ declare module '@polkadot/types/lookup' {
1581
1556
  readonly asEcdsa: U8aFixed;
1582
1557
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1583
1558
  }
1584
- /** @name ArgonPrimitivesBlockSealAppSignature (206) */
1559
+ /** @name ArgonPrimitivesBlockSealAppSignature (202) */
1585
1560
  interface ArgonPrimitivesBlockSealAppSignature extends U8aFixed {
1586
1561
  }
1587
- /** @name PalletBlockRewardsCall (207) */
1562
+ /** @name PalletBlockRewardsCall (203) */
1588
1563
  type PalletBlockRewardsCall = Null;
1589
- /** @name PalletGrandpaCall (208) */
1564
+ /** @name PalletGrandpaCall (204) */
1590
1565
  interface PalletGrandpaCall extends Enum {
1591
1566
  readonly isReportEquivocation: boolean;
1592
1567
  readonly asReportEquivocation: {
1593
1568
  readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
1594
- readonly keyOwnerProof: SpSessionMembershipProof;
1569
+ readonly keyOwnerProof: SpCoreVoid;
1595
1570
  } & Struct;
1596
1571
  readonly isReportEquivocationUnsigned: boolean;
1597
1572
  readonly asReportEquivocationUnsigned: {
1598
1573
  readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
1599
- readonly keyOwnerProof: SpSessionMembershipProof;
1574
+ readonly keyOwnerProof: SpCoreVoid;
1600
1575
  } & Struct;
1601
1576
  readonly isNoteStalled: boolean;
1602
1577
  readonly asNoteStalled: {
@@ -1605,12 +1580,12 @@ declare module '@polkadot/types/lookup' {
1605
1580
  } & Struct;
1606
1581
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1607
1582
  }
1608
- /** @name SpConsensusGrandpaEquivocationProof (209) */
1583
+ /** @name SpConsensusGrandpaEquivocationProof (205) */
1609
1584
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1610
1585
  readonly setId: u64;
1611
1586
  readonly equivocation: SpConsensusGrandpaEquivocation;
1612
1587
  }
1613
- /** @name SpConsensusGrandpaEquivocation (210) */
1588
+ /** @name SpConsensusGrandpaEquivocation (206) */
1614
1589
  interface SpConsensusGrandpaEquivocation extends Enum {
1615
1590
  readonly isPrevote: boolean;
1616
1591
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1618,42 +1593,38 @@ declare module '@polkadot/types/lookup' {
1618
1593
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1619
1594
  readonly type: 'Prevote' | 'Precommit';
1620
1595
  }
1621
- /** @name FinalityGrandpaEquivocationPrevote (211) */
1596
+ /** @name FinalityGrandpaEquivocationPrevote (207) */
1622
1597
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1623
1598
  readonly roundNumber: u64;
1624
1599
  readonly identity: SpConsensusGrandpaAppPublic;
1625
1600
  readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1626
1601
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1627
1602
  }
1628
- /** @name FinalityGrandpaPrevote (212) */
1603
+ /** @name FinalityGrandpaPrevote (208) */
1629
1604
  interface FinalityGrandpaPrevote extends Struct {
1630
1605
  readonly targetHash: H256;
1631
1606
  readonly targetNumber: u32;
1632
1607
  }
1633
- /** @name SpConsensusGrandpaAppSignature (213) */
1608
+ /** @name SpConsensusGrandpaAppSignature (209) */
1634
1609
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1635
1610
  }
1636
- /** @name FinalityGrandpaEquivocationPrecommit (215) */
1611
+ /** @name FinalityGrandpaEquivocationPrecommit (211) */
1637
1612
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1638
1613
  readonly roundNumber: u64;
1639
1614
  readonly identity: SpConsensusGrandpaAppPublic;
1640
1615
  readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1641
1616
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1642
1617
  }
1643
- /** @name FinalityGrandpaPrecommit (216) */
1618
+ /** @name FinalityGrandpaPrecommit (212) */
1644
1619
  interface FinalityGrandpaPrecommit extends Struct {
1645
1620
  readonly targetHash: H256;
1646
1621
  readonly targetNumber: u32;
1647
1622
  }
1648
- /** @name SpSessionMembershipProof (218) */
1649
- interface SpSessionMembershipProof extends Struct {
1650
- readonly session: u32;
1651
- readonly trieNodes: Vec<Bytes>;
1652
- readonly validatorCount: u32;
1653
- }
1654
- /** @name PalletMintCall (219) */
1623
+ /** @name SpCoreVoid (214) */
1624
+ type SpCoreVoid = Null;
1625
+ /** @name PalletMintCall (215) */
1655
1626
  type PalletMintCall = Null;
1656
- /** @name PalletBalancesCall (220) */
1627
+ /** @name PalletBalancesCall (216) */
1657
1628
  interface PalletBalancesCall extends Enum {
1658
1629
  readonly isTransferAllowDeath: boolean;
1659
1630
  readonly asTransferAllowDeath: {
@@ -1702,13 +1673,13 @@ declare module '@polkadot/types/lookup' {
1702
1673
  } & Struct;
1703
1674
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
1704
1675
  }
1705
- /** @name PalletBalancesAdjustmentDirection (221) */
1676
+ /** @name PalletBalancesAdjustmentDirection (217) */
1706
1677
  interface PalletBalancesAdjustmentDirection extends Enum {
1707
1678
  readonly isIncrease: boolean;
1708
1679
  readonly isDecrease: boolean;
1709
1680
  readonly type: 'Increase' | 'Decrease';
1710
1681
  }
1711
- /** @name PalletTxPauseCall (223) */
1682
+ /** @name PalletTxPauseCall (219) */
1712
1683
  interface PalletTxPauseCall extends Enum {
1713
1684
  readonly isPause: boolean;
1714
1685
  readonly asPause: {
@@ -1720,7 +1691,7 @@ declare module '@polkadot/types/lookup' {
1720
1691
  } & Struct;
1721
1692
  readonly type: 'Pause' | 'Unpause';
1722
1693
  }
1723
- /** @name PalletUtilityCall (224) */
1694
+ /** @name PalletUtilityCall (220) */
1724
1695
  interface PalletUtilityCall extends Enum {
1725
1696
  readonly isBatch: boolean;
1726
1697
  readonly asBatch: {
@@ -1751,14 +1722,14 @@ declare module '@polkadot/types/lookup' {
1751
1722
  } & Struct;
1752
1723
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
1753
1724
  }
1754
- /** @name ArgonNodeRuntimeOriginCaller (226) */
1725
+ /** @name ArgonNodeRuntimeOriginCaller (222) */
1755
1726
  interface ArgonNodeRuntimeOriginCaller extends Enum {
1756
1727
  readonly isSystem: boolean;
1757
1728
  readonly asSystem: FrameSupportDispatchRawOrigin;
1758
1729
  readonly isVoid: boolean;
1759
1730
  readonly type: 'System' | 'Void';
1760
1731
  }
1761
- /** @name FrameSupportDispatchRawOrigin (227) */
1732
+ /** @name FrameSupportDispatchRawOrigin (223) */
1762
1733
  interface FrameSupportDispatchRawOrigin extends Enum {
1763
1734
  readonly isRoot: boolean;
1764
1735
  readonly isSigned: boolean;
@@ -1766,9 +1737,7 @@ declare module '@polkadot/types/lookup' {
1766
1737
  readonly isNone: boolean;
1767
1738
  readonly type: 'Root' | 'Signed' | 'None';
1768
1739
  }
1769
- /** @name SpCoreVoid (228) */
1770
- type SpCoreVoid = Null;
1771
- /** @name PalletSudoCall (229) */
1740
+ /** @name PalletSudoCall (224) */
1772
1741
  interface PalletSudoCall extends Enum {
1773
1742
  readonly isSudo: boolean;
1774
1743
  readonly asSudo: {
@@ -1791,7 +1760,7 @@ declare module '@polkadot/types/lookup' {
1791
1760
  readonly isRemoveKey: boolean;
1792
1761
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
1793
1762
  }
1794
- /** @name PalletMultisigError (231) */
1763
+ /** @name PalletMultisigError (226) */
1795
1764
  interface PalletMultisigError extends Enum {
1796
1765
  readonly isMinimumThreshold: boolean;
1797
1766
  readonly isAlreadyApproved: boolean;
@@ -1809,19 +1778,19 @@ declare module '@polkadot/types/lookup' {
1809
1778
  readonly isAlreadyStored: boolean;
1810
1779
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
1811
1780
  }
1812
- /** @name PalletProxyProxyDefinition (234) */
1781
+ /** @name PalletProxyProxyDefinition (229) */
1813
1782
  interface PalletProxyProxyDefinition extends Struct {
1814
1783
  readonly delegate: AccountId32;
1815
1784
  readonly proxyType: ArgonNodeRuntimeProxyType;
1816
1785
  readonly delay: u32;
1817
1786
  }
1818
- /** @name PalletProxyAnnouncement (238) */
1787
+ /** @name PalletProxyAnnouncement (233) */
1819
1788
  interface PalletProxyAnnouncement extends Struct {
1820
1789
  readonly real: AccountId32;
1821
1790
  readonly callHash: H256;
1822
1791
  readonly height: u32;
1823
1792
  }
1824
- /** @name PalletProxyError (240) */
1793
+ /** @name PalletProxyError (235) */
1825
1794
  interface PalletProxyError extends Enum {
1826
1795
  readonly isTooMany: boolean;
1827
1796
  readonly isNotFound: boolean;
@@ -1833,21 +1802,21 @@ declare module '@polkadot/types/lookup' {
1833
1802
  readonly isNoSelfProxy: boolean;
1834
1803
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
1835
1804
  }
1836
- /** @name ArgonPrimitivesTickTicker (241) */
1805
+ /** @name ArgonPrimitivesTickTicker (236) */
1837
1806
  interface ArgonPrimitivesTickTicker extends Struct {
1838
1807
  readonly tickDurationMillis: Compact<u64>;
1839
1808
  readonly genesisUtcTime: Compact<u64>;
1840
1809
  readonly channelHoldExpirationTicks: Compact<u32>;
1841
1810
  }
1842
- /** @name PalletTicksError (243) */
1811
+ /** @name PalletTicksError (238) */
1843
1812
  type PalletTicksError = Null;
1844
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (251) */
1813
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (245) */
1845
1814
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
1846
1815
  readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
1847
1816
  readonly blocksBetweenSlots: Compact<u32>;
1848
1817
  readonly slotBiddingStartBlock: Compact<u32>;
1849
1818
  }
1850
- /** @name PalletMiningSlotError (252) */
1819
+ /** @name PalletMiningSlotError (246) */
1851
1820
  interface PalletMiningSlotError extends Enum {
1852
1821
  readonly isSlotNotTakingBids: boolean;
1853
1822
  readonly isTooManyBlockRegistrants: boolean;
@@ -1873,7 +1842,7 @@ declare module '@polkadot/types/lookup' {
1873
1842
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
1874
1843
  readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
1875
1844
  }
1876
- /** @name ArgonPrimitivesBondBondError (253) */
1845
+ /** @name ArgonPrimitivesBondBondError (247) */
1877
1846
  interface ArgonPrimitivesBondBondError extends Enum {
1878
1847
  readonly isBondNotFound: boolean;
1879
1848
  readonly isNoMoreBondIds: boolean;
@@ -1897,7 +1866,7 @@ declare module '@polkadot/types/lookup' {
1897
1866
  readonly isInternalError: boolean;
1898
1867
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
1899
1868
  }
1900
- /** @name ArgonPrimitivesBitcoinUtxoValue (254) */
1869
+ /** @name ArgonPrimitivesBitcoinUtxoValue (248) */
1901
1870
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
1902
1871
  readonly utxoId: u64;
1903
1872
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -1905,7 +1874,7 @@ declare module '@polkadot/types/lookup' {
1905
1874
  readonly submittedAtHeight: Compact<u64>;
1906
1875
  readonly watchForSpentUntilHeight: Compact<u64>;
1907
1876
  }
1908
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (255) */
1877
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (249) */
1909
1878
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
1910
1879
  readonly isP2wsh: boolean;
1911
1880
  readonly asP2wsh: {
@@ -1913,7 +1882,7 @@ declare module '@polkadot/types/lookup' {
1913
1882
  } & Struct;
1914
1883
  readonly type: 'P2wsh';
1915
1884
  }
1916
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (260) */
1885
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (254) */
1917
1886
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
1918
1887
  readonly isBitcoin: boolean;
1919
1888
  readonly isTestnet: boolean;
@@ -1921,7 +1890,7 @@ declare module '@polkadot/types/lookup' {
1921
1890
  readonly isRegtest: boolean;
1922
1891
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
1923
1892
  }
1924
- /** @name PalletBitcoinUtxosError (263) */
1893
+ /** @name PalletBitcoinUtxosError (257) */
1925
1894
  interface PalletBitcoinUtxosError extends Enum {
1926
1895
  readonly isNoPermissions: boolean;
1927
1896
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -1936,7 +1905,7 @@ declare module '@polkadot/types/lookup' {
1936
1905
  readonly isInvalidBitcoinScript: boolean;
1937
1906
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
1938
1907
  }
1939
- /** @name ArgonPrimitivesBondVault (264) */
1908
+ /** @name ArgonPrimitivesBondVault (258) */
1940
1909
  interface ArgonPrimitivesBondVault extends Struct {
1941
1910
  readonly operatorAccountId: AccountId32;
1942
1911
  readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
@@ -1947,14 +1916,14 @@ declare module '@polkadot/types/lookup' {
1947
1916
  readonly isClosed: bool;
1948
1917
  readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
1949
1918
  }
1950
- /** @name ArgonPrimitivesBondVaultArgons (265) */
1919
+ /** @name ArgonPrimitivesBondVaultArgons (259) */
1951
1920
  interface ArgonPrimitivesBondVaultArgons extends Struct {
1952
1921
  readonly annualPercentRate: Compact<u128>;
1953
1922
  readonly allocated: Compact<u128>;
1954
1923
  readonly bonded: Compact<u128>;
1955
1924
  readonly baseFee: Compact<u128>;
1956
1925
  }
1957
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (269) */
1926
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (263) */
1958
1927
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
1959
1928
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
1960
1929
  readonly depth: Compact<u8>;
@@ -1963,13 +1932,13 @@ declare module '@polkadot/types/lookup' {
1963
1932
  readonly chainCode: U8aFixed;
1964
1933
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
1965
1934
  }
1966
- /** @name ArgonPrimitivesBitcoinNetworkKind (271) */
1935
+ /** @name ArgonPrimitivesBitcoinNetworkKind (265) */
1967
1936
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
1968
1937
  readonly isMain: boolean;
1969
1938
  readonly isTest: boolean;
1970
1939
  readonly type: 'Main' | 'Test';
1971
1940
  }
1972
- /** @name PalletVaultsError (273) */
1941
+ /** @name PalletVaultsError (267) */
1973
1942
  interface PalletVaultsError extends Enum {
1974
1943
  readonly isBondNotFound: boolean;
1975
1944
  readonly isNoMoreVaultIds: boolean;
@@ -2010,7 +1979,7 @@ declare module '@polkadot/types/lookup' {
2010
1979
  readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
2011
1980
  readonly type: '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';
2012
1981
  }
2013
- /** @name ArgonPrimitivesBond (274) */
1982
+ /** @name ArgonPrimitivesBond (268) */
2014
1983
  interface ArgonPrimitivesBond extends Struct {
2015
1984
  readonly bondType: ArgonPrimitivesBondBondType;
2016
1985
  readonly vaultId: Compact<u32>;
@@ -2022,7 +1991,7 @@ declare module '@polkadot/types/lookup' {
2022
1991
  readonly startBlock: Compact<u32>;
2023
1992
  readonly expiration: ArgonPrimitivesBondBondExpiration;
2024
1993
  }
2025
- /** @name PalletBondUtxoState (277) */
1994
+ /** @name PalletBondUtxoState (271) */
2026
1995
  interface PalletBondUtxoState extends Struct {
2027
1996
  readonly bondId: Compact<u64>;
2028
1997
  readonly satoshis: Compact<u64>;
@@ -2036,7 +2005,7 @@ declare module '@polkadot/types/lookup' {
2036
2005
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2037
2006
  readonly isVerified: bool;
2038
2007
  }
2039
- /** @name PalletBondUtxoCosignRequest (281) */
2008
+ /** @name PalletBondUtxoCosignRequest (275) */
2040
2009
  interface PalletBondUtxoCosignRequest extends Struct {
2041
2010
  readonly bondId: Compact<u64>;
2042
2011
  readonly vaultId: Compact<u32>;
@@ -2045,7 +2014,7 @@ declare module '@polkadot/types/lookup' {
2045
2014
  readonly toScriptPubkey: Bytes;
2046
2015
  readonly redemptionPrice: Compact<u128>;
2047
2016
  }
2048
- /** @name PalletBondError (285) */
2017
+ /** @name PalletBondError (279) */
2049
2018
  interface PalletBondError extends Enum {
2050
2019
  readonly isBondNotFound: boolean;
2051
2020
  readonly isNoMoreBondIds: boolean;
@@ -2079,7 +2048,7 @@ declare module '@polkadot/types/lookup' {
2079
2048
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
2080
2049
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'BondRedemptionNotLocked' | 'BitcoinUnlockInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForUnlock' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'GenericBondError';
2081
2050
  }
2082
- /** @name PalletNotariesError (297) */
2051
+ /** @name PalletNotariesError (291) */
2083
2052
  interface PalletNotariesError extends Enum {
2084
2053
  readonly isProposalNotFound: boolean;
2085
2054
  readonly isMaxNotariesExceeded: boolean;
@@ -2092,7 +2061,7 @@ declare module '@polkadot/types/lookup' {
2092
2061
  readonly isInvalidNotary: boolean;
2093
2062
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2094
2063
  }
2095
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (301) */
2064
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (295) */
2096
2065
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2097
2066
  readonly notebookNumber: Compact<u32>;
2098
2067
  readonly tick: Compact<u32>;
@@ -2100,18 +2069,18 @@ declare module '@polkadot/types/lookup' {
2100
2069
  readonly secretHash: H256;
2101
2070
  readonly parentSecret: Option<H256>;
2102
2071
  }
2103
- /** @name ArgonPrimitivesDigestsNotebookDigest (303) */
2072
+ /** @name ArgonPrimitivesDigestsNotebookDigest (297) */
2104
2073
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2105
2074
  readonly notebooks: Vec<ArgonPrimitivesDigestsNotebookDigestRecord>;
2106
2075
  }
2107
- /** @name ArgonPrimitivesDigestsNotebookDigestRecord (305) */
2076
+ /** @name ArgonPrimitivesDigestsNotebookDigestRecord (299) */
2108
2077
  interface ArgonPrimitivesDigestsNotebookDigestRecord extends Struct {
2109
2078
  readonly notaryId: Compact<u32>;
2110
2079
  readonly notebookNumber: Compact<u32>;
2111
2080
  readonly tick: Compact<u32>;
2112
2081
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2113
2082
  }
2114
- /** @name PalletNotebookError (308) */
2083
+ /** @name PalletNotebookError (302) */
2115
2084
  interface PalletNotebookError extends Enum {
2116
2085
  readonly isDuplicateNotebookNumber: boolean;
2117
2086
  readonly isMissingNotebookNumber: boolean;
@@ -2126,17 +2095,17 @@ declare module '@polkadot/types/lookup' {
2126
2095
  readonly isInternalError: boolean;
2127
2096
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError';
2128
2097
  }
2129
- /** @name PalletChainTransferQueuedTransferOut (309) */
2098
+ /** @name PalletChainTransferQueuedTransferOut (303) */
2130
2099
  interface PalletChainTransferQueuedTransferOut extends Struct {
2131
2100
  readonly accountId: AccountId32;
2132
2101
  readonly amount: u128;
2133
2102
  readonly expirationTick: u32;
2134
2103
  readonly notaryId: u32;
2135
2104
  }
2136
- /** @name FrameSupportPalletId (314) */
2105
+ /** @name FrameSupportPalletId (308) */
2137
2106
  interface FrameSupportPalletId extends U8aFixed {
2138
2107
  }
2139
- /** @name PalletChainTransferError (315) */
2108
+ /** @name PalletChainTransferError (309) */
2140
2109
  interface PalletChainTransferError extends Enum {
2141
2110
  readonly isMaxBlockTransfersExceeded: boolean;
2142
2111
  readonly isInsufficientFunds: boolean;
@@ -2147,7 +2116,7 @@ declare module '@polkadot/types/lookup' {
2147
2116
  readonly isNotaryLocked: boolean;
2148
2117
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLocked';
2149
2118
  }
2150
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (320) */
2119
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (314) */
2151
2120
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2152
2121
  readonly notaryId: Compact<u32>;
2153
2122
  readonly notebookNumber: Compact<u32>;
@@ -2155,17 +2124,17 @@ declare module '@polkadot/types/lookup' {
2155
2124
  readonly blockVotesCount: Compact<u32>;
2156
2125
  readonly blockVotingPower: Compact<u128>;
2157
2126
  }
2158
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (322) */
2127
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (316) */
2159
2128
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2160
2129
  readonly votingPower: Compact<u128>;
2161
2130
  readonly votesCount: Compact<u32>;
2162
2131
  }
2163
- /** @name PalletBlockSealSpecError (326) */
2132
+ /** @name PalletBlockSealSpecError (320) */
2164
2133
  interface PalletBlockSealSpecError extends Enum {
2165
2134
  readonly isMaxNotebooksAtTickExceeded: boolean;
2166
2135
  readonly type: 'MaxNotebooksAtTickExceeded';
2167
2136
  }
2168
- /** @name PalletDomainsError (328) */
2137
+ /** @name PalletDomainsError (322) */
2169
2138
  interface PalletDomainsError extends Enum {
2170
2139
  readonly isDomainNotRegistered: boolean;
2171
2140
  readonly isNotDomainOwner: boolean;
@@ -2174,7 +2143,7 @@ declare module '@polkadot/types/lookup' {
2174
2143
  readonly isAccountDecodingError: boolean;
2175
2144
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2176
2145
  }
2177
- /** @name PalletPriceIndexError (329) */
2146
+ /** @name PalletPriceIndexError (323) */
2178
2147
  interface PalletPriceIndexError extends Enum {
2179
2148
  readonly isNotAuthorizedOperator: boolean;
2180
2149
  readonly isMissingValue: boolean;
@@ -2182,28 +2151,16 @@ declare module '@polkadot/types/lookup' {
2182
2151
  readonly isMaxPriceChangePerTickExceeded: boolean;
2183
2152
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2184
2153
  }
2185
- /** @name SpCoreCryptoKeyTypeId (334) */
2186
- interface SpCoreCryptoKeyTypeId extends U8aFixed {
2187
- }
2188
- /** @name PalletSessionError (335) */
2189
- interface PalletSessionError extends Enum {
2190
- readonly isInvalidProof: boolean;
2191
- readonly isNoAssociatedValidatorId: boolean;
2192
- readonly isDuplicatedKey: boolean;
2193
- readonly isNoKeys: boolean;
2194
- readonly isNoAccount: boolean;
2195
- readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
2196
- }
2197
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (336) */
2154
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (324) */
2198
2155
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2199
2156
  readonly blockAuthorAccountId: AccountId32;
2200
2157
  readonly blockVoteRewardsAccount: Option<AccountId32>;
2201
2158
  }
2202
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (337) */
2159
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (325) */
2203
2160
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2204
2161
  readonly parentVotingKey: Option<H256>;
2205
2162
  }
2206
- /** @name PalletBlockSealError (338) */
2163
+ /** @name PalletBlockSealError (326) */
2207
2164
  interface PalletBlockSealError extends Enum {
2208
2165
  readonly isInvalidVoteSealStrength: boolean;
2209
2166
  readonly isInvalidSubmitter: boolean;
@@ -2224,9 +2181,9 @@ declare module '@polkadot/types/lookup' {
2224
2181
  readonly isBlockVoteInvalidSignature: boolean;
2225
2182
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'InvalidAuthoritySignature' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature';
2226
2183
  }
2227
- /** @name PalletBlockRewardsError (340) */
2184
+ /** @name PalletBlockRewardsError (328) */
2228
2185
  type PalletBlockRewardsError = Null;
2229
- /** @name PalletGrandpaStoredState (341) */
2186
+ /** @name PalletGrandpaStoredState (329) */
2230
2187
  interface PalletGrandpaStoredState extends Enum {
2231
2188
  readonly isLive: boolean;
2232
2189
  readonly isPendingPause: boolean;
@@ -2242,14 +2199,14 @@ declare module '@polkadot/types/lookup' {
2242
2199
  } & Struct;
2243
2200
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2244
2201
  }
2245
- /** @name PalletGrandpaStoredPendingChange (342) */
2202
+ /** @name PalletGrandpaStoredPendingChange (330) */
2246
2203
  interface PalletGrandpaStoredPendingChange extends Struct {
2247
2204
  readonly scheduledAt: u32;
2248
2205
  readonly delay: u32;
2249
2206
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2250
2207
  readonly forced: Option<u32>;
2251
2208
  }
2252
- /** @name PalletGrandpaError (345) */
2209
+ /** @name PalletGrandpaError (333) */
2253
2210
  interface PalletGrandpaError extends Enum {
2254
2211
  readonly isPauseFailed: boolean;
2255
2212
  readonly isResumeFailed: boolean;
@@ -2260,44 +2217,35 @@ declare module '@polkadot/types/lookup' {
2260
2217
  readonly isDuplicateOffenceReport: boolean;
2261
2218
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2262
2219
  }
2263
- /** @name SpStakingOffenceOffenceDetails (346) */
2264
- interface SpStakingOffenceOffenceDetails extends Struct {
2265
- readonly offender: ITuple<[AccountId32, PalletMiningSlotMinerHistory]>;
2266
- readonly reporters: Vec<AccountId32>;
2267
- }
2268
- /** @name PalletMiningSlotMinerHistory (348) */
2269
- interface PalletMiningSlotMinerHistory extends Struct {
2270
- readonly authorityIndex: u32;
2271
- }
2272
- /** @name PalletMintError (353) */
2220
+ /** @name PalletMintError (337) */
2273
2221
  interface PalletMintError extends Enum {
2274
2222
  readonly isTooManyPendingMints: boolean;
2275
2223
  readonly type: 'TooManyPendingMints';
2276
2224
  }
2277
- /** @name PalletBalancesBalanceLock (355) */
2225
+ /** @name PalletBalancesBalanceLock (339) */
2278
2226
  interface PalletBalancesBalanceLock extends Struct {
2279
2227
  readonly id: U8aFixed;
2280
2228
  readonly amount: u128;
2281
2229
  readonly reasons: PalletBalancesReasons;
2282
2230
  }
2283
- /** @name PalletBalancesReasons (356) */
2231
+ /** @name PalletBalancesReasons (340) */
2284
2232
  interface PalletBalancesReasons extends Enum {
2285
2233
  readonly isFee: boolean;
2286
2234
  readonly isMisc: boolean;
2287
2235
  readonly isAll: boolean;
2288
2236
  readonly type: 'Fee' | 'Misc' | 'All';
2289
2237
  }
2290
- /** @name PalletBalancesReserveData (359) */
2238
+ /** @name PalletBalancesReserveData (343) */
2291
2239
  interface PalletBalancesReserveData extends Struct {
2292
2240
  readonly id: U8aFixed;
2293
2241
  readonly amount: u128;
2294
2242
  }
2295
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (362) */
2243
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (346) */
2296
2244
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2297
2245
  readonly id: ArgonNodeRuntimeRuntimeHoldReason;
2298
2246
  readonly amount: u128;
2299
2247
  }
2300
- /** @name ArgonNodeRuntimeRuntimeHoldReason (363) */
2248
+ /** @name ArgonNodeRuntimeRuntimeHoldReason (347) */
2301
2249
  interface ArgonNodeRuntimeRuntimeHoldReason extends Enum {
2302
2250
  readonly isMiningSlot: boolean;
2303
2251
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2309,44 +2257,44 @@ declare module '@polkadot/types/lookup' {
2309
2257
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2310
2258
  readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
2311
2259
  }
2312
- /** @name PalletMiningSlotHoldReason (364) */
2260
+ /** @name PalletMiningSlotHoldReason (348) */
2313
2261
  interface PalletMiningSlotHoldReason extends Enum {
2314
2262
  readonly isRegisterAsMiner: boolean;
2315
2263
  readonly type: 'RegisterAsMiner';
2316
2264
  }
2317
- /** @name PalletVaultsHoldReason (365) */
2265
+ /** @name PalletVaultsHoldReason (349) */
2318
2266
  interface PalletVaultsHoldReason extends Enum {
2319
2267
  readonly isEnterVault: boolean;
2320
2268
  readonly isBondFee: boolean;
2321
2269
  readonly type: 'EnterVault' | 'BondFee';
2322
2270
  }
2323
- /** @name PalletBondHoldReason (366) */
2271
+ /** @name PalletBondHoldReason (350) */
2324
2272
  interface PalletBondHoldReason extends Enum {
2325
2273
  readonly isUnlockingBitcoin: boolean;
2326
2274
  readonly type: 'UnlockingBitcoin';
2327
2275
  }
2328
- /** @name PalletBlockRewardsHoldReason (367) */
2276
+ /** @name PalletBlockRewardsHoldReason (351) */
2329
2277
  interface PalletBlockRewardsHoldReason extends Enum {
2330
2278
  readonly isMaturationPeriod: boolean;
2331
2279
  readonly type: 'MaturationPeriod';
2332
2280
  }
2333
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (370) */
2281
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (354) */
2334
2282
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2335
2283
  readonly id: ArgonNodeRuntimeRuntimeFreezeReason;
2336
2284
  readonly amount: u128;
2337
2285
  }
2338
- /** @name ArgonNodeRuntimeRuntimeFreezeReason (371) */
2286
+ /** @name ArgonNodeRuntimeRuntimeFreezeReason (355) */
2339
2287
  interface ArgonNodeRuntimeRuntimeFreezeReason extends Enum {
2340
2288
  readonly isBlockRewards: boolean;
2341
2289
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2342
2290
  readonly type: 'BlockRewards';
2343
2291
  }
2344
- /** @name PalletBlockRewardsFreezeReason (372) */
2292
+ /** @name PalletBlockRewardsFreezeReason (356) */
2345
2293
  interface PalletBlockRewardsFreezeReason extends Enum {
2346
2294
  readonly isMaturationPeriod: boolean;
2347
2295
  readonly type: 'MaturationPeriod';
2348
2296
  }
2349
- /** @name PalletBalancesError (374) */
2297
+ /** @name PalletBalancesError (358) */
2350
2298
  interface PalletBalancesError extends Enum {
2351
2299
  readonly isVestingBalance: boolean;
2352
2300
  readonly isLiquidityRestrictions: boolean;
@@ -2362,7 +2310,7 @@ declare module '@polkadot/types/lookup' {
2362
2310
  readonly isDeltaZero: boolean;
2363
2311
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2364
2312
  }
2365
- /** @name PalletTxPauseError (376) */
2313
+ /** @name PalletTxPauseError (360) */
2366
2314
  interface PalletTxPauseError extends Enum {
2367
2315
  readonly isIsPaused: boolean;
2368
2316
  readonly isIsUnpaused: boolean;
@@ -2370,48 +2318,48 @@ declare module '@polkadot/types/lookup' {
2370
2318
  readonly isNotFound: boolean;
2371
2319
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2372
2320
  }
2373
- /** @name PalletTransactionPaymentReleases (377) */
2321
+ /** @name PalletTransactionPaymentReleases (361) */
2374
2322
  interface PalletTransactionPaymentReleases extends Enum {
2375
2323
  readonly isV1Ancient: boolean;
2376
2324
  readonly isV2: boolean;
2377
2325
  readonly type: 'V1Ancient' | 'V2';
2378
2326
  }
2379
- /** @name PalletUtilityError (378) */
2327
+ /** @name PalletUtilityError (362) */
2380
2328
  interface PalletUtilityError extends Enum {
2381
2329
  readonly isTooManyCalls: boolean;
2382
2330
  readonly type: 'TooManyCalls';
2383
2331
  }
2384
- /** @name PalletSudoError (379) */
2332
+ /** @name PalletSudoError (363) */
2385
2333
  interface PalletSudoError extends Enum {
2386
2334
  readonly isRequireSudo: boolean;
2387
2335
  readonly type: 'RequireSudo';
2388
2336
  }
2389
- /** @name FrameSystemExtensionsCheckNonZeroSender (382) */
2337
+ /** @name FrameSystemExtensionsCheckNonZeroSender (366) */
2390
2338
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2391
- /** @name FrameSystemExtensionsCheckSpecVersion (383) */
2339
+ /** @name FrameSystemExtensionsCheckSpecVersion (367) */
2392
2340
  type FrameSystemExtensionsCheckSpecVersion = Null;
2393
- /** @name FrameSystemExtensionsCheckTxVersion (384) */
2341
+ /** @name FrameSystemExtensionsCheckTxVersion (368) */
2394
2342
  type FrameSystemExtensionsCheckTxVersion = Null;
2395
- /** @name FrameSystemExtensionsCheckGenesis (385) */
2343
+ /** @name FrameSystemExtensionsCheckGenesis (369) */
2396
2344
  type FrameSystemExtensionsCheckGenesis = Null;
2397
- /** @name FrameSystemExtensionsCheckNonce (388) */
2345
+ /** @name FrameSystemExtensionsCheckNonce (372) */
2398
2346
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2399
2347
  }
2400
- /** @name FrameSystemExtensionsCheckWeight (389) */
2348
+ /** @name FrameSystemExtensionsCheckWeight (373) */
2401
2349
  type FrameSystemExtensionsCheckWeight = Null;
2402
- /** @name PalletTransactionPaymentChargeTransactionPayment (390) */
2350
+ /** @name PalletTransactionPaymentChargeTransactionPayment (374) */
2403
2351
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2404
2352
  }
2405
- /** @name FrameMetadataHashExtensionCheckMetadataHash (391) */
2353
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (375) */
2406
2354
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2407
2355
  readonly mode: FrameMetadataHashExtensionMode;
2408
2356
  }
2409
- /** @name FrameMetadataHashExtensionMode (392) */
2357
+ /** @name FrameMetadataHashExtensionMode (376) */
2410
2358
  interface FrameMetadataHashExtensionMode extends Enum {
2411
2359
  readonly isDisabled: boolean;
2412
2360
  readonly isEnabled: boolean;
2413
2361
  readonly type: 'Disabled' | 'Enabled';
2414
2362
  }
2415
- /** @name ArgonNodeRuntimeRuntime (394) */
2363
+ /** @name ArgonNodeRuntimeRuntime (378) */
2416
2364
  type ArgonNodeRuntimeRuntime = Null;
2417
2365
  }