@dedot/chaintypes 0.14.0 → 0.16.0

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 (51) hide show
  1. package/kusama/consts.d.ts +48 -30
  2. package/kusama/errors.d.ts +89 -100
  3. package/kusama/events.d.ts +87 -28
  4. package/kusama/index.d.ts +1 -1
  5. package/kusama/query.d.ts +241 -130
  6. package/kusama/runtime.d.ts +347 -95
  7. package/kusama/tx.d.ts +3309 -456
  8. package/kusama/types.d.ts +6341 -1092
  9. package/kusama-asset-hub/consts.d.ts +52 -3
  10. package/kusama-asset-hub/errors.d.ts +30 -5
  11. package/kusama-asset-hub/events.d.ts +61 -1
  12. package/kusama-asset-hub/index.d.ts +1 -1
  13. package/kusama-asset-hub/query.d.ts +100 -18
  14. package/kusama-asset-hub/runtime.d.ts +186 -15
  15. package/kusama-asset-hub/tx.d.ts +3074 -254
  16. package/kusama-asset-hub/types.d.ts +6190 -551
  17. package/package.json +2 -2
  18. package/paseo/index.d.ts +1 -1
  19. package/rococo/errors.d.ts +0 -10
  20. package/rococo/events.d.ts +33 -12
  21. package/rococo/index.d.ts +1 -1
  22. package/rococo/query.d.ts +52 -52
  23. package/rococo/runtime.d.ts +117 -58
  24. package/rococo/tx.d.ts +33 -33
  25. package/rococo/types.d.ts +191 -185
  26. package/rococo-asset-hub/consts.d.ts +2 -2
  27. package/rococo-asset-hub/events.d.ts +87 -80
  28. package/rococo-asset-hub/index.d.ts +1 -1
  29. package/rococo-asset-hub/query.d.ts +66 -54
  30. package/rococo-asset-hub/runtime.d.ts +12 -15
  31. package/rococo-asset-hub/tx.d.ts +250 -241
  32. package/rococo-asset-hub/types.d.ts +353 -404
  33. package/westend/consts.d.ts +9 -0
  34. package/westend/errors.d.ts +0 -10
  35. package/westend/events.d.ts +79 -13
  36. package/westend/index.d.ts +1 -1
  37. package/westend/query.d.ts +75 -52
  38. package/westend/runtime.d.ts +133 -58
  39. package/westend/tx.d.ts +72 -35
  40. package/westend/types.d.ts +308 -190
  41. package/westend-asset-hub/consts.d.ts +2 -2
  42. package/westend-asset-hub/events.d.ts +87 -80
  43. package/westend-asset-hub/index.d.ts +1 -1
  44. package/westend-asset-hub/query.d.ts +66 -54
  45. package/westend-asset-hub/runtime.d.ts +12 -15
  46. package/westend-asset-hub/tx.d.ts +250 -241
  47. package/westend-asset-hub/types.d.ts +353 -404
  48. package/westend-people/index.d.ts +1 -1
  49. package/westend-people/query.d.ts +12 -12
  50. package/westend-people/tx.d.ts +1 -58
  51. package/westend-people/types.d.ts +16 -62
package/rococo/types.d.ts CHANGED
@@ -89,7 +89,7 @@ export type RococoRuntimeRuntimeEvent =
89
89
  | { pallet: 'Hrmp'; palletEvent: PolkadotRuntimeParachainsHrmpPalletEvent }
90
90
  | { pallet: 'ParasDisputes'; palletEvent: PolkadotRuntimeParachainsDisputesPalletEvent }
91
91
  | { pallet: 'MessageQueue'; palletEvent: PalletMessageQueueEvent }
92
- | { pallet: 'OnDemandAssignmentProvider'; palletEvent: PolkadotRuntimeParachainsAssignerOnDemandPalletEvent }
92
+ | { pallet: 'OnDemandAssignmentProvider'; palletEvent: PolkadotRuntimeParachainsOnDemandPalletEvent }
93
93
  | { pallet: 'Registrar'; palletEvent: PolkadotRuntimeCommonParasRegistrarPalletEvent }
94
94
  | { pallet: 'Slots'; palletEvent: PolkadotRuntimeCommonSlotsPalletEvent }
95
95
  | { pallet: 'Auctions'; palletEvent: PolkadotRuntimeCommonAuctionsPalletEvent }
@@ -637,7 +637,22 @@ export type PalletConvictionVotingEvent =
637
637
  /**
638
638
  * An \[account\] has cancelled a previous delegation operation.
639
639
  **/
