@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.
Files changed (56) hide show
  1. package/lib/cjs/examples/decodePkcs.d.ts +1 -0
  2. package/lib/cjs/examples/decodePkcs.js +48 -0
  3. package/lib/cjs/examples/decodePkcs.js.map +1 -0
  4. package/lib/cjs/examples/findSs58Formats.d.ts +1 -0
  5. package/lib/cjs/examples/findSs58Formats.js +37 -0
  6. package/lib/cjs/examples/findSs58Formats.js.map +1 -0
  7. package/lib/cjs/index.d.ts +4 -1
  8. package/lib/cjs/index.js +9 -1
  9. package/lib/cjs/index.js.map +1 -1
  10. package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -8
  11. package/lib/cjs/interfaces/augment-api-errors.d.ts +1 -23
  12. package/lib/cjs/interfaces/augment-api-events.d.ts +7 -27
  13. package/lib/cjs/interfaces/augment-api-query.d.ts +3 -59
  14. package/lib/cjs/interfaces/augment-api-tx.d.ts +8 -45
  15. package/lib/cjs/interfaces/augment-types.d.ts +63 -4
  16. package/lib/cjs/interfaces/lookup.d.ts +196 -257
  17. package/lib/cjs/interfaces/lookup.js +202 -263
  18. package/lib/cjs/interfaces/lookup.js.map +1 -1
  19. package/lib/cjs/interfaces/registry.d.ts +1 -9
  20. package/lib/cjs/interfaces/types-lookup.d.ts +192 -238
  21. package/lib/esm/examples/decodePkcs.d.ts +1 -0
  22. package/lib/esm/examples/decodePkcs.js +45 -0
  23. package/lib/esm/examples/decodePkcs.js.map +1 -0
  24. package/lib/esm/examples/findSs58Formats.d.ts +1 -0
  25. package/lib/esm/examples/findSs58Formats.js +34 -0
  26. package/lib/esm/examples/findSs58Formats.js.map +1 -0
  27. package/lib/esm/index.d.ts +4 -1
  28. package/lib/esm/index.js +6 -1
  29. package/lib/esm/index.js.map +1 -1
  30. package/lib/esm/interfaces/augment-api-consts.d.ts +0 -8
  31. package/lib/esm/interfaces/augment-api-errors.d.ts +1 -23
  32. package/lib/esm/interfaces/augment-api-events.d.ts +7 -27
  33. package/lib/esm/interfaces/augment-api-query.d.ts +3 -59
  34. package/lib/esm/interfaces/augment-api-tx.d.ts +8 -45
  35. package/lib/esm/interfaces/augment-types.d.ts +63 -4
  36. package/lib/esm/interfaces/lookup.d.ts +196 -257
  37. package/lib/esm/interfaces/lookup.js +202 -263
  38. package/lib/esm/interfaces/lookup.js.map +1 -1
  39. package/lib/esm/interfaces/registry.d.ts +1 -9
  40. package/lib/esm/interfaces/types-lookup.d.ts +192 -238
  41. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  42. package/lib/tsconfig-types.tsbuildinfo +1 -1
  43. package/lib/tsconfig.tsbuildinfo +1 -1
  44. package/lib/types/examples/decodePkcs.d.ts +1 -0
  45. package/lib/types/examples/findSs58Formats.d.ts +1 -0
  46. package/lib/types/index.d.ts +4 -1
  47. package/lib/types/interfaces/augment-api-consts.d.ts +0 -8
  48. package/lib/types/interfaces/augment-api-errors.d.ts +1 -23
  49. package/lib/types/interfaces/augment-api-events.d.ts +7 -27
  50. package/lib/types/interfaces/augment-api-query.d.ts +3 -59
  51. package/lib/types/interfaces/augment-api-tx.d.ts +8 -45
  52. package/lib/types/interfaces/augment-types.d.ts +63 -4
  53. package/lib/types/interfaces/lookup.d.ts +196 -257
  54. package/lib/types/interfaces/registry.d.ts +1 -9
  55. package/lib/types/interfaces/types-lookup.d.ts +192 -238
  56. 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: {
@@ -636,15 +648,20 @@ declare module '@polkadot/types/lookup' {
636
648
  readonly isInvalidComputeProof: boolean;
637
649
  readonly isInvalidBlockVoteSource: boolean;
638
650
  readonly isInsufficientBlockVoteMinimum: boolean;
639
- 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';
651
+ readonly isInvalidBlockVoteTick: boolean;
652
+ readonly asInvalidBlockVoteTick: {
653
+ readonly tick: u32;
654
+ readonly notebookTick: u32;
655
+ } & Struct;
656
+ 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' | 'InvalidBlockVoteTick';
640
657
  }
641
- /** @name ArgonPrimitivesAccountAccountType (71) */
658
+ /** @name ArgonPrimitivesAccountAccountType (74) */
642
659
  interface ArgonPrimitivesAccountAccountType extends Enum {
643
660
  readonly isTax: boolean;
644
661
  readonly isDeposit: boolean;
645
662
  readonly type: 'Tax' | 'Deposit';
646
663
  }
647
- /** @name ArgonNotaryAuditAccountHistoryLookupError (72) */
664
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (75) */
648
665
  interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
649
666
  readonly isRootNotFound: boolean;
650
667
  readonly isLastChangeNotFound: boolean;
@@ -652,7 +669,7 @@ declare module '@polkadot/types/lookup' {
652
669
  readonly isBlockSpecificationNotFound: boolean;
653
670
  readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
654
671
  }
655
- /** @name PalletChainTransferEvent (75) */
672
+ /** @name PalletChainTransferEvent (78) */
656
673
  interface PalletChainTransferEvent extends Enum {
657
674
  readonly isTransferToLocalchain: boolean;
658
675
  readonly asTransferToLocalchain: {
@@ -705,7 +722,7 @@ declare module '@polkadot/types/lookup' {
705
722
  } & Struct;
706
723
  readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferIn' | 'TransferInError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidTransferAllowed' | 'TaxationError';
707
724
  }
708
- /** @name PalletBlockSealSpecEvent (76) */
725
+ /** @name PalletBlockSealSpecEvent (79) */
709
726
  interface PalletBlockSealSpecEvent extends Enum {
710
727
  readonly isVoteMinimumAdjusted: boolean;
711
728
  readonly asVoteMinimumAdjusted: {
@@ -723,7 +740,7 @@ declare module '@polkadot/types/lookup' {
723
740
  } & Struct;
724
741
  readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
725
742
  }
726
- /** @name PalletDomainsEvent (77) */
743
+ /** @name PalletDomainsEvent (80) */
727
744
  interface PalletDomainsEvent extends Enum {
728
745
  readonly isZoneRecordUpdated: boolean;
729
746
  readonly asZoneRecordUpdated: {
@@ -756,29 +773,29 @@ declare module '@polkadot/types/lookup' {
756
773
  } & Struct;
757
774
  readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
758
775
  }
759
- /** @name ArgonPrimitivesDomainZoneRecord (78) */
776
+ /** @name ArgonPrimitivesDomainZoneRecord (81) */
760
777
  interface ArgonPrimitivesDomainZoneRecord extends Struct {
761
778
  readonly paymentAccount: AccountId32;
762
779
  readonly notaryId: u32;
763
780
  readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
764
781
  }
765
- /** @name ArgonPrimitivesDomainSemver (80) */
782
+ /** @name ArgonPrimitivesDomainSemver (83) */
766
783
  interface ArgonPrimitivesDomainSemver extends Struct {
767
784
  readonly major: u32;
768
785
  readonly minor: u32;
769
786
  readonly patch: u32;
770
787
  }
771
- /** @name ArgonPrimitivesDomainVersionHost (81) */
788
+ /** @name ArgonPrimitivesDomainVersionHost (84) */
772
789
  interface ArgonPrimitivesDomainVersionHost extends Struct {
773
790
  readonly datastoreId: Bytes;
774
791
  readonly host: Bytes;
775
792
  }
776
- /** @name PalletDomainsDomainRegistration (85) */
793
+ /** @name PalletDomainsDomainRegistration (88) */
777
794
  interface PalletDomainsDomainRegistration extends Struct {
778
795
  readonly accountId: AccountId32;
779
796
  readonly registeredAtTick: u32;
780
797
  }
781
- /** @name PalletPriceIndexEvent (86) */
798
+ /** @name PalletPriceIndexEvent (89) */
782
799
  interface PalletPriceIndexEvent extends Enum {
783
800
  readonly isNewIndex: boolean;
784
801
  readonly isOperatorChanged: boolean;
@@ -787,15 +804,7 @@ declare module '@polkadot/types/lookup' {
787
804
  } & Struct;
788
805
  readonly type: 'NewIndex' | 'OperatorChanged';
789
806
  }
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) */
807
+ /** @name PalletBlockRewardsEvent (90) */
799
808
  interface PalletBlockRewardsEvent extends Enum {
800
809
  readonly isRewardCreated: boolean;
801
810
  readonly asRewardCreated: {
@@ -822,13 +831,13 @@ declare module '@polkadot/types/lookup' {
822
831
  } & Struct;
823
832
  readonly type: 'RewardCreated' | 'RewardUnlocked' | 'RewardUnlockError' | 'RewardCreateError';
824
833
  }
825
- /** @name ArgonPrimitivesBlockSealBlockPayout (90) */
834
+ /** @name ArgonPrimitivesBlockSealBlockPayout (92) */
826
835
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
827
836
  readonly accountId: AccountId32;
828
837
  readonly ownership: Compact<u128>;
829
838
  readonly argons: Compact<u128>;
830
839
  }
831
- /** @name PalletGrandpaEvent (92) */
840
+ /** @name PalletGrandpaEvent (94) */
832
841
  interface PalletGrandpaEvent extends Enum {
833
842
  readonly isNewAuthorities: boolean;
834
843
  readonly asNewAuthorities: {
@@ -838,19 +847,7 @@ declare module '@polkadot/types/lookup' {
838
847
  readonly isResumed: boolean;
839
848
  readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
840
849
  }
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) */
850
+ /** @name PalletMintEvent (97) */
854
851
  interface PalletMintEvent extends Enum {
855
852
  readonly isArgonsMinted: boolean;
856
853
  readonly asArgonsMinted: {
@@ -869,13 +866,13 @@ declare module '@polkadot/types/lookup' {
869
866
  } & Struct;
870
867
  readonly type: 'ArgonsMinted' | 'MintError';
871
868
  }
872
- /** @name PalletMintMintType (99) */
869
+ /** @name PalletMintMintType (98) */
873
870
  interface PalletMintMintType extends Enum {
874
871
  readonly isBitcoin: boolean;
875
872
  readonly isMining: boolean;
876
873
  readonly type: 'Bitcoin' | 'Mining';
877
874
  }
878
- /** @name PalletBalancesEvent (100) */
875
+ /** @name PalletBalancesEvent (99) */
879
876
  interface PalletBalancesEvent extends Enum {
880
877
  readonly isEndowed: boolean;
881
878
  readonly asEndowed: {
@@ -989,13 +986,13 @@ declare module '@polkadot/types/lookup' {
989
986
  } & Struct;
990
987
  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
988
  }
992
- /** @name FrameSupportTokensMiscBalanceStatus (101) */
989
+ /** @name FrameSupportTokensMiscBalanceStatus (100) */
993
990
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
994
991
  readonly isFree: boolean;
995
992
  readonly isReserved: boolean;
996
993
  readonly type: 'Free' | 'Reserved';
997
994
  }
998
- /** @name PalletTxPauseEvent (103) */
995
+ /** @name PalletTxPauseEvent (102) */
999
996
  interface PalletTxPauseEvent extends Enum {
1000
997
  readonly isCallPaused: boolean;
1001
998
  readonly asCallPaused: {
@@ -1007,7 +1004,7 @@ declare module '@polkadot/types/lookup' {
1007
1004
  } & Struct;
1008
1005
  readonly type: 'CallPaused' | 'CallUnpaused';
1009
1006
  }
1010
- /** @name PalletTransactionPaymentEvent (106) */
1007
+ /** @name PalletTransactionPaymentEvent (105) */
1011
1008
  interface PalletTransactionPaymentEvent extends Enum {
1012
1009
  readonly isTransactionFeePaid: boolean;
1013
1010
  readonly asTransactionFeePaid: {
@@ -1017,7 +1014,7 @@ declare module '@polkadot/types/lookup' {
1017
1014
  } & Struct;
1018
1015
  readonly type: 'TransactionFeePaid';
1019
1016
  }
1020
- /** @name PalletUtilityEvent (107) */
1017
+ /** @name PalletUtilityEvent (106) */
1021
1018
  interface PalletUtilityEvent extends Enum {
1022
1019
  readonly isBatchInterrupted: boolean;
1023
1020
  readonly asBatchInterrupted: {
@@ -1037,7 +1034,7 @@ declare module '@polkadot/types/lookup' {
1037
1034
  } & Struct;
1038
1035
  readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1039
1036
  }
1040
- /** @name PalletSudoEvent (108) */
1037
+ /** @name PalletSudoEvent (107) */
1041
1038
  interface PalletSudoEvent extends Enum {
1042
1039
  readonly isSudid: boolean;
1043
1040
  readonly asSudid: {
@@ -1055,7 +1052,7 @@ declare module '@polkadot/types/lookup' {
1055
1052
  } & Struct;
1056
1053
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1057
1054
  }
1058
- /** @name FrameSystemPhase (110) */
1055
+ /** @name FrameSystemPhase (109) */
1059
1056
  interface FrameSystemPhase extends Enum {
1060
1057
  readonly isApplyExtrinsic: boolean;
1061
1058
  readonly asApplyExtrinsic: u32;
@@ -1063,17 +1060,17 @@ declare module '@polkadot/types/lookup' {
1063
1060
  readonly isInitialization: boolean;
1064
1061
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1065
1062
  }
1066
- /** @name FrameSystemLastRuntimeUpgradeInfo (114) */
1063
+ /** @name FrameSystemLastRuntimeUpgradeInfo (113) */
1067
1064
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1068
1065
  readonly specVersion: Compact<u32>;
1069
1066
  readonly specName: Text;
1070
1067
  }
1071
- /** @name FrameSystemCodeUpgradeAuthorization (115) */
1068
+ /** @name FrameSystemCodeUpgradeAuthorization (114) */
1072
1069
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1073
1070
  readonly codeHash: H256;
1074
1071
  readonly checkVersion: bool;
1075
1072
  }
1076
- /** @name FrameSystemCall (116) */
1073
+ /** @name FrameSystemCall (115) */
1077
1074
  interface FrameSystemCall extends Enum {
1078
1075
  readonly isRemark: boolean;
1079
1076
  readonly asRemark: {
@@ -1122,41 +1119,41 @@ declare module '@polkadot/types/lookup' {
1122
1119
  } & Struct;
1123
1120
  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1124
1121
  }
1125
- /** @name FrameSystemLimitsBlockWeights (120) */
1122
+ /** @name FrameSystemLimitsBlockWeights (119) */
1126
1123
  interface FrameSystemLimitsBlockWeights extends Struct {
1127
1124
  readonly baseBlock: SpWeightsWeightV2Weight;
1128
1125
  readonly maxBlock: SpWeightsWeightV2Weight;
1129
1126
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1130
1127
  }
1131
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (121) */
1128
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (120) */
1132
1129
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1133
1130
  readonly normal: FrameSystemLimitsWeightsPerClass;
1134
1131
  readonly operational: FrameSystemLimitsWeightsPerClass;
1135
1132
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1136
1133
  }
1137
- /** @name FrameSystemLimitsWeightsPerClass (122) */
1134
+ /** @name FrameSystemLimitsWeightsPerClass (121) */
1138
1135
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1139
1136
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1140
1137
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1141
1138
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1142
1139
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1143
1140
  }
1144
- /** @name FrameSystemLimitsBlockLength (124) */
1141
+ /** @name FrameSystemLimitsBlockLength (123) */
1145
1142
  interface FrameSystemLimitsBlockLength extends Struct {
1146
1143
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1147
1144
  }
1148
- /** @name FrameSupportDispatchPerDispatchClassU32 (125) */
1145
+ /** @name FrameSupportDispatchPerDispatchClassU32 (124) */
1149
1146
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1150
1147
  readonly normal: u32;
1151
1148
  readonly operational: u32;
1152
1149
  readonly mandatory: u32;
1153
1150
  }
1154
- /** @name SpWeightsRuntimeDbWeight (126) */
1151
+ /** @name SpWeightsRuntimeDbWeight (125) */
1155
1152
  interface SpWeightsRuntimeDbWeight extends Struct {
1156
1153
  readonly read: u64;
1157
1154
  readonly write: u64;
1158
1155
  }
1159
- /** @name SpVersionRuntimeVersion (127) */
1156
+ /** @name SpVersionRuntimeVersion (126) */
1160
1157
  interface SpVersionRuntimeVersion extends Struct {
1161
1158
  readonly specName: Text;
1162
1159
  readonly implName: Text;
@@ -1167,7 +1164,7 @@ declare module '@polkadot/types/lookup' {
1167
1164
  readonly transactionVersion: u32;
1168
1165
  readonly stateVersion: u8;
1169
1166
  }
1170
- /** @name FrameSystemError (132) */
1167
+ /** @name FrameSystemError (131) */
1171
1168
  interface FrameSystemError extends Enum {
1172
1169
  readonly isInvalidSpecName: boolean;
1173
1170
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1180,7 +1177,7 @@ declare module '@polkadot/types/lookup' {
1180
1177
  readonly isUnauthorized: boolean;
1181
1178
  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
1182
1179
  }
1183
- /** @name PalletTimestampCall (133) */
1180
+ /** @name PalletTimestampCall (132) */
1184
1181
  interface PalletTimestampCall extends Enum {
1185
1182
  readonly isSet: boolean;
1186
1183
  readonly asSet: {
@@ -1188,14 +1185,14 @@ declare module '@polkadot/types/lookup' {
1188
1185
  } & Struct;
1189
1186
  readonly type: 'Set';
1190
1187
  }
1191
- /** @name PalletMultisigMultisig (135) */
1188
+ /** @name PalletMultisigMultisig (134) */
1192
1189
  interface PalletMultisigMultisig extends Struct {
1193
1190
  readonly when: PalletMultisigTimepoint;
1194
1191
  readonly deposit: u128;
1195
1192
  readonly depositor: AccountId32;
1196
1193
  readonly approvals: Vec<AccountId32>;
1197
1194
  }
1198
- /** @name PalletMultisigCall (138) */
1195
+ /** @name PalletMultisigCall (137) */
1199
1196
  interface PalletMultisigCall extends Enum {
1200
1197
  readonly isAsMultiThreshold1: boolean;
1201
1198
  readonly asAsMultiThreshold1: {
@@ -1227,7 +1224,7 @@ declare module '@polkadot/types/lookup' {
1227
1224
  } & Struct;
1228
1225
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
1229
1226
  }
1230
- /** @name PalletProxyCall (140) */
1227
+ /** @name PalletProxyCall (139) */
1231
1228
  interface PalletProxyCall extends Enum {
1232
1229
  readonly isProxy: boolean;
1233
1230
  readonly asProxy: {
@@ -1286,23 +1283,24 @@ declare module '@polkadot/types/lookup' {
1286
1283
  } & Struct;
1287
1284
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
1288
1285
  }
1289
- /** @name PalletTicksCall (145) */
1286
+ /** @name PalletTicksCall (144) */
1290
1287
  type PalletTicksCall = Null;
1291
- /** @name PalletMiningSlotCall (146) */
1288
+ /** @name PalletMiningSlotCall (145) */
1292
1289
  interface PalletMiningSlotCall extends Enum {
1293
1290
  readonly isBid: boolean;
1294
1291
  readonly asBid: {
1295
1292
  readonly bondInfo: Option<PalletMiningSlotMiningSlotBid>;
1296
1293
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
1294
+ readonly keys_: ArgonNodeRuntimeOpaqueSessionKeys;
1297
1295
  } & Struct;
1298
1296
  readonly type: 'Bid';
1299
1297
  }
1300
- /** @name PalletMiningSlotMiningSlotBid (148) */
1298
+ /** @name PalletMiningSlotMiningSlotBid (147) */
1301
1299
  interface PalletMiningSlotMiningSlotBid extends Struct {
1302
1300
  readonly vaultId: u32;
1303
1301
  readonly amount: u128;
1304
1302
  }
1305
- /** @name PalletBitcoinUtxosCall (149) */
1303
+ /** @name PalletBitcoinUtxosCall (148) */
1306
1304
  interface PalletBitcoinUtxosCall extends Enum {
1307
1305
  readonly isSync: boolean;
1308
1306
  readonly asSync: {
@@ -1319,19 +1317,19 @@ declare module '@polkadot/types/lookup' {
1319
1317
  } & Struct;
1320
1318
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1321
1319
  }
1322
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (150) */
1320
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (149) */
1323
1321
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1324
1322
  readonly spent: BTreeMap<u64, u64>;
1325
1323
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1326
1324
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1327
1325
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1328
1326
  }
1329
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (160) */
1327
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (159) */
1330
1328
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1331
1329
  readonly blockHeight: Compact<u64>;
1332
1330
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1333
1331
  }
1334
- /** @name PalletVaultsCall (161) */
1332
+ /** @name PalletVaultsCall (160) */
1335
1333
  interface PalletVaultsCall extends Enum {
1336
1334
  readonly isCreate: boolean;
1337
1335
  readonly asCreate: {
@@ -1360,7 +1358,7 @@ declare module '@polkadot/types/lookup' {
1360
1358
  } & Struct;
1361
1359
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1362
1360
  }
1363
- /** @name PalletVaultsVaultConfig (162) */
1361
+ /** @name PalletVaultsVaultConfig (161) */
1364
1362
  interface PalletVaultsVaultConfig extends Struct {
1365
1363
  readonly terms: ArgonPrimitivesBondVaultTerms;
1366
1364
  readonly bitcoinAmountAllocated: Compact<u128>;
@@ -1368,7 +1366,7 @@ declare module '@polkadot/types/lookup' {
1368
1366
  readonly miningAmountAllocated: Compact<u128>;
1369
1367
  readonly securitizationPercent: Compact<u128>;
1370
1368
  }
1371
- /** @name ArgonPrimitivesBondVaultTerms (163) */
1369
+ /** @name ArgonPrimitivesBondVaultTerms (162) */
1372
1370
  interface ArgonPrimitivesBondVaultTerms extends Struct {
1373
1371
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1374
1372
  readonly bitcoinBaseFee: Compact<u128>;
@@ -1376,10 +1374,10 @@ declare module '@polkadot/types/lookup' {
1376
1374
  readonly miningBaseFee: Compact<u128>;
1377
1375
  readonly miningRewardSharingPercentTake: Compact<u128>;
1378
1376
  }
1379
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (164) */
1377
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (163) */
1380
1378
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1381
1379
  }
1382
- /** @name PalletBondCall (166) */
1380
+ /** @name PalletBondCall (165) */
1383
1381
  interface PalletBondCall extends Enum {
1384
1382
  readonly isBondBitcoin: boolean;
1385
1383
  readonly asBondBitcoin: {
@@ -1400,10 +1398,10 @@ declare module '@polkadot/types/lookup' {
1400
1398
  } & Struct;
1401
1399
  readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
1402
1400
  }
1403
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (167) */
1401
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (166) */
1404
1402
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1405
1403
  }
1406
- /** @name PalletNotariesCall (171) */
1404
+ /** @name PalletNotariesCall (170) */
1407
1405
  interface PalletNotariesCall extends Enum {
1408
1406
  readonly isPropose: boolean;
1409
1407
  readonly asPropose: {
@@ -1421,7 +1419,7 @@ declare module '@polkadot/types/lookup' {
1421
1419
  } & Struct;
1422
1420
  readonly type: 'Propose' | 'Activate' | 'Update';
1423
1421
  }
1424
- /** @name PalletNotebookCall (172) */
1422
+ /** @name PalletNotebookCall (171) */
1425
1423
  interface PalletNotebookCall extends Enum {
1426
1424
  readonly isSubmit: boolean;
1427
1425
  readonly asSubmit: {
@@ -1429,12 +1427,12 @@ declare module '@polkadot/types/lookup' {
1429
1427
  } & Struct;
1430
1428
  readonly type: 'Submit';
1431
1429
  }
1432
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (174) */
1430
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (173) */
1433
1431
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1434
1432
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1435
1433
  readonly signature: U8aFixed;
1436
1434
  }
1437
- /** @name ArgonPrimitivesNotebookNotebookHeader (175) */
1435
+ /** @name ArgonPrimitivesNotebookNotebookHeader (174) */
1438
1436
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1439
1437
  readonly version: Compact<u16>;
1440
1438
  readonly notebookNumber: Compact<u32>;
@@ -1452,7 +1450,7 @@ declare module '@polkadot/types/lookup' {
1452
1450
  readonly parentSecret: Option<H256>;
1453
1451
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
1454
1452
  }
1455
- /** @name ArgonPrimitivesNotebookChainTransfer (178) */
1453
+ /** @name ArgonPrimitivesNotebookChainTransfer (177) */
1456
1454
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1457
1455
  readonly isToMainchain: boolean;
1458
1456
  readonly asToMainchain: {
@@ -1465,12 +1463,12 @@ declare module '@polkadot/types/lookup' {
1465
1463
  } & Struct;
1466
1464
  readonly type: 'ToMainchain' | 'ToLocalchain';
1467
1465
  }
1468
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (181) */
1466
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (180) */
1469
1467
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1470
1468
  readonly notebookNumber: Compact<u32>;
1471
1469
  readonly accountUid: Compact<u32>;
1472
1470
  }
1473
- /** @name PalletChainTransferCall (189) */
1471
+ /** @name PalletChainTransferCall (188) */
1474
1472
  interface PalletChainTransferCall extends Enum {
1475
1473
  readonly isSendToLocalchain: boolean;
1476
1474
  readonly asSendToLocalchain: {
@@ -1479,7 +1477,7 @@ declare module '@polkadot/types/lookup' {
1479
1477
  } & Struct;
1480
1478
  readonly type: 'SendToLocalchain';
1481
1479
  }
1482
- /** @name PalletBlockSealSpecCall (190) */
1480
+ /** @name PalletBlockSealSpecCall (189) */
1483
1481
  interface PalletBlockSealSpecCall extends Enum {
1484
1482
  readonly isConfigure: boolean;
1485
1483
  readonly asConfigure: {
@@ -1488,7 +1486,7 @@ declare module '@polkadot/types/lookup' {
1488
1486
  } & Struct;
1489
1487
  readonly type: 'Configure';
1490
1488
  }
1491
- /** @name PalletDomainsCall (191) */
1489
+ /** @name PalletDomainsCall (190) */
1492
1490
  interface PalletDomainsCall extends Enum {
1493
1491
  readonly isSetZoneRecord: boolean;
1494
1492
  readonly asSetZoneRecord: {
@@ -1497,7 +1495,7 @@ declare module '@polkadot/types/lookup' {
1497
1495
  } & Struct;
1498
1496
  readonly type: 'SetZoneRecord';
1499
1497
  }
1500
- /** @name PalletPriceIndexCall (192) */
1498
+ /** @name PalletPriceIndexCall (191) */
1501
1499
  interface PalletPriceIndexCall extends Enum {
1502
1500
  readonly isSubmit: boolean;
1503
1501
  readonly asSubmit: {
@@ -1509,32 +1507,14 @@ declare module '@polkadot/types/lookup' {
1509
1507
  } & Struct;
1510
1508
  readonly type: 'Submit' | 'SetOperator';
1511
1509
  }
1512
- /** @name PalletPriceIndexPriceIndex (193) */
1510
+ /** @name PalletPriceIndexPriceIndex (192) */
1513
1511
  interface PalletPriceIndexPriceIndex extends Struct {
1514
1512
  readonly btcUsdPrice: Compact<u128>;
1515
1513
  readonly argonUsdPrice: Compact<u128>;
1516
1514
  readonly argonUsdTargetPrice: u128;
1517
1515
  readonly tick: Compact<u32>;
1518
1516
  }
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) */
1517
+ /** @name PalletBlockSealCall (193) */
1538
1518
  interface PalletBlockSealCall extends Enum {
1539
1519
  readonly isApply: boolean;
1540
1520
  readonly asApply: {
@@ -1542,7 +1522,7 @@ declare module '@polkadot/types/lookup' {
1542
1522
  } & Struct;
1543
1523
  readonly type: 'Apply';
1544
1524
  }
1545
- /** @name ArgonPrimitivesInherentsBlockSealInherent (198) */
1525
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (194) */
1546
1526
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1547
1527
  readonly isVote: boolean;
1548
1528
  readonly asVote: {
@@ -1556,13 +1536,13 @@ declare module '@polkadot/types/lookup' {
1556
1536
  readonly isCompute: boolean;
1557
1537
  readonly type: 'Vote' | 'Compute';
1558
1538
  }
1559
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (201) */
1539
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (197) */
1560
1540
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1561
1541
  readonly proof: Vec<H256>;
1562
1542
  readonly numberOfLeaves: Compact<u32>;
1563
1543
  readonly leafIndex: Compact<u32>;
1564
1544
  }
1565
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (203) */
1545
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (199) */
1566
1546
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1567
1547
  readonly accountId: AccountId32;
1568
1548
  readonly blockHash: H256;
@@ -1570,8 +1550,9 @@ declare module '@polkadot/types/lookup' {
1570
1550
  readonly power: Compact<u128>;
1571
1551
  readonly signature: SpRuntimeMultiSignature;
1572
1552
  readonly blockRewardsAccountId: AccountId32;
1553
+ readonly tick: Compact<u32>;
1573
1554
  }
1574
- /** @name SpRuntimeMultiSignature (204) */
1555
+ /** @name SpRuntimeMultiSignature (200) */
1575
1556
  interface SpRuntimeMultiSignature extends Enum {
1576
1557
  readonly isEd25519: boolean;
1577
1558
  readonly asEd25519: U8aFixed;
@@ -1581,22 +1562,22 @@ declare module '@polkadot/types/lookup' {
1581
1562
  readonly asEcdsa: U8aFixed;
1582
1563
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1583
1564
  }
1584
- /** @name ArgonPrimitivesBlockSealAppSignature (206) */
1565
+ /** @name ArgonPrimitivesBlockSealAppSignature (202) */
1585
1566
  interface ArgonPrimitivesBlockSealAppSignature extends U8aFixed {
1586
1567
  }
1587
- /** @name PalletBlockRewardsCall (207) */
1568
+ /** @name PalletBlockRewardsCall (203) */
1588
1569
  type PalletBlockRewardsCall = Null;
1589
- /** @name PalletGrandpaCall (208) */
1570
+ /** @name PalletGrandpaCall (204) */
1590
1571
  interface PalletGrandpaCall extends Enum {
1591
1572
  readonly isReportEquivocation: boolean;
1592
1573
  readonly asReportEquivocation: {
1593
1574
  readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
1594
- readonly keyOwnerProof: SpSessionMembershipProof;
1575
+ readonly keyOwnerProof: SpCoreVoid;
1595
1576
  } & Struct;
1596
1577
  readonly isReportEquivocationUnsigned: boolean;
1597
1578
  readonly asReportEquivocationUnsigned: {
1598
1579
  readonly equivocationProof: SpConsensusGrandpaEquivocationProof;
1599
- readonly keyOwnerProof: SpSessionMembershipProof;
1580
+ readonly keyOwnerProof: SpCoreVoid;
1600
1581
  } & Struct;
1601
1582
  readonly isNoteStalled: boolean;
1602
1583
  readonly asNoteStalled: {
@@ -1605,12 +1586,12 @@ declare module '@polkadot/types/lookup' {
1605
1586
  } & Struct;
1606
1587
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1607
1588
  }
1608
- /** @name SpConsensusGrandpaEquivocationProof (209) */
1589
+ /** @name SpConsensusGrandpaEquivocationProof (205) */
1609
1590
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1610
1591
  readonly setId: u64;
1611
1592
  readonly equivocation: SpConsensusGrandpaEquivocation;
1612
1593
  }
1613
- /** @name SpConsensusGrandpaEquivocation (210) */
1594
+ /** @name SpConsensusGrandpaEquivocation (206) */
1614
1595
  interface SpConsensusGrandpaEquivocation extends Enum {
1615
1596
  readonly isPrevote: boolean;
1616
1597
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1618,42 +1599,38 @@ declare module '@polkadot/types/lookup' {
1618
1599
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1619
1600
  readonly type: 'Prevote' | 'Precommit';
1620
1601
  }
1621
- /** @name FinalityGrandpaEquivocationPrevote (211) */
1602
+ /** @name FinalityGrandpaEquivocationPrevote (207) */
1622
1603
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1623
1604
  readonly roundNumber: u64;
1624
1605
  readonly identity: SpConsensusGrandpaAppPublic;
1625
1606
  readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1626
1607
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1627
1608
  }
1628
- /** @name FinalityGrandpaPrevote (212) */
1609
+ /** @name FinalityGrandpaPrevote (208) */
1629
1610
  interface FinalityGrandpaPrevote extends Struct {
1630
1611
  readonly targetHash: H256;
1631
1612
  readonly targetNumber: u32;
1632
1613
  }
1633
- /** @name SpConsensusGrandpaAppSignature (213) */
1614
+ /** @name SpConsensusGrandpaAppSignature (209) */
1634
1615
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1635
1616
  }
1636
- /** @name FinalityGrandpaEquivocationPrecommit (215) */
1617
+ /** @name FinalityGrandpaEquivocationPrecommit (211) */
1637
1618
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1638
1619
  readonly roundNumber: u64;
1639
1620
  readonly identity: SpConsensusGrandpaAppPublic;
1640
1621
  readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1641
1622
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1642
1623
  }
1643
- /** @name FinalityGrandpaPrecommit (216) */
1624
+ /** @name FinalityGrandpaPrecommit (212) */
1644
1625
  interface FinalityGrandpaPrecommit extends Struct {
1645
1626
  readonly targetHash: H256;
1646
1627
  readonly targetNumber: u32;
1647
1628
  }
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) */
1629
+ /** @name SpCoreVoid (214) */
1630
+ type SpCoreVoid = Null;
1631
+ /** @name PalletMintCall (215) */
1655
1632
  type PalletMintCall = Null;
1656
- /** @name PalletBalancesCall (220) */
1633
+ /** @name PalletBalancesCall (216) */
1657
1634
  interface PalletBalancesCall extends Enum {
1658
1635
  readonly isTransferAllowDeath: boolean;
1659
1636
  readonly asTransferAllowDeath: {
@@ -1702,13 +1679,13 @@ declare module '@polkadot/types/lookup' {
1702
1679
  } & Struct;
1703
1680
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
1704
1681
  }
1705
- /** @name PalletBalancesAdjustmentDirection (221) */
1682
+ /** @name PalletBalancesAdjustmentDirection (217) */
1706
1683
  interface PalletBalancesAdjustmentDirection extends Enum {
1707
1684
  readonly isIncrease: boolean;
1708
1685
  readonly isDecrease: boolean;
1709
1686
  readonly type: 'Increase' | 'Decrease';
1710
1687
  }
1711
- /** @name PalletTxPauseCall (223) */
1688
+ /** @name PalletTxPauseCall (219) */
1712
1689
  interface PalletTxPauseCall extends Enum {
1713
1690
  readonly isPause: boolean;
1714
1691
  readonly asPause: {
@@ -1720,7 +1697,7 @@ declare module '@polkadot/types/lookup' {
1720
1697
  } & Struct;
1721
1698
  readonly type: 'Pause' | 'Unpause';
1722
1699
  }
1723
- /** @name PalletUtilityCall (224) */
1700
+ /** @name PalletUtilityCall (220) */
1724
1701
  interface PalletUtilityCall extends Enum {
1725
1702
  readonly isBatch: boolean;
1726
1703
  readonly asBatch: {
@@ -1751,14 +1728,14 @@ declare module '@polkadot/types/lookup' {
1751
1728
  } & Struct;
1752
1729
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
1753
1730
  }
1754
- /** @name ArgonNodeRuntimeOriginCaller (226) */
1731
+ /** @name ArgonNodeRuntimeOriginCaller (222) */
1755
1732
  interface ArgonNodeRuntimeOriginCaller extends Enum {
1756
1733
  readonly isSystem: boolean;
1757
1734
  readonly asSystem: FrameSupportDispatchRawOrigin;
1758
1735
  readonly isVoid: boolean;
1759
1736
  readonly type: 'System' | 'Void';
1760
1737
  }
1761
- /** @name FrameSupportDispatchRawOrigin (227) */
1738
+ /** @name FrameSupportDispatchRawOrigin (223) */
1762
1739
  interface FrameSupportDispatchRawOrigin extends Enum {
1763
1740
  readonly isRoot: boolean;
1764
1741
  readonly isSigned: boolean;
@@ -1766,9 +1743,7 @@ declare module '@polkadot/types/lookup' {
1766
1743
  readonly isNone: boolean;
1767
1744
  readonly type: 'Root' | 'Signed' | 'None';
1768
1745
  }
1769
- /** @name SpCoreVoid (228) */
1770
- type SpCoreVoid = Null;
1771
- /** @name PalletSudoCall (229) */
1746
+ /** @name PalletSudoCall (224) */
1772
1747
  interface PalletSudoCall extends Enum {
1773
1748
  readonly isSudo: boolean;
1774
1749
  readonly asSudo: {
@@ -1791,7 +1766,7 @@ declare module '@polkadot/types/lookup' {
1791
1766
  readonly isRemoveKey: boolean;
1792
1767
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
1793
1768
  }
1794
- /** @name PalletMultisigError (231) */
1769
+ /** @name PalletMultisigError (226) */
1795
1770
  interface PalletMultisigError extends Enum {
1796
1771
  readonly isMinimumThreshold: boolean;
1797
1772
  readonly isAlreadyApproved: boolean;
@@ -1809,19 +1784,19 @@ declare module '@polkadot/types/lookup' {
1809
1784
  readonly isAlreadyStored: boolean;
1810
1785
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
1811
1786
  }
1812
- /** @name PalletProxyProxyDefinition (234) */
1787
+ /** @name PalletProxyProxyDefinition (229) */
1813
1788
  interface PalletProxyProxyDefinition extends Struct {
1814
1789
  readonly delegate: AccountId32;
1815
1790
  readonly proxyType: ArgonNodeRuntimeProxyType;
1816
1791
  readonly delay: u32;
1817
1792
  }
1818
- /** @name PalletProxyAnnouncement (238) */
1793
+ /** @name PalletProxyAnnouncement (233) */
1819
1794
  interface PalletProxyAnnouncement extends Struct {
1820
1795
  readonly real: AccountId32;
1821
1796
  readonly callHash: H256;
1822
1797
  readonly height: u32;
1823
1798
  }
1824
- /** @name PalletProxyError (240) */
1799
+ /** @name PalletProxyError (235) */
1825
1800
  interface PalletProxyError extends Enum {
1826
1801
  readonly isTooMany: boolean;
1827
1802
  readonly isNotFound: boolean;
@@ -1833,21 +1808,21 @@ declare module '@polkadot/types/lookup' {
1833
1808
  readonly isNoSelfProxy: boolean;
1834
1809
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
1835
1810
  }
1836
- /** @name ArgonPrimitivesTickTicker (241) */
1811
+ /** @name ArgonPrimitivesTickTicker (236) */
1837
1812
  interface ArgonPrimitivesTickTicker extends Struct {
1838
1813
  readonly tickDurationMillis: Compact<u64>;
1839
1814
  readonly genesisUtcTime: Compact<u64>;
1840
1815
  readonly channelHoldExpirationTicks: Compact<u32>;
1841
1816
  }
1842
- /** @name PalletTicksError (243) */
1817
+ /** @name PalletTicksError (238) */
1843
1818
  type PalletTicksError = Null;
1844
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (251) */
1819
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (245) */
1845
1820
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
1846
1821
  readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
1847
1822
  readonly blocksBetweenSlots: Compact<u32>;
1848
1823
  readonly slotBiddingStartBlock: Compact<u32>;
1849
1824
  }
1850
- /** @name PalletMiningSlotError (252) */
1825
+ /** @name PalletMiningSlotError (246) */
1851
1826
  interface PalletMiningSlotError extends Enum {
1852
1827
  readonly isSlotNotTakingBids: boolean;
1853
1828
  readonly isTooManyBlockRegistrants: boolean;
@@ -1873,7 +1848,7 @@ declare module '@polkadot/types/lookup' {
1873
1848
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
1874
1849
  readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
1875
1850
  }
1876
- /** @name ArgonPrimitivesBondBondError (253) */
1851
+ /** @name ArgonPrimitivesBondBondError (247) */
1877
1852
  interface ArgonPrimitivesBondBondError extends Enum {
1878
1853
  readonly isBondNotFound: boolean;
1879
1854
  readonly isNoMoreBondIds: boolean;
@@ -1897,7 +1872,7 @@ declare module '@polkadot/types/lookup' {
1897
1872
  readonly isInternalError: boolean;
1898
1873
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
1899
1874
  }
1900
- /** @name ArgonPrimitivesBitcoinUtxoValue (254) */
1875
+ /** @name ArgonPrimitivesBitcoinUtxoValue (248) */
1901
1876
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
1902
1877
  readonly utxoId: u64;
1903
1878
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -1905,7 +1880,7 @@ declare module '@polkadot/types/lookup' {
1905
1880
  readonly submittedAtHeight: Compact<u64>;
1906
1881
  readonly watchForSpentUntilHeight: Compact<u64>;
1907
1882
  }
1908
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (255) */
1883
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (249) */
1909
1884
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
1910
1885
  readonly isP2wsh: boolean;
1911
1886
  readonly asP2wsh: {
@@ -1913,7 +1888,7 @@ declare module '@polkadot/types/lookup' {
1913
1888
  } & Struct;
1914
1889
  readonly type: 'P2wsh';
1915
1890
  }
1916
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (260) */
1891
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (254) */
1917
1892
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
1918
1893
  readonly isBitcoin: boolean;
1919
1894
  readonly isTestnet: boolean;
@@ -1921,7 +1896,7 @@ declare module '@polkadot/types/lookup' {
1921
1896
  readonly isRegtest: boolean;
1922
1897
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
1923
1898
  }
1924
- /** @name PalletBitcoinUtxosError (263) */
1899
+ /** @name PalletBitcoinUtxosError (257) */
1925
1900
  interface PalletBitcoinUtxosError extends Enum {
1926
1901
  readonly isNoPermissions: boolean;
1927
1902
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -1936,7 +1911,7 @@ declare module '@polkadot/types/lookup' {
1936
1911
  readonly isInvalidBitcoinScript: boolean;
1937
1912
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
1938
1913
  }
1939
- /** @name ArgonPrimitivesBondVault (264) */
1914
+ /** @name ArgonPrimitivesBondVault (258) */
1940
1915
  interface ArgonPrimitivesBondVault extends Struct {
1941
1916
  readonly operatorAccountId: AccountId32;
1942
1917
  readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
@@ -1947,14 +1922,14 @@ declare module '@polkadot/types/lookup' {
1947
1922
  readonly isClosed: bool;
1948
1923
  readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
1949
1924
  }
1950
- /** @name ArgonPrimitivesBondVaultArgons (265) */
1925
+ /** @name ArgonPrimitivesBondVaultArgons (259) */
1951
1926
  interface ArgonPrimitivesBondVaultArgons extends Struct {
1952
1927
  readonly annualPercentRate: Compact<u128>;
1953
1928
  readonly allocated: Compact<u128>;
1954
1929
  readonly bonded: Compact<u128>;
1955
1930
  readonly baseFee: Compact<u128>;
1956
1931
  }
1957
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (269) */
1932
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (263) */
1958
1933
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
1959
1934
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
1960
1935
  readonly depth: Compact<u8>;
@@ -1963,13 +1938,13 @@ declare module '@polkadot/types/lookup' {
1963
1938
  readonly chainCode: U8aFixed;
1964
1939
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
1965
1940
  }
1966
- /** @name ArgonPrimitivesBitcoinNetworkKind (271) */
1941
+ /** @name ArgonPrimitivesBitcoinNetworkKind (265) */
1967
1942
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
1968
1943
  readonly isMain: boolean;
1969
1944
  readonly isTest: boolean;
1970
1945
  readonly type: 'Main' | 'Test';
1971
1946
  }
1972
- /** @name PalletVaultsError (273) */
1947
+ /** @name PalletVaultsError (267) */
1973
1948
  interface PalletVaultsError extends Enum {
1974
1949
  readonly isBondNotFound: boolean;
1975
1950
  readonly isNoMoreVaultIds: boolean;
@@ -2010,7 +1985,7 @@ declare module '@polkadot/types/lookup' {
2010
1985
  readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
2011
1986
  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
1987
  }
2013
- /** @name ArgonPrimitivesBond (274) */
1988
+ /** @name ArgonPrimitivesBond (268) */
2014
1989
  interface ArgonPrimitivesBond extends Struct {
2015
1990
  readonly bondType: ArgonPrimitivesBondBondType;
2016
1991
  readonly vaultId: Compact<u32>;
@@ -2022,7 +1997,7 @@ declare module '@polkadot/types/lookup' {
2022
1997
  readonly startBlock: Compact<u32>;
2023
1998
  readonly expiration: ArgonPrimitivesBondBondExpiration;
2024
1999
  }
2025
- /** @name PalletBondUtxoState (277) */
2000
+ /** @name PalletBondUtxoState (271) */
2026
2001
  interface PalletBondUtxoState extends Struct {
2027
2002
  readonly bondId: Compact<u64>;
2028
2003
  readonly satoshis: Compact<u64>;
@@ -2036,7 +2011,7 @@ declare module '@polkadot/types/lookup' {
2036
2011
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2037
2012
  readonly isVerified: bool;
2038
2013
  }
2039
- /** @name PalletBondUtxoCosignRequest (281) */
2014
+ /** @name PalletBondUtxoCosignRequest (275) */
2040
2015
  interface PalletBondUtxoCosignRequest extends Struct {
2041
2016
  readonly bondId: Compact<u64>;
2042
2017
  readonly vaultId: Compact<u32>;
@@ -2045,7 +2020,7 @@ declare module '@polkadot/types/lookup' {
2045
2020
  readonly toScriptPubkey: Bytes;
2046
2021
  readonly redemptionPrice: Compact<u128>;
2047
2022
  }
2048
- /** @name PalletBondError (285) */
2023
+ /** @name PalletBondError (279) */
2049
2024
  interface PalletBondError extends Enum {
2050
2025
  readonly isBondNotFound: boolean;
2051
2026
  readonly isNoMoreBondIds: boolean;
@@ -2079,7 +2054,7 @@ declare module '@polkadot/types/lookup' {
2079
2054
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
2080
2055
  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
2056
  }
2082
- /** @name PalletNotariesError (297) */
2057
+ /** @name PalletNotariesError (291) */
2083
2058
  interface PalletNotariesError extends Enum {
2084
2059
  readonly isProposalNotFound: boolean;
2085
2060
  readonly isMaxNotariesExceeded: boolean;
@@ -2092,7 +2067,7 @@ declare module '@polkadot/types/lookup' {
2092
2067
  readonly isInvalidNotary: boolean;
2093
2068
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2094
2069
  }
2095
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (301) */
2070
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (295) */
2096
2071
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2097
2072
  readonly notebookNumber: Compact<u32>;
2098
2073
  readonly tick: Compact<u32>;
@@ -2100,18 +2075,18 @@ declare module '@polkadot/types/lookup' {
2100
2075
  readonly secretHash: H256;
2101
2076
  readonly parentSecret: Option<H256>;
2102
2077
  }
2103
- /** @name ArgonPrimitivesDigestsNotebookDigest (303) */
2078
+ /** @name ArgonPrimitivesDigestsNotebookDigest (297) */
2104
2079
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2105
2080
  readonly notebooks: Vec<ArgonPrimitivesDigestsNotebookDigestRecord>;
2106
2081
  }
2107
- /** @name ArgonPrimitivesDigestsNotebookDigestRecord (305) */
2082
+ /** @name ArgonPrimitivesDigestsNotebookDigestRecord (299) */
2108
2083
  interface ArgonPrimitivesDigestsNotebookDigestRecord extends Struct {
2109
2084
  readonly notaryId: Compact<u32>;
2110
2085
  readonly notebookNumber: Compact<u32>;
2111
2086
  readonly tick: Compact<u32>;
2112
2087
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2113
2088
  }
2114
- /** @name PalletNotebookError (308) */
2089
+ /** @name PalletNotebookError (302) */
2115
2090
  interface PalletNotebookError extends Enum {
2116
2091
  readonly isDuplicateNotebookNumber: boolean;
2117
2092
  readonly isMissingNotebookNumber: boolean;
@@ -2126,17 +2101,17 @@ declare module '@polkadot/types/lookup' {
2126
2101
  readonly isInternalError: boolean;
2127
2102
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError';
2128
2103
  }
2129
- /** @name PalletChainTransferQueuedTransferOut (309) */
2104
+ /** @name PalletChainTransferQueuedTransferOut (303) */
2130
2105
  interface PalletChainTransferQueuedTransferOut extends Struct {
2131
2106
  readonly accountId: AccountId32;
2132
2107
  readonly amount: u128;
2133
2108
  readonly expirationTick: u32;
2134
2109
  readonly notaryId: u32;
2135
2110
  }
2136
- /** @name FrameSupportPalletId (314) */
2111
+ /** @name FrameSupportPalletId (308) */
2137
2112
  interface FrameSupportPalletId extends U8aFixed {
2138
2113
  }
2139
- /** @name PalletChainTransferError (315) */
2114
+ /** @name PalletChainTransferError (309) */
2140
2115
  interface PalletChainTransferError extends Enum {
2141
2116
  readonly isMaxBlockTransfersExceeded: boolean;
2142
2117
  readonly isInsufficientFunds: boolean;
@@ -2147,7 +2122,7 @@ declare module '@polkadot/types/lookup' {
2147
2122
  readonly isNotaryLocked: boolean;
2148
2123
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLocked';
2149
2124
  }
2150
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (320) */
2125
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (314) */
2151
2126
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2152
2127
  readonly notaryId: Compact<u32>;
2153
2128
  readonly notebookNumber: Compact<u32>;
@@ -2155,17 +2130,17 @@ declare module '@polkadot/types/lookup' {
2155
2130
  readonly blockVotesCount: Compact<u32>;
2156
2131
  readonly blockVotingPower: Compact<u128>;
2157
2132
  }
2158
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (322) */
2133
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (316) */
2159
2134
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2160
2135
  readonly votingPower: Compact<u128>;
2161
2136
  readonly votesCount: Compact<u32>;
2162
2137
  }
2163
- /** @name PalletBlockSealSpecError (326) */
2138
+ /** @name PalletBlockSealSpecError (320) */
2164
2139
  interface PalletBlockSealSpecError extends Enum {
2165
2140
  readonly isMaxNotebooksAtTickExceeded: boolean;
2166
2141
  readonly type: 'MaxNotebooksAtTickExceeded';
2167
2142
  }
2168
- /** @name PalletDomainsError (328) */
2143
+ /** @name PalletDomainsError (322) */
2169
2144
  interface PalletDomainsError extends Enum {
2170
2145
  readonly isDomainNotRegistered: boolean;
2171
2146
  readonly isNotDomainOwner: boolean;
@@ -2174,7 +2149,7 @@ declare module '@polkadot/types/lookup' {
2174
2149
  readonly isAccountDecodingError: boolean;
2175
2150
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2176
2151
  }
2177
- /** @name PalletPriceIndexError (329) */
2152
+ /** @name PalletPriceIndexError (323) */
2178
2153
  interface PalletPriceIndexError extends Enum {
2179
2154
  readonly isNotAuthorizedOperator: boolean;
2180
2155
  readonly isMissingValue: boolean;
@@ -2182,28 +2157,16 @@ declare module '@polkadot/types/lookup' {
2182
2157
  readonly isMaxPriceChangePerTickExceeded: boolean;
2183
2158
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2184
2159
  }
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) */
2160
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (324) */
2198
2161
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2199
2162
  readonly blockAuthorAccountId: AccountId32;
2200
2163
  readonly blockVoteRewardsAccount: Option<AccountId32>;
2201
2164
  }
2202
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (337) */
2165
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (325) */
2203
2166
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2204
2167
  readonly parentVotingKey: Option<H256>;
2205
2168
  }
2206
- /** @name PalletBlockSealError (338) */
2169
+ /** @name PalletBlockSealError (326) */
2207
2170
  interface PalletBlockSealError extends Enum {
2208
2171
  readonly isInvalidVoteSealStrength: boolean;
2209
2172
  readonly isInvalidSubmitter: boolean;
@@ -2224,9 +2187,9 @@ declare module '@polkadot/types/lookup' {
2224
2187
  readonly isBlockVoteInvalidSignature: boolean;
2225
2188
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'InvalidAuthoritySignature' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature';
2226
2189
  }
2227
- /** @name PalletBlockRewardsError (340) */
2190
+ /** @name PalletBlockRewardsError (328) */
2228
2191
  type PalletBlockRewardsError = Null;
2229
- /** @name PalletGrandpaStoredState (341) */
2192
+ /** @name PalletGrandpaStoredState (329) */
2230
2193
  interface PalletGrandpaStoredState extends Enum {
2231
2194
  readonly isLive: boolean;
2232
2195
  readonly isPendingPause: boolean;
@@ -2242,14 +2205,14 @@ declare module '@polkadot/types/lookup' {
2242
2205
  } & Struct;
2243
2206
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2244
2207
  }
2245
- /** @name PalletGrandpaStoredPendingChange (342) */
2208
+ /** @name PalletGrandpaStoredPendingChange (330) */
2246
2209
  interface PalletGrandpaStoredPendingChange extends Struct {
2247
2210
  readonly scheduledAt: u32;
2248
2211
  readonly delay: u32;
2249
2212
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2250
2213
  readonly forced: Option<u32>;
2251
2214
  }
2252
- /** @name PalletGrandpaError (345) */
2215
+ /** @name PalletGrandpaError (333) */
2253
2216
  interface PalletGrandpaError extends Enum {
2254
2217
  readonly isPauseFailed: boolean;
2255
2218
  readonly isResumeFailed: boolean;
@@ -2260,44 +2223,35 @@ declare module '@polkadot/types/lookup' {
2260
2223
  readonly isDuplicateOffenceReport: boolean;
2261
2224
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2262
2225
  }
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) */
2226
+ /** @name PalletMintError (337) */
2273
2227
  interface PalletMintError extends Enum {
2274
2228
  readonly isTooManyPendingMints: boolean;
2275
2229
  readonly type: 'TooManyPendingMints';
2276
2230
  }
2277
- /** @name PalletBalancesBalanceLock (355) */
2231
+ /** @name PalletBalancesBalanceLock (339) */
2278
2232
  interface PalletBalancesBalanceLock extends Struct {
2279
2233
  readonly id: U8aFixed;
2280
2234
  readonly amount: u128;
2281
2235
  readonly reasons: PalletBalancesReasons;
2282
2236
  }
2283
- /** @name PalletBalancesReasons (356) */
2237
+ /** @name PalletBalancesReasons (340) */
2284
2238
  interface PalletBalancesReasons extends Enum {
2285
2239
  readonly isFee: boolean;
2286
2240
  readonly isMisc: boolean;
2287
2241
  readonly isAll: boolean;
2288
2242
  readonly type: 'Fee' | 'Misc' | 'All';
2289
2243
  }
2290
- /** @name PalletBalancesReserveData (359) */
2244
+ /** @name PalletBalancesReserveData (343) */
2291
2245
  interface PalletBalancesReserveData extends Struct {
2292
2246
  readonly id: U8aFixed;
2293
2247
  readonly amount: u128;
2294
2248
  }
2295
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (362) */
2249
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (346) */
2296
2250
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2297
2251
  readonly id: ArgonNodeRuntimeRuntimeHoldReason;
2298
2252
  readonly amount: u128;
2299
2253
  }
2300
- /** @name ArgonNodeRuntimeRuntimeHoldReason (363) */
2254
+ /** @name ArgonNodeRuntimeRuntimeHoldReason (347) */
2301
2255
  interface ArgonNodeRuntimeRuntimeHoldReason extends Enum {
2302
2256
  readonly isMiningSlot: boolean;
2303
2257
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2309,44 +2263,44 @@ declare module '@polkadot/types/lookup' {
2309
2263
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2310
2264
  readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
2311
2265
  }
2312
- /** @name PalletMiningSlotHoldReason (364) */
2266
+ /** @name PalletMiningSlotHoldReason (348) */
2313
2267
  interface PalletMiningSlotHoldReason extends Enum {
2314
2268
  readonly isRegisterAsMiner: boolean;
2315
2269
  readonly type: 'RegisterAsMiner';
2316
2270
  }
2317
- /** @name PalletVaultsHoldReason (365) */
2271
+ /** @name PalletVaultsHoldReason (349) */
2318
2272
  interface PalletVaultsHoldReason extends Enum {
2319
2273
  readonly isEnterVault: boolean;
2320
2274
  readonly isBondFee: boolean;
2321
2275
  readonly type: 'EnterVault' | 'BondFee';
2322
2276
  }
2323
- /** @name PalletBondHoldReason (366) */
2277
+ /** @name PalletBondHoldReason (350) */
2324
2278
  interface PalletBondHoldReason extends Enum {
2325
2279
  readonly isUnlockingBitcoin: boolean;
2326
2280
  readonly type: 'UnlockingBitcoin';
2327
2281
  }
2328
- /** @name PalletBlockRewardsHoldReason (367) */
2282
+ /** @name PalletBlockRewardsHoldReason (351) */
2329
2283
  interface PalletBlockRewardsHoldReason extends Enum {
2330
2284
  readonly isMaturationPeriod: boolean;
2331
2285
  readonly type: 'MaturationPeriod';
2332
2286
  }
2333
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (370) */
2287
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (354) */
2334
2288
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2335
2289
  readonly id: ArgonNodeRuntimeRuntimeFreezeReason;
2336
2290
  readonly amount: u128;
2337
2291
  }
2338
- /** @name ArgonNodeRuntimeRuntimeFreezeReason (371) */
2292
+ /** @name ArgonNodeRuntimeRuntimeFreezeReason (355) */
2339
2293
  interface ArgonNodeRuntimeRuntimeFreezeReason extends Enum {
2340
2294
  readonly isBlockRewards: boolean;
2341
2295
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2342
2296
  readonly type: 'BlockRewards';
2343
2297
  }
2344
- /** @name PalletBlockRewardsFreezeReason (372) */
2298
+ /** @name PalletBlockRewardsFreezeReason (356) */
2345
2299
  interface PalletBlockRewardsFreezeReason extends Enum {
2346
2300
  readonly isMaturationPeriod: boolean;
2347
2301
  readonly type: 'MaturationPeriod';
2348
2302
  }
2349
- /** @name PalletBalancesError (374) */
2303
+ /** @name PalletBalancesError (358) */
2350
2304
  interface PalletBalancesError extends Enum {
2351
2305
  readonly isVestingBalance: boolean;
2352
2306
  readonly isLiquidityRestrictions: boolean;
@@ -2362,7 +2316,7 @@ declare module '@polkadot/types/lookup' {
2362
2316
  readonly isDeltaZero: boolean;
2363
2317
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2364
2318
  }
2365
- /** @name PalletTxPauseError (376) */
2319
+ /** @name PalletTxPauseError (360) */
2366
2320
  interface PalletTxPauseError extends Enum {
2367
2321
  readonly isIsPaused: boolean;
2368
2322
  readonly isIsUnpaused: boolean;
@@ -2370,48 +2324,48 @@ declare module '@polkadot/types/lookup' {
2370
2324
  readonly isNotFound: boolean;
2371
2325
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2372
2326
  }
2373
- /** @name PalletTransactionPaymentReleases (377) */
2327
+ /** @name PalletTransactionPaymentReleases (361) */
2374
2328
  interface PalletTransactionPaymentReleases extends Enum {
2375
2329
  readonly isV1Ancient: boolean;
2376
2330
  readonly isV2: boolean;
2377
2331
  readonly type: 'V1Ancient' | 'V2';
2378
2332
  }
2379
- /** @name PalletUtilityError (378) */
2333
+ /** @name PalletUtilityError (362) */
2380
2334
  interface PalletUtilityError extends Enum {
2381
2335
  readonly isTooManyCalls: boolean;
2382
2336
  readonly type: 'TooManyCalls';
2383
2337
  }
2384
- /** @name PalletSudoError (379) */
2338
+ /** @name PalletSudoError (363) */
2385
2339
  interface PalletSudoError extends Enum {
2386
2340
  readonly isRequireSudo: boolean;
2387
2341
  readonly type: 'RequireSudo';
2388
2342
  }
2389
- /** @name FrameSystemExtensionsCheckNonZeroSender (382) */
2343
+ /** @name FrameSystemExtensionsCheckNonZeroSender (366) */
2390
2344
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2391
- /** @name FrameSystemExtensionsCheckSpecVersion (383) */
2345
+ /** @name FrameSystemExtensionsCheckSpecVersion (367) */
2392
2346
  type FrameSystemExtensionsCheckSpecVersion = Null;
2393
- /** @name FrameSystemExtensionsCheckTxVersion (384) */
2347
+ /** @name FrameSystemExtensionsCheckTxVersion (368) */
2394
2348
  type FrameSystemExtensionsCheckTxVersion = Null;
2395
- /** @name FrameSystemExtensionsCheckGenesis (385) */
2349
+ /** @name FrameSystemExtensionsCheckGenesis (369) */
2396
2350
  type FrameSystemExtensionsCheckGenesis = Null;
2397
- /** @name FrameSystemExtensionsCheckNonce (388) */
2351
+ /** @name FrameSystemExtensionsCheckNonce (372) */
2398
2352
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2399
2353
  }
2400
- /** @name FrameSystemExtensionsCheckWeight (389) */
2354
+ /** @name FrameSystemExtensionsCheckWeight (373) */
2401
2355
  type FrameSystemExtensionsCheckWeight = Null;
2402
- /** @name PalletTransactionPaymentChargeTransactionPayment (390) */
2356
+ /** @name PalletTransactionPaymentChargeTransactionPayment (374) */
2403
2357
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2404
2358
  }
2405
- /** @name FrameMetadataHashExtensionCheckMetadataHash (391) */
2359
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (375) */
2406
2360
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2407
2361
  readonly mode: FrameMetadataHashExtensionMode;
2408
2362
  }
2409
- /** @name FrameMetadataHashExtensionMode (392) */
2363
+ /** @name FrameMetadataHashExtensionMode (376) */
2410
2364
  interface FrameMetadataHashExtensionMode extends Enum {
2411
2365
  readonly isDisabled: boolean;
2412
2366
  readonly isEnabled: boolean;
2413
2367
  readonly type: 'Disabled' | 'Enabled';
2414
2368
  }
2415
- /** @name ArgonNodeRuntimeRuntime (394) */
2369
+ /** @name ArgonNodeRuntimeRuntime (378) */
2416
2370
  type ArgonNodeRuntimeRuntime = Null;
2417
2371
  }