@dedot/chaintypes 0.231.0 → 0.232.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.
- package/package.json +2 -2
- package/paseo/consts.d.ts +19 -0
- package/paseo/errors.d.ts +107 -12
- package/paseo/events.d.ts +83 -13
- package/paseo/index.d.ts +1 -1
- package/paseo/query.d.ts +99 -52
- package/paseo/runtime.d.ts +138 -63
- package/paseo/tx.d.ts +185 -40
- package/paseo/types.d.ts +473 -205
package/paseo/types.d.ts
CHANGED
|
@@ -82,11 +82,12 @@ export type PaseoRuntimeRuntimeEvent =
|
|
|
82
82
|
| { pallet: 'VoterList'; palletEvent: PalletBagsListEvent }
|
|
83
83
|
| { pallet: 'NominationPools'; palletEvent: PalletNominationPoolsEvent }
|
|
84
84
|
| { pallet: 'FastUnstake'; palletEvent: PalletFastUnstakeEvent }
|
|
85
|
+
| { pallet: 'DelegatedStaking'; palletEvent: PalletDelegatedStakingEvent }
|
|
85
86
|
| { pallet: 'ParaInclusion'; palletEvent: PolkadotRuntimeParachainsInclusionPalletEvent }
|
|
86
87
|
| { pallet: 'Paras'; palletEvent: PolkadotRuntimeParachainsParasPalletEvent }
|
|
87
88
|
| { pallet: 'Hrmp'; palletEvent: PolkadotRuntimeParachainsHrmpPalletEvent }
|
|
88
89
|
| { pallet: 'ParasDisputes'; palletEvent: PolkadotRuntimeParachainsDisputesPalletEvent }
|
|
89
|
-
| { pallet: 'OnDemand'; palletEvent:
|
|
90
|
+
| { pallet: 'OnDemand'; palletEvent: PolkadotRuntimeParachainsOnDemandPalletEvent }
|
|
90
91
|
| { pallet: 'Registrar'; palletEvent: PolkadotRuntimeCommonParasRegistrarPalletEvent }
|
|
91
92
|
| { pallet: 'Slots'; palletEvent: PolkadotRuntimeCommonSlotsPalletEvent }
|
|
92
93
|
| { pallet: 'Auctions'; palletEvent: PolkadotRuntimeCommonAuctionsPalletEvent }
|
|
@@ -731,7 +732,22 @@ export type PalletConvictionVotingEvent =
|
|
|
731
732
|
/**
|
|
732
733
|
* An \[account\] has cancelled a previous delegation operation.
|
|
733
734
|
**/
|
|
734
|
-
| { name: 'Undelegated'; data: AccountId32 }
|
|
735
|
+
| { name: 'Undelegated'; data: AccountId32 }
|
|
736
|
+
/**
|
|
737
|
+
* An account that has voted
|
|
738
|
+
**/
|
|
739
|
+
| { name: 'Voted'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } }
|
|
740
|
+
/**
|
|
741
|
+
* A vote that been removed
|
|
742
|
+
**/
|
|
743
|
+
| { name: 'VoteRemoved'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } };
|
|
744
|
+
|
|
745
|
+
export type PalletConvictionVotingVoteAccountVote =
|
|
746
|
+
| { type: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
|
|
747
|
+
| { type: 'Split'; value: { aye: bigint; nay: bigint } }
|
|
748
|
+
| { type: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
|
|
749
|
+
|
|
750
|
+
export type PalletConvictionVotingVote = number;
|
|
735
751
|
|
|
736
752
|
/**
|
|
737
753
|
* The `Event` enum of this pallet
|
|
@@ -1060,7 +1076,7 @@ export type PaseoRuntimeRuntimeCall =
|
|
|
1060
1076
|
| { pallet: 'Hrmp'; palletCall: PolkadotRuntimeParachainsHrmpPalletCall }
|
|
1061
1077
|
| { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCall }
|
|
1062
1078
|
| { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCall }
|
|
1063
|
-
| { pallet: 'OnDemand'; palletCall:
|
|
1079
|
+
| { pallet: 'OnDemand'; palletCall: PolkadotRuntimeParachainsOnDemandPalletCall }
|
|
1064
1080
|
| { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCall }
|
|
1065
1081
|
| { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCall }
|
|
1066
1082
|
| { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCall }
|
|
@@ -1110,7 +1126,7 @@ export type PaseoRuntimeRuntimeCallLike =
|
|
|
1110
1126
|
| { pallet: 'Hrmp'; palletCall: PolkadotRuntimeParachainsHrmpPalletCallLike }
|
|
1111
1127
|
| { pallet: 'ParasDisputes'; palletCall: PolkadotRuntimeParachainsDisputesPalletCallLike }
|
|
1112
1128
|
| { pallet: 'ParasSlashing'; palletCall: PolkadotRuntimeParachainsDisputesSlashingPalletCallLike }
|
|
1113
|
-
| { pallet: 'OnDemand'; palletCall:
|
|
1129
|
+
| { pallet: 'OnDemand'; palletCall: PolkadotRuntimeParachainsOnDemandPalletCallLike }
|
|
1114
1130
|
| { pallet: 'Registrar'; palletCall: PolkadotRuntimeCommonParasRegistrarPalletCallLike }
|
|
1115
1131
|
| { pallet: 'Slots'; palletCall: PolkadotRuntimeCommonSlotsPalletCallLike }
|
|
1116
1132
|
| { pallet: 'Auctions'; palletCall: PolkadotRuntimeCommonAuctionsPalletCallLike }
|
|
@@ -2471,7 +2487,16 @@ export type PalletStakingPalletCall =
|
|
|
2471
2487
|
maybeTotal?: bigint | undefined;
|
|
2472
2488
|
maybeUnlocking?: Array<PalletStakingUnlockChunk> | undefined;
|
|
2473
2489
|
};
|
|
2474
|
-
}
|
|
2490
|
+
}
|
|
2491
|
+
/**
|
|
2492
|
+
* Adjusts the staking ledger by withdrawing any excess staked amount.
|
|
2493
|
+
*
|
|
2494
|
+
* This function corrects cases where a user's recorded stake in the ledger
|
|
2495
|
+
* exceeds their actual staked funds. This situation can arise due to cases such as
|
|
2496
|
+
* external slashing by another pallet, leading to an inconsistency between the ledger
|
|
2497
|
+
* and the actual stake.
|
|
2498
|
+
**/
|
|
2499
|
+
| { name: 'WithdrawOverstake'; params: { stash: AccountId32 } };
|
|
2475
2500
|
|
|
2476
2501
|
export type PalletStakingPalletCallLike =
|
|
2477
2502
|
/**
|
|
@@ -2917,7 +2942,16 @@ export type PalletStakingPalletCallLike =
|
|
|
2917
2942
|
maybeTotal?: bigint | undefined;
|
|
2918
2943
|
maybeUnlocking?: Array<PalletStakingUnlockChunk> | undefined;
|
|
2919
2944
|
};
|
|
2920
|
-
}
|
|
2945
|
+
}
|
|
2946
|
+
/**
|
|
2947
|
+
* Adjusts the staking ledger by withdrawing any excess staked amount.
|
|
2948
|
+
*
|
|
2949
|
+
* This function corrects cases where a user's recorded stake in the ledger
|
|
2950
|
+
* exceeds their actual staked funds. This situation can arise due to cases such as
|
|
2951
|
+
* external slashing by another pallet, leading to an inconsistency between the ledger
|
|
2952
|
+
* and the actual stake.
|
|
2953
|
+
**/
|
|
2954
|
+
| { name: 'WithdrawOverstake'; params: { stash: AccountId32Like } };
|
|
2921
2955
|
|
|
2922
2956
|
export type PalletStakingPalletConfigOp = { type: 'Noop' } | { type: 'Set'; value: bigint } | { type: 'Remove' };
|
|
2923
2957
|
|
|
@@ -2999,15 +3033,15 @@ export type PalletSessionCallLike =
|
|
|
2999
3033
|
export type PaseoRuntimeSessionKeys = {
|
|
3000
3034
|
grandpa: SpConsensusGrandpaAppPublic;
|
|
3001
3035
|
babe: SpConsensusBabeAppPublic;
|
|
3002
|
-
paraValidator:
|
|
3003
|
-
paraAssignment:
|
|
3036
|
+
paraValidator: PolkadotPrimitivesV8ValidatorAppPublic;
|
|
3037
|
+
paraAssignment: PolkadotPrimitivesV8AssignmentAppPublic;
|
|
3004
3038
|
authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3005
3039
|
beefy: SpConsensusBeefyEcdsaCryptoPublic;
|
|
3006
3040
|
};
|
|
3007
3041
|
|
|
3008
|
-
export type
|
|
3042
|
+
export type PolkadotPrimitivesV8ValidatorAppPublic = FixedBytes<32>;
|
|
3009
3043
|
|
|
3010
|
-
export type
|
|
3044
|
+
export type PolkadotPrimitivesV8AssignmentAppPublic = FixedBytes<32>;
|
|
3011
3045
|
|
|
3012
3046
|
export type SpAuthorityDiscoveryAppPublic = FixedBytes<32>;
|
|
3013
3047
|
|
|
@@ -3670,13 +3704,6 @@ export type PalletConvictionVotingCallLike =
|
|
|
3670
3704
|
**/
|
|
3671
3705
|
| { name: 'RemoveOtherVote'; params: { target: MultiAddressLike; class: number; index: number } };
|
|
3672
3706
|
|
|
3673
|
-
export type PalletConvictionVotingVoteAccountVote =
|
|
3674
|
-
| { type: 'Standard'; value: { vote: PalletConvictionVotingVote; balance: bigint } }
|
|
3675
|
-
| { type: 'Split'; value: { aye: bigint; nay: bigint } }
|
|
3676
|
-
| { type: 'SplitAbstain'; value: { aye: bigint; nay: bigint; abstain: bigint } };
|
|
3677
|
-
|
|
3678
|
-
export type PalletConvictionVotingVote = number;
|
|
3679
|
-
|
|
3680
3707
|
export type PalletConvictionVotingConviction =
|
|
3681
3708
|
| 'None'
|
|
3682
3709
|
| 'Locked1x'
|
|
@@ -4951,7 +4978,8 @@ export type PaseoRuntimeProxyType =
|
|
|
4951
4978
|
| 'Staking'
|
|
4952
4979
|
| 'CancelProxy'
|
|
4953
4980
|
| 'Auction'
|
|
4954
|
-
| 'NominationPools'
|
|
4981
|
+
| 'NominationPools'
|
|
4982
|
+
| 'ParaRegistration';
|
|
4955
4983
|
|
|
4956
4984
|
/**
|
|
4957
4985
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -6060,8 +6088,14 @@ export type PalletBagsListCallLike =
|
|
|
6060
6088
|
**/
|
|
6061
6089
|
export type PalletNominationPoolsCall =
|
|
6062
6090
|
/**
|
|
6063
|
-
* Stake funds with a pool. The amount to bond is
|
|
6064
|
-
*
|
|
6091
|
+
* Stake funds with a pool. The amount to bond is delegated (or transferred based on
|
|
6092
|
+
* [`adapter::StakeStrategyType`]) from the member to the pool account and immediately
|
|
6093
|
+
* increases the pool's bond.
|
|
6094
|
+
*
|
|
6095
|
+
* The method of transferring the amount to the pool account is determined by
|
|
6096
|
+
* [`adapter::StakeStrategyType`]. If the pool is configured to use
|
|
6097
|
+
* [`adapter::StakeStrategyType::Delegate`], the funds remain in the account of
|
|
6098
|
+
* the `origin`, while the pool gains the right to use these funds for staking.
|
|
6065
6099
|
*
|
|
6066
6100
|
* # Note
|
|
6067
6101
|
*
|
|
@@ -6378,8 +6412,10 @@ export type PalletNominationPoolsCall =
|
|
|
6378
6412
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
6379
6413
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
6380
6414
|
*
|
|
6381
|
-
*
|
|
6382
|
-
*
|
|
6415
|
+
* The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
|
|
6416
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the execution
|
|
6417
|
+
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
6418
|
+
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
6383
6419
|
**/
|
|
6384
6420
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddress } }
|
|
6385
6421
|
/**
|
|
@@ -6409,8 +6445,14 @@ export type PalletNominationPoolsCall =
|
|
|
6409
6445
|
|
|
6410
6446
|
export type PalletNominationPoolsCallLike =
|
|
6411
6447
|
/**
|
|
6412
|
-
* Stake funds with a pool. The amount to bond is
|
|
6413
|
-
*
|
|
6448
|
+
* Stake funds with a pool. The amount to bond is delegated (or transferred based on
|
|
6449
|
+
* [`adapter::StakeStrategyType`]) from the member to the pool account and immediately
|
|
6450
|
+
* increases the pool's bond.
|
|
6451
|
+
*
|
|
6452
|
+
* The method of transferring the amount to the pool account is determined by
|
|
6453
|
+
* [`adapter::StakeStrategyType`]. If the pool is configured to use
|
|
6454
|
+
* [`adapter::StakeStrategyType::Delegate`], the funds remain in the account of
|
|
6455
|
+
* the `origin`, while the pool gains the right to use these funds for staking.
|
|
6414
6456
|
*
|
|
6415
6457
|
* # Note
|
|
6416
6458
|
*
|
|
@@ -6736,8 +6778,10 @@ export type PalletNominationPoolsCallLike =
|
|
|
6736
6778
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
6737
6779
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
6738
6780
|
*
|
|
6739
|
-
*
|
|
6740
|
-
*
|
|
6781
|
+
* The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
|
|
6782
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the execution
|
|
6783
|
+
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
6784
|
+
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
6741
6785
|
**/
|
|
6742
6786
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddressLike } }
|
|
6743
6787
|
/**
|
|
@@ -7099,11 +7143,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
7099
7143
|
/**
|
|
7100
7144
|
* Set the asynchronous backing parameters.
|
|
7101
7145
|
**/
|
|
7102
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
7146
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams } }
|
|
7103
7147
|
/**
|
|
7104
7148
|
* Set PVF executor parameters.
|
|
7105
7149
|
**/
|
|
7106
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
7150
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV8ExecutorParams } }
|
|
7107
7151
|
/**
|
|
7108
7152
|
* Set the on demand (parathreads) base fee.
|
|
7109
7153
|
**/
|
|
@@ -7135,11 +7179,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
7135
7179
|
/**
|
|
7136
7180
|
* Set approval-voting-params.
|
|
7137
7181
|
**/
|
|
7138
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
7182
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV8ApprovalVotingParams } }
|
|
7139
7183
|
/**
|
|
7140
7184
|
* Set scheduler-params.
|
|
7141
7185
|
**/
|
|
7142
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
7186
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV8SchedulerParams } };
|
|
7143
7187
|
|
|
7144
7188
|
export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
7145
7189
|
/**
|
|
@@ -7303,11 +7347,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
7303
7347
|
/**
|
|
7304
7348
|
* Set the asynchronous backing parameters.
|
|
7305
7349
|
**/
|
|
7306
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
7350
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams } }
|
|
7307
7351
|
/**
|
|
7308
7352
|
* Set PVF executor parameters.
|
|
7309
7353
|
**/
|
|
7310
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
7354
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV8ExecutorParams } }
|
|
7311
7355
|
/**
|
|
7312
7356
|
* Set the on demand (parathreads) base fee.
|
|
7313
7357
|
**/
|
|
@@ -7339,35 +7383,35 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
7339
7383
|
/**
|
|
7340
7384
|
* Set approval-voting-params.
|
|
7341
7385
|
**/
|
|
7342
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
7386
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV8ApprovalVotingParams } }
|
|
7343
7387
|
/**
|
|
7344
7388
|
* Set scheduler-params.
|
|
7345
7389
|
**/
|
|
7346
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
7390
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV8SchedulerParams } };
|
|
7347
7391
|
|
|
7348
|
-
export type
|
|
7392
|
+
export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
|
|
7349
7393
|
maxCandidateDepth: number;
|
|
7350
7394
|
allowedAncestryLen: number;
|
|
7351
7395
|
};
|
|
7352
7396
|
|
|
7353
|
-
export type
|
|
7397
|
+
export type PolkadotPrimitivesV8ExecutorParams = Array<PolkadotPrimitivesV8ExecutorParamsExecutorParam>;
|
|
7354
7398
|
|
|
7355
|
-
export type
|
|
7399
|
+
export type PolkadotPrimitivesV8ExecutorParamsExecutorParam =
|
|
7356
7400
|
| { type: 'MaxMemoryPages'; value: number }
|
|
7357
7401
|
| { type: 'StackLogicalMax'; value: number }
|
|
7358
7402
|
| { type: 'StackNativeMax'; value: number }
|
|
7359
7403
|
| { type: 'PrecheckingMaxMemory'; value: bigint }
|
|
7360
|
-
| { type: 'PvfPrepTimeout'; value: [
|
|
7361
|
-
| { type: 'PvfExecTimeout'; value: [
|
|
7404
|
+
| { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV8PvfPrepKind, bigint] }
|
|
7405
|
+
| { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV8PvfExecKind, bigint] }
|
|
7362
7406
|
| { type: 'WasmExtBulkMemory' };
|
|
7363
7407
|
|
|
7364
|
-
export type
|
|
7408
|
+
export type PolkadotPrimitivesV8PvfPrepKind = 'Precheck' | 'Prepare';
|
|
7365
7409
|
|
|
7366
|
-
export type
|
|
7410
|
+
export type PolkadotPrimitivesV8PvfExecKind = 'Backing' | 'Approval';
|
|
7367
7411
|
|
|
7368
|
-
export type
|
|
7412
|
+
export type PolkadotPrimitivesV8ApprovalVotingParams = { maxApprovalCoalesceCount: number };
|
|
7369
7413
|
|
|
7370
|
-
export type
|
|
7414
|
+
export type PolkadotPrimitivesV8SchedulerParams = {
|
|
7371
7415
|
groupRotationFrequency: number;
|
|
7372
7416
|
parasAvailabilityPeriod: number;
|
|
7373
7417
|
maxValidatorsPerCore?: number | undefined;
|
|
@@ -7402,65 +7446,65 @@ export type PolkadotRuntimeParachainsParasInherentPalletCall =
|
|
|
7402
7446
|
/**
|
|
7403
7447
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
7404
7448
|
**/
|
|
7405
|
-
{ name: 'Enter'; params: { data:
|
|
7449
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV8InherentData } };
|
|
7406
7450
|
|
|
7407
7451
|
export type PolkadotRuntimeParachainsParasInherentPalletCallLike =
|
|
7408
7452
|
/**
|
|
7409
7453
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
7410
7454
|
**/
|
|
7411
|
-
{ name: 'Enter'; params: { data:
|
|
7455
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV8InherentData } };
|
|
7412
7456
|
|
|
7413
|
-
export type
|
|
7414
|
-
bitfields: Array<
|
|
7415
|
-
backedCandidates: Array<
|
|
7416
|
-
disputes: Array<
|
|
7457
|
+
export type PolkadotPrimitivesV8InherentData = {
|
|
7458
|
+
bitfields: Array<PolkadotPrimitivesV8SignedUncheckedSigned>;
|
|
7459
|
+
backedCandidates: Array<PolkadotPrimitivesV8BackedCandidate>;
|
|
7460
|
+
disputes: Array<PolkadotPrimitivesV8DisputeStatementSet>;
|
|
7417
7461
|
parentHeader: Header;
|
|
7418
7462
|
};
|
|
7419
7463
|
|
|
7420
|
-
export type
|
|
7421
|
-
payload:
|
|
7422
|
-
validatorIndex:
|
|
7423
|
-
signature:
|
|
7464
|
+
export type PolkadotPrimitivesV8SignedUncheckedSigned = {
|
|
7465
|
+
payload: PolkadotPrimitivesV8AvailabilityBitfield;
|
|
7466
|
+
validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
|
|
7467
|
+
signature: PolkadotPrimitivesV8ValidatorAppSignature;
|
|
7424
7468
|
};
|
|
7425
7469
|
|
|
7426
|
-
export type
|
|
7470
|
+
export type PolkadotPrimitivesV8AvailabilityBitfield = BitSequence;
|
|
7427
7471
|
|
|
7428
7472
|
export type BitvecOrderLsb0 = {};
|
|
7429
7473
|
|
|
7430
|
-
export type
|
|
7474
|
+
export type PolkadotPrimitivesV8ValidatorIndex = number;
|
|
7431
7475
|
|
|
7432
|
-
export type
|
|
7476
|
+
export type PolkadotPrimitivesV8ValidatorAppSignature = FixedBytes<64>;
|
|
7433
7477
|
|
|
7434
|
-
export type
|
|
7435
|
-
candidate:
|
|
7436
|
-
validityVotes: Array<
|
|
7478
|
+
export type PolkadotPrimitivesV8BackedCandidate = {
|
|
7479
|
+
candidate: PolkadotPrimitivesV8CommittedCandidateReceipt;
|
|
7480
|
+
validityVotes: Array<PolkadotPrimitivesV8ValidityAttestation>;
|
|
7437
7481
|
validatorIndices: BitSequence;
|
|
7438
7482
|
};
|
|
7439
7483
|
|
|
7440
|
-
export type
|
|
7441
|
-
descriptor:
|
|
7442
|
-
commitments:
|
|
7484
|
+
export type PolkadotPrimitivesV8CommittedCandidateReceipt = {
|
|
7485
|
+
descriptor: PolkadotPrimitivesV8CandidateDescriptor;
|
|
7486
|
+
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
7443
7487
|
};
|
|
7444
7488
|
|
|
7445
|
-
export type
|
|
7489
|
+
export type PolkadotPrimitivesV8CandidateDescriptor = {
|
|
7446
7490
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
7447
7491
|
relayParent: H256;
|
|
7448
|
-
collator:
|
|
7492
|
+
collator: PolkadotPrimitivesV8CollatorAppPublic;
|
|
7449
7493
|
persistedValidationDataHash: H256;
|
|
7450
7494
|
povHash: H256;
|
|
7451
7495
|
erasureRoot: H256;
|
|
7452
|
-
signature:
|
|
7496
|
+
signature: PolkadotPrimitivesV8CollatorAppSignature;
|
|
7453
7497
|
paraHead: H256;
|
|
7454
7498
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
7455
7499
|
};
|
|
7456
7500
|
|
|
7457
|
-
export type
|
|
7501
|
+
export type PolkadotPrimitivesV8CollatorAppPublic = FixedBytes<32>;
|
|
7458
7502
|
|
|
7459
|
-
export type
|
|
7503
|
+
export type PolkadotPrimitivesV8CollatorAppSignature = FixedBytes<64>;
|
|
7460
7504
|
|
|
7461
7505
|
export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
|
|
7462
7506
|
|
|
7463
|
-
export type
|
|
7507
|
+
export type PolkadotPrimitivesV8CandidateCommitments = {
|
|
7464
7508
|
upwardMessages: Array<Bytes>;
|
|
7465
7509
|
horizontalMessages: Array<PolkadotCorePrimitivesOutboundHrmpMessage>;
|
|
7466
7510
|
newValidationCode?: PolkadotParachainPrimitivesPrimitivesValidationCode | undefined;
|
|
@@ -7478,36 +7522,36 @@ export type PolkadotParachainPrimitivesPrimitivesValidationCode = Bytes;
|
|
|
7478
7522
|
|
|
7479
7523
|
export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
|
|
7480
7524
|
|
|
7481
|
-
export type
|
|
7482
|
-
| { type: 'Implicit'; value:
|
|
7483
|
-
| { type: 'Explicit'; value:
|
|
7525
|
+
export type PolkadotPrimitivesV8ValidityAttestation =
|
|
7526
|
+
| { type: 'Implicit'; value: PolkadotPrimitivesV8ValidatorAppSignature }
|
|
7527
|
+
| { type: 'Explicit'; value: PolkadotPrimitivesV8ValidatorAppSignature };
|
|
7484
7528
|
|
|
7485
|
-
export type
|
|
7529
|
+
export type PolkadotPrimitivesV8DisputeStatementSet = {
|
|
7486
7530
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
7487
7531
|
session: number;
|
|
7488
7532
|
statements: Array<
|
|
7489
7533
|
[
|
|
7490
|
-
|
|
7491
|
-
|
|
7492
|
-
|
|
7534
|
+
PolkadotPrimitivesV8DisputeStatement,
|
|
7535
|
+
PolkadotPrimitivesV8ValidatorIndex,
|
|
7536
|
+
PolkadotPrimitivesV8ValidatorAppSignature,
|
|
7493
7537
|
]
|
|
7494
7538
|
>;
|
|
7495
7539
|
};
|
|
7496
7540
|
|
|
7497
7541
|
export type PolkadotCorePrimitivesCandidateHash = H256;
|
|
7498
7542
|
|
|
7499
|
-
export type
|
|
7500
|
-
| { type: 'Valid'; value:
|
|
7501
|
-
| { type: 'Invalid'; value:
|
|
7543
|
+
export type PolkadotPrimitivesV8DisputeStatement =
|
|
7544
|
+
| { type: 'Valid'; value: PolkadotPrimitivesV8ValidDisputeStatementKind }
|
|
7545
|
+
| { type: 'Invalid'; value: PolkadotPrimitivesV8InvalidDisputeStatementKind };
|
|
7502
7546
|
|
|
7503
|
-
export type
|
|
7547
|
+
export type PolkadotPrimitivesV8ValidDisputeStatementKind =
|
|
7504
7548
|
| { type: 'Explicit' }
|
|
7505
7549
|
| { type: 'BackingSeconded'; value: H256 }
|
|
7506
7550
|
| { type: 'BackingValid'; value: H256 }
|
|
7507
7551
|
| { type: 'ApprovalChecking' }
|
|
7508
7552
|
| { type: 'ApprovalCheckingMultipleCandidates'; value: Array<PolkadotCorePrimitivesCandidateHash> };
|
|
7509
7553
|
|
|
7510
|
-
export type
|
|
7554
|
+
export type PolkadotPrimitivesV8InvalidDisputeStatementKind = 'Explicit';
|
|
7511
7555
|
|
|
7512
7556
|
/**
|
|
7513
7557
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -7591,7 +7635,7 @@ export type PolkadotRuntimeParachainsParasPalletCall =
|
|
|
7591
7635
|
**/
|
|
7592
7636
|
| {
|
|
7593
7637
|
name: 'IncludePvfCheckStatement';
|
|
7594
|
-
params: { stmt:
|
|
7638
|
+
params: { stmt: PolkadotPrimitivesV8PvfCheckStatement; signature: PolkadotPrimitivesV8ValidatorAppSignature };
|
|
7595
7639
|
}
|
|
7596
7640
|
/**
|
|
7597
7641
|
* Set the storage for the current parachain head data immediately.
|
|
@@ -7677,18 +7721,18 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
|
|
|
7677
7721
|
**/
|
|
7678
7722
|
| {
|
|
7679
7723
|
name: 'IncludePvfCheckStatement';
|
|
7680
|
-
params: { stmt:
|
|
7724
|
+
params: { stmt: PolkadotPrimitivesV8PvfCheckStatement; signature: PolkadotPrimitivesV8ValidatorAppSignature };
|
|
7681
7725
|
}
|
|
7682
7726
|
/**
|
|
7683
7727
|
* Set the storage for the current parachain head data immediately.
|
|
7684
7728
|
**/
|
|
7685
7729
|
| { name: 'ForceSetMostRecentContext'; params: { para: PolkadotParachainPrimitivesPrimitivesId; context: number } };
|
|
7686
7730
|
|
|
7687
|
-
export type
|
|
7731
|
+
export type PolkadotPrimitivesV8PvfCheckStatement = {
|
|
7688
7732
|
accept: boolean;
|
|
7689
7733
|
subject: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
7690
7734
|
sessionIndex: number;
|
|
7691
|
-
validatorIndex:
|
|
7735
|
+
validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
|
|
7692
7736
|
};
|
|
7693
7737
|
|
|
7694
7738
|
/**
|
|
@@ -8022,32 +8066,32 @@ export type PolkadotRuntimeParachainsDisputesPalletCallLike = 'ForceUnfreeze';
|
|
|
8022
8066
|
**/
|
|
8023
8067
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCall = {
|
|
8024
8068
|
name: 'ReportDisputeLostUnsigned';
|
|
8025
|
-
params: { disputeProof:
|
|
8069
|
+
params: { disputeProof: PolkadotPrimitivesV8SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
8026
8070
|
};
|
|
8027
8071
|
|
|
8028
8072
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCallLike = {
|
|
8029
8073
|
name: 'ReportDisputeLostUnsigned';
|
|
8030
|
-
params: { disputeProof:
|
|
8074
|
+
params: { disputeProof: PolkadotPrimitivesV8SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
8031
8075
|
};
|
|
8032
8076
|
|
|
8033
|
-
export type
|
|
8034
|
-
timeSlot:
|
|
8035
|
-
kind:
|
|
8036
|
-
validatorIndex:
|
|
8037
|
-
validatorId:
|
|
8077
|
+
export type PolkadotPrimitivesV8SlashingDisputeProof = {
|
|
8078
|
+
timeSlot: PolkadotPrimitivesV8SlashingDisputesTimeSlot;
|
|
8079
|
+
kind: PolkadotPrimitivesV8SlashingSlashingOffenceKind;
|
|
8080
|
+
validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
|
|
8081
|
+
validatorId: PolkadotPrimitivesV8ValidatorAppPublic;
|
|
8038
8082
|
};
|
|
8039
8083
|
|
|
8040
|
-
export type
|
|
8084
|
+
export type PolkadotPrimitivesV8SlashingDisputesTimeSlot = {
|
|
8041
8085
|
sessionIndex: number;
|
|
8042
8086
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
8043
8087
|
};
|
|
8044
8088
|
|
|
8045
|
-
export type
|
|
8089
|
+
export type PolkadotPrimitivesV8SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
|
|
8046
8090
|
|
|
8047
8091
|
/**
|
|
8048
8092
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
8049
8093
|
**/
|
|
8050
|
-
export type
|
|
8094
|
+
export type PolkadotRuntimeParachainsOnDemandPalletCall =
|
|
8051
8095
|
/**
|
|
8052
8096
|
* Create a single on demand core order.
|
|
8053
8097
|
* Will use the spot price for the current block and will reap the account if needed.
|
|
@@ -8085,7 +8129,7 @@ export type PolkadotRuntimeParachainsAssignerOnDemandPalletCall =
|
|
|
8085
8129
|
**/
|
|
8086
8130
|
| { name: 'PlaceOrderKeepAlive'; params: { maxAmount: bigint; paraId: PolkadotParachainPrimitivesPrimitivesId } };
|
|
8087
8131
|
|
|
8088
|
-
export type
|
|
8132
|
+
export type PolkadotRuntimeParachainsOnDemandPalletCallLike =
|
|
8089
8133
|
/**
|
|
8090
8134
|
* Create a single on demand core order.
|
|
8091
8135
|
* Will use the spot price for the current block and will reap the account if needed.
|
|
@@ -10315,7 +10359,7 @@ export type PalletBeefyCall =
|
|
|
10315
10359
|
* will be reported.
|
|
10316
10360
|
**/
|
|
10317
10361
|
| {
|
|
10318
|
-
name: '
|
|
10362
|
+
name: 'ReportDoubleVoting';
|
|
10319
10363
|
params: { equivocationProof: SpConsensusBeefyDoubleVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10320
10364
|
}
|
|
10321
10365
|
/**
|
|
@@ -10330,7 +10374,7 @@ export type PalletBeefyCall =
|
|
|
10330
10374
|
* reporter.
|
|
10331
10375
|
**/
|
|
10332
10376
|
| {
|
|
10333
|
-
name: '
|
|
10377
|
+
name: 'ReportDoubleVotingUnsigned';
|
|
10334
10378
|
params: { equivocationProof: SpConsensusBeefyDoubleVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10335
10379
|
}
|
|
10336
10380
|
/**
|
|
@@ -10339,7 +10383,53 @@ export type PalletBeefyCall =
|
|
|
10339
10383
|
*
|
|
10340
10384
|
* Note: `delay_in_blocks` has to be at least 1.
|
|
10341
10385
|
**/
|
|
10342
|
-
| { name: 'SetNewGenesis'; params: { delayInBlocks: number } }
|
|
10386
|
+
| { name: 'SetNewGenesis'; params: { delayInBlocks: number } }
|
|
10387
|
+
/**
|
|
10388
|
+
* Report fork voting equivocation. This method will verify the equivocation proof
|
|
10389
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10390
|
+
* If both are valid, the offence will be reported.
|
|
10391
|
+
**/
|
|
10392
|
+
| {
|
|
10393
|
+
name: 'ReportForkVoting';
|
|
10394
|
+
params: { equivocationProof: SpConsensusBeefyForkVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10395
|
+
}
|
|
10396
|
+
/**
|
|
10397
|
+
* Report fork voting equivocation. This method will verify the equivocation proof
|
|
10398
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10399
|
+
* If both are valid, the offence will be reported.
|
|
10400
|
+
*
|
|
10401
|
+
* This extrinsic must be called unsigned and it is expected that only
|
|
10402
|
+
* block authors will call it (validated in `ValidateUnsigned`), as such
|
|
10403
|
+
* if the block author is defined it will be defined as the equivocation
|
|
10404
|
+
* reporter.
|
|
10405
|
+
**/
|
|
10406
|
+
| {
|
|
10407
|
+
name: 'ReportForkVotingUnsigned';
|
|
10408
|
+
params: { equivocationProof: SpConsensusBeefyForkVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10409
|
+
}
|
|
10410
|
+
/**
|
|
10411
|
+
* Report future block voting equivocation. This method will verify the equivocation proof
|
|
10412
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10413
|
+
* If both are valid, the offence will be reported.
|
|
10414
|
+
**/
|
|
10415
|
+
| {
|
|
10416
|
+
name: 'ReportFutureBlockVoting';
|
|
10417
|
+
params: { equivocationProof: SpConsensusBeefyFutureBlockVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10418
|
+
}
|
|
10419
|
+
/**
|
|
10420
|
+
* Report future block voting equivocation. This method will verify the equivocation proof
|
|
10421
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10422
|
+
* If both are valid, the offence will be reported.
|
|
10423
|
+
*
|
|
10424
|
+
* This extrinsic must be called unsigned and it is expected that only
|
|
10425
|
+
* block authors will call it (validated in `ValidateUnsigned`), as such
|
|
10426
|
+
* if the block author is defined it will be defined as the equivocation
|
|
10427
|
+
* reporter.
|
|
10428
|
+
**/
|
|
10429
|
+
| {
|
|
10430
|
+
name: 'ReportFutureBlockVotingUnsigned';
|
|
10431
|
+
params: { equivocationProof: SpConsensusBeefyFutureBlockVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10432
|
+
};
|
|
10343
10433
|
|
|
10344
10434
|
export type PalletBeefyCallLike =
|
|
10345
10435
|
/**
|
|
@@ -10349,7 +10439,7 @@ export type PalletBeefyCallLike =
|
|
|
10349
10439
|
* will be reported.
|
|
10350
10440
|
**/
|
|
10351
10441
|
| {
|
|
10352
|
-
name: '
|
|
10442
|
+
name: 'ReportDoubleVoting';
|
|
10353
10443
|
params: { equivocationProof: SpConsensusBeefyDoubleVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10354
10444
|
}
|
|
10355
10445
|
/**
|
|
@@ -10364,7 +10454,7 @@ export type PalletBeefyCallLike =
|
|
|
10364
10454
|
* reporter.
|
|
10365
10455
|
**/
|
|
10366
10456
|
| {
|
|
10367
|
-
name: '
|
|
10457
|
+
name: 'ReportDoubleVotingUnsigned';
|
|
10368
10458
|
params: { equivocationProof: SpConsensusBeefyDoubleVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10369
10459
|
}
|
|
10370
10460
|
/**
|
|
@@ -10373,7 +10463,53 @@ export type PalletBeefyCallLike =
|
|
|
10373
10463
|
*
|
|
10374
10464
|
* Note: `delay_in_blocks` has to be at least 1.
|
|
10375
10465
|
**/
|
|
10376
|
-
| { name: 'SetNewGenesis'; params: { delayInBlocks: number } }
|
|
10466
|
+
| { name: 'SetNewGenesis'; params: { delayInBlocks: number } }
|
|
10467
|
+
/**
|
|
10468
|
+
* Report fork voting equivocation. This method will verify the equivocation proof
|
|
10469
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10470
|
+
* If both are valid, the offence will be reported.
|
|
10471
|
+
**/
|
|
10472
|
+
| {
|
|
10473
|
+
name: 'ReportForkVoting';
|
|
10474
|
+
params: { equivocationProof: SpConsensusBeefyForkVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10475
|
+
}
|
|
10476
|
+
/**
|
|
10477
|
+
* Report fork voting equivocation. This method will verify the equivocation proof
|
|
10478
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10479
|
+
* If both are valid, the offence will be reported.
|
|
10480
|
+
*
|
|
10481
|
+
* This extrinsic must be called unsigned and it is expected that only
|
|
10482
|
+
* block authors will call it (validated in `ValidateUnsigned`), as such
|
|
10483
|
+
* if the block author is defined it will be defined as the equivocation
|
|
10484
|
+
* reporter.
|
|
10485
|
+
**/
|
|
10486
|
+
| {
|
|
10487
|
+
name: 'ReportForkVotingUnsigned';
|
|
10488
|
+
params: { equivocationProof: SpConsensusBeefyForkVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10489
|
+
}
|
|
10490
|
+
/**
|
|
10491
|
+
* Report future block voting equivocation. This method will verify the equivocation proof
|
|
10492
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10493
|
+
* If both are valid, the offence will be reported.
|
|
10494
|
+
**/
|
|
10495
|
+
| {
|
|
10496
|
+
name: 'ReportFutureBlockVoting';
|
|
10497
|
+
params: { equivocationProof: SpConsensusBeefyFutureBlockVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10498
|
+
}
|
|
10499
|
+
/**
|
|
10500
|
+
* Report future block voting equivocation. This method will verify the equivocation proof
|
|
10501
|
+
* and validate the given key ownership proof against the extracted offender.
|
|
10502
|
+
* If both are valid, the offence will be reported.
|
|
10503
|
+
*
|
|
10504
|
+
* This extrinsic must be called unsigned and it is expected that only
|
|
10505
|
+
* block authors will call it (validated in `ValidateUnsigned`), as such
|
|
10506
|
+
* if the block author is defined it will be defined as the equivocation
|
|
10507
|
+
* reporter.
|
|
10508
|
+
**/
|
|
10509
|
+
| {
|
|
10510
|
+
name: 'ReportFutureBlockVotingUnsigned';
|
|
10511
|
+
params: { equivocationProof: SpConsensusBeefyFutureBlockVotingProof; keyOwnerProof: SpSessionMembershipProof };
|
|
10512
|
+
};
|
|
10377
10513
|
|
|
10378
10514
|
export type SpConsensusBeefyDoubleVotingProof = {
|
|
10379
10515
|
first: SpConsensusBeefyVoteMessage;
|
|
@@ -10396,6 +10532,21 @@ export type SpConsensusBeefyCommitment = {
|
|
|
10396
10532
|
|
|
10397
10533
|
export type SpConsensusBeefyPayload = Array<[FixedBytes<2>, Bytes]>;
|
|
10398
10534
|
|
|
10535
|
+
export type SpConsensusBeefyForkVotingProof = {
|
|
10536
|
+
vote: SpConsensusBeefyVoteMessage;
|
|
10537
|
+
ancestryProof: SpMmrPrimitivesAncestryProof;
|
|
10538
|
+
header: Header;
|
|
10539
|
+
};
|
|
10540
|
+
|
|
10541
|
+
export type SpMmrPrimitivesAncestryProof = {
|
|
10542
|
+
prevPeaks: Array<H256>;
|
|
10543
|
+
prevLeafCount: bigint;
|
|
10544
|
+
leafCount: bigint;
|
|
10545
|
+
items: Array<[bigint, H256]>;
|
|
10546
|
+
};
|
|
10547
|
+
|
|
10548
|
+
export type SpConsensusBeefyFutureBlockVotingProof = { vote: SpConsensusBeefyVoteMessage };
|
|
10549
|
+
|
|
10399
10550
|
/**
|
|
10400
10551
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
10401
10552
|
**/
|
|
@@ -10978,8 +11129,10 @@ export type PalletNominationPoolsEvent =
|
|
|
10978
11129
|
* A member has been removed from a pool.
|
|
10979
11130
|
*
|
|
10980
11131
|
* The removal can be voluntary (withdrawn all unbonded funds) or involuntary (kicked).
|
|
11132
|
+
* Any funds that are still delegated (i.e. dangling delegation) are released and are
|
|
11133
|
+
* represented by `released_balance`.
|
|
10981
11134
|
**/
|
|
10982
|
-
| { name: 'MemberRemoved'; data: { poolId: number; member: AccountId32 } }
|
|
11135
|
+
| { name: 'MemberRemoved'; data: { poolId: number; member: AccountId32; releasedBalance: bigint } }
|
|
10983
11136
|
/**
|
|
10984
11137
|
* The roles of a pool have been updated to the given new roles. Note that the depositor
|
|
10985
11138
|
* can never change.
|
|
@@ -11059,6 +11212,27 @@ export type PalletFastUnstakeEvent =
|
|
|
11059
11212
|
**/
|
|
11060
11213
|
| { name: 'InternalError' };
|
|
11061
11214
|
|
|
11215
|
+
/**
|
|
11216
|
+
* The `Event` enum of this pallet
|
|
11217
|
+
**/
|
|
11218
|
+
export type PalletDelegatedStakingEvent =
|
|
11219
|
+
/**
|
|
11220
|
+
* Funds delegated by a delegator.
|
|
11221
|
+
**/
|
|
11222
|
+
| { name: 'Delegated'; data: { agent: AccountId32; delegator: AccountId32; amount: bigint } }
|
|
11223
|
+
/**
|
|
11224
|
+
* Funds released to a delegator.
|
|
11225
|
+
**/
|
|
11226
|
+
| { name: 'Released'; data: { agent: AccountId32; delegator: AccountId32; amount: bigint } }
|
|
11227
|
+
/**
|
|
11228
|
+
* Funds slashed from a delegator.
|
|
11229
|
+
**/
|
|
11230
|
+
| { name: 'Slashed'; data: { agent: AccountId32; delegator: AccountId32; amount: bigint } }
|
|
11231
|
+
/**
|
|
11232
|
+
* Unclaimed delegation funds migrated to delegator.
|
|
11233
|
+
**/
|
|
11234
|
+
| { name: 'MigratedDelegation'; data: { agent: AccountId32; delegator: AccountId32; amount: bigint } };
|
|
11235
|
+
|
|
11062
11236
|
/**
|
|
11063
11237
|
* The `Event` enum of this pallet
|
|
11064
11238
|
**/
|
|
@@ -11069,10 +11243,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
11069
11243
|
| {
|
|
11070
11244
|
name: 'CandidateBacked';
|
|
11071
11245
|
data: [
|
|
11072
|
-
|
|
11246
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
11073
11247
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
11074
|
-
|
|
11075
|
-
|
|
11248
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
11249
|
+
PolkadotPrimitivesV8GroupIndex,
|
|
11076
11250
|
];
|
|
11077
11251
|
}
|
|
11078
11252
|
/**
|
|
@@ -11081,10 +11255,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
11081
11255
|
| {
|
|
11082
11256
|
name: 'CandidateIncluded';
|
|
11083
11257
|
data: [
|
|
11084
|
-
|
|
11258
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
11085
11259
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
11086
|
-
|
|
11087
|
-
|
|
11260
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
11261
|
+
PolkadotPrimitivesV8GroupIndex,
|
|
11088
11262
|
];
|
|
11089
11263
|
}
|
|
11090
11264
|
/**
|
|
@@ -11093,9 +11267,9 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
11093
11267
|
| {
|
|
11094
11268
|
name: 'CandidateTimedOut';
|
|
11095
11269
|
data: [
|
|
11096
|
-
|
|
11270
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
11097
11271
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
11098
|
-
|
|
11272
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
11099
11273
|
];
|
|
11100
11274
|
}
|
|
11101
11275
|
/**
|
|
@@ -11103,14 +11277,14 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
11103
11277
|
**/
|
|
11104
11278
|
| { name: 'UpwardMessagesReceived'; data: { from: PolkadotParachainPrimitivesPrimitivesId; count: number } };
|
|
11105
11279
|
|
|
11106
|
-
export type
|
|
11107
|
-
descriptor:
|
|
11280
|
+
export type PolkadotPrimitivesV8CandidateReceipt = {
|
|
11281
|
+
descriptor: PolkadotPrimitivesV8CandidateDescriptor;
|
|
11108
11282
|
commitmentsHash: H256;
|
|
11109
11283
|
};
|
|
11110
11284
|
|
|
11111
|
-
export type
|
|
11285
|
+
export type PolkadotPrimitivesV8CoreIndex = number;
|
|
11112
11286
|
|
|
11113
|
-
export type
|
|
11287
|
+
export type PolkadotPrimitivesV8GroupIndex = number;
|
|
11114
11288
|
|
|
11115
11289
|
/**
|
|
11116
11290
|
* The `Event` enum of this pallet
|
|
@@ -11270,7 +11444,7 @@ export type PolkadotRuntimeParachainsDisputesDisputeResult = 'Valid' | 'Invalid'
|
|
|
11270
11444
|
/**
|
|
11271
11445
|
* The `Event` enum of this pallet
|
|
11272
11446
|
**/
|
|
11273
|
-
export type
|
|
11447
|
+
export type PolkadotRuntimeParachainsOnDemandPalletEvent =
|
|
11274
11448
|
/**
|
|
11275
11449
|
* An order was placed at some spot price amount by orderer ordered_by
|
|
11276
11450
|
**/
|
|
@@ -11432,7 +11606,7 @@ export type PolkadotRuntimeParachainsCoretimePalletEvent =
|
|
|
11432
11606
|
/**
|
|
11433
11607
|
* A core has received a new assignment from the broker chain.
|
|
11434
11608
|
**/
|
|
11435
|
-
| { name: 'CoreAssigned'; data: { core:
|
|
11609
|
+
| { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV8CoreIndex } };
|
|
11436
11610
|
|
|
11437
11611
|
/**
|
|
11438
11612
|
* Inner events of this pallet.
|
|
@@ -12018,11 +12192,7 @@ export type PalletPreimageError =
|
|
|
12018
12192
|
/**
|
|
12019
12193
|
* Too few hashes were requested to be upgraded (i.e. zero).
|
|
12020
12194
|
**/
|
|
12021
|
-
| 'TooFew'
|
|
12022
|
-
/**
|
|
12023
|
-
* No ticket with a cost was returned by [`Config::Consideration`] to store the preimage.
|
|
12024
|
-
**/
|
|
12025
|
-
| 'NoCost';
|
|
12195
|
+
| 'TooFew';
|
|
12026
12196
|
|
|
12027
12197
|
export type SpConsensusBabeDigestsPreDigest =
|
|
12028
12198
|
| { type: 'Primary'; value: SpConsensusBabeDigestsPrimaryPreDigest }
|
|
@@ -12103,10 +12273,13 @@ export type FrameSupportTokensMiscIdAmount = { id: PaseoRuntimeRuntimeHoldReason
|
|
|
12103
12273
|
|
|
12104
12274
|
export type PaseoRuntimeRuntimeHoldReason =
|
|
12105
12275
|
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
12276
|
+
| { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
|
|
12106
12277
|
| { type: 'StateTrieMigration'; value: PalletStateTrieMigrationHoldReason };
|
|
12107
12278
|
|
|
12108
12279
|
export type PalletPreimageHoldReason = 'Preimage';
|
|
12109
12280
|
|
|
12281
|
+
export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
|
|
12282
|
+
|
|
12110
12283
|
export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
|
|
12111
12284
|
|
|
12112
12285
|
export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = { id: PaseoRuntimeRuntimeFreezeReason; amount: bigint };
|
|
@@ -12340,7 +12513,12 @@ export type PalletStakingPalletError =
|
|
|
12340
12513
|
/**
|
|
12341
12514
|
* Operation not allowed for virtual stakers.
|
|
12342
12515
|
**/
|
|
12343
|
-
| 'VirtualStakerNotAllowed'
|
|
12516
|
+
| 'VirtualStakerNotAllowed'
|
|
12517
|
+
/**
|
|
12518
|
+
* Account is restricted from participation in staking. This may happen if the account is
|
|
12519
|
+
* staking in another way already, such as via pool.
|
|
12520
|
+
**/
|
|
12521
|
+
| 'Restricted';
|
|
12344
12522
|
|
|
12345
12523
|
export type SpStakingOffenceOffenceDetails = {
|
|
12346
12524
|
offender: [AccountId32, SpStakingExposure];
|
|
@@ -13262,6 +13440,10 @@ export type PalletNominationPoolsError =
|
|
|
13262
13440
|
* No slash pending that can be applied to the member.
|
|
13263
13441
|
**/
|
|
13264
13442
|
| { name: 'NothingToSlash' }
|
|
13443
|
+
/**
|
|
13444
|
+
* The slash amount is too low to be applied.
|
|
13445
|
+
**/
|
|
13446
|
+
| { name: 'SlashTooLow' }
|
|
13265
13447
|
/**
|
|
13266
13448
|
* The pool or member delegation has already migrated to delegate stake.
|
|
13267
13449
|
**/
|
|
@@ -13273,7 +13455,12 @@ export type PalletNominationPoolsError =
|
|
|
13273
13455
|
/**
|
|
13274
13456
|
* This call is not allowed in the current state of the pallet.
|
|
13275
13457
|
**/
|
|
13276
|
-
| { name: 'NotSupported' }
|
|
13458
|
+
| { name: 'NotSupported' }
|
|
13459
|
+
/**
|
|
13460
|
+
* Account is restricted from participation in pools. This may happen if the account is
|
|
13461
|
+
* staking in another way already.
|
|
13462
|
+
**/
|
|
13463
|
+
| { name: 'Restricted' };
|
|
13277
13464
|
|
|
13278
13465
|
export type PalletNominationPoolsDefensiveError =
|
|
13279
13466
|
| 'NotEnoughSpaceInUnbondPool'
|
|
@@ -13317,6 +13504,72 @@ export type PalletFastUnstakeError =
|
|
|
13317
13504
|
**/
|
|
13318
13505
|
| 'CallNotAllowed';
|
|
13319
13506
|
|
|
13507
|
+
export type PalletDelegatedStakingDelegation = { agent: AccountId32; amount: bigint };
|
|
13508
|
+
|
|
13509
|
+
export type PalletDelegatedStakingAgentLedger = {
|
|
13510
|
+
payee: AccountId32;
|
|
13511
|
+
totalDelegated: bigint;
|
|
13512
|
+
unclaimedWithdrawals: bigint;
|
|
13513
|
+
pendingSlash: bigint;
|
|
13514
|
+
};
|
|
13515
|
+
|
|
13516
|
+
/**
|
|
13517
|
+
* The `Error` enum of this pallet.
|
|
13518
|
+
**/
|
|
13519
|
+
export type PalletDelegatedStakingError =
|
|
13520
|
+
/**
|
|
13521
|
+
* The account cannot perform this operation.
|
|
13522
|
+
**/
|
|
13523
|
+
| 'NotAllowed'
|
|
13524
|
+
/**
|
|
13525
|
+
* An existing staker cannot perform this action.
|
|
13526
|
+
**/
|
|
13527
|
+
| 'AlreadyStaking'
|
|
13528
|
+
/**
|
|
13529
|
+
* Reward Destination cannot be same as `Agent` account.
|
|
13530
|
+
**/
|
|
13531
|
+
| 'InvalidRewardDestination'
|
|
13532
|
+
/**
|
|
13533
|
+
* Delegation conditions are not met.
|
|
13534
|
+
*
|
|
13535
|
+
* Possible issues are
|
|
13536
|
+
* 1) Cannot delegate to self,
|
|
13537
|
+
* 2) Cannot delegate to multiple delegates.
|
|
13538
|
+
**/
|
|
13539
|
+
| 'InvalidDelegation'
|
|
13540
|
+
/**
|
|
13541
|
+
* The account does not have enough funds to perform the operation.
|
|
13542
|
+
**/
|
|
13543
|
+
| 'NotEnoughFunds'
|
|
13544
|
+
/**
|
|
13545
|
+
* Not an existing `Agent` account.
|
|
13546
|
+
**/
|
|
13547
|
+
| 'NotAgent'
|
|
13548
|
+
/**
|
|
13549
|
+
* Not a Delegator account.
|
|
13550
|
+
**/
|
|
13551
|
+
| 'NotDelegator'
|
|
13552
|
+
/**
|
|
13553
|
+
* Some corruption in internal state.
|
|
13554
|
+
**/
|
|
13555
|
+
| 'BadState'
|
|
13556
|
+
/**
|
|
13557
|
+
* Unapplied pending slash restricts operation on `Agent`.
|
|
13558
|
+
**/
|
|
13559
|
+
| 'UnappliedSlash'
|
|
13560
|
+
/**
|
|
13561
|
+
* `Agent` has no pending slash to be applied.
|
|
13562
|
+
**/
|
|
13563
|
+
| 'NothingToSlash'
|
|
13564
|
+
/**
|
|
13565
|
+
* Failed to withdraw amount from Core Staking.
|
|
13566
|
+
**/
|
|
13567
|
+
| 'WithdrawFailed'
|
|
13568
|
+
/**
|
|
13569
|
+
* Operation not supported by this pallet.
|
|
13570
|
+
**/
|
|
13571
|
+
| 'NotSupported';
|
|
13572
|
+
|
|
13320
13573
|
export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
13321
13574
|
maxCodeSize: number;
|
|
13322
13575
|
maxHeadDataSize: number;
|
|
@@ -13327,7 +13580,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
13327
13580
|
hrmpMaxMessageNumPerCandidate: number;
|
|
13328
13581
|
validationUpgradeCooldown: number;
|
|
13329
13582
|
validationUpgradeDelay: number;
|
|
13330
|
-
asyncBackingParams:
|
|
13583
|
+
asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
|
|
13331
13584
|
maxPovSize: number;
|
|
13332
13585
|
maxDownwardMessageSize: number;
|
|
13333
13586
|
hrmpMaxParachainOutboundChannels: number;
|
|
@@ -13337,7 +13590,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
13337
13590
|
hrmpChannelMaxTotalSize: number;
|
|
13338
13591
|
hrmpMaxParachainInboundChannels: number;
|
|
13339
13592
|
hrmpChannelMaxMessageSize: number;
|
|
13340
|
-
executorParams:
|
|
13593
|
+
executorParams: PolkadotPrimitivesV8ExecutorParams;
|
|
13341
13594
|
codeRetentionPeriod: number;
|
|
13342
13595
|
maxValidators?: number | undefined;
|
|
13343
13596
|
disputePeriod: number;
|
|
@@ -13351,8 +13604,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
13351
13604
|
minimumValidationUpgradeDelay: number;
|
|
13352
13605
|
minimumBackingVotes: number;
|
|
13353
13606
|
nodeFeatures: BitSequence;
|
|
13354
|
-
approvalVotingParams:
|
|
13355
|
-
schedulerParams:
|
|
13607
|
+
approvalVotingParams: PolkadotPrimitivesV8ApprovalVotingParams;
|
|
13608
|
+
schedulerParams: PolkadotPrimitivesV8SchedulerParams;
|
|
13356
13609
|
};
|
|
13357
13610
|
|
|
13358
13611
|
/**
|
|
@@ -13370,15 +13623,15 @@ export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
|
|
|
13370
13623
|
};
|
|
13371
13624
|
|
|
13372
13625
|
export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
|
|
13373
|
-
core:
|
|
13626
|
+
core: PolkadotPrimitivesV8CoreIndex;
|
|
13374
13627
|
hash: PolkadotCorePrimitivesCandidateHash;
|
|
13375
|
-
descriptor:
|
|
13376
|
-
commitments:
|
|
13628
|
+
descriptor: PolkadotPrimitivesV8CandidateDescriptor;
|
|
13629
|
+
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
13377
13630
|
availabilityVotes: BitSequence;
|
|
13378
13631
|
backers: BitSequence;
|
|
13379
13632
|
relayParentNumber: number;
|
|
13380
13633
|
backedInNumber: number;
|
|
13381
|
-
backingGroup:
|
|
13634
|
+
backingGroup: PolkadotPrimitivesV8GroupIndex;
|
|
13382
13635
|
};
|
|
13383
13636
|
|
|
13384
13637
|
/**
|
|
@@ -13427,10 +13680,6 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
|
|
|
13427
13680
|
* Invalid (bad signature, unknown validator, etc.) backing.
|
|
13428
13681
|
**/
|
|
13429
13682
|
| 'InvalidBacking'
|
|
13430
|
-
/**
|
|
13431
|
-
* Collator did not sign PoV.
|
|
13432
|
-
**/
|
|
13433
|
-
| 'NotCollatorSigned'
|
|
13434
13683
|
/**
|
|
13435
13684
|
* The validation data hash does not match expected.
|
|
13436
13685
|
**/
|
|
@@ -13461,15 +13710,15 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
|
|
|
13461
13710
|
**/
|
|
13462
13711
|
| 'ParaHeadMismatch';
|
|
13463
13712
|
|
|
13464
|
-
export type
|
|
13713
|
+
export type PolkadotPrimitivesV8ScrapedOnChainVotes = {
|
|
13465
13714
|
session: number;
|
|
13466
13715
|
backingValidatorsPerCandidate: Array<
|
|
13467
13716
|
[
|
|
13468
|
-
|
|
13469
|
-
Array<[
|
|
13717
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
13718
|
+
Array<[PolkadotPrimitivesV8ValidatorIndex, PolkadotPrimitivesV8ValidityAttestation]>,
|
|
13470
13719
|
]
|
|
13471
13720
|
>;
|
|
13472
|
-
disputes: Array<
|
|
13721
|
+
disputes: Array<PolkadotPrimitivesV8DisputeStatementSet>;
|
|
13473
13722
|
};
|
|
13474
13723
|
|
|
13475
13724
|
/**
|
|
@@ -13512,7 +13761,7 @@ export type PolkadotRuntimeParachainsSchedulerPalletParasEntry = {
|
|
|
13512
13761
|
export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
|
|
13513
13762
|
| {
|
|
13514
13763
|
type: 'Pool';
|
|
13515
|
-
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex:
|
|
13764
|
+
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV8CoreIndex };
|
|
13516
13765
|
}
|
|
13517
13766
|
| { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
|
|
13518
13767
|
|
|
@@ -13553,9 +13802,9 @@ export type PolkadotRuntimeParachainsParasParaPastCodeMeta = {
|
|
|
13553
13802
|
|
|
13554
13803
|
export type PolkadotRuntimeParachainsParasReplacementTimes = { expectedAt: number; activatedAt: number };
|
|
13555
13804
|
|
|
13556
|
-
export type
|
|
13805
|
+
export type PolkadotPrimitivesV8UpgradeGoAhead = 'Abort' | 'GoAhead';
|
|
13557
13806
|
|
|
13558
|
-
export type
|
|
13807
|
+
export type PolkadotPrimitivesV8UpgradeRestriction = 'Present';
|
|
13559
13808
|
|
|
13560
13809
|
/**
|
|
13561
13810
|
* The `Error` enum of this pallet.
|
|
@@ -13615,8 +13864,8 @@ export type PolkadotRuntimeParachainsParasPalletError =
|
|
|
13615
13864
|
| 'InvalidCode';
|
|
13616
13865
|
|
|
13617
13866
|
export type PolkadotRuntimeParachainsInitializerBufferedSessionChange = {
|
|
13618
|
-
validators: Array<
|
|
13619
|
-
queued: Array<
|
|
13867
|
+
validators: Array<PolkadotPrimitivesV8ValidatorAppPublic>;
|
|
13868
|
+
queued: Array<PolkadotPrimitivesV8ValidatorAppPublic>;
|
|
13620
13869
|
sessionIndex: number;
|
|
13621
13870
|
};
|
|
13622
13871
|
|
|
@@ -13729,14 +13978,14 @@ export type PolkadotRuntimeParachainsHrmpPalletError =
|
|
|
13729
13978
|
**/
|
|
13730
13979
|
| 'ChannelCreationNotAuthorized';
|
|
13731
13980
|
|
|
13732
|
-
export type
|
|
13733
|
-
activeValidatorIndices: Array<
|
|
13981
|
+
export type PolkadotPrimitivesV8SessionInfo = {
|
|
13982
|
+
activeValidatorIndices: Array<PolkadotPrimitivesV8ValidatorIndex>;
|
|
13734
13983
|
randomSeed: FixedBytes<32>;
|
|
13735
13984
|
disputePeriod: number;
|
|
13736
|
-
validators:
|
|
13985
|
+
validators: PolkadotPrimitivesV8IndexedVec;
|
|
13737
13986
|
discoveryKeys: Array<SpAuthorityDiscoveryAppPublic>;
|
|
13738
|
-
assignmentKeys: Array<
|
|
13739
|
-
validatorGroups:
|
|
13987
|
+
assignmentKeys: Array<PolkadotPrimitivesV8AssignmentAppPublic>;
|
|
13988
|
+
validatorGroups: PolkadotPrimitivesV8IndexedVecGroupIndex;
|
|
13740
13989
|
nCores: number;
|
|
13741
13990
|
zerothDelayTrancheWidth: number;
|
|
13742
13991
|
relayVrfModuloSamples: number;
|
|
@@ -13745,11 +13994,11 @@ export type PolkadotPrimitivesV7SessionInfo = {
|
|
|
13745
13994
|
neededApprovals: number;
|
|
13746
13995
|
};
|
|
13747
13996
|
|
|
13748
|
-
export type
|
|
13997
|
+
export type PolkadotPrimitivesV8IndexedVec = Array<PolkadotPrimitivesV8ValidatorAppPublic>;
|
|
13749
13998
|
|
|
13750
|
-
export type
|
|
13999
|
+
export type PolkadotPrimitivesV8IndexedVecGroupIndex = Array<Array<PolkadotPrimitivesV8ValidatorIndex>>;
|
|
13751
14000
|
|
|
13752
|
-
export type
|
|
14001
|
+
export type PolkadotPrimitivesV8DisputeState = {
|
|
13753
14002
|
validatorsFor: BitSequence;
|
|
13754
14003
|
validatorsAgainst: BitSequence;
|
|
13755
14004
|
start: number;
|
|
@@ -13797,9 +14046,9 @@ export type PolkadotRuntimeParachainsDisputesPalletError =
|
|
|
13797
14046
|
**/
|
|
13798
14047
|
| 'UnconfirmedDispute';
|
|
13799
14048
|
|
|
13800
|
-
export type
|
|
13801
|
-
keys: Array<[
|
|
13802
|
-
kind:
|
|
14049
|
+
export type PolkadotPrimitivesV8SlashingPendingSlashes = {
|
|
14050
|
+
keys: Array<[PolkadotPrimitivesV8ValidatorIndex, PolkadotPrimitivesV8ValidatorAppPublic]>;
|
|
14051
|
+
kind: PolkadotPrimitivesV8SlashingSlashingOffenceKind;
|
|
13803
14052
|
};
|
|
13804
14053
|
|
|
13805
14054
|
/**
|
|
@@ -13832,35 +14081,35 @@ export type PolkadotRuntimeParachainsDisputesSlashingPalletError =
|
|
|
13832
14081
|
**/
|
|
13833
14082
|
| 'DuplicateSlashingReport';
|
|
13834
14083
|
|
|
13835
|
-
export type
|
|
13836
|
-
coreIndex:
|
|
14084
|
+
export type PolkadotRuntimeParachainsOnDemandTypesCoreAffinityCount = {
|
|
14085
|
+
coreIndex: PolkadotPrimitivesV8CoreIndex;
|
|
13837
14086
|
count: number;
|
|
13838
14087
|
};
|
|
13839
14088
|
|
|
13840
|
-
export type
|
|
14089
|
+
export type PolkadotRuntimeParachainsOnDemandTypesQueueStatusType = {
|
|
13841
14090
|
traffic: FixedU128;
|
|
13842
|
-
nextIndex:
|
|
13843
|
-
smallestIndex:
|
|
14091
|
+
nextIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
|
|
14092
|
+
smallestIndex: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
|
|
13844
14093
|
freedIndices: BinaryHeap;
|
|
13845
14094
|
};
|
|
13846
14095
|
|
|
13847
|
-
export type
|
|
14096
|
+
export type PolkadotRuntimeParachainsOnDemandTypesQueueIndex = number;
|
|
13848
14097
|
|
|
13849
|
-
export type BinaryHeap = Array<
|
|
14098
|
+
export type BinaryHeap = Array<PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex>;
|
|
13850
14099
|
|
|
13851
|
-
export type
|
|
14100
|
+
export type PolkadotRuntimeParachainsOnDemandTypesReverseQueueIndex = number;
|
|
13852
14101
|
|
|
13853
|
-
export type BinaryHeapEnqueuedOrder = Array<
|
|
14102
|
+
export type BinaryHeapEnqueuedOrder = Array<PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder>;
|
|
13854
14103
|
|
|
13855
|
-
export type
|
|
14104
|
+
export type PolkadotRuntimeParachainsOnDemandTypesEnqueuedOrder = {
|
|
13856
14105
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
13857
|
-
idx:
|
|
14106
|
+
idx: PolkadotRuntimeParachainsOnDemandTypesQueueIndex;
|
|
13858
14107
|
};
|
|
13859
14108
|
|
|
13860
14109
|
/**
|
|
13861
14110
|
* The `Error` enum of this pallet.
|
|
13862
14111
|
**/
|
|
13863
|
-
export type
|
|
14112
|
+
export type PolkadotRuntimeParachainsOnDemandPalletError =
|
|
13864
14113
|
/**
|
|
13865
14114
|
* The order queue is full, `place_order` will not continue.
|
|
13866
14115
|
**/
|
|
@@ -14407,9 +14656,21 @@ export type PalletBeefyError =
|
|
|
14407
14656
|
**/
|
|
14408
14657
|
| 'InvalidKeyOwnershipProof'
|
|
14409
14658
|
/**
|
|
14410
|
-
*
|
|
14659
|
+
* A double voting proof provided as part of an equivocation report is invalid.
|
|
14411
14660
|
**/
|
|
14412
|
-
| '
|
|
14661
|
+
| 'InvalidDoubleVotingProof'
|
|
14662
|
+
/**
|
|
14663
|
+
* A fork voting proof provided as part of an equivocation report is invalid.
|
|
14664
|
+
**/
|
|
14665
|
+
| 'InvalidForkVotingProof'
|
|
14666
|
+
/**
|
|
14667
|
+
* A future block voting proof provided as part of an equivocation report is invalid.
|
|
14668
|
+
**/
|
|
14669
|
+
| 'InvalidFutureBlockVotingProof'
|
|
14670
|
+
/**
|
|
14671
|
+
* The session of the equivocation proof is invalid
|
|
14672
|
+
**/
|
|
14673
|
+
| 'InvalidEquivocationProofSession'
|
|
14413
14674
|
/**
|
|
14414
14675
|
* A given equivocation report is valid but already previously reported.
|
|
14415
14676
|
**/
|
|
@@ -14540,78 +14801,78 @@ export type SpRuntimeTransactionValidityValidTransaction = {
|
|
|
14540
14801
|
propagate: boolean;
|
|
14541
14802
|
};
|
|
14542
14803
|
|
|
14543
|
-
export type
|
|
14804
|
+
export type PolkadotPrimitivesV8GroupRotationInfo = {
|
|
14544
14805
|
sessionStartBlock: number;
|
|
14545
14806
|
groupRotationFrequency: number;
|
|
14546
14807
|
now: number;
|
|
14547
14808
|
};
|
|
14548
14809
|
|
|
14549
|
-
export type
|
|
14550
|
-
| { type: 'Occupied'; value:
|
|
14551
|
-
| { type: 'Scheduled'; value:
|
|
14810
|
+
export type PolkadotPrimitivesV8CoreState =
|
|
14811
|
+
| { type: 'Occupied'; value: PolkadotPrimitivesV8OccupiedCore }
|
|
14812
|
+
| { type: 'Scheduled'; value: PolkadotPrimitivesV8ScheduledCore }
|
|
14552
14813
|
| { type: 'Free' };
|
|
14553
14814
|
|
|
14554
|
-
export type
|
|
14555
|
-
nextUpOnAvailable?:
|
|
14815
|
+
export type PolkadotPrimitivesV8OccupiedCore = {
|
|
14816
|
+
nextUpOnAvailable?: PolkadotPrimitivesV8ScheduledCore | undefined;
|
|
14556
14817
|
occupiedSince: number;
|
|
14557
14818
|
timeOutAt: number;
|
|
14558
|
-
nextUpOnTimeOut?:
|
|
14819
|
+
nextUpOnTimeOut?: PolkadotPrimitivesV8ScheduledCore | undefined;
|
|
14559
14820
|
availability: BitSequence;
|
|
14560
|
-
groupResponsible:
|
|
14821
|
+
groupResponsible: PolkadotPrimitivesV8GroupIndex;
|
|
14561
14822
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
14562
|
-
candidateDescriptor:
|
|
14823
|
+
candidateDescriptor: PolkadotPrimitivesV8CandidateDescriptor;
|
|
14563
14824
|
};
|
|
14564
14825
|
|
|
14565
|
-
export type
|
|
14826
|
+
export type PolkadotPrimitivesV8ScheduledCore = {
|
|
14566
14827
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
14567
|
-
collator?:
|
|
14828
|
+
collator?: PolkadotPrimitivesV8CollatorAppPublic | undefined;
|
|
14568
14829
|
};
|
|
14569
14830
|
|
|
14570
|
-
export type
|
|
14831
|
+
export type PolkadotPrimitivesV8OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
|
|
14571
14832
|
|
|
14572
|
-
export type
|
|
14833
|
+
export type PolkadotPrimitivesV8PersistedValidationData = {
|
|
14573
14834
|
parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
14574
14835
|
relayParentNumber: number;
|
|
14575
14836
|
relayParentStorageRoot: H256;
|
|
14576
14837
|
maxPovSize: number;
|
|
14577
14838
|
};
|
|
14578
14839
|
|
|
14579
|
-
export type
|
|
14840
|
+
export type PolkadotPrimitivesV8CandidateEvent =
|
|
14580
14841
|
| {
|
|
14581
14842
|
type: 'CandidateBacked';
|
|
14582
14843
|
value: [
|
|
14583
|
-
|
|
14844
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
14584
14845
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
14585
|
-
|
|
14586
|
-
|
|
14846
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
14847
|
+
PolkadotPrimitivesV8GroupIndex,
|
|
14587
14848
|
];
|
|
14588
14849
|
}
|
|
14589
14850
|
| {
|
|
14590
14851
|
type: 'CandidateIncluded';
|
|
14591
14852
|
value: [
|
|
14592
|
-
|
|
14853
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
14593
14854
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
14594
|
-
|
|
14595
|
-
|
|
14855
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
14856
|
+
PolkadotPrimitivesV8GroupIndex,
|
|
14596
14857
|
];
|
|
14597
14858
|
}
|
|
14598
14859
|
| {
|
|
14599
14860
|
type: 'CandidateTimedOut';
|
|
14600
14861
|
value: [
|
|
14601
|
-
|
|
14862
|
+
PolkadotPrimitivesV8CandidateReceipt,
|
|
14602
14863
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
14603
|
-
|
|
14864
|
+
PolkadotPrimitivesV8CoreIndex,
|
|
14604
14865
|
];
|
|
14605
14866
|
};
|
|
14606
14867
|
|
|
14607
|
-
export type
|
|
14868
|
+
export type PolkadotPrimitivesV8SlashingOpaqueKeyOwnershipProof = Bytes;
|
|
14608
14869
|
|
|
14609
|
-
export type
|
|
14610
|
-
constraints:
|
|
14611
|
-
pendingAvailability: Array<
|
|
14870
|
+
export type PolkadotPrimitivesV8AsyncBackingBackingState = {
|
|
14871
|
+
constraints: PolkadotPrimitivesV8AsyncBackingConstraints;
|
|
14872
|
+
pendingAvailability: Array<PolkadotPrimitivesV8AsyncBackingCandidatePendingAvailability>;
|
|
14612
14873
|
};
|
|
14613
14874
|
|
|
14614
|
-
export type
|
|
14875
|
+
export type PolkadotPrimitivesV8AsyncBackingConstraints = {
|
|
14615
14876
|
minRelayParentNumber: number;
|
|
14616
14877
|
maxPovSize: number;
|
|
14617
14878
|
maxCodeSize: number;
|
|
@@ -14619,28 +14880,28 @@ export type PolkadotPrimitivesV7AsyncBackingConstraints = {
|
|
|
14619
14880
|
umpRemainingBytes: number;
|
|
14620
14881
|
maxUmpNumPerCandidate: number;
|
|
14621
14882
|
dmpRemainingMessages: Array<number>;
|
|
14622
|
-
hrmpInbound:
|
|
14883
|
+
hrmpInbound: PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations;
|
|
14623
14884
|
hrmpChannelsOut: Array<
|
|
14624
|
-
[PolkadotParachainPrimitivesPrimitivesId,
|
|
14885
|
+
[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations]
|
|
14625
14886
|
>;
|
|
14626
14887
|
maxHrmpNumPerCandidate: number;
|
|
14627
14888
|
requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
14628
14889
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
14629
|
-
upgradeRestriction?:
|
|
14890
|
+
upgradeRestriction?: PolkadotPrimitivesV8UpgradeRestriction | undefined;
|
|
14630
14891
|
futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
|
|
14631
14892
|
};
|
|
14632
14893
|
|
|
14633
|
-
export type
|
|
14894
|
+
export type PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations = { validWatermarks: Array<number> };
|
|
14634
14895
|
|
|
14635
|
-
export type
|
|
14896
|
+
export type PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations = {
|
|
14636
14897
|
bytesRemaining: number;
|
|
14637
14898
|
messagesRemaining: number;
|
|
14638
14899
|
};
|
|
14639
14900
|
|
|
14640
|
-
export type
|
|
14901
|
+
export type PolkadotPrimitivesV8AsyncBackingCandidatePendingAvailability = {
|
|
14641
14902
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
14642
|
-
descriptor:
|
|
14643
|
-
commitments:
|
|
14903
|
+
descriptor: PolkadotPrimitivesV8CandidateDescriptor;
|
|
14904
|
+
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
14644
14905
|
relayParentNumber: number;
|
|
14645
14906
|
maxPovSize: number;
|
|
14646
14907
|
};
|
|
@@ -14649,6 +14910,12 @@ export type SpConsensusBeefyValidatorSet = { validators: Array<SpConsensusBeefyE
|
|
|
14649
14910
|
|
|
14650
14911
|
export type SpRuntimeOpaqueValue = Bytes;
|
|
14651
14912
|
|
|
14913
|
+
export type SpConsensusBeefyForkVotingProofOpaqueValue = {
|
|
14914
|
+
vote: SpConsensusBeefyVoteMessage;
|
|
14915
|
+
ancestryProof: SpRuntimeOpaqueValue;
|
|
14916
|
+
header: Header;
|
|
14917
|
+
};
|
|
14918
|
+
|
|
14652
14919
|
export type SpMmrPrimitivesError =
|
|
14653
14920
|
| 'InvalidNumericOp'
|
|
14654
14921
|
| 'Push'
|
|
@@ -14748,6 +15015,7 @@ export type PaseoRuntimeRuntimeError =
|
|
|
14748
15015
|
| { pallet: 'VoterList'; palletError: PalletBagsListError }
|
|
14749
15016
|
| { pallet: 'NominationPools'; palletError: PalletNominationPoolsError }
|
|
14750
15017
|
| { pallet: 'FastUnstake'; palletError: PalletFastUnstakeError }
|
|
15018
|
+
| { pallet: 'DelegatedStaking'; palletError: PalletDelegatedStakingError }
|
|
14751
15019
|
| { pallet: 'Configuration'; palletError: PolkadotRuntimeParachainsConfigurationPalletError }
|
|
14752
15020
|
| { pallet: 'ParaInclusion'; palletError: PolkadotRuntimeParachainsInclusionPalletError }
|
|
14753
15021
|
| { pallet: 'ParaInherent'; palletError: PolkadotRuntimeParachainsParasInherentPalletError }
|
|
@@ -14755,7 +15023,7 @@ export type PaseoRuntimeRuntimeError =
|
|
|
14755
15023
|
| { pallet: 'Hrmp'; palletError: PolkadotRuntimeParachainsHrmpPalletError }
|
|
14756
15024
|
| { pallet: 'ParasDisputes'; palletError: PolkadotRuntimeParachainsDisputesPalletError }
|
|
14757
15025
|
| { pallet: 'ParasSlashing'; palletError: PolkadotRuntimeParachainsDisputesSlashingPalletError }
|
|
14758
|
-
| { pallet: 'OnDemand'; palletError:
|
|
15026
|
+
| { pallet: 'OnDemand'; palletError: PolkadotRuntimeParachainsOnDemandPalletError }
|
|
14759
15027
|
| { pallet: 'CoretimeAssignmentProvider'; palletError: PolkadotRuntimeParachainsAssignerCoretimePalletError }
|
|
14760
15028
|
| { pallet: 'Registrar'; palletError: PolkadotRuntimeCommonParasRegistrarPalletError }
|
|
14761
15029
|
| { pallet: 'Slots'; palletError: PolkadotRuntimeCommonSlotsPalletError }
|