@dedot/chaintypes 0.248.0 → 0.250.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/errors.d.ts +5 -0
- package/paseo/events.d.ts +94 -16
- package/paseo/index.d.ts +1 -1
- package/paseo/json-rpc.d.ts +1 -0
- package/paseo/query.d.ts +85 -46
- package/paseo/runtime.d.ts +90 -79
- package/paseo/tx.d.ts +81 -32
- package/paseo/types.d.ts +278 -209
- package/paseo-asset-hub/consts.d.ts +87 -0
- package/paseo-asset-hub/errors.d.ts +170 -0
- package/paseo-asset-hub/events.d.ts +359 -6
- package/paseo-asset-hub/index.d.ts +3 -1
- package/paseo-asset-hub/json-rpc.d.ts +1 -0
- package/paseo-asset-hub/query.d.ts +261 -17
- package/paseo-asset-hub/runtime.d.ts +11 -6
- package/paseo-asset-hub/tx.d.ts +729 -1
- package/paseo-asset-hub/types.d.ts +1426 -155
- package/paseo-asset-hub/view-functions.d.ts +195 -2
- package/paseo-people/errors.d.ts +5 -0
- package/paseo-people/events.d.ts +78 -2
- package/paseo-people/index.d.ts +1 -1
- package/paseo-people/query.d.ts +44 -16
- package/paseo-people/runtime.d.ts +9 -5
- package/paseo-people/tx.d.ts +30 -0
- package/paseo-people/types.d.ts +107 -25
- package/paseo-people/view-functions.d.ts +46 -1
- package/polkadot-asset-hub/consts.d.ts +87 -0
- package/polkadot-asset-hub/errors.d.ts +170 -0
- package/polkadot-asset-hub/events.d.ts +359 -6
- package/polkadot-asset-hub/index.d.ts +3 -1
- package/polkadot-asset-hub/query.d.ts +261 -17
- package/polkadot-asset-hub/runtime.d.ts +11 -6
- package/polkadot-asset-hub/tx.d.ts +729 -1
- package/polkadot-asset-hub/types.d.ts +1426 -155
- package/polkadot-asset-hub/view-functions.d.ts +195 -2
- package/polkadot-people/consts.d.ts +75 -0
- package/polkadot-people/errors.d.ts +170 -0
- package/polkadot-people/events.d.ts +377 -3
- package/polkadot-people/index.d.ts +5 -4
- package/polkadot-people/query.d.ts +169 -16
- package/polkadot-people/runtime.d.ts +9 -5
- package/polkadot-people/tx.d.ts +1316 -2
- package/polkadot-people/types.d.ts +1857 -182
- package/polkadot-people/view-functions.d.ts +46 -1
package/paseo/types.d.ts
CHANGED
|
@@ -2112,17 +2112,17 @@ export type PalletSessionCallLike =
|
|
|
2112
2112
|
export type PaseoRuntimeSessionKeys = {
|
|
2113
2113
|
grandpa: SpConsensusGrandpaAppPublic;
|
|
2114
2114
|
babe: SpConsensusBabeAppPublic;
|
|
2115
|
-
paraValidator:
|
|
2116
|
-
paraAssignment:
|
|
2115
|
+
paraValidator: PolkadotPrimitivesV9ValidatorAppPublic;
|
|
2116
|
+
paraAssignment: PolkadotPrimitivesV9AssignmentAppPublic;
|
|
2117
2117
|
authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
2118
2118
|
beefy: SpConsensusBeefyEcdsaCryptoPublic;
|
|
2119
2119
|
};
|
|
2120
2120
|
|
|
2121
2121
|
export type SpConsensusGrandpaAppPublic = FixedBytes<32>;
|
|
2122
2122
|
|
|
2123
|
-
export type
|
|
2123
|
+
export type PolkadotPrimitivesV9ValidatorAppPublic = FixedBytes<32>;
|
|
2124
2124
|
|
|
2125
|
-
export type
|
|
2125
|
+
export type PolkadotPrimitivesV9AssignmentAppPublic = FixedBytes<32>;
|
|
2126
2126
|
|
|
2127
2127
|
export type SpAuthorityDiscoveryAppPublic = FixedBytes<32>;
|
|
2128
2128
|
|
|
@@ -6434,7 +6434,24 @@ export type PalletStakingAsyncAhClientCall =
|
|
|
6434
6434
|
/**
|
|
6435
6435
|
* manually do what this pallet was meant to do at the end of the migration.
|
|
6436
6436
|
**/
|
|
6437
|
-
| { name: 'ForceOnMigrationEnd' }
|
|
6437
|
+
| { name: 'ForceOnMigrationEnd' }
|
|
6438
|
+
/**
|
|
6439
|
+
* Set session keys for a validator, forwarded from AssetHub.
|
|
6440
|
+
*
|
|
6441
|
+
* This is called when a validator sets their session keys on AssetHub, which forwards
|
|
6442
|
+
* the request to the RelayChain via XCM.
|
|
6443
|
+
*
|
|
6444
|
+
* AssetHub validates both keys and ownership proof before sending.
|
|
6445
|
+
* RC trusts AH's validation and does not re-validate.
|
|
6446
|
+
**/
|
|
6447
|
+
| { name: 'SetKeysFromAh'; params: { stash: AccountId32; keys: Bytes } }
|
|
6448
|
+
/**
|
|
6449
|
+
* Purge session keys for a validator, forwarded from AssetHub.
|
|
6450
|
+
*
|
|
6451
|
+
* This is called when a validator purges their session keys on AssetHub, which forwards
|
|
6452
|
+
* the request to the RelayChain via XCM.
|
|
6453
|
+
**/
|
|
6454
|
+
| { name: 'PurgeKeysFromAh'; params: { stash: AccountId32 } };
|
|
6438
6455
|
|
|
6439
6456
|
export type PalletStakingAsyncAhClientCallLike =
|
|
6440
6457
|
| { name: 'ValidatorSet'; params: { report: PalletStakingAsyncRcClientValidatorSetReport } }
|
|
@@ -6445,7 +6462,24 @@ export type PalletStakingAsyncAhClientCallLike =
|
|
|
6445
6462
|
/**
|
|
6446
6463
|
* manually do what this pallet was meant to do at the end of the migration.
|
|
6447
6464
|
**/
|
|
6448
|
-
| { name: 'ForceOnMigrationEnd' }
|
|
6465
|
+
| { name: 'ForceOnMigrationEnd' }
|
|
6466
|
+
/**
|
|
6467
|
+
* Set session keys for a validator, forwarded from AssetHub.
|
|
6468
|
+
*
|
|
6469
|
+
* This is called when a validator sets their session keys on AssetHub, which forwards
|
|
6470
|
+
* the request to the RelayChain via XCM.
|
|
6471
|
+
*
|
|
6472
|
+
* AssetHub validates both keys and ownership proof before sending.
|
|
6473
|
+
* RC trusts AH's validation and does not re-validate.
|
|
6474
|
+
**/
|
|
6475
|
+
| { name: 'SetKeysFromAh'; params: { stash: AccountId32Like; keys: BytesLike } }
|
|
6476
|
+
/**
|
|
6477
|
+
* Purge session keys for a validator, forwarded from AssetHub.
|
|
6478
|
+
*
|
|
6479
|
+
* This is called when a validator purges their session keys on AssetHub, which forwards
|
|
6480
|
+
* the request to the RelayChain via XCM.
|
|
6481
|
+
**/
|
|
6482
|
+
| { name: 'PurgeKeysFromAh'; params: { stash: AccountId32Like } };
|
|
6449
6483
|
|
|
6450
6484
|
export type PalletStakingAsyncRcClientValidatorSetReport = {
|
|
6451
6485
|
newValidatorSet: Array<AccountId32>;
|
|
@@ -6617,11 +6651,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
6617
6651
|
/**
|
|
6618
6652
|
* Set the asynchronous backing parameters.
|
|
6619
6653
|
**/
|
|
6620
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
6654
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams } }
|
|
6621
6655
|
/**
|
|
6622
6656
|
* Set PVF executor parameters.
|
|
6623
6657
|
**/
|
|
6624
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
6658
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV9ExecutorParams } }
|
|
6625
6659
|
/**
|
|
6626
6660
|
* Set the on demand (parathreads) base fee.
|
|
6627
6661
|
**/
|
|
@@ -6649,11 +6683,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
6649
6683
|
/**
|
|
6650
6684
|
* Set approval-voting-params.
|
|
6651
6685
|
**/
|
|
6652
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
6686
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV9ApprovalVotingParams } }
|
|
6653
6687
|
/**
|
|
6654
6688
|
* Set scheduler-params.
|
|
6655
6689
|
**/
|
|
6656
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
6690
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
|
|
6657
6691
|
|
|
6658
6692
|
export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
6659
6693
|
/**
|
|
@@ -6813,11 +6847,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
6813
6847
|
/**
|
|
6814
6848
|
* Set the asynchronous backing parameters.
|
|
6815
6849
|
**/
|
|
6816
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
6850
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams } }
|
|
6817
6851
|
/**
|
|
6818
6852
|
* Set PVF executor parameters.
|
|
6819
6853
|
**/
|
|
6820
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
6854
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV9ExecutorParams } }
|
|
6821
6855
|
/**
|
|
6822
6856
|
* Set the on demand (parathreads) base fee.
|
|
6823
6857
|
**/
|
|
@@ -6845,35 +6879,35 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
6845
6879
|
/**
|
|
6846
6880
|
* Set approval-voting-params.
|
|
6847
6881
|
**/
|
|
6848
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
6882
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV9ApprovalVotingParams } }
|
|
6849
6883
|
/**
|
|
6850
6884
|
* Set scheduler-params.
|
|
6851
6885
|
**/
|
|
6852
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
6886
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
|
|
6853
6887
|
|
|
6854
|
-
export type
|
|
6888
|
+
export type PolkadotPrimitivesV9AsyncBackingAsyncBackingParams = {
|
|
6855
6889
|
maxCandidateDepth: number;
|
|
6856
6890
|
allowedAncestryLen: number;
|
|
6857
6891
|
};
|
|
6858
6892
|
|
|
6859
|
-
export type
|
|
6893
|
+
export type PolkadotPrimitivesV9ExecutorParams = Array<PolkadotPrimitivesV9ExecutorParamsExecutorParam>;
|
|
6860
6894
|
|
|
6861
|
-
export type
|
|
6895
|
+
export type PolkadotPrimitivesV9ExecutorParamsExecutorParam =
|
|
6862
6896
|
| { type: 'MaxMemoryPages'; value: number }
|
|
6863
6897
|
| { type: 'StackLogicalMax'; value: number }
|
|
6864
6898
|
| { type: 'StackNativeMax'; value: number }
|
|
6865
6899
|
| { type: 'PrecheckingMaxMemory'; value: bigint }
|
|
6866
|
-
| { type: 'PvfPrepTimeout'; value: [
|
|
6867
|
-
| { type: 'PvfExecTimeout'; value: [
|
|
6900
|
+
| { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV9PvfPrepKind, bigint] }
|
|
6901
|
+
| { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV9PvfExecKind, bigint] }
|
|
6868
6902
|
| { type: 'WasmExtBulkMemory' };
|
|
6869
6903
|
|
|
6870
|
-
export type
|
|
6904
|
+
export type PolkadotPrimitivesV9PvfPrepKind = 'Precheck' | 'Prepare';
|
|
6871
6905
|
|
|
6872
|
-
export type
|
|
6906
|
+
export type PolkadotPrimitivesV9PvfExecKind = 'Backing' | 'Approval';
|
|
6873
6907
|
|
|
6874
|
-
export type
|
|
6908
|
+
export type PolkadotPrimitivesV9ApprovalVotingParams = { maxApprovalCoalesceCount: number };
|
|
6875
6909
|
|
|
6876
|
-
export type
|
|
6910
|
+
export type PolkadotPrimitivesV9SchedulerParams = {
|
|
6877
6911
|
groupRotationFrequency: number;
|
|
6878
6912
|
parasAvailabilityPeriod: number;
|
|
6879
6913
|
maxValidatorsPerCore?: number | undefined;
|
|
@@ -6908,50 +6942,50 @@ export type PolkadotRuntimeParachainsParasInherentPalletCall =
|
|
|
6908
6942
|
/**
|
|
6909
6943
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
6910
6944
|
**/
|
|
6911
|
-
{ name: 'Enter'; params: { data:
|
|
6945
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV9InherentData } };
|
|
6912
6946
|
|
|
6913
6947
|
export type PolkadotRuntimeParachainsParasInherentPalletCallLike =
|
|
6914
6948
|
/**
|
|
6915
6949
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
6916
6950
|
**/
|
|
6917
|
-
{ name: 'Enter'; params: { data:
|
|
6951
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV9InherentData } };
|
|
6918
6952
|
|
|
6919
|
-
export type
|
|
6920
|
-
bitfields: Array<
|
|
6921
|
-
backedCandidates: Array<
|
|
6922
|
-
disputes: Array<
|
|
6953
|
+
export type PolkadotPrimitivesV9InherentData = {
|
|
6954
|
+
bitfields: Array<PolkadotPrimitivesV9SignedUncheckedSigned>;
|
|
6955
|
+
backedCandidates: Array<PolkadotPrimitivesV9BackedCandidate>;
|
|
6956
|
+
disputes: Array<PolkadotPrimitivesV9DisputeStatementSet>;
|
|
6923
6957
|
parentHeader: Header;
|
|
6924
6958
|
};
|
|
6925
6959
|
|
|
6926
|
-
export type
|
|
6927
|
-
payload:
|
|
6928
|
-
validatorIndex:
|
|
6929
|
-
signature:
|
|
6960
|
+
export type PolkadotPrimitivesV9SignedUncheckedSigned = {
|
|
6961
|
+
payload: PolkadotPrimitivesV9AvailabilityBitfield;
|
|
6962
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
6963
|
+
signature: PolkadotPrimitivesV9ValidatorAppSignature;
|
|
6930
6964
|
};
|
|
6931
6965
|
|
|
6932
|
-
export type
|
|
6966
|
+
export type PolkadotPrimitivesV9AvailabilityBitfield = BitSequence;
|
|
6933
6967
|
|
|
6934
6968
|
export type BitvecOrderLsb0 = {};
|
|
6935
6969
|
|
|
6936
|
-
export type
|
|
6970
|
+
export type PolkadotPrimitivesV9ValidatorIndex = number;
|
|
6937
6971
|
|
|
6938
|
-
export type
|
|
6972
|
+
export type PolkadotPrimitivesV9ValidatorAppSignature = FixedBytes<64>;
|
|
6939
6973
|
|
|
6940
|
-
export type
|
|
6941
|
-
candidate:
|
|
6942
|
-
validityVotes: Array<
|
|
6974
|
+
export type PolkadotPrimitivesV9BackedCandidate = {
|
|
6975
|
+
candidate: PolkadotPrimitivesV9CommittedCandidateReceiptV2;
|
|
6976
|
+
validityVotes: Array<PolkadotPrimitivesV9ValidityAttestation>;
|
|
6943
6977
|
validatorIndices: BitSequence;
|
|
6944
6978
|
};
|
|
6945
6979
|
|
|
6946
|
-
export type
|
|
6947
|
-
descriptor:
|
|
6948
|
-
commitments:
|
|
6980
|
+
export type PolkadotPrimitivesV9CommittedCandidateReceiptV2 = {
|
|
6981
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
6982
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
6949
6983
|
};
|
|
6950
6984
|
|
|
6951
|
-
export type
|
|
6985
|
+
export type PolkadotPrimitivesV9CandidateDescriptorV2 = {
|
|
6952
6986
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
6953
6987
|
relayParent: H256;
|
|
6954
|
-
version:
|
|
6988
|
+
version: PolkadotPrimitivesV9InternalVersion;
|
|
6955
6989
|
coreIndex: number;
|
|
6956
6990
|
sessionIndex: number;
|
|
6957
6991
|
reserved1: FixedBytes<25>;
|
|
@@ -6963,11 +6997,11 @@ export type PolkadotPrimitivesVstagingCandidateDescriptorV2 = {
|
|
|
6963
6997
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
6964
6998
|
};
|
|
6965
6999
|
|
|
6966
|
-
export type
|
|
7000
|
+
export type PolkadotPrimitivesV9InternalVersion = number;
|
|
6967
7001
|
|
|
6968
7002
|
export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
|
|
6969
7003
|
|
|
6970
|
-
export type
|
|
7004
|
+
export type PolkadotPrimitivesV9CandidateCommitments = {
|
|
6971
7005
|
upwardMessages: Array<Bytes>;
|
|
6972
7006
|
horizontalMessages: Array<PolkadotCorePrimitivesOutboundHrmpMessage>;
|
|
6973
7007
|
newValidationCode?: PolkadotParachainPrimitivesPrimitivesValidationCode | undefined;
|
|
@@ -6985,36 +7019,36 @@ export type PolkadotParachainPrimitivesPrimitivesValidationCode = Bytes;
|
|
|
6985
7019
|
|
|
6986
7020
|
export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
|
|
6987
7021
|
|
|
6988
|
-
export type
|
|
6989
|
-
| { type: 'Implicit'; value:
|
|
6990
|
-
| { type: 'Explicit'; value:
|
|
7022
|
+
export type PolkadotPrimitivesV9ValidityAttestation =
|
|
7023
|
+
| { type: 'Implicit'; value: PolkadotPrimitivesV9ValidatorAppSignature }
|
|
7024
|
+
| { type: 'Explicit'; value: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
6991
7025
|
|
|
6992
|
-
export type
|
|
7026
|
+
export type PolkadotPrimitivesV9DisputeStatementSet = {
|
|
6993
7027
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
6994
7028
|
session: number;
|
|
6995
7029
|
statements: Array<
|
|
6996
7030
|
[
|
|
6997
|
-
|
|
6998
|
-
|
|
6999
|
-
|
|
7031
|
+
PolkadotPrimitivesV9DisputeStatement,
|
|
7032
|
+
PolkadotPrimitivesV9ValidatorIndex,
|
|
7033
|
+
PolkadotPrimitivesV9ValidatorAppSignature,
|
|
7000
7034
|
]
|
|
7001
7035
|
>;
|
|
7002
7036
|
};
|
|
7003
7037
|
|
|
7004
7038
|
export type PolkadotCorePrimitivesCandidateHash = H256;
|
|
7005
7039
|
|
|
7006
|
-
export type
|
|
7007
|
-
| { type: 'Valid'; value:
|
|
7008
|
-
| { type: 'Invalid'; value:
|
|
7040
|
+
export type PolkadotPrimitivesV9DisputeStatement =
|
|
7041
|
+
| { type: 'Valid'; value: PolkadotPrimitivesV9ValidDisputeStatementKind }
|
|
7042
|
+
| { type: 'Invalid'; value: PolkadotPrimitivesV9InvalidDisputeStatementKind };
|
|
7009
7043
|
|
|
7010
|
-
export type
|
|
7044
|
+
export type PolkadotPrimitivesV9ValidDisputeStatementKind =
|
|
7011
7045
|
| { type: 'Explicit' }
|
|
7012
7046
|
| { type: 'BackingSeconded'; value: H256 }
|
|
7013
7047
|
| { type: 'BackingValid'; value: H256 }
|
|
7014
7048
|
| { type: 'ApprovalChecking' }
|
|
7015
7049
|
| { type: 'ApprovalCheckingMultipleCandidates'; value: Array<PolkadotCorePrimitivesCandidateHash> };
|
|
7016
7050
|
|
|
7017
|
-
export type
|
|
7051
|
+
export type PolkadotPrimitivesV9InvalidDisputeStatementKind = 'Explicit';
|
|
7018
7052
|
|
|
7019
7053
|
/**
|
|
7020
7054
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -7098,7 +7132,7 @@ export type PolkadotRuntimeParachainsParasPalletCall =
|
|
|
7098
7132
|
**/
|
|
7099
7133
|
| {
|
|
7100
7134
|
name: 'IncludePvfCheckStatement';
|
|
7101
|
-
params: { stmt:
|
|
7135
|
+
params: { stmt: PolkadotPrimitivesV9PvfCheckStatement; signature: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
7102
7136
|
}
|
|
7103
7137
|
/**
|
|
7104
7138
|
* Set the storage for the current parachain head data immediately.
|
|
@@ -7223,7 +7257,7 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
|
|
|
7223
7257
|
**/
|
|
7224
7258
|
| {
|
|
7225
7259
|
name: 'IncludePvfCheckStatement';
|
|
7226
|
-
params: { stmt:
|
|
7260
|
+
params: { stmt: PolkadotPrimitivesV9PvfCheckStatement; signature: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
7227
7261
|
}
|
|
7228
7262
|
/**
|
|
7229
7263
|
* Set the storage for the current parachain head data immediately.
|
|
@@ -7269,11 +7303,11 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
|
|
|
7269
7303
|
};
|
|
7270
7304
|
};
|
|
7271
7305
|
|
|
7272
|
-
export type
|
|
7306
|
+
export type PolkadotPrimitivesV9PvfCheckStatement = {
|
|
7273
7307
|
accept: boolean;
|
|
7274
7308
|
subject: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
7275
7309
|
sessionIndex: number;
|
|
7276
|
-
validatorIndex:
|
|
7310
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
7277
7311
|
};
|
|
7278
7312
|
|
|
7279
7313
|
/**
|
|
@@ -7607,27 +7641,27 @@ export type PolkadotRuntimeParachainsDisputesPalletCallLike = 'ForceUnfreeze';
|
|
|
7607
7641
|
**/
|
|
7608
7642
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCall = {
|
|
7609
7643
|
name: 'ReportDisputeLostUnsigned';
|
|
7610
|
-
params: { disputeProof:
|
|
7644
|
+
params: { disputeProof: PolkadotPrimitivesV9SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
7611
7645
|
};
|
|
7612
7646
|
|
|
7613
7647
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCallLike = {
|
|
7614
7648
|
name: 'ReportDisputeLostUnsigned';
|
|
7615
|
-
params: { disputeProof:
|
|
7649
|
+
params: { disputeProof: PolkadotPrimitivesV9SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
7616
7650
|
};
|
|
7617
7651
|
|
|
7618
|
-
export type
|
|
7619
|
-
timeSlot:
|
|
7620
|
-
kind:
|
|
7621
|
-
validatorIndex:
|
|
7622
|
-
validatorId:
|
|
7652
|
+
export type PolkadotPrimitivesV9SlashingDisputeProof = {
|
|
7653
|
+
timeSlot: PolkadotPrimitivesV9SlashingDisputesTimeSlot;
|
|
7654
|
+
kind: PolkadotPrimitivesV9DisputeOffenceKind;
|
|
7655
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
7656
|
+
validatorId: PolkadotPrimitivesV9ValidatorAppPublic;
|
|
7623
7657
|
};
|
|
7624
7658
|
|
|
7625
|
-
export type
|
|
7659
|
+
export type PolkadotPrimitivesV9SlashingDisputesTimeSlot = {
|
|
7626
7660
|
sessionIndex: number;
|
|
7627
7661
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
7628
7662
|
};
|
|
7629
7663
|
|
|
7630
|
-
export type
|
|
7664
|
+
export type PolkadotPrimitivesV9DisputeOffenceKind = 'ForInvalidBacked' | 'AgainstValid' | 'ForInvalidApproved';
|
|
7631
7665
|
|
|
7632
7666
|
/**
|
|
7633
7667
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -8401,12 +8435,14 @@ export type PolkadotRuntimeCommonCrowdloanPalletCallLike =
|
|
|
8401
8435
|
export type SpRuntimeMultiSigner =
|
|
8402
8436
|
| { type: 'Ed25519'; value: FixedBytes<32> }
|
|
8403
8437
|
| { type: 'Sr25519'; value: FixedBytes<32> }
|
|
8404
|
-
| { type: 'Ecdsa'; value: FixedBytes<33> }
|
|
8438
|
+
| { type: 'Ecdsa'; value: FixedBytes<33> }
|
|
8439
|
+
| { type: 'Eth'; value: FixedBytes<33> };
|
|
8405
8440
|
|
|
8406
8441
|
export type SpRuntimeMultiSignature =
|
|
8407
8442
|
| { type: 'Ed25519'; value: FixedBytes<64> }
|
|
8408
8443
|
| { type: 'Sr25519'; value: FixedBytes<64> }
|
|
8409
|
-
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
8444
|
+
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
8445
|
+
| { type: 'Eth'; value: FixedBytes<65> };
|
|
8410
8446
|
|
|
8411
8447
|
/**
|
|
8412
8448
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -11180,10 +11216,18 @@ export type PalletBalancesEvent =
|
|
|
11180
11216
|
* Some amount was minted into an account.
|
|
11181
11217
|
**/
|
|
11182
11218
|
| { name: 'Minted'; data: { who: AccountId32; amount: bigint } }
|
|
11219
|
+
/**
|
|
11220
|
+
* Some credit was balanced and added to the TotalIssuance.
|
|
11221
|
+
**/
|
|
11222
|
+
| { name: 'MintedCredit'; data: { amount: bigint } }
|
|
11183
11223
|
/**
|
|
11184
11224
|
* Some amount was burned from an account.
|
|
11185
11225
|
**/
|
|
11186
11226
|
| { name: 'Burned'; data: { who: AccountId32; amount: bigint } }
|
|
11227
|
+
/**
|
|
11228
|
+
* Some debt has been dropped from the Total Issuance.
|
|
11229
|
+
**/
|
|
11230
|
+
| { name: 'BurnedDebt'; data: { amount: bigint } }
|
|
11187
11231
|
/**
|
|
11188
11232
|
* Some amount was suspended from an account (it can be restored later).
|
|
11189
11233
|
**/
|
|
@@ -11224,6 +11268,32 @@ export type PalletBalancesEvent =
|
|
|
11224
11268
|
* The `TotalIssuance` was forcefully changed.
|
|
11225
11269
|
**/
|
|
11226
11270
|
| { name: 'TotalIssuanceForced'; data: { old: bigint; new: bigint } }
|
|
11271
|
+
/**
|
|
11272
|
+
* Some balance was placed on hold.
|
|
11273
|
+
**/
|
|
11274
|
+
| { name: 'Held'; data: { reason: PaseoRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
|
|
11275
|
+
/**
|
|
11276
|
+
* Held balance was burned from an account.
|
|
11277
|
+
**/
|
|
11278
|
+
| { name: 'BurnedHeld'; data: { reason: PaseoRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
|
|
11279
|
+
/**
|
|
11280
|
+
* A transfer of `amount` on hold from `source` to `dest` was initiated.
|
|
11281
|
+
**/
|
|
11282
|
+
| {
|
|
11283
|
+
name: 'TransferOnHold';
|
|
11284
|
+
data: { reason: PaseoRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; amount: bigint };
|
|
11285
|
+
}
|
|
11286
|
+
/**
|
|
11287
|
+
* The `transferred` balance is placed on hold at the `dest` account.
|
|
11288
|
+
**/
|
|
11289
|
+
| {
|
|
11290
|
+
name: 'TransferAndHold';
|
|
11291
|
+
data: { reason: PaseoRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; transferred: bigint };
|
|
11292
|
+
}
|
|
11293
|
+
/**
|
|
11294
|
+
* Some balance was released from hold.
|
|
11295
|
+
**/
|
|
11296
|
+
| { name: 'Released'; data: { reason: PaseoRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint } }
|
|
11227
11297
|
/**
|
|
11228
11298
|
* An unexpected/defensive event was triggered.
|
|
11229
11299
|
**/
|
|
@@ -11231,6 +11301,26 @@ export type PalletBalancesEvent =
|
|
|
11231
11301
|
|
|
11232
11302
|
export type FrameSupportTokensMiscBalanceStatus = 'Free' | 'Reserved';
|
|
11233
11303
|
|
|
11304
|
+
export type PaseoRuntimeRuntimeHoldReason =
|
|
11305
|
+
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
11306
|
+
| { type: 'Staking'; value: PalletStakingPalletHoldReason }
|
|
11307
|
+
| { type: 'Session'; value: PalletSessionHoldReason }
|
|
11308
|
+
| { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
|
|
11309
|
+
| { type: 'StateTrieMigration'; value: PalletStateTrieMigrationHoldReason }
|
|
11310
|
+
| { type: 'XcmPallet'; value: PalletXcmHoldReason };
|
|
11311
|
+
|
|
11312
|
+
export type PalletPreimageHoldReason = 'Preimage';
|
|
11313
|
+
|
|
11314
|
+
export type PalletStakingPalletHoldReason = 'Staking';
|
|
11315
|
+
|
|
11316
|
+
export type PalletSessionHoldReason = 'Keys';
|
|
11317
|
+
|
|
11318
|
+
export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
|
|
11319
|
+
|
|
11320
|
+
export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
|
|
11321
|
+
|
|
11322
|
+
export type PalletXcmHoldReason = 'AuthorizeAlias';
|
|
11323
|
+
|
|
11234
11324
|
export type PalletBalancesUnexpectedKind = 'BalanceUpdated' | 'FailedToMutateAccount';
|
|
11235
11325
|
|
|
11236
11326
|
/**
|
|
@@ -11472,19 +11562,19 @@ export type PalletConvictionVotingEvent =
|
|
|
11472
11562
|
/**
|
|
11473
11563
|
* An account has delegated their vote to another account. \[who, target\]
|
|
11474
11564
|
**/
|
|
11475
|
-
| { name: 'Delegated'; data: [AccountId32, AccountId32] }
|
|
11565
|
+
| { name: 'Delegated'; data: [AccountId32, AccountId32, number] }
|
|
11476
11566
|
/**
|
|
11477
11567
|
* An \[account\] has cancelled a previous delegation operation.
|
|
11478
11568
|
**/
|
|
11479
|
-
| { name: 'Undelegated'; data: AccountId32 }
|
|
11569
|
+
| { name: 'Undelegated'; data: [AccountId32, number] }
|
|
11480
11570
|
/**
|
|
11481
11571
|
* An account has voted
|
|
11482
11572
|
**/
|
|
11483
|
-
| { name: 'Voted'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } }
|
|
11573
|
+
| { name: 'Voted'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number } }
|
|
11484
11574
|
/**
|
|
11485
11575
|
* A vote has been removed
|
|
11486
11576
|
**/
|
|
11487
|
-
| { name: 'VoteRemoved'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote } }
|
|
11577
|
+
| { name: 'VoteRemoved'; data: { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number } }
|
|
11488
11578
|
/**
|
|
11489
11579
|
* The lockup period of a conviction vote expired, and the funds have been unlocked.
|
|
11490
11580
|
**/
|
|
@@ -11886,6 +11976,8 @@ export type PalletProxyEvent =
|
|
|
11886
11976
|
who: AccountId32;
|
|
11887
11977
|
proxyType: PaseoRuntimeConstantsProxyProxyType;
|
|
11888
11978
|
disambiguationIndex: number;
|
|
11979
|
+
at: number;
|
|
11980
|
+
extrinsicIndex: number;
|
|
11889
11981
|
};
|
|
11890
11982
|
}
|
|
11891
11983
|
/**
|
|
@@ -12357,7 +12449,19 @@ export type PalletStakingAsyncAhClientEvent =
|
|
|
12357
12449
|
* Something occurred that should never happen under normal operation. Logged as an event
|
|
12358
12450
|
* for fail-safe observability.
|
|
12359
12451
|
**/
|
|
12360
|
-
| { name: 'Unexpected'; data: PalletStakingAsyncAhClientUnexpectedKind }
|
|
12452
|
+
| { name: 'Unexpected'; data: PalletStakingAsyncAhClientUnexpectedKind }
|
|
12453
|
+
/**
|
|
12454
|
+
* Session keys updated for a validator.
|
|
12455
|
+
**/
|
|
12456
|
+
| { name: 'SessionKeysUpdated'; data: { stash: AccountId32; update: PalletStakingAsyncAhClientSessionKeysUpdate } }
|
|
12457
|
+
/**
|
|
12458
|
+
* Session key update from AssetHub failed on the relay chain.
|
|
12459
|
+
* Logged as an event for fail-safe observability.
|
|
12460
|
+
**/
|
|
12461
|
+
| {
|
|
12462
|
+
name: 'SessionKeysUpdateFailed';
|
|
12463
|
+
data: { stash: AccountId32; update: PalletStakingAsyncAhClientSessionKeysUpdate; error: DispatchError };
|
|
12464
|
+
};
|
|
12361
12465
|
|
|
12362
12466
|
export type PalletStakingAsyncAhClientUnexpectedKind =
|
|
12363
12467
|
| 'ReceivedValidatorSetWhilePassive'
|
|
@@ -12365,7 +12469,10 @@ export type PalletStakingAsyncAhClientUnexpectedKind =
|
|
|
12365
12469
|
| 'SessionReportSendFailed'
|
|
12366
12470
|
| 'SessionReportDropped'
|
|
12367
12471
|
| 'OffenceSendFailed'
|
|
12368
|
-
| 'ValidatorPointDropped'
|
|
12472
|
+
| 'ValidatorPointDropped'
|
|
12473
|
+
| 'InvalidKeysFromAssetHub';
|
|
12474
|
+
|
|
12475
|
+
export type PalletStakingAsyncAhClientSessionKeysUpdate = 'Set' | 'Purged';
|
|
12369
12476
|
|
|
12370
12477
|
/**
|
|
12371
12478
|
* The `Event` enum of this pallet
|
|
@@ -12377,10 +12484,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12377
12484
|
| {
|
|
12378
12485
|
name: 'CandidateBacked';
|
|
12379
12486
|
data: [
|
|
12380
|
-
|
|
12487
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12381
12488
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12382
|
-
|
|
12383
|
-
|
|
12489
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12490
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
12384
12491
|
];
|
|
12385
12492
|
}
|
|
12386
12493
|
/**
|
|
@@ -12389,10 +12496,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12389
12496
|
| {
|
|
12390
12497
|
name: 'CandidateIncluded';
|
|
12391
12498
|
data: [
|
|
12392
|
-
|
|
12499
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12393
12500
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12394
|
-
|
|
12395
|
-
|
|
12501
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12502
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
12396
12503
|
];
|
|
12397
12504
|
}
|
|
12398
12505
|
/**
|
|
@@ -12401,9 +12508,9 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12401
12508
|
| {
|
|
12402
12509
|
name: 'CandidateTimedOut';
|
|
12403
12510
|
data: [
|
|
12404
|
-
|
|
12511
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12405
12512
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12406
|
-
|
|
12513
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12407
12514
|
];
|
|
12408
12515
|
}
|
|
12409
12516
|
/**
|
|
@@ -12411,14 +12518,14 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12411
12518
|
**/
|
|
12412
12519
|
| { name: 'UpwardMessagesReceived'; data: { from: PolkadotParachainPrimitivesPrimitivesId; count: number } };
|
|
12413
12520
|
|
|
12414
|
-
export type
|
|
12415
|
-
descriptor:
|
|
12521
|
+
export type PolkadotPrimitivesV9CandidateReceiptV2 = {
|
|
12522
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
12416
12523
|
commitmentsHash: H256;
|
|
12417
12524
|
};
|
|
12418
12525
|
|
|
12419
|
-
export type
|
|
12526
|
+
export type PolkadotPrimitivesV9CoreIndex = number;
|
|
12420
12527
|
|
|
12421
|
-
export type
|
|
12528
|
+
export type PolkadotPrimitivesV9GroupIndex = number;
|
|
12422
12529
|
|
|
12423
12530
|
/**
|
|
12424
12531
|
* The `Event` enum of this pallet
|
|
@@ -12778,7 +12885,7 @@ export type PolkadotRuntimeParachainsCoretimePalletEvent =
|
|
|
12778
12885
|
/**
|
|
12779
12886
|
* A core has received a new assignment from the broker chain.
|
|
12780
12887
|
**/
|
|
12781
|
-
| { name: 'CoreAssigned'; data: { core:
|
|
12888
|
+
| { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV9CoreIndex } };
|
|
12782
12889
|
|
|
12783
12890
|
/**
|
|
12784
12891
|
* Inner events of this pallet.
|
|
@@ -13745,26 +13852,6 @@ export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
|
|
|
13745
13852
|
|
|
13746
13853
|
export type FrameSupportTokensMiscIdAmount = { id: PaseoRuntimeRuntimeHoldReason; amount: bigint };
|
|
13747
13854
|
|
|
13748
|
-
export type PaseoRuntimeRuntimeHoldReason =
|
|
13749
|
-
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
13750
|
-
| { type: 'Staking'; value: PalletStakingPalletHoldReason }
|
|
13751
|
-
| { type: 'Session'; value: PalletSessionHoldReason }
|
|
13752
|
-
| { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
|
|
13753
|
-
| { type: 'StateTrieMigration'; value: PalletStateTrieMigrationHoldReason }
|
|
13754
|
-
| { type: 'XcmPallet'; value: PalletXcmHoldReason };
|
|
13755
|
-
|
|
13756
|
-
export type PalletPreimageHoldReason = 'Preimage';
|
|
13757
|
-
|
|
13758
|
-
export type PalletStakingPalletHoldReason = 'Staking';
|
|
13759
|
-
|
|
13760
|
-
export type PalletSessionHoldReason = 'Keys';
|
|
13761
|
-
|
|
13762
|
-
export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
|
|
13763
|
-
|
|
13764
|
-
export type PalletStateTrieMigrationHoldReason = 'SlashForMigrate';
|
|
13765
|
-
|
|
13766
|
-
export type PalletXcmHoldReason = 'AuthorizeAlias';
|
|
13767
|
-
|
|
13768
13855
|
export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = { id: PaseoRuntimeRuntimeFreezeReason; amount: bigint };
|
|
13769
13856
|
|
|
13770
13857
|
export type PaseoRuntimeRuntimeFreezeReason = { type: 'NominationPools'; value: PalletNominationPoolsFreezeReason };
|
|
@@ -15119,7 +15206,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
15119
15206
|
hrmpMaxMessageNumPerCandidate: number;
|
|
15120
15207
|
validationUpgradeCooldown: number;
|
|
15121
15208
|
validationUpgradeDelay: number;
|
|
15122
|
-
asyncBackingParams:
|
|
15209
|
+
asyncBackingParams: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams;
|
|
15123
15210
|
maxPovSize: number;
|
|
15124
15211
|
maxDownwardMessageSize: number;
|
|
15125
15212
|
hrmpMaxParachainOutboundChannels: number;
|
|
@@ -15129,7 +15216,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
15129
15216
|
hrmpChannelMaxTotalSize: number;
|
|
15130
15217
|
hrmpMaxParachainInboundChannels: number;
|
|
15131
15218
|
hrmpChannelMaxMessageSize: number;
|
|
15132
|
-
executorParams:
|
|
15219
|
+
executorParams: PolkadotPrimitivesV9ExecutorParams;
|
|
15133
15220
|
codeRetentionPeriod: number;
|
|
15134
15221
|
maxValidators?: number | undefined;
|
|
15135
15222
|
disputePeriod: number;
|
|
@@ -15143,8 +15230,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
15143
15230
|
minimumValidationUpgradeDelay: number;
|
|
15144
15231
|
minimumBackingVotes: number;
|
|
15145
15232
|
nodeFeatures: BitSequence;
|
|
15146
|
-
approvalVotingParams:
|
|
15147
|
-
schedulerParams:
|
|
15233
|
+
approvalVotingParams: PolkadotPrimitivesV9ApprovalVotingParams;
|
|
15234
|
+
schedulerParams: PolkadotPrimitivesV9SchedulerParams;
|
|
15148
15235
|
};
|
|
15149
15236
|
|
|
15150
15237
|
/**
|
|
@@ -15164,19 +15251,19 @@ export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
|
|
|
15164
15251
|
export type PolkadotRuntimeParachainsSharedRelayParentInfo = {
|
|
15165
15252
|
relayParent: H256;
|
|
15166
15253
|
stateRoot: H256;
|
|
15167
|
-
claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<
|
|
15254
|
+
claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<PolkadotPrimitivesV9CoreIndex>]>]>;
|
|
15168
15255
|
};
|
|
15169
15256
|
|
|
15170
15257
|
export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
|
|
15171
|
-
core:
|
|
15258
|
+
core: PolkadotPrimitivesV9CoreIndex;
|
|
15172
15259
|
hash: PolkadotCorePrimitivesCandidateHash;
|
|
15173
|
-
descriptor:
|
|
15174
|
-
commitments:
|
|
15260
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
15261
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
15175
15262
|
availabilityVotes: BitSequence;
|
|
15176
15263
|
backers: BitSequence;
|
|
15177
15264
|
relayParentNumber: number;
|
|
15178
15265
|
backedInNumber: number;
|
|
15179
|
-
backingGroup:
|
|
15266
|
+
backingGroup: PolkadotPrimitivesV9GroupIndex;
|
|
15180
15267
|
};
|
|
15181
15268
|
|
|
15182
15269
|
/**
|
|
@@ -15255,15 +15342,15 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
|
|
|
15255
15342
|
**/
|
|
15256
15343
|
| 'ParaHeadMismatch';
|
|
15257
15344
|
|
|
15258
|
-
export type
|
|
15345
|
+
export type PolkadotPrimitivesV9ScrapedOnChainVotes = {
|
|
15259
15346
|
session: number;
|
|
15260
15347
|
backingValidatorsPerCandidate: Array<
|
|
15261
15348
|
[
|
|
15262
|
-
|
|
15263
|
-
Array<[
|
|
15349
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
15350
|
+
Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidityAttestation]>,
|
|
15264
15351
|
]
|
|
15265
15352
|
>;
|
|
15266
|
-
disputes: Array<
|
|
15353
|
+
disputes: Array<PolkadotPrimitivesV9DisputeStatementSet>;
|
|
15267
15354
|
};
|
|
15268
15355
|
|
|
15269
15356
|
/**
|
|
@@ -15292,7 +15379,7 @@ export type PolkadotRuntimeParachainsParasInherentPalletError =
|
|
|
15292
15379
|
export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
|
|
15293
15380
|
| {
|
|
15294
15381
|
type: 'Pool';
|
|
15295
|
-
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex:
|
|
15382
|
+
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV9CoreIndex };
|
|
15296
15383
|
}
|
|
15297
15384
|
| { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
|
|
15298
15385
|
|
|
@@ -15338,9 +15425,9 @@ export type PolkadotRuntimeParachainsParasAuthorizedCodeHashAndExpiry = {
|
|
|
15338
15425
|
expireAt: number;
|
|
15339
15426
|
};
|
|
15340
15427
|
|
|
15341
|
-
export type
|
|
15428
|
+
export type PolkadotPrimitivesV9UpgradeGoAhead = 'Abort' | 'GoAhead';
|
|
15342
15429
|
|
|
15343
|
-
export type
|
|
15430
|
+
export type PolkadotPrimitivesV9UpgradeRestriction = 'Present';
|
|
15344
15431
|
|
|
15345
15432
|
/**
|
|
15346
15433
|
* The `Error` enum of this pallet.
|
|
@@ -15412,8 +15499,8 @@ export type PolkadotRuntimeParachainsParasPalletError =
|
|
|
15412
15499
|
| 'InvalidBlockNumber';
|
|
15413
15500
|
|
|
15414
15501
|
export type PolkadotRuntimeParachainsInitializerBufferedSessionChange = {
|
|
15415
|
-
validators: Array<
|
|
15416
|
-
queued: Array<
|
|
15502
|
+
validators: Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15503
|
+
queued: Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15417
15504
|
sessionIndex: number;
|
|
15418
15505
|
};
|
|
15419
15506
|
|
|
@@ -15526,14 +15613,14 @@ export type PolkadotRuntimeParachainsHrmpPalletError =
|
|
|
15526
15613
|
**/
|
|
15527
15614
|
| 'ChannelCreationNotAuthorized';
|
|
15528
15615
|
|
|
15529
|
-
export type
|
|
15530
|
-
activeValidatorIndices: Array<
|
|
15616
|
+
export type PolkadotPrimitivesV9SessionInfo = {
|
|
15617
|
+
activeValidatorIndices: Array<PolkadotPrimitivesV9ValidatorIndex>;
|
|
15531
15618
|
randomSeed: FixedBytes<32>;
|
|
15532
15619
|
disputePeriod: number;
|
|
15533
|
-
validators:
|
|
15620
|
+
validators: PolkadotPrimitivesV9IndexedVec;
|
|
15534
15621
|
discoveryKeys: Array<SpAuthorityDiscoveryAppPublic>;
|
|
15535
|
-
assignmentKeys: Array<
|
|
15536
|
-
validatorGroups:
|
|
15622
|
+
assignmentKeys: Array<PolkadotPrimitivesV9AssignmentAppPublic>;
|
|
15623
|
+
validatorGroups: PolkadotPrimitivesV9IndexedVecGroupIndex;
|
|
15537
15624
|
nCores: number;
|
|
15538
15625
|
zerothDelayTrancheWidth: number;
|
|
15539
15626
|
relayVrfModuloSamples: number;
|
|
@@ -15542,11 +15629,11 @@ export type PolkadotPrimitivesV8SessionInfo = {
|
|
|
15542
15629
|
neededApprovals: number;
|
|
15543
15630
|
};
|
|
15544
15631
|
|
|
15545
|
-
export type
|
|
15632
|
+
export type PolkadotPrimitivesV9IndexedVec = Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15546
15633
|
|
|
15547
|
-
export type
|
|
15634
|
+
export type PolkadotPrimitivesV9IndexedVecGroupIndex = Array<Array<PolkadotPrimitivesV9ValidatorIndex>>;
|
|
15548
15635
|
|
|
15549
|
-
export type
|
|
15636
|
+
export type PolkadotPrimitivesV9DisputeState = {
|
|
15550
15637
|
validatorsFor: BitSequence;
|
|
15551
15638
|
validatorsAgainst: BitSequence;
|
|
15552
15639
|
start: number;
|
|
@@ -15594,9 +15681,9 @@ export type PolkadotRuntimeParachainsDisputesPalletError =
|
|
|
15594
15681
|
**/
|
|
15595
15682
|
| 'UnconfirmedDispute';
|
|
15596
15683
|
|
|
15597
|
-
export type
|
|
15598
|
-
keys: Array<[
|
|
15599
|
-
kind:
|
|
15684
|
+
export type PolkadotPrimitivesV9SlashingPendingSlashes = {
|
|
15685
|
+
keys: Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidatorAppPublic]>;
|
|
15686
|
+
kind: PolkadotPrimitivesV9DisputeOffenceKind;
|
|
15600
15687
|
};
|
|
15601
15688
|
|
|
15602
15689
|
/**
|
|
@@ -15630,7 +15717,7 @@ export type PolkadotRuntimeParachainsDisputesSlashingPalletError =
|
|
|
15630
15717
|
| 'DuplicateSlashingReport';
|
|
15631
15718
|
|
|
15632
15719
|
export type PolkadotRuntimeParachainsOnDemandTypesCoreAffinityCount = {
|
|
15633
|
-
coreIndex:
|
|
15720
|
+
coreIndex: PolkadotPrimitivesV9CoreIndex;
|
|
15634
15721
|
count: number;
|
|
15635
15722
|
};
|
|
15636
15723
|
|
|
@@ -16281,6 +16368,10 @@ export type PalletBeefyError =
|
|
|
16281
16368
|
* The session of the equivocation proof is invalid
|
|
16282
16369
|
**/
|
|
16283
16370
|
| 'InvalidEquivocationProofSession'
|
|
16371
|
+
/**
|
|
16372
|
+
* The session of the equivocation proof is not in the mapping (anymore)
|
|
16373
|
+
**/
|
|
16374
|
+
| 'InvalidEquivocationProofSessionMember'
|
|
16284
16375
|
/**
|
|
16285
16376
|
* A given equivocation report is valid but already previously reported.
|
|
16286
16377
|
**/
|
|
@@ -16431,6 +16522,10 @@ export type PalletRcMigratorError =
|
|
|
16431
16522
|
**/
|
|
16432
16523
|
| 'UnsignedValidationFailed';
|
|
16433
16524
|
|
|
16525
|
+
export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
|
|
16526
|
+
|
|
16527
|
+
export type SpRuntimeOpaqueExtrinsic = Bytes;
|
|
16528
|
+
|
|
16434
16529
|
export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
|
|
16435
16530
|
|
|
16436
16531
|
export type SpCoreOpaqueMetadata = Bytes;
|
|
@@ -16473,147 +16568,121 @@ export type SpRuntimeTransactionValidityValidTransaction = {
|
|
|
16473
16568
|
propagate: boolean;
|
|
16474
16569
|
};
|
|
16475
16570
|
|
|
16476
|
-
export type
|
|
16571
|
+
export type PolkadotPrimitivesV9GroupRotationInfo = {
|
|
16477
16572
|
sessionStartBlock: number;
|
|
16478
16573
|
groupRotationFrequency: number;
|
|
16479
16574
|
now: number;
|
|
16480
16575
|
};
|
|
16481
16576
|
|
|
16482
|
-
export type
|
|
16483
|
-
| { type: 'Occupied'; value:
|
|
16484
|
-
| { type: 'Scheduled'; value:
|
|
16577
|
+
export type PolkadotPrimitivesV9CoreState =
|
|
16578
|
+
| { type: 'Occupied'; value: PolkadotPrimitivesV9OccupiedCore }
|
|
16579
|
+
| { type: 'Scheduled'; value: PolkadotPrimitivesV9ScheduledCore }
|
|
16485
16580
|
| { type: 'Free' };
|
|
16486
16581
|
|
|
16487
|
-
export type
|
|
16488
|
-
nextUpOnAvailable?:
|
|
16582
|
+
export type PolkadotPrimitivesV9OccupiedCore = {
|
|
16583
|
+
nextUpOnAvailable?: PolkadotPrimitivesV9ScheduledCore | undefined;
|
|
16489
16584
|
occupiedSince: number;
|
|
16490
16585
|
timeOutAt: number;
|
|
16491
|
-
nextUpOnTimeOut?:
|
|
16586
|
+
nextUpOnTimeOut?: PolkadotPrimitivesV9ScheduledCore | undefined;
|
|
16492
16587
|
availability: BitSequence;
|
|
16493
|
-
groupResponsible:
|
|
16588
|
+
groupResponsible: PolkadotPrimitivesV9GroupIndex;
|
|
16494
16589
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16495
|
-
candidateDescriptor:
|
|
16590
|
+
candidateDescriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
16496
16591
|
};
|
|
16497
16592
|
|
|
16498
|
-
export type
|
|
16593
|
+
export type PolkadotPrimitivesV9ScheduledCore = {
|
|
16499
16594
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
16500
|
-
collator?:
|
|
16595
|
+
collator?: PolkadotPrimitivesV9CollatorAppPublic | undefined;
|
|
16501
16596
|
};
|
|
16502
16597
|
|
|
16503
|
-
export type
|
|
16598
|
+
export type PolkadotPrimitivesV9CollatorAppPublic = FixedBytes<32>;
|
|
16504
16599
|
|
|
16505
|
-
export type
|
|
16600
|
+
export type PolkadotPrimitivesV9OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
|
|
16506
16601
|
|
|
16507
|
-
export type
|
|
16602
|
+
export type PolkadotPrimitivesV9PersistedValidationData = {
|
|
16508
16603
|
parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16509
16604
|
relayParentNumber: number;
|
|
16510
16605
|
relayParentStorageRoot: H256;
|
|
16511
16606
|
maxPovSize: number;
|
|
16512
16607
|
};
|
|
16513
16608
|
|
|
16514
|
-
export type
|
|
16609
|
+
export type PolkadotPrimitivesV9CandidateEvent =
|
|
16515
16610
|
| {
|
|
16516
16611
|
type: 'CandidateBacked';
|
|
16517
16612
|
value: [
|
|
16518
|
-
|
|
16613
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16519
16614
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16520
|
-
|
|
16521
|
-
|
|
16615
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16616
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
16522
16617
|
];
|
|
16523
16618
|
}
|
|
16524
16619
|
| {
|
|
16525
16620
|
type: 'CandidateIncluded';
|
|
16526
16621
|
value: [
|
|
16527
|
-
|
|
16622
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16528
16623
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16529
|
-
|
|
16530
|
-
|
|
16624
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16625
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
16531
16626
|
];
|
|
16532
16627
|
}
|
|
16533
16628
|
| {
|
|
16534
16629
|
type: 'CandidateTimedOut';
|
|
16535
16630
|
value: [
|
|
16536
|
-
|
|
16631
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16537
16632
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16538
|
-
|
|
16633
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16539
16634
|
];
|
|
16540
16635
|
};
|
|
16541
16636
|
|
|
16542
|
-
export type
|
|
16543
|
-
keys: Array<[
|
|
16544
|
-
kind:
|
|
16637
|
+
export type PolkadotPrimitivesV9SlashingLegacyPendingSlashes = {
|
|
16638
|
+
keys: Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidatorAppPublic]>;
|
|
16639
|
+
kind: PolkadotPrimitivesV9SlashingSlashingOffenceKind;
|
|
16545
16640
|
};
|
|
16546
16641
|
|
|
16547
|
-
export type
|
|
16642
|
+
export type PolkadotPrimitivesV9SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
|
|
16548
16643
|
|
|
16549
|
-
export type
|
|
16644
|
+
export type PolkadotPrimitivesV9SlashingOpaqueKeyOwnershipProof = Bytes;
|
|
16550
16645
|
|
|
16551
|
-
export type
|
|
16552
|
-
|
|
16553
|
-
|
|
16554
|
-
validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
|
|
16555
|
-
validatorId: PolkadotPrimitivesV8ValidatorAppPublic;
|
|
16646
|
+
export type PolkadotPrimitivesV9AsyncBackingBackingState = {
|
|
16647
|
+
constraints: PolkadotPrimitivesV9AsyncBackingConstraints;
|
|
16648
|
+
pendingAvailability: Array<PolkadotPrimitivesV9AsyncBackingCandidatePendingAvailability>;
|
|
16556
16649
|
};
|
|
16557
16650
|
|
|
16558
|
-
export type
|
|
16559
|
-
constraints: PolkadotPrimitivesV8AsyncBackingConstraints;
|
|
16560
|
-
pendingAvailability: Array<PolkadotPrimitivesVstagingAsyncBackingCandidatePendingAvailability>;
|
|
16561
|
-
};
|
|
16562
|
-
|
|
16563
|
-
export type PolkadotPrimitivesV8AsyncBackingConstraints = {
|
|
16651
|
+
export type PolkadotPrimitivesV9AsyncBackingConstraints = {
|
|
16564
16652
|
minRelayParentNumber: number;
|
|
16565
16653
|
maxPovSize: number;
|
|
16566
16654
|
maxCodeSize: number;
|
|
16655
|
+
maxHeadDataSize: number;
|
|
16567
16656
|
umpRemaining: number;
|
|
16568
16657
|
umpRemainingBytes: number;
|
|
16569
16658
|
maxUmpNumPerCandidate: number;
|
|
16570
16659
|
dmpRemainingMessages: Array<number>;
|
|
16571
|
-
hrmpInbound:
|
|
16660
|
+
hrmpInbound: PolkadotPrimitivesV9AsyncBackingInboundHrmpLimitations;
|
|
16572
16661
|
hrmpChannelsOut: Array<
|
|
16573
|
-
[PolkadotParachainPrimitivesPrimitivesId,
|
|
16662
|
+
[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV9AsyncBackingOutboundHrmpChannelLimitations]
|
|
16574
16663
|
>;
|
|
16575
16664
|
maxHrmpNumPerCandidate: number;
|
|
16576
16665
|
requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16577
16666
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
16578
|
-
upgradeRestriction?:
|
|
16667
|
+
upgradeRestriction?: PolkadotPrimitivesV9UpgradeRestriction | undefined;
|
|
16579
16668
|
futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
|
|
16580
16669
|
};
|
|
16581
16670
|
|
|
16582
|
-
export type
|
|
16671
|
+
export type PolkadotPrimitivesV9AsyncBackingInboundHrmpLimitations = { validWatermarks: Array<number> };
|
|
16583
16672
|
|
|
16584
|
-
export type
|
|
16673
|
+
export type PolkadotPrimitivesV9AsyncBackingOutboundHrmpChannelLimitations = {
|
|
16585
16674
|
bytesRemaining: number;
|
|
16586
16675
|
messagesRemaining: number;
|
|
16587
16676
|
};
|
|
16588
16677
|
|
|
16589
|
-
export type
|
|
16678
|
+
export type PolkadotPrimitivesV9AsyncBackingCandidatePendingAvailability = {
|
|
16590
16679
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16591
|
-
descriptor:
|
|
16592
|
-
commitments:
|
|
16680
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
16681
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
16593
16682
|
relayParentNumber: number;
|
|
16594
16683
|
maxPovSize: number;
|
|
16595
16684
|
};
|
|
16596
16685
|
|
|
16597
|
-
export type PolkadotPrimitivesVstagingAsyncBackingConstraints = {
|
|
16598
|
-
minRelayParentNumber: number;
|
|
16599
|
-
maxPovSize: number;
|
|
16600
|
-
maxCodeSize: number;
|
|
16601
|
-
maxHeadDataSize: number;
|
|
16602
|
-
umpRemaining: number;
|
|
16603
|
-
umpRemainingBytes: number;
|
|
16604
|
-
maxUmpNumPerCandidate: number;
|
|
16605
|
-
dmpRemainingMessages: Array<number>;
|
|
16606
|
-
hrmpInbound: PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations;
|
|
16607
|
-
hrmpChannelsOut: Array<
|
|
16608
|
-
[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations]
|
|
16609
|
-
>;
|
|
16610
|
-
maxHrmpNumPerCandidate: number;
|
|
16611
|
-
requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16612
|
-
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
16613
|
-
upgradeRestriction?: PolkadotPrimitivesV8UpgradeRestriction | undefined;
|
|
16614
|
-
futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
|
|
16615
|
-
};
|
|
16616
|
-
|
|
16617
16686
|
export type SpConsensusBeefyValidatorSet = { validators: Array<SpConsensusBeefyEcdsaCryptoPublic>; id: bigint };
|
|
16618
16687
|
|
|
16619
16688
|
export type SpRuntimeOpaqueValue = Bytes;
|