640
- | { name: 'Undelegated'; data: AccountId32 };
640
+ | { name: 'Undelegated'; data: AccountId32 }
641
+ /**
642
+ * An account that has voted
643
+ **/
644
+ | { name: 'Voted'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } }
645
+ /**
646
+ * A vote that been removed
647
+ **/
648
+ | { name: 'VoteRemoved'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } };
649
+
650
+ export type PalletConvictionVotingVoteAccountVote =
651
+ | { type: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
652
+ | { type: 'Split'; value: { aye: bigint; nay: bigint } }
653
+ | { type: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
654
+
655
+ export type PalletConvictionVotingVote = number;
641
656
 
642
657
  /**
643
658
  * The `Event` enum of this pallet
@@ -970,7 +985,7 @@ export type RococoRuntimeRuntimeCall =
970
985
  | { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCall }
971
986
  | { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCall }
972
987
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCall }
973
- | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsAssignerOnDemandPalletCall }
988
+ | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsOnDemandPalletCall }
974
989
  | { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCall }
975
990
  | { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCall }
976
991
  | { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCall }
@@ -1026,7 +1041,7 @@ export type RococoRuntimeRuntimeCallLike =
1026
1041
  | { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCallLike }
1027
1042
  | { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCallLike }
1028
1043
  | { pallet: 'MessageQueue'; palletCall: PalletMessageQueueCallLike }
1029
- | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsAssignerOnDemandPalletCallLike }
1044
+ | { pallet: 'OnDemandAssignmentProvider'; palletCall: PolkadotRuntimeParachainsOnDemandPalletCallLike }
1030
1045
  | { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCallLike }
1031
1046
  | { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCallLike }
1032
1047
  | { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCallLike }
@@ -1763,15 +1778,15 @@ export type PalletSessionCallLike =
1763
1778
  export type RococoRuntimeSessionKeys = {
1764
1779
  grandpa: SpConsensusGrandpaAppPublic;
1765
1780
  babe: SpConsensusBabeAppPublic;
1766
- paraValidator: PolkadotPrimitivesV7ValidatorAppPublic;
1767
- paraAssignment: PolkadotPrimitivesV7AssignmentAppPublic;
1781
+ paraValidator: PolkadotPrimitivesV8ValidatorAppPublic;
1782
+ paraAssignment: PolkadotPrimitivesV8AssignmentAppPublic;
1768
1783
  authorityDiscovery: SpAuthorityDiscoveryAppPublic;
1769
1784
  beefy: SpConsensusBeefyEcdsaCryptoPublic;
1770
1785
  };
1771
1786
 
1772
- export type PolkadotPrimitivesV7ValidatorAppPublic = FixedBytes<32>;
1787
+ export type PolkadotPrimitivesV8ValidatorAppPublic = FixedBytes<32>;
1773
1788
 
1774
- export type PolkadotPrimitivesV7AssignmentAppPublic = FixedBytes<32>;
1789
+ export type PolkadotPrimitivesV8AssignmentAppPublic = FixedBytes<32>;
1775
1790
 
1776
1791
  export type SpAuthorityDiscoveryAppPublic = FixedBytes<32>;
1777
1792
 
@@ -2434,13 +2449,6 @@ export type PalletConvictionVotingCallLike =
2434
2449
  **/
2435
2450
  | { name: 'RemoveOtherVote'; params: { target: MultiAddressLike; class: number; index: number } };
2436
2451
 
2437
- export type PalletConvictionVotingVoteAccountVote =
2438
- | { type: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
2439
- | { type: 'Split'; value: { aye: bigint; nay: bigint } }
2440
- | { type: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
2441
-
2442
- export type PalletConvictionVotingVote = number;
2443
-
2444
2452
  export type PalletConvictionVotingConviction =
2445
2453
  | 'None'
2446
2454
  | 'Locked1x'
@@ -3364,7 +3372,7 @@ export type PalletIdentityCall =
3364
3372
  * - `max_fee`: The maximum fee that may be paid. This should just be auto-populated as:
3365
3373
  *
3366
3374
  * ```nocompile
3367
- * Self::registrars().get(reg_index).unwrap().fee
3375
+ * Registrars::<T>::get().get(reg_index).unwrap().fee
3368
3376
  * ```
3369
3377
  *
3370
3378
  * Emits `JudgementRequested` if successful.
@@ -3596,7 +3604,7 @@ export type PalletIdentityCallLike =
3596
3604
  * - `max_fee`: The maximum fee that may be paid. This should just be auto-populated as:
3597
3605
  *
3598
3606
  * ```nocompile
3599
- * Self::registrars().get(reg_index).unwrap().fee
3607
+ * Registrars::<T>::get().get(reg_index).unwrap().fee
3600
3608
  * ```
3601
3609
  *
3602
3610
  * Emits `JudgementRequested` if successful.
@@ -6500,11 +6508,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
6500
6508
  /**
6501
6509
  * Set the asynchronous backing parameters.
6502
6510
  **/
6503
- | { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV7AsyncBackingAsyncBackingParams } }
6511
+ | { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams } }
6504
6512
  /**
6505
6513
  * Set PVF executor parameters.
6506
6514
  **/
6507
- | { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV7ExecutorParams } }
6515
+ | { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV8ExecutorParams } }
6508
6516
  /**
6509
6517
  * Set the on demand (parathreads) base fee.
6510
6518
  **/
@@ -6536,11 +6544,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
6536
6544
  /**
6537
6545
  * Set approval-voting-params.
6538
6546
  **/
6539
- | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV7ApprovalVotingParams } }
6547
+ | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV8ApprovalVotingParams } }
6540
6548
  /**
6541
6549
  * Set scheduler-params.
6542
6550
  **/
6543
- | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesVstagingSchedulerParams } };
6551
+ | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV8SchedulerParams } };
6544
6552
 
6545
6553
  export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
6546
6554
  /**
@@ -6704,11 +6712,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
6704
6712
  /**
6705
6713
  * Set the asynchronous backing parameters.
6706
6714
  **/
6707
- | { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV7AsyncBackingAsyncBackingParams } }
6715
+ | { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams } }
6708
6716
  /**
6709
6717
  * Set PVF executor parameters.
6710
6718
  **/
6711
- | { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV7ExecutorParams } }
6719
+ | { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV8ExecutorParams } }
6712
6720
  /**
6713
6721
  * Set the on demand (parathreads) base fee.
6714
6722
  **/
@@ -6740,35 +6748,35 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
6740
6748
  /**
6741
6749
  * Set approval-voting-params.
6742
6750
  **/
6743
- | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV7ApprovalVotingParams } }
6751
+ | { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV8ApprovalVotingParams } }
6744
6752
  /**
6745
6753
  * Set scheduler-params.
6746
6754
  **/
6747
- | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesVstagingSchedulerParams } };
6755
+ | { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV8SchedulerParams } };
6748
6756
 
6749
- export type PolkadotPrimitivesV7AsyncBackingAsyncBackingParams = {
6757
+ export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
6750
6758
  maxCandidateDepth: number;
6751
6759
  allowedAncestryLen: number;
6752
6760
  };
6753
6761
 
6754
- export type PolkadotPrimitivesV7ExecutorParams = Array<PolkadotPrimitivesV7ExecutorParamsExecutorParam>;
6762
+ export type PolkadotPrimitivesV8ExecutorParams = Array<PolkadotPrimitivesV8ExecutorParamsExecutorParam>;
6755
6763
 
6756
- export type PolkadotPrimitivesV7ExecutorParamsExecutorParam =
6764
+ export type PolkadotPrimitivesV8ExecutorParamsExecutorParam =
6757
6765
  | { type: 'MaxMemoryPages'; value: number }
6758
6766
  | { type: 'StackLogicalMax'; value: number }
6759
6767
  | { type: 'StackNativeMax'; value: number }
6760
6768
  | { type: 'PrecheckingMaxMemory'; value: bigint }
6761
- | { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV7PvfPrepKind, bigint] }
6762
- | { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV7PvfExecKind, bigint] }
6769
+ | { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV8PvfPrepKind, bigint] }
6770
+ | { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV8PvfExecKind, bigint] }
6763
6771
  | { type: 'WasmExtBulkMemory' };
6764
6772
 
6765
- export type PolkadotPrimitivesV7PvfPrepKind = 'Precheck' | 'Prepare';
6773
+ export type PolkadotPrimitivesV8PvfPrepKind = 'Precheck' | 'Prepare';
6766
6774
 
6767
- export type PolkadotPrimitivesV7PvfExecKind = 'Backing' | 'Approval';
6775
+ export type PolkadotPrimitivesV8PvfExecKind = 'Backing' | 'Approval';
6768
6776
 
6769
- export type PolkadotPrimitivesV7ApprovalVotingParams = { maxApprovalCoalesceCount: number };
6777
+ export type PolkadotPrimitivesV8ApprovalVotingParams = { maxApprovalCoalesceCount: number };
6770
6778
 
6771
- export type PolkadotPrimitivesVstagingSchedulerParams = {
6779
+ export type PolkadotPrimitivesV8SchedulerParams = {
6772
6780
  groupRotationFrequency: number;
6773
6781
  parasAvailabilityPeriod: number;
6774
6782
  maxValidatorsPerCore?: number | undefined;
@@ -6803,65 +6811,65 @@ export type PolkadotRuntimeParachainsParasInherentPalletCall =
6803
6811
  /**
6804
6812
  * Enter the paras inherent. This will process bitfields and backed candidates.
6805
6813
  **/
6806
- { name: 'Enter'; params: { data: PolkadotPrimitivesV7InherentData } };
6814
+ { name: 'Enter'; params: { data: PolkadotPrimitivesV8InherentData } };
6807
6815
 
6808
6816
  export type PolkadotRuntimeParachainsParasInherentPalletCallLike =
6809
6817
  /**
6810
6818
  * Enter the paras inherent. This will process bitfields and backed candidates.
6811
6819
  **/
6812
- { name: 'Enter'; params: { data: PolkadotPrimitivesV7InherentData } };
6820
+ { name: 'Enter'; params: { data: PolkadotPrimitivesV8InherentData } };
6813
6821
 
6814
- export type PolkadotPrimitivesV7InherentData = {
6815
- bitfields: Array<PolkadotPrimitivesV7SignedUncheckedSigned>;
6816
- backedCandidates: Array<PolkadotPrimitivesV7BackedCandidate>;
6817
- disputes: Array<PolkadotPrimitivesV7DisputeStatementSet>;
6822
+ export type PolkadotPrimitivesV8InherentData = {
6823
+ bitfields: Array<PolkadotPrimitivesV8SignedUncheckedSigned>;
6824
+ backedCandidates: Array<PolkadotPrimitivesV8BackedCandidate>;
6825
+ disputes: Array<PolkadotPrimitivesV8DisputeStatementSet>;
6818
6826
  parentHeader: Header;
6819
6827
  };
6820
6828
 
6821
- export type PolkadotPrimitivesV7SignedUncheckedSigned = {
6822
- payload: PolkadotPrimitivesV7AvailabilityBitfield;
6823
- validatorIndex: PolkadotPrimitivesV7ValidatorIndex;
6824
- signature: PolkadotPrimitivesV7ValidatorAppSignature;
6829
+ export type PolkadotPrimitivesV8SignedUncheckedSigned = {
6830
+ payload: PolkadotPrimitivesV8AvailabilityBitfield;
6831
+ validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
6832
+ signature: PolkadotPrimitivesV8ValidatorAppSignature;
6825
6833
  };
6826
6834
 
6827
- export type PolkadotPrimitivesV7AvailabilityBitfield = BitSequence;
6835
+ export type PolkadotPrimitivesV8AvailabilityBitfield = BitSequence;
6828
6836
 
6829
6837
  export type BitvecOrderLsb0 = {};
6830
6838
 
6831
- export type PolkadotPrimitivesV7ValidatorIndex = number;
6839
+ export type PolkadotPrimitivesV8ValidatorIndex = number;
6832
6840
 
6833
- export type PolkadotPrimitivesV7ValidatorAppSignature = FixedBytes<64>;
6841
+ export type PolkadotPrimitivesV8ValidatorAppSignature = FixedBytes<64>;
6834
6842
 
6835
- export type PolkadotPrimitivesV7BackedCandidate = {
6836
- candidate: PolkadotPrimitivesV7CommittedCandidateReceipt;
6837
- validityVotes: Array<PolkadotPrimitivesV7ValidityAttestation>;
6843
+ export type PolkadotPrimitivesV8BackedCandidate = {
6844
+ candidate: PolkadotPrimitivesV8CommittedCandidateReceipt;
6845
+ validityVotes: Array<PolkadotPrimitivesV8ValidityAttestation>;
6838
6846
  validatorIndices: BitSequence;
6839
6847
  };
6840
6848
 
6841
- export type PolkadotPrimitivesV7CommittedCandidateReceipt = {
6842
- descriptor: PolkadotPrimitivesV7CandidateDescriptor;
6843
- commitments: PolkadotPrimitivesV7CandidateCommitments;
6849
+ export type PolkadotPrimitivesV8CommittedCandidateReceipt = {
6850
+ descriptor: PolkadotPrimitivesV8CandidateDescriptor;
6851
+ commitments: PolkadotPrimitivesV8CandidateCommitments;
6844
6852
  };
6845
6853
 
6846
- export type PolkadotPrimitivesV7CandidateDescriptor = {
6854
+ export type PolkadotPrimitivesV8CandidateDescriptor = {
6847
6855
  paraId: PolkadotParachainPrimitivesPrimitivesId;
6848
6856
  relayParent: H256;
6849
- collator: PolkadotPrimitivesV7CollatorAppPublic;
6857
+ collator: PolkadotPrimitivesV8CollatorAppPublic;
6850
6858
  persistedValidationDataHash: H256;
6851
6859
  povHash: H256;
6852
6860
  erasureRoot: H256;
6853
- signature: PolkadotPrimitivesV7CollatorAppSignature;
6861
+ signature: PolkadotPrimitivesV8CollatorAppSignature;
6854
6862
  paraHead: H256;
6855
6863
  validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
6856
6864
  };
6857
6865
 
6858
- export type PolkadotPrimitivesV7CollatorAppPublic = FixedBytes<32>;
6866
+ export type PolkadotPrimitivesV8CollatorAppPublic = FixedBytes<32>;
6859
6867
 
6860
- export type PolkadotPrimitivesV7CollatorAppSignature = FixedBytes<64>;
6868
+ export type PolkadotPrimitivesV8CollatorAppSignature = FixedBytes<64>;
6861
6869
 
6862
6870
  export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
6863
6871
 
6864
- export type PolkadotPrimitivesV7CandidateCommitments = {
6872
+ export type PolkadotPrimitivesV8CandidateCommitments = {
6865
6873
  upwardMessages: Array<Bytes>;
6866
6874
  horizontalMessages: Array<PolkadotCorePrimitivesOutboundHrmpMessage>;
6867
6875
  newValidationCode?: PolkadotParachainPrimitivesPrimitivesValidationCode | undefined;
@@ -6879,36 +6887,36 @@ export type PolkadotParachainPrimitivesPrimitivesValidationCode = Bytes;
6879
6887
 
6880
6888
  export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
6881
6889
 
6882
- export type PolkadotPrimitivesV7ValidityAttestation =
6883
- | { type: 'Implicit'; value: PolkadotPrimitivesV7ValidatorAppSignature }
6884
- | { type: 'Explicit'; value: PolkadotPrimitivesV7ValidatorAppSignature };
6890
+ export type PolkadotPrimitivesV8ValidityAttestation =
6891
+ | { type: 'Implicit'; value: PolkadotPrimitivesV8ValidatorAppSignature }
6892
+ | { type: 'Explicit'; value: PolkadotPrimitivesV8ValidatorAppSignature };
6885
6893
 
6886
- export type PolkadotPrimitivesV7DisputeStatementSet = {
6894
+ export type PolkadotPrimitivesV8DisputeStatementSet = {
6887
6895
  candidateHash: PolkadotCorePrimitivesCandidateHash;
6888
6896
  session: number;
6889
6897
  statements: Array<
6890
6898
  [
6891
- PolkadotPrimitivesV7DisputeStatement,
6892
- PolkadotPrimitivesV7ValidatorIndex,
6893
- PolkadotPrimitivesV7ValidatorAppSignature,
6899
+ PolkadotPrimitivesV8DisputeStatement,
6900
+ PolkadotPrimitivesV8ValidatorIndex,
6901
+ PolkadotPrimitivesV8ValidatorAppSignature,
6894
6902
  ]
6895
6903
  >;
6896
6904
  };
6897
6905
 
6898
6906
  export type PolkadotCorePrimitivesCandidateHash = H256;
6899
6907
 
6900
- export type PolkadotPrimitivesV7DisputeStatement =
6901
- | { type: 'Valid'; value: PolkadotPrimitivesV7ValidDisputeStatementKind }
6902
- | { type: 'Invalid'; value: PolkadotPrimitivesV7InvalidDisputeStatementKind };
6908
+ export type PolkadotPrimitivesV8DisputeStatement =
6909
+ | { type: 'Valid'; value: PolkadotPrimitivesV8ValidDisputeStatementKind }
6910
+ | { type: 'Invalid'; value: PolkadotPrimitivesV8InvalidDisputeStatementKind };
6903
6911
 
6904
- export type PolkadotPrimitivesV7ValidDisputeStatementKind =
6912
+ export type PolkadotPrimitivesV8ValidDisputeStatementKind =
6905
6913
  | { type: 'Explicit' }
6906
6914
  | { type: 'BackingSeconded'; value: H256 }
6907
6915
  | { type: 'BackingValid'; value: H256 }
6908
6916
  | { type: 'ApprovalChecking' }
6909
6917
  | { type: 'ApprovalCheckingMultipleCandidates'; value: Array<PolkadotCorePrimitivesCandidateHash> };
6910
6918
 
6911
- export type PolkadotPrimitivesV7InvalidDisputeStatementKind = 'Explicit';
6919
+ export type PolkadotPrimitivesV8InvalidDisputeStatementKind = 'Explicit';
6912
6920
 
6913
6921
  /**
6914
6922
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -6992,7 +7000,7 @@ export type PolkadotRuntimeParachainsParasPalletCall =
6992
7000
  **/
6993
7001
  | {
6994
7002
  name: 'IncludePvfCheckStatement';
6995
- params: { stmt: PolkadotPrimitivesV7PvfCheckStatement; signature: PolkadotPrimitivesV7ValidatorAppSignature };
7003
+ params: { stmt: PolkadotPrimitivesV8PvfCheckStatement; signature: PolkadotPrimitivesV8ValidatorAppSignature };
6996
7004
  }
6997
7005
  /**
6998
7006
  * Set the storage for the current parachain head data immediately.
@@ -7078,18 +7086,18 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
7078
7086
  **/
7079
7087
  | {
7080
7088
  name: 'IncludePvfCheckStatement';
7081
- params: { stmt: PolkadotPrimitivesV7PvfCheckStatement; signature: PolkadotPrimitivesV7ValidatorAppSignature };
7089
+ params: { stmt: PolkadotPrimitivesV8PvfCheckStatement; signature: PolkadotPrimitivesV8ValidatorAppSignature };
7082
7090
  }
7083
7091
  /**
7084
7092
  * Set the storage for the current parachain head data immediately.
7085
7093
  **/
7086
7094
  | { name: 'ForceSetMostRecentContext'; params: { para: PolkadotParachainPrimitivesPrimitivesId; context: number } };
7087
7095
 
7088
- export type PolkadotPrimitivesV7PvfCheckStatement = {
7096
+ export type PolkadotPrimitivesV8PvfCheckStatement = {
7089
7097
  accept: boolean;
7090
7098
  subject: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
7091
7099
  sessionIndex: number;
7092
- validatorIndex: PolkadotPrimitivesV7ValidatorIndex;
7100
+ validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
7093
7101
  };
7094
7102
 
7095
7103
  /**
@@ -7423,27 +7431,27 @@ export type PolkadotRuntimeParachainsDisputesPalletCallLike = 'ForceUnfreeze';
7423
7431
  **/
7424
7432
  export type PolkadotRuntimeParachainsDisputesSlashingPalletCall = {
7425
7433
  name: 'ReportDisputeLostUnsigned';
7426
- params: { disputeProof: PolkadotPrimitivesV7SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
7434
+ params: { disputeProof: PolkadotPrimitivesV8SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
7427
7435
  };
7428
7436
 
7429
7437
  export type PolkadotRuntimeParachainsDisputesSlashingPalletCallLike = {
7430
7438
  name: 'ReportDisputeLostUnsigned';
7431
- params: { disputeProof: PolkadotPrimitivesV7SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
7439
+ params: { disputeProof: PolkadotPrimitivesV8SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
7432
7440
  };
7433
7441
 
7434
- export type PolkadotPrimitivesV7SlashingDisputeProof = {
7435
- timeSlot: PolkadotPrimitivesV7SlashingDisputesTimeSlot;
7436
- kind: PolkadotPrimitivesV7SlashingSlashingOffenceKind;
7437
- validatorIndex: PolkadotPrimitivesV7ValidatorIndex;
7438
- validatorId: PolkadotPrimitivesV7ValidatorAppPublic;
7442
+ export type PolkadotPrimitivesV8SlashingDisputeProof = {
7443
+ timeSlot: PolkadotPrimitivesV8SlashingDisputesTimeSlot;
7444
+ kind: PolkadotPrimitivesV8SlashingSlashingOffenceKind;
7445
+ validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
7446
+ validatorId: PolkadotPrimitivesV8ValidatorAppPublic;
7439
7447
  };
7440
7448
 
7441
- export type PolkadotPrimitivesV7SlashingDisputesTimeSlot = {
7449
+ export type PolkadotPrimitivesV8SlashingDisputesTimeSlot = {
7442
7450
  sessionIndex: number;
7443
7451
  candidateHash: PolkadotCorePrimitivesCandidateHash;
7444
7452
  };
7445
7453
 
7446
- export type PolkadotPrimitivesV7SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
7454
+ export type PolkadotPrimitivesV8SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
7447
7455
 
7448
7456
  /**
7449
7457
  * Contains a variant per dispatchable extrinsic that this pallet has.
@@ -7527,7 +7535,7 @@ export type PolkadotRuntimeParachainsInclusionUmpQueueId = {
7527
7535
  /**
7528
7536
  * Contains a variant per dispatchable extrinsic that this pallet has.
7529
7537
  **/
7530
- export type PolkadotRuntimeParachainsAssignerOnDemandPalletCall =
7538
+ export type PolkadotRuntimeParachainsOnDemandPalletCall =
7531
7539
  /**
7532
7540
  * Create a single on demand core order.
7533
7541
  * Will use the spot price for the current block and will reap the account if needed.
@@ -7565,7 +7573,7 @@ export type PolkadotRuntimeParachainsAssignerOnDemandPalletCall =
7565
7573
  **/
7566
7574
  | { name: 'PlaceOrderKeepAlive'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } };
7567
7575
 
7568
- export type PolkadotRuntimeParachainsAssignerOnDemandPalletCallLike =
7576
+ export type PolkadotRuntimeParachainsOnDemandPalletCallLike =
7569
7577
  /**
7570
7578
  * Create a single on demand core order.
7571
7579
  * Will use the spot price for the current block and will reap the account if needed.
@@ -11079,10 +11087,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
11079
11087
  | {
11080
11088
  name: 'CandidateBacked';
11081
11089
  data: [
11082
- PolkadotPrimitivesV7CandidateReceipt,
11090
+ PolkadotPrimitivesV8CandidateReceipt,
11083
11091
  PolkadotParachainPrimitivesPrimitivesHeadData,
11084
- PolkadotPrimitivesV7CoreIndex,
11085
- PolkadotPrimitivesV7GroupIndex,
11092
+ PolkadotPrimitivesV8CoreIndex,
11093
+ PolkadotPrimitivesV8GroupIndex,
11086
11094
  ];
11087
11095
  }
11088
11096
  /**
@@ -11091,10 +11099,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
11091
11099
  | {
11092
11100
  name: 'CandidateIncluded';
11093
11101
  data: [
11094
- PolkadotPrimitivesV7CandidateReceipt,
11102
+ PolkadotPrimitivesV8CandidateReceipt,
11095
11103
  PolkadotParachainPrimitivesPrimitivesHeadData,
11096
- PolkadotPrimitivesV7CoreIndex,
11097
- PolkadotPrimitivesV7GroupIndex,
11104
+ PolkadotPrimitivesV8CoreIndex,
11105
+ PolkadotPrimitivesV8GroupIndex,
11098
11106
  ];
11099
11107
  }
11100
11108
  /**
@@ -11103,9 +11111,9 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
11103
11111
  | {
11104
11112
  name: 'CandidateTimedOut';
11105
11113
  data: [
11106
- PolkadotPrimitivesV7CandidateReceipt,
11114
+ PolkadotPrimitivesV8CandidateReceipt,
11107
11115
  PolkadotParachainPrimitivesPrimitivesHeadData,
11108
- PolkadotPrimitivesV7CoreIndex,
11116
+ PolkadotPrimitivesV8CoreIndex,
11109
11117
  ];
11110
11118
  }
11111
11119
  /**
@@ -11113,14 +11121,14 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
11113
11121
  **/
11114
11122
  | { name: 'UpwardMessagesReceived'; data: { from: PolkadotParachainPrimitivesPrimitivesId; count: number } };
11115
11123
 
11116
- export type PolkadotPrimitivesV7CandidateReceipt = {
11117
- descriptor: PolkadotPrimitivesV7CandidateDescriptor;
11124
+ export type PolkadotPrimitivesV8CandidateReceipt = {
11125
+ descriptor: PolkadotPrimitivesV8CandidateDescriptor;
11118
11126
  commitmentsHash: H256;
11119
11127
  };
11120
11128
 
11121
- export type PolkadotPrimitivesV7CoreIndex = number;
11129
+ export type PolkadotPrimitivesV8CoreIndex = number;
11122
11130
 
11123
- export type PolkadotPrimitivesV7GroupIndex = number;
11131
+ export type PolkadotPrimitivesV8GroupIndex = number;
11124
11132
 
11125
11133
  /**
11126
11134
  * The `Event` enum of this pallet
@@ -11394,7 +11402,7 @@ export type FrameSupportMessagesProcessMessageError =
11394
11402
  /**
11395
11403
  * The `Event` enum of this pallet
11396
11404
  **/
11397
- export type PolkadotRuntimeParachainsAssignerOnDemandPalletEvent =
11405
+ export type PolkadotRuntimeParachainsOnDemandPalletEvent =
11398
11406
  /**
11399
11407
  * An order was placed at some spot price amount by orderer ordered_by
11400
11408
  **/
@@ -11556,7 +11564,7 @@ export type PolkadotRuntimeParachainsCoretimePalletEvent =
11556
11564
  /**
11557
11565
  * A core has received a new assignment from the broker chain.
11558
11566
  **/
11559
- | { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV7CoreIndex } };
11567
+ | { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV8CoreIndex } };
11560
11568
 
11561
11569
  /**
11562
11570
  * The `Event` enum of this pallet
@@ -13174,11 +13182,7 @@ export type PalletPreimageError =
13174
13182
  /**
13175
13183
  * Too few hashes were requested to be upgraded (i.e. zero).
13176
13184
  **/
13177
- | 'TooFew'
13178
- /**
13179
- * No ticket with a cost was returned by [`Config::Consideration`] to store the preimage.
13180
- **/
13181
- | 'NoCost';
13185
+ | 'TooFew';
13182
13186
 
13183
13187
  /**
13184
13188
  * The `Error` enum of this pallet.
@@ -13387,7 +13391,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
13387
13391
  hrmpMaxMessageNumPerCandidate: number;
13388
13392
  validationUpgradeCooldown: number;
13389
13393
  validationUpgradeDelay: number;
13390
- asyncBackingParams: PolkadotPrimitivesV7AsyncBackingAsyncBackingParams;
13394
+ asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
13391
13395
  maxPovSize: number;
13392
13396
  maxDownwardMessageSize: number;
13393
13397
  hrmpMaxParachainOutboundChannels: number;
@@ -13397,7 +13401,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
13397
13401
  hrmpChannelMaxTotalSize: number;
13398
13402
  hrmpMaxParachainInboundChannels: number;
13399
13403
  hrmpChannelMaxMessageSize: number;
13400
- executorParams: PolkadotPrimitivesV7ExecutorParams;
13404
+ executorParams: PolkadotPrimitivesV8ExecutorParams;
13401
13405
  codeRetentionPeriod: number;
13402
13406
  maxValidators?: number | undefined;
13403
13407
  disputePeriod: number;
@@ -13411,8 +13415,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
13411
13415
  minimumValidationUpgradeDelay: number;
13412
13416
  minimumBackingVotes: number;
13413
13417
  nodeFeatures: BitSequence;
13414
- approvalVotingParams: PolkadotPrimitivesV7ApprovalVotingParams;
13415
- schedulerParams: PolkadotPrimitivesVstagingSchedulerParams;
13418
+ approvalVotingParams: PolkadotPrimitivesV8ApprovalVotingParams;
13419
+ schedulerParams: PolkadotPrimitivesV8SchedulerParams;
13416
13420
  };
13417
13421
 
13418
13422
  /**
@@ -13430,15 +13434,15 @@ export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
13430
13434
  };
13431
13435
 
13432
13436
  export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
13433
- core: PolkadotPrimitivesV7CoreIndex;
13437
+ core: PolkadotPrimitivesV8CoreIndex;
13434
13438
  hash: PolkadotCorePrimitivesCandidateHash;
13435
- descriptor: PolkadotPrimitivesV7CandidateDescriptor;
13436
- commitments: PolkadotPrimitivesV7CandidateCommitments;
13439
+ descriptor: PolkadotPrimitivesV8CandidateDescriptor;
13440
+ commitments: PolkadotPrimitivesV8CandidateCommitments;
13437
13441
  availabilityVotes: BitSequence;
13438
13442
  backers: BitSequence;
13439
13443
  relayParentNumber: number;
13440
13444
  backedInNumber: number;
13441
- backingGroup: PolkadotPrimitivesV7GroupIndex;
13445
+ backingGroup: PolkadotPrimitivesV8GroupIndex;
13442
13446
  };
13443
13447
 
13444
13448
  /**
@@ -13487,10 +13491,6 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
13487
13491
  * Invalid (bad signature, unknown validator, etc.) backing.
13488
13492
  **/
13489
13493
  | 'InvalidBacking'
13490
- /**
13491
- * Collator did not sign PoV.
13492
- **/
13493
- | 'NotCollatorSigned'
13494
13494
  /**
13495
13495
  * The validation data hash does not match expected.
13496
13496
  **/
@@ -13521,15 +13521,15 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
13521
13521
  **/
13522
13522
  | 'ParaHeadMismatch';
13523
13523
 
13524
- export type PolkadotPrimitivesV7ScrapedOnChainVotes = {
13524
+ export type PolkadotPrimitivesV8ScrapedOnChainVotes = {
13525
13525
  session: number;
13526
13526
  backingValidatorsPerCandidate: Array<
13527
13527
  [
13528
- PolkadotPrimitivesV7CandidateReceipt,
13529
- Array<[PolkadotPrimitivesV7ValidatorIndex, PolkadotPrimitivesV7ValidityAttestation]>,
13528
+ PolkadotPrimitivesV8CandidateReceipt,
13529
+ Array<[PolkadotPrimitivesV8ValidatorIndex, PolkadotPrimitivesV8ValidityAttestation]>,
13530
13530
  ]
13531
13531
  >;
13532
- disputes: Array<PolkadotPrimitivesV7DisputeStatementSet>;
13532
+ disputes: Array<PolkadotPrimitivesV8DisputeStatementSet>;
13533
13533
  };
13534
13534
 
13535
13535
  /**
@@ -13572,7 +13572,7 @@ export type PolkadotRuntimeParachainsSchedulerPalletParasEntry = {
13572
13572
  export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
13573
13573
  | {
13574
13574
  type: 'Pool';
13575
- value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV7CoreIndex };
13575
+ value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV8CoreIndex };
13576
13576
  }
13577
13577
  | { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
13578
13578
 
@@ -13613,9 +13613,9 @@ export type PolkadotRuntimeParachainsParasParaPastCodeMeta = {
13613
13613
 
13614
13614
  export type PolkadotRuntimeParachainsParasReplacementTimes = { expectedAt: number; activatedAt: number };
13615
13615
 
13616
- export type PolkadotPrimitivesV7UpgradeGoAhead = 'Abort' | 'GoAhead';
13616
+ export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
13617
13617
 
13618
- export type PolkadotPrimitivesV7UpgradeRestriction = 'Present';
13618
+ export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
13619
13619
 
13620
13620
  /**
13621
13621
  * The `Error` enum of this pallet.
@@ -13675,8 +13675,8 @@ export type PolkadotRuntimeParachainsParasPalletError =
13675
13675
  | 'InvalidCode';
13676
13676
 
13677
13677
  export type PolkadotRuntimeParachainsInitializerBufferedSessionChange = {
13678
- validators: Array<PolkadotPrimitivesV7ValidatorAppPublic>;
13679
- queued: Array<PolkadotPrimitivesV7ValidatorAppPublic>;
13678
+ validators: Array<PolkadotPrimitivesV8ValidatorAppPublic>;
13679
+ queued: Array<PolkadotPrimitivesV8ValidatorAppPublic>;
13680
13680
  sessionIndex: number;
13681
13681
  };
13682
13682
 
@@ -13789,14 +13789,14 @@ export type PolkadotRuntimeParachainsHrmpPalletError =
13789
13789
  **/
13790
13790
  | 'ChannelCreationNotAuthorized';
13791
13791
 
13792
- export type PolkadotPrimitivesV7SessionInfo = {
13793
- activeValidatorIndices: Array<PolkadotPrimitivesV7ValidatorIndex>;
13792
+ export type PolkadotPrimitivesV8SessionInfo = {
13793
+ activeValidatorIndices: Array<PolkadotPrimitivesV8ValidatorIndex>;
13794
13794
  randomSeed: FixedBytes<32>;
13795
13795
  disputePeriod: number;
13796
- validators: PolkadotPrimitivesV7IndexedVec;
13796
+ validators: PolkadotPrimitivesV8IndexedVec;
13797
13797
  discoveryKeys: Array<SpAuthorityDiscoveryAppPublic>;
13798
- assignmentKeys: Array<PolkadotPrimitivesV7AssignmentAppPublic>;
13799
- validatorGroups: PolkadotPrimitivesV7IndexedVecGroupIndex;
13798
+ assignmentKeys: Array<PolkadotPrimitivesV8AssignmentAppPublic>;
13799
+ validatorGroups: PolkadotPrimitivesV8IndexedVecGroupIndex;
13800
13800
  nCores: number;
13801
13801
  zerothDelayTrancheWidth: number;
13802
13802
  relayVrfModuloSamples: number;
@@ -13805,11 +13805,11 @@ export type PolkadotPrimitivesV7SessionInfo = {
13805
13805
  neededApprovals: number;
13806
13806
  };
13807
13807
 
13808
- export type PolkadotPrimitivesV7IndexedVec = Array<PolkadotPrimitivesV7ValidatorAppPublic>;
13808
+ export type PolkadotPrimitivesV8IndexedVec = Array<PolkadotPrimitivesV8ValidatorAppPublic>;
13809
13809
 
13810
- export type PolkadotPrimitivesV7IndexedVecGroupIndex = Array<Array<PolkadotPrimitivesV7ValidatorIndex>>;
13810
+ export type PolkadotPrimitivesV8IndexedVecGroupIndex = Array<Array<PolkadotPrimitivesV8ValidatorIndex>>;
13811
13811
 
13812
- export type PolkadotPrimitivesV7DisputeState = {
13812
+ export type PolkadotPrimitivesV8DisputeState = {
13813
13813
  validatorsFor: BitSequence;
13814
13814
  validatorsAgainst: BitSequence;
13815
13815
  start: number;
@@ -13857,9 +13857,9 @@ export type PolkadotRuntimeParachainsDisputesPalletError =
13857
13857
  **/
13858
13858
  | 'UnconfirmedDispute';
13859
13859
 
13860
- export type PolkadotPrimitivesV7SlashingPendingSlashes = {
13861
- keys: Array<[PolkadotPrimitivesV7ValidatorIndex, PolkadotPrimitivesV7ValidatorAppPublic]>;
13862
- kind: PolkadotPrimitivesV7SlashingSlashingOffenceKind;
13860
+ export type PolkadotPrimitivesV8SlashingPendingSlashes = {
13861
+ keys: Array<[PolkadotPrimitivesV8ValidatorIndex, PolkadotPrimitivesV8ValidatorAppPublic]>;
13862
+ kind: PolkadotPrimitivesV8SlashingSlashingOffenceKind;
13863
13863
  };
13864
13864
 
13865
13865
  /**
@@ -13962,35 +13962,35 @@ export type PalletMessageQueueError =
13962
13962
  **/
13963
13963
  | 'RecursiveDisallowed';
13964
13964
 
13965
- export type PolkadotRuntimeParachainsAssignerOnDemandTypesCoreAffinityCount = {
13966
- coreIndex: PolkadotPrimitivesV7CoreIndex;
13965
+ export type PolkadotRuntimeParachainsOnDemandTypesCoreAffinityCount = {
13966
+ coreIndex: PolkadotPrimitivesV8CoreIndex;
13967
13967
  count: number;
13968
13968
  };
13969
13969
 
13970
- export type PolkadotRuntimeParachainsAssignerOnDemandTypesQueueStatusType = {
13970
+ export type PolkadotRuntimeParachainsOnDemandTypesQueueStatusType = {
13971
13971
  traffic: FixedU128;
13972
- nextIndex: PolkadotRuntimeParachainsAssignerOnDemandTypesQueueIndex;
13973
- smallestIndex: PolkadotRuntimeParachainsAssignerOnDemandTypesQueueIndex;
13972
+ nextIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
13973
+ smallestIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
13974
13974
  freedIndices: BinaryHeap;
13975
13975
  };
13976
13976
 
13977
- export type PolkadotRuntimeParachainsAssignerOnDemandTypesQueueIndex = number;
13977
+ export type PolkadotRuntimeParachainsOnDemandTypesQueueIndex = number;
13978
13978
 
13979
- export type BinaryHeap = Array<PolkadotRuntimeParachainsAssignerOnDemandTypesReverseQueueIndex>;
13979
+ export type BinaryHeap = Array<PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex>;
13980
13980
 
13981
- export type PolkadotRuntimeParachainsAssignerOnDemandTypesReverseQueueIndex = number;
13981
+ export type PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex = number;
13982
13982
 
13983
- export type BinaryHeapEnqueuedOrder = Array<PolkadotRuntimeParachainsAssignerOnDemandTypesEnqueuedOrder>;
13983
+ export type BinaryHeapEnqueuedOrder = Array<PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder>;
13984
13984
 
13985
- export type PolkadotRuntimeParachainsAssignerOnDemandTypesEnqueuedOrder = {
13985
+ export type PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder = {
13986
13986
  paraId: PolkadotParachainPrimitivesPrimitivesId;
13987
- idx: PolkadotRuntimeParachainsAssignerOnDemandTypesQueueIndex;
13987
+ idx: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
13988
13988
  };
13989
13989
 
13990
13990
  /**
13991
13991
  * The `Error` enum of this pallet.
13992
13992
  **/
13993
- export type PolkadotRuntimeParachainsAssignerOnDemandPalletError =
13993
+ export type PolkadotRuntimeParachainsOnDemandPalletError =
13994
13994
  /**
13995
13995
  * The order queue is full, `place_order` will not continue.
13996
13996
  **/
@@ -14661,78 +14661,78 @@ export type SpRuntimeTransactionValidityValidTransaction = {
14661
14661
  propagate: boolean;
14662
14662
  };
14663
14663
 
14664
- export type PolkadotPrimitivesV7GroupRotationInfo = {
14664
+ export type PolkadotPrimitivesV8GroupRotationInfo = {
14665
14665
  sessionStartBlock: number;
14666
14666
  groupRotationFrequency: number;
14667
14667
  now: number;
14668
14668
  };
14669
14669
 
14670
- export type PolkadotPrimitivesV7CoreState =
14671
- | { type: 'Occupied'; value: PolkadotPrimitivesV7OccupiedCore }
14672
- | { type: 'Scheduled'; value: PolkadotPrimitivesV7ScheduledCore }
14670
+ export type PolkadotPrimitivesV8CoreState =
14671
+ | { type: 'Occupied'; value: PolkadotPrimitivesV8OccupiedCore }
14672
+ | { type: 'Scheduled'; value: PolkadotPrimitivesV8ScheduledCore }
14673
14673
  | { type: 'Free' };
14674
14674
 
14675
- export type PolkadotPrimitivesV7OccupiedCore = {
14676
- nextUpOnAvailable?: PolkadotPrimitivesV7ScheduledCore | undefined;
14675
+ export type PolkadotPrimitivesV8OccupiedCore = {
14676
+ nextUpOnAvailable?: PolkadotPrimitivesV8ScheduledCore | undefined;
14677
14677
  occupiedSince: number;
14678
14678
  timeOutAt: number;
14679
- nextUpOnTimeOut?: PolkadotPrimitivesV7ScheduledCore | undefined;
14679
+ nextUpOnTimeOut?: PolkadotPrimitivesV8ScheduledCore | undefined;
14680
14680
  availability: BitSequence;
14681
- groupResponsible: PolkadotPrimitivesV7GroupIndex;
14681
+ groupResponsible: PolkadotPrimitivesV8GroupIndex;
14682
14682
  candidateHash: PolkadotCorePrimitivesCandidateHash;
14683
- candidateDescriptor: PolkadotPrimitivesV7CandidateDescriptor;
14683
+ candidateDescriptor: PolkadotPrimitivesV8CandidateDescriptor;
14684
14684
  };
14685
14685
 
14686
- export type PolkadotPrimitivesV7ScheduledCore = {
14686
+ export type PolkadotPrimitivesV8ScheduledCore = {
14687
14687
  paraId: PolkadotParachainPrimitivesPrimitivesId;
14688
- collator?: PolkadotPrimitivesV7CollatorAppPublic | undefined;
14688
+ collator?: PolkadotPrimitivesV8CollatorAppPublic | undefined;
14689
14689
  };
14690
14690
 
14691
- export type PolkadotPrimitivesV7OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
14691
+ export type PolkadotPrimitivesV8OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
14692
14692
 
14693
- export type PolkadotPrimitivesV7PersistedValidationData = {
14693
+ export type PolkadotPrimitivesV8PersistedValidationData = {
14694
14694
  parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
14695
14695
  relayParentNumber: number;
14696
14696
  relayParentStorageRoot: H256;
14697
14697
  maxPovSize: number;
14698
14698
  };
14699
14699
 
14700
- export type PolkadotPrimitivesV7CandidateEvent =
14700
+ export type PolkadotPrimitivesV8CandidateEvent =
14701
14701
  | {
14702
14702
  type: 'CandidateBacked';
14703
14703
  value: [
14704
- PolkadotPrimitivesV7CandidateReceipt,
14704
+ PolkadotPrimitivesV8CandidateReceipt,
14705
14705
  PolkadotParachainPrimitivesPrimitivesHeadData,
14706
- PolkadotPrimitivesV7CoreIndex,
14707
- PolkadotPrimitivesV7GroupIndex,
14706
+ PolkadotPrimitivesV8CoreIndex,
14707
+ PolkadotPrimitivesV8GroupIndex,
14708
14708
  ];
14709
14709
  }
14710
14710
  | {
14711
14711
  type: 'CandidateIncluded';
14712
14712
  value: [
14713
- PolkadotPrimitivesV7CandidateReceipt,
14713
+ PolkadotPrimitivesV8CandidateReceipt,
14714
14714
  PolkadotParachainPrimitivesPrimitivesHeadData,
14715
- PolkadotPrimitivesV7CoreIndex,
14716
- PolkadotPrimitivesV7GroupIndex,
14715
+ PolkadotPrimitivesV8CoreIndex,
14716
+ PolkadotPrimitivesV8GroupIndex,
14717
14717
  ];
14718
14718
  }
14719
14719
  | {
14720
14720
  type: 'CandidateTimedOut';
14721
14721
  value: [
14722
- PolkadotPrimitivesV7CandidateReceipt,
14722
+ PolkadotPrimitivesV8CandidateReceipt,
14723
14723
  PolkadotParachainPrimitivesPrimitivesHeadData,
14724
- PolkadotPrimitivesV7CoreIndex,
14724
+ PolkadotPrimitivesV8CoreIndex,
14725
14725
  ];
14726
14726
  };
14727
14727
 
14728
- export type PolkadotPrimitivesV7SlashingOpaqueKeyOwnershipProof = Bytes;
14728
+ export type PolkadotPrimitivesV8SlashingOpaqueKeyOwnershipProof = Bytes;
14729
14729
 
14730
- export type PolkadotPrimitivesV7AsyncBackingBackingState = {
14731
- constraints: PolkadotPrimitivesV7AsyncBackingConstraints;
14732
- pendingAvailability: Array<PolkadotPrimitivesV7AsyncBackingCandidatePendingAvailability>;
14730
+ export type PolkadotPrimitivesV8AsyncBackingBackingState = {
14731
+ constraints: PolkadotPrimitivesV8AsyncBackingConstraints;
14732
+ pendingAvailability: Array<PolkadotPrimitivesV8AsyncBackingCandidatePendingAvailability>;
14733
14733
  };
14734
14734
 
14735
- export type PolkadotPrimitivesV7AsyncBackingConstraints = {
14735
+ export type PolkadotPrimitivesV8AsyncBackingConstraints = {
14736
14736
  minRelayParentNumber: number;
14737
14737
  maxPovSize: number;
14738
14738
  maxCodeSize: number;
@@ -14740,28 +14740,28 @@ export type PolkadotPrimitivesV7AsyncBackingConstraints = {
14740
14740
  umpRemainingBytes: number;
14741
14741
  maxUmpNumPerCandidate: number;
14742
14742
  dmpRemainingMessages: Array<number>;
14743
- hrmpInbound: PolkadotPrimitivesV7AsyncBackingInboundHrmpLimitations;
14743
+ hrmpInbound: PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations;
14744
14744
  hrmpChannelsOut: Array<
14745
- [PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV7AsyncBackingOutboundHrmpChannelLimitations]
14745
+ [PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations]
14746
14746
  >;
14747
14747
  maxHrmpNumPerCandidate: number;
14748
14748
  requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
14749
14749
  validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
14750
- upgradeRestriction?: PolkadotPrimitivesV7UpgradeRestriction | undefined;
14750
+ upgradeRestriction?: PolkadotPrimitivesV8UpgradeRestriction | undefined;
14751
14751
  futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
14752
14752
  };
14753
14753
 
14754
- export type PolkadotPrimitivesV7AsyncBackingInboundHrmpLimitations = { validWatermarks: Array<number> };
14754
+ export type PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations = { validWatermarks: Array<number> };
14755
14755
 
14756
- export type PolkadotPrimitivesV7AsyncBackingOutboundHrmpChannelLimitations = {
14756
+ export type PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations = {
14757
14757
  bytesRemaining: number;
14758
14758
  messagesRemaining: number;
14759
14759
  };
14760
14760
 
14761
- export type PolkadotPrimitivesV7AsyncBackingCandidatePendingAvailability = {
14761
+ export type PolkadotPrimitivesV8AsyncBackingCandidatePendingAvailability = {
14762
14762
  candidateHash: PolkadotCorePrimitivesCandidateHash;
14763
- descriptor: PolkadotPrimitivesV7CandidateDescriptor;
14764
- commitments: PolkadotPrimitivesV7CandidateCommitments;
14763
+ descriptor: PolkadotPrimitivesV8CandidateDescriptor;
14764
+ commitments: PolkadotPrimitivesV8CandidateCommitments;
14765
14765
  relayParentNumber: number;
14766
14766
  maxPovSize: number;
14767
14767
  };
@@ -14770,6 +14770,12 @@ export type SpConsensusBeefyValidatorSet = { validators: Array<SpConsensusBeefyE
14770
14770
 
14771
14771
  export type SpRuntimeOpaqueValue = Bytes;
14772
14772
 
14773
+ export type SpConsensusBeefyForkVotingProofOpaqueValue = {
14774
+ vote: SpConsensusBeefyVoteMessage;
14775
+ ancestryProof: SpRuntimeOpaqueValue;
14776
+ header: Header;
14777
+ };
14778
+
14773
14779
  export type SpMmrPrimitivesError =
14774
14780
  | 'InvalidNumericOp'
14775
14781
  | 'Push'
@@ -14855,7 +14861,7 @@ export type RococoRuntimeRuntimeError =
14855
14861
  | { pallet: 'ParasDisputes'; palletError: PolkadotRuntimeParachainsDisputesPalletError }
14856
14862
  | { pallet: 'ParasSlashing'; palletError: PolkadotRuntimeParachainsDisputesSlashingPalletError }
14857
14863
  | { pallet: 'MessageQueue'; palletError: PalletMessageQueueError }
14858
- | { pallet: 'OnDemandAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerOnDemandPalletError }
14864
+ | { pallet: 'OnDemandAssignmentProvider'; palletError: PolkadotRuntimeParachainsOnDemandPalletError }
14859
14865
  | { pallet: 'CoretimeAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerCoretimePalletError }
14860
14866
  | { pallet: 'Registrar'; palletError: PolkadotRuntimeCommonParasRegistrarPalletError }
14861
14867
  | { pallet: 'Slots'; palletError: PolkadotRuntimeCommonSlotsPalletError }