@dedot/chaintypes 0.198.0 → 0.200.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/kusama-asset-hub/index.d.ts +1 -1
- package/package.json +2 -2
- package/westend/errors.d.ts +5 -0
- package/westend/events.d.ts +12 -12
- package/westend/index.d.ts +1 -1
- package/westend/query.d.ts +84 -46
- package/westend/runtime.d.ts +100 -79
- package/westend/tx.d.ts +32 -32
- package/westend/types.d.ts +169 -181
- package/westend-people/index.d.ts +1 -1
- package/westend-people/query.d.ts +35 -16
- package/westend-people/runtime.d.ts +27 -5
- package/westend-people/types.d.ts +22 -13
package/westend/types.d.ts
CHANGED
|
@@ -3456,15 +3456,15 @@ export type PalletSessionCallLike =
|
|
|
3456
3456
|
export type WestendRuntimeSessionKeys = {
|
|
3457
3457
|
grandpa: SpConsensusGrandpaAppPublic;
|
|
3458
3458
|
babe: SpConsensusBabeAppPublic;
|
|
3459
|
-
paraValidator:
|
|
3460
|
-
paraAssignment:
|
|
3459
|
+
paraValidator: PolkadotPrimitivesV9ValidatorAppPublic;
|
|
3460
|
+
paraAssignment: PolkadotPrimitivesV9AssignmentAppPublic;
|
|
3461
3461
|
authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3462
3462
|
beefy: SpConsensusBeefyEcdsaCryptoPublic;
|
|
3463
3463
|
};
|
|
3464
3464
|
|
|
3465
|
-
export type
|
|
3465
|
+
export type PolkadotPrimitivesV9ValidatorAppPublic = FixedBytes<32>;
|
|
3466
3466
|
|
|
3467
|
-
export type
|
|
3467
|
+
export type PolkadotPrimitivesV9AssignmentAppPublic = FixedBytes<32>;
|
|
3468
3468
|
|
|
3469
3469
|
export type SpAuthorityDiscoveryAppPublic = FixedBytes<32>;
|
|
3470
3470
|
|
|
@@ -4474,7 +4474,8 @@ export type PalletIdentityJudgement =
|
|
|
4474
4474
|
export type SpRuntimeMultiSignature =
|
|
4475
4475
|
| { type: 'Ed25519'; value: FixedBytes<64> }
|
|
4476
4476
|
| { type: 'Sr25519'; value: FixedBytes<64> }
|
|
4477
|
-
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
4477
|
+
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
4478
|
+
| { type: 'Eth'; value: FixedBytes<65> };
|
|
4478
4479
|
|
|
4479
4480
|
/**
|
|
4480
4481
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -8185,11 +8186,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
8185
8186
|
/**
|
|
8186
8187
|
* Set the asynchronous backing parameters.
|
|
8187
8188
|
**/
|
|
8188
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
8189
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams } }
|
|
8189
8190
|
/**
|
|
8190
8191
|
* Set PVF executor parameters.
|
|
8191
8192
|
**/
|
|
8192
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
8193
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV9ExecutorParams } }
|
|
8193
8194
|
/**
|
|
8194
8195
|
* Set the on demand (parathreads) base fee.
|
|
8195
8196
|
**/
|
|
@@ -8217,11 +8218,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
8217
8218
|
/**
|
|
8218
8219
|
* Set approval-voting-params.
|
|
8219
8220
|
**/
|
|
8220
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
8221
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV9ApprovalVotingParams } }
|
|
8221
8222
|
/**
|
|
8222
8223
|
* Set scheduler-params.
|
|
8223
8224
|
**/
|
|
8224
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
8225
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
|
|
8225
8226
|
|
|
8226
8227
|
export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
8227
8228
|
/**
|
|
@@ -8381,11 +8382,11 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
8381
8382
|
/**
|
|
8382
8383
|
* Set the asynchronous backing parameters.
|
|
8383
8384
|
**/
|
|
8384
|
-
| { name: 'SetAsyncBackingParams'; params: { new:
|
|
8385
|
+
| { name: 'SetAsyncBackingParams'; params: { new: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams } }
|
|
8385
8386
|
/**
|
|
8386
8387
|
* Set PVF executor parameters.
|
|
8387
8388
|
**/
|
|
8388
|
-
| { name: 'SetExecutorParams'; params: { new:
|
|
8389
|
+
| { name: 'SetExecutorParams'; params: { new: PolkadotPrimitivesV9ExecutorParams } }
|
|
8389
8390
|
/**
|
|
8390
8391
|
* Set the on demand (parathreads) base fee.
|
|
8391
8392
|
**/
|
|
@@ -8413,35 +8414,35 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
8413
8414
|
/**
|
|
8414
8415
|
* Set approval-voting-params.
|
|
8415
8416
|
**/
|
|
8416
|
-
| { name: 'SetApprovalVotingParams'; params: { new:
|
|
8417
|
+
| { name: 'SetApprovalVotingParams'; params: { new: PolkadotPrimitivesV9ApprovalVotingParams } }
|
|
8417
8418
|
/**
|
|
8418
8419
|
* Set scheduler-params.
|
|
8419
8420
|
**/
|
|
8420
|
-
| { name: 'SetSchedulerParams'; params: { new:
|
|
8421
|
+
| { name: 'SetSchedulerParams'; params: { new: PolkadotPrimitivesV9SchedulerParams } };
|
|
8421
8422
|
|
|
8422
|
-
export type
|
|
8423
|
+
export type PolkadotPrimitivesV9AsyncBackingAsyncBackingParams = {
|
|
8423
8424
|
maxCandidateDepth: number;
|
|
8424
8425
|
allowedAncestryLen: number;
|
|
8425
8426
|
};
|
|
8426
8427
|
|
|
8427
|
-
export type
|
|
8428
|
+
export type PolkadotPrimitivesV9ExecutorParams = Array<PolkadotPrimitivesV9ExecutorParamsExecutorParam>;
|
|
8428
8429
|
|
|
8429
|
-
export type
|
|
8430
|
+
export type PolkadotPrimitivesV9ExecutorParamsExecutorParam =
|
|
8430
8431
|
| { type: 'MaxMemoryPages'; value: number }
|
|
8431
8432
|
| { type: 'StackLogicalMax'; value: number }
|
|
8432
8433
|
| { type: 'StackNativeMax'; value: number }
|
|
8433
8434
|
| { type: 'PrecheckingMaxMemory'; value: bigint }
|
|
8434
|
-
| { type: 'PvfPrepTimeout'; value: [
|
|
8435
|
-
| { type: 'PvfExecTimeout'; value: [
|
|
8435
|
+
| { type: 'PvfPrepTimeout'; value: [PolkadotPrimitivesV9PvfPrepKind, bigint] }
|
|
8436
|
+
| { type: 'PvfExecTimeout'; value: [PolkadotPrimitivesV9PvfExecKind, bigint] }
|
|
8436
8437
|
| { type: 'WasmExtBulkMemory' };
|
|
8437
8438
|
|
|
8438
|
-
export type
|
|
8439
|
+
export type PolkadotPrimitivesV9PvfPrepKind = 'Precheck' | 'Prepare';
|
|
8439
8440
|
|
|
8440
|
-
export type
|
|
8441
|
+
export type PolkadotPrimitivesV9PvfExecKind = 'Backing' | 'Approval';
|
|
8441
8442
|
|
|
8442
|
-
export type
|
|
8443
|
+
export type PolkadotPrimitivesV9ApprovalVotingParams = { maxApprovalCoalesceCount: number };
|
|
8443
8444
|
|
|
8444
|
-
export type
|
|
8445
|
+
export type PolkadotPrimitivesV9SchedulerParams = {
|
|
8445
8446
|
groupRotationFrequency: number;
|
|
8446
8447
|
parasAvailabilityPeriod: number;
|
|
8447
8448
|
maxValidatorsPerCore?: number | undefined;
|
|
@@ -8476,50 +8477,50 @@ export type PolkadotRuntimeParachainsParasInherentPalletCall =
|
|
|
8476
8477
|
/**
|
|
8477
8478
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
8478
8479
|
**/
|
|
8479
|
-
{ name: 'Enter'; params: { data:
|
|
8480
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV9InherentData } };
|
|
8480
8481
|
|
|
8481
8482
|
export type PolkadotRuntimeParachainsParasInherentPalletCallLike =
|
|
8482
8483
|
/**
|
|
8483
8484
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
8484
8485
|
**/
|
|
8485
|
-
{ name: 'Enter'; params: { data:
|
|
8486
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesV9InherentData } };
|
|
8486
8487
|
|
|
8487
|
-
export type
|
|
8488
|
-
bitfields: Array<
|
|
8489
|
-
backedCandidates: Array<
|
|
8490
|
-
disputes: Array<
|
|
8488
|
+
export type PolkadotPrimitivesV9InherentData = {
|
|
8489
|
+
bitfields: Array<PolkadotPrimitivesV9SignedUncheckedSigned>;
|
|
8490
|
+
backedCandidates: Array<PolkadotPrimitivesV9BackedCandidate>;
|
|
8491
|
+
disputes: Array<PolkadotPrimitivesV9DisputeStatementSet>;
|
|
8491
8492
|
parentHeader: Header;
|
|
8492
8493
|
};
|
|
8493
8494
|
|
|
8494
|
-
export type
|
|
8495
|
-
payload:
|
|
8496
|
-
validatorIndex:
|
|
8497
|
-
signature:
|
|
8495
|
+
export type PolkadotPrimitivesV9SignedUncheckedSigned = {
|
|
8496
|
+
payload: PolkadotPrimitivesV9AvailabilityBitfield;
|
|
8497
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
8498
|
+
signature: PolkadotPrimitivesV9ValidatorAppSignature;
|
|
8498
8499
|
};
|
|
8499
8500
|
|
|
8500
|
-
export type
|
|
8501
|
+
export type PolkadotPrimitivesV9AvailabilityBitfield = BitSequence;
|
|
8501
8502
|
|
|
8502
8503
|
export type BitvecOrderLsb0 = {};
|
|
8503
8504
|
|
|
8504
|
-
export type
|
|
8505
|
+
export type PolkadotPrimitivesV9ValidatorIndex = number;
|
|
8505
8506
|
|
|
8506
|
-
export type
|
|
8507
|
+
export type PolkadotPrimitivesV9ValidatorAppSignature = FixedBytes<64>;
|
|
8507
8508
|
|
|
8508
|
-
export type
|
|
8509
|
-
candidate:
|
|
8510
|
-
validityVotes: Array<
|
|
8509
|
+
export type PolkadotPrimitivesV9BackedCandidate = {
|
|
8510
|
+
candidate: PolkadotPrimitivesV9CommittedCandidateReceiptV2;
|
|
8511
|
+
validityVotes: Array<PolkadotPrimitivesV9ValidityAttestation>;
|
|
8511
8512
|
validatorIndices: BitSequence;
|
|
8512
8513
|
};
|
|
8513
8514
|
|
|
8514
|
-
export type
|
|
8515
|
-
descriptor:
|
|
8516
|
-
commitments:
|
|
8515
|
+
export type PolkadotPrimitivesV9CommittedCandidateReceiptV2 = {
|
|
8516
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
8517
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
8517
8518
|
};
|
|
8518
8519
|
|
|
8519
|
-
export type
|
|
8520
|
+
export type PolkadotPrimitivesV9CandidateDescriptorV2 = {
|
|
8520
8521
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
8521
8522
|
relayParent: H256;
|
|
8522
|
-
version:
|
|
8523
|
+
version: PolkadotPrimitivesV9InternalVersion;
|
|
8523
8524
|
coreIndex: number;
|
|
8524
8525
|
sessionIndex: number;
|
|
8525
8526
|
reserved1: FixedBytes<25>;
|
|
@@ -8531,11 +8532,11 @@ export type PolkadotPrimitivesVstagingCandidateDescriptorV2 = {
|
|
|
8531
8532
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
8532
8533
|
};
|
|
8533
8534
|
|
|
8534
|
-
export type
|
|
8535
|
+
export type PolkadotPrimitivesV9InternalVersion = number;
|
|
8535
8536
|
|
|
8536
8537
|
export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
|
|
8537
8538
|
|
|
8538
|
-
export type
|
|
8539
|
+
export type PolkadotPrimitivesV9CandidateCommitments = {
|
|
8539
8540
|
upwardMessages: Array<Bytes>;
|
|
8540
8541
|
horizontalMessages: Array<PolkadotCorePrimitivesOutboundHrmpMessage>;
|
|
8541
8542
|
newValidationCode?: PolkadotParachainPrimitivesPrimitivesValidationCode | undefined;
|
|
@@ -8553,36 +8554,36 @@ export type PolkadotParachainPrimitivesPrimitivesValidationCode = Bytes;
|
|
|
8553
8554
|
|
|
8554
8555
|
export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
|
|
8555
8556
|
|
|
8556
|
-
export type
|
|
8557
|
-
| { type: 'Implicit'; value:
|
|
8558
|
-
| { type: 'Explicit'; value:
|
|
8557
|
+
export type PolkadotPrimitivesV9ValidityAttestation =
|
|
8558
|
+
| { type: 'Implicit'; value: PolkadotPrimitivesV9ValidatorAppSignature }
|
|
8559
|
+
| { type: 'Explicit'; value: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
8559
8560
|
|
|
8560
|
-
export type
|
|
8561
|
+
export type PolkadotPrimitivesV9DisputeStatementSet = {
|
|
8561
8562
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
8562
8563
|
session: number;
|
|
8563
8564
|
statements: Array<
|
|
8564
8565
|
[
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8566
|
+
PolkadotPrimitivesV9DisputeStatement,
|
|
8567
|
+
PolkadotPrimitivesV9ValidatorIndex,
|
|
8568
|
+
PolkadotPrimitivesV9ValidatorAppSignature,
|
|
8568
8569
|
]
|
|
8569
8570
|
>;
|
|
8570
8571
|
};
|
|
8571
8572
|
|
|
8572
8573
|
export type PolkadotCorePrimitivesCandidateHash = H256;
|
|
8573
8574
|
|
|
8574
|
-
export type
|
|
8575
|
-
| { type: 'Valid'; value:
|
|
8576
|
-
| { type: 'Invalid'; value:
|
|
8575
|
+
export type PolkadotPrimitivesV9DisputeStatement =
|
|
8576
|
+
| { type: 'Valid'; value: PolkadotPrimitivesV9ValidDisputeStatementKind }
|
|
8577
|
+
| { type: 'Invalid'; value: PolkadotPrimitivesV9InvalidDisputeStatementKind };
|
|
8577
8578
|
|
|
8578
|
-
export type
|
|
8579
|
+
export type PolkadotPrimitivesV9ValidDisputeStatementKind =
|
|
8579
8580
|
| { type: 'Explicit' }
|
|
8580
8581
|
| { type: 'BackingSeconded'; value: H256 }
|
|
8581
8582
|
| { type: 'BackingValid'; value: H256 }
|
|
8582
8583
|
| { type: 'ApprovalChecking' }
|
|
8583
8584
|
| { type: 'ApprovalCheckingMultipleCandidates'; value: Array<PolkadotCorePrimitivesCandidateHash> };
|
|
8584
8585
|
|
|
8585
|
-
export type
|
|
8586
|
+
export type PolkadotPrimitivesV9InvalidDisputeStatementKind = 'Explicit';
|
|
8586
8587
|
|
|
8587
8588
|
/**
|
|
8588
8589
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -8666,7 +8667,7 @@ export type PolkadotRuntimeParachainsParasPalletCall =
|
|
|
8666
8667
|
**/
|
|
8667
8668
|
| {
|
|
8668
8669
|
name: 'IncludePvfCheckStatement';
|
|
8669
|
-
params: { stmt:
|
|
8670
|
+
params: { stmt: PolkadotPrimitivesV9PvfCheckStatement; signature: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
8670
8671
|
}
|
|
8671
8672
|
/**
|
|
8672
8673
|
* Set the storage for the current parachain head data immediately.
|
|
@@ -8791,7 +8792,7 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
|
|
|
8791
8792
|
**/
|
|
8792
8793
|
| {
|
|
8793
8794
|
name: 'IncludePvfCheckStatement';
|
|
8794
|
-
params: { stmt:
|
|
8795
|
+
params: { stmt: PolkadotPrimitivesV9PvfCheckStatement; signature: PolkadotPrimitivesV9ValidatorAppSignature };
|
|
8795
8796
|
}
|
|
8796
8797
|
/**
|
|
8797
8798
|
* Set the storage for the current parachain head data immediately.
|
|
@@ -8837,11 +8838,11 @@ export type PolkadotRuntimeParachainsParasPalletCallLike =
|
|
|
8837
8838
|
};
|
|
8838
8839
|
};
|
|
8839
8840
|
|
|
8840
|
-
export type
|
|
8841
|
+
export type PolkadotPrimitivesV9PvfCheckStatement = {
|
|
8841
8842
|
accept: boolean;
|
|
8842
8843
|
subject: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
8843
8844
|
sessionIndex: number;
|
|
8844
|
-
validatorIndex:
|
|
8845
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
8845
8846
|
};
|
|
8846
8847
|
|
|
8847
8848
|
/**
|
|
@@ -9175,27 +9176,27 @@ export type PolkadotRuntimeParachainsDisputesPalletCallLike = 'ForceUnfreeze';
|
|
|
9175
9176
|
**/
|
|
9176
9177
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCall = {
|
|
9177
9178
|
name: 'ReportDisputeLostUnsigned';
|
|
9178
|
-
params: { disputeProof:
|
|
9179
|
+
params: { disputeProof: PolkadotPrimitivesV9SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
9179
9180
|
};
|
|
9180
9181
|
|
|
9181
9182
|
export type PolkadotRuntimeParachainsDisputesSlashingPalletCallLike = {
|
|
9182
9183
|
name: 'ReportDisputeLostUnsigned';
|
|
9183
|
-
params: { disputeProof:
|
|
9184
|
+
params: { disputeProof: PolkadotPrimitivesV9SlashingDisputeProof; keyOwnerProof: SpSessionMembershipProof };
|
|
9184
9185
|
};
|
|
9185
9186
|
|
|
9186
|
-
export type
|
|
9187
|
-
timeSlot:
|
|
9188
|
-
kind:
|
|
9189
|
-
validatorIndex:
|
|
9190
|
-
validatorId:
|
|
9187
|
+
export type PolkadotPrimitivesV9SlashingDisputeProof = {
|
|
9188
|
+
timeSlot: PolkadotPrimitivesV9SlashingDisputesTimeSlot;
|
|
9189
|
+
kind: PolkadotPrimitivesV9DisputeOffenceKind;
|
|
9190
|
+
validatorIndex: PolkadotPrimitivesV9ValidatorIndex;
|
|
9191
|
+
validatorId: PolkadotPrimitivesV9ValidatorAppPublic;
|
|
9191
9192
|
};
|
|
9192
9193
|
|
|
9193
|
-
export type
|
|
9194
|
+
export type PolkadotPrimitivesV9SlashingDisputesTimeSlot = {
|
|
9194
9195
|
sessionIndex: number;
|
|
9195
9196
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
9196
9197
|
};
|
|
9197
9198
|
|
|
9198
|
-
export type
|
|
9199
|
+
export type PolkadotPrimitivesV9DisputeOffenceKind = 'ForInvalidBacked' | 'AgainstValid' | 'ForInvalidApproved';
|
|
9199
9200
|
|
|
9200
9201
|
/**
|
|
9201
9202
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -10639,7 +10640,8 @@ export type PolkadotRuntimeCommonCrowdloanPalletCallLike =
|
|
|
10639
10640
|
export type SpRuntimeMultiSigner =
|
|
10640
10641
|
| { type: 'Ed25519'; value: FixedBytes<32> }
|
|
10641
10642
|
| { type: 'Sr25519'; value: FixedBytes<32> }
|
|
10642
|
-
| { type: 'Ecdsa'; value: FixedBytes<33> }
|
|
10643
|
+
| { type: 'Ecdsa'; value: FixedBytes<33> }
|
|
10644
|
+
| { type: 'Eth'; value: FixedBytes<33> };
|
|
10643
10645
|
|
|
10644
10646
|
/**
|
|
10645
10647
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -12227,10 +12229,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12227
12229
|
| {
|
|
12228
12230
|
name: 'CandidateBacked';
|
|
12229
12231
|
data: [
|
|
12230
|
-
|
|
12232
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12231
12233
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12232
|
-
|
|
12233
|
-
|
|
12234
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12235
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
12234
12236
|
];
|
|
12235
12237
|
}
|
|
12236
12238
|
/**
|
|
@@ -12239,10 +12241,10 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12239
12241
|
| {
|
|
12240
12242
|
name: 'CandidateIncluded';
|
|
12241
12243
|
data: [
|
|
12242
|
-
|
|
12244
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12243
12245
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12244
|
-
|
|
12245
|
-
|
|
12246
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12247
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
12246
12248
|
];
|
|
12247
12249
|
}
|
|
12248
12250
|
/**
|
|
@@ -12251,9 +12253,9 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12251
12253
|
| {
|
|
12252
12254
|
name: 'CandidateTimedOut';
|
|
12253
12255
|
data: [
|
|
12254
|
-
|
|
12256
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
12255
12257
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12256
|
-
|
|
12258
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
12257
12259
|
];
|
|
12258
12260
|
}
|
|
12259
12261
|
/**
|
|
@@ -12261,14 +12263,14 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12261
12263
|
**/
|
|
12262
12264
|
| { name: 'UpwardMessagesReceived'; data: { from: PolkadotParachainPrimitivesPrimitivesId; count: number } };
|
|
12263
12265
|
|
|
12264
|
-
export type
|
|
12265
|
-
descriptor:
|
|
12266
|
+
export type PolkadotPrimitivesV9CandidateReceiptV2 = {
|
|
12267
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
12266
12268
|
commitmentsHash: H256;
|
|
12267
12269
|
};
|
|
12268
12270
|
|
|
12269
|
-
export type
|
|
12271
|
+
export type PolkadotPrimitivesV9CoreIndex = number;
|
|
12270
12272
|
|
|
12271
|
-
export type
|
|
12273
|
+
export type PolkadotPrimitivesV9GroupIndex = number;
|
|
12272
12274
|
|
|
12273
12275
|
/**
|
|
12274
12276
|
* The `Event` enum of this pallet
|
|
@@ -12649,7 +12651,7 @@ export type PolkadotRuntimeParachainsCoretimePalletEvent =
|
|
|
12649
12651
|
/**
|
|
12650
12652
|
* A core has received a new assignment from the broker chain.
|
|
12651
12653
|
**/
|
|
12652
|
-
| { name: 'CoreAssigned'; data: { core:
|
|
12654
|
+
| { name: 'CoreAssigned'; data: { core: PolkadotPrimitivesV9CoreIndex } };
|
|
12653
12655
|
|
|
12654
12656
|
/**
|
|
12655
12657
|
* The `Event` enum of this pallet
|
|
@@ -13428,6 +13430,10 @@ export type PalletBalancesError =
|
|
|
13428
13430
|
|
|
13429
13431
|
export type PalletTransactionPaymentReleases = 'V1Ancient' | 'V2';
|
|
13430
13432
|
|
|
13433
|
+
export type FrameSupportStorageNoDrop = FrameSupportTokensFungibleImbalance;
|
|
13434
|
+
|
|
13435
|
+
export type FrameSupportTokensFungibleImbalance = { amount: bigint };
|
|
13436
|
+
|
|
13431
13437
|
export type PalletStakingStakingLedger = {
|
|
13432
13438
|
stash: AccountId32;
|
|
13433
13439
|
total: bigint;
|
|
@@ -14876,7 +14882,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
14876
14882
|
hrmpMaxMessageNumPerCandidate: number;
|
|
14877
14883
|
validationUpgradeCooldown: number;
|
|
14878
14884
|
validationUpgradeDelay: number;
|
|
14879
|
-
asyncBackingParams:
|
|
14885
|
+
asyncBackingParams: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams;
|
|
14880
14886
|
maxPovSize: number;
|
|
14881
14887
|
maxDownwardMessageSize: number;
|
|
14882
14888
|
hrmpMaxParachainOutboundChannels: number;
|
|
@@ -14886,7 +14892,7 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
14886
14892
|
hrmpChannelMaxTotalSize: number;
|
|
14887
14893
|
hrmpMaxParachainInboundChannels: number;
|
|
14888
14894
|
hrmpChannelMaxMessageSize: number;
|
|
14889
|
-
executorParams:
|
|
14895
|
+
executorParams: PolkadotPrimitivesV9ExecutorParams;
|
|
14890
14896
|
codeRetentionPeriod: number;
|
|
14891
14897
|
maxValidators?: number | undefined;
|
|
14892
14898
|
disputePeriod: number;
|
|
@@ -14900,8 +14906,8 @@ export type PolkadotRuntimeParachainsConfigurationHostConfiguration = {
|
|
|
14900
14906
|
minimumValidationUpgradeDelay: number;
|
|
14901
14907
|
minimumBackingVotes: number;
|
|
14902
14908
|
nodeFeatures: BitSequence;
|
|
14903
|
-
approvalVotingParams:
|
|
14904
|
-
schedulerParams:
|
|
14909
|
+
approvalVotingParams: PolkadotPrimitivesV9ApprovalVotingParams;
|
|
14910
|
+
schedulerParams: PolkadotPrimitivesV9SchedulerParams;
|
|
14905
14911
|
};
|
|
14906
14912
|
|
|
14907
14913
|
/**
|
|
@@ -14921,19 +14927,19 @@ export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
|
|
|
14921
14927
|
export type PolkadotRuntimeParachainsSharedRelayParentInfo = {
|
|
14922
14928
|
relayParent: H256;
|
|
14923
14929
|
stateRoot: H256;
|
|
14924
|
-
claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<
|
|
14930
|
+
claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<PolkadotPrimitivesV9CoreIndex>]>]>;
|
|
14925
14931
|
};
|
|
14926
14932
|
|
|
14927
14933
|
export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
|
|
14928
|
-
core:
|
|
14934
|
+
core: PolkadotPrimitivesV9CoreIndex;
|
|
14929
14935
|
hash: PolkadotCorePrimitivesCandidateHash;
|
|
14930
|
-
descriptor:
|
|
14931
|
-
commitments:
|
|
14936
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
14937
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
14932
14938
|
availabilityVotes: BitSequence;
|
|
14933
14939
|
backers: BitSequence;
|
|
14934
14940
|
relayParentNumber: number;
|
|
14935
14941
|
backedInNumber: number;
|
|
14936
|
-
backingGroup:
|
|
14942
|
+
backingGroup: PolkadotPrimitivesV9GroupIndex;
|
|
14937
14943
|
};
|
|
14938
14944
|
|
|
14939
14945
|
/**
|
|
@@ -15012,15 +15018,15 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
|
|
|
15012
15018
|
**/
|
|
15013
15019
|
| 'ParaHeadMismatch';
|
|
15014
15020
|
|
|
15015
|
-
export type
|
|
15021
|
+
export type PolkadotPrimitivesV9ScrapedOnChainVotes = {
|
|
15016
15022
|
session: number;
|
|
15017
15023
|
backingValidatorsPerCandidate: Array<
|
|
15018
15024
|
[
|
|
15019
|
-
|
|
15020
|
-
Array<[
|
|
15025
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
15026
|
+
Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidityAttestation]>,
|
|
15021
15027
|
]
|
|
15022
15028
|
>;
|
|
15023
|
-
disputes: Array<
|
|
15029
|
+
disputes: Array<PolkadotPrimitivesV9DisputeStatementSet>;
|
|
15024
15030
|
};
|
|
15025
15031
|
|
|
15026
15032
|
/**
|
|
@@ -15049,7 +15055,7 @@ export type PolkadotRuntimeParachainsParasInherentPalletError =
|
|
|
15049
15055
|
export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
|
|
15050
15056
|
| {
|
|
15051
15057
|
type: 'Pool';
|
|
15052
|
-
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex:
|
|
15058
|
+
value: { paraId: PolkadotParachainPrimitivesPrimitivesId; coreIndex: PolkadotPrimitivesV9CoreIndex };
|
|
15053
15059
|
}
|
|
15054
15060
|
| { type: 'Bulk'; value: PolkadotParachainPrimitivesPrimitivesId };
|
|
15055
15061
|
|
|
@@ -15095,9 +15101,9 @@ export type PolkadotRuntimeParachainsParasAuthorizedCodeHashAndExpiry = {
|
|
|
15095
15101
|
expireAt: number;
|
|
15096
15102
|
};
|
|
15097
15103
|
|
|
15098
|
-
export type
|
|
15104
|
+
export type PolkadotPrimitivesV9UpgradeGoAhead = 'Abort' | 'GoAhead';
|
|
15099
15105
|
|
|
15100
|
-
export type
|
|
15106
|
+
export type PolkadotPrimitivesV9UpgradeRestriction = 'Present';
|
|
15101
15107
|
|
|
15102
15108
|
/**
|
|
15103
15109
|
* The `Error` enum of this pallet.
|
|
@@ -15169,8 +15175,8 @@ export type PolkadotRuntimeParachainsParasPalletError =
|
|
|
15169
15175
|
| 'InvalidBlockNumber';
|
|
15170
15176
|
|
|
15171
15177
|
export type PolkadotRuntimeParachainsInitializerBufferedSessionChange = {
|
|
15172
|
-
validators: Array<
|
|
15173
|
-
queued: Array<
|
|
15178
|
+
validators: Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15179
|
+
queued: Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15174
15180
|
sessionIndex: number;
|
|
15175
15181
|
};
|
|
15176
15182
|
|
|
@@ -15283,14 +15289,14 @@ export type PolkadotRuntimeParachainsHrmpPalletError =
|
|
|
15283
15289
|
**/
|
|
15284
15290
|
| 'ChannelCreationNotAuthorized';
|
|
15285
15291
|
|
|
15286
|
-
export type
|
|
15287
|
-
activeValidatorIndices: Array<
|
|
15292
|
+
export type PolkadotPrimitivesV9SessionInfo = {
|
|
15293
|
+
activeValidatorIndices: Array<PolkadotPrimitivesV9ValidatorIndex>;
|
|
15288
15294
|
randomSeed: FixedBytes<32>;
|
|
15289
15295
|
disputePeriod: number;
|
|
15290
|
-
validators:
|
|
15296
|
+
validators: PolkadotPrimitivesV9IndexedVec;
|
|
15291
15297
|
discoveryKeys: Array<SpAuthorityDiscoveryAppPublic>;
|
|
15292
|
-
assignmentKeys: Array<
|
|
15293
|
-
validatorGroups:
|
|
15298
|
+
assignmentKeys: Array<PolkadotPrimitivesV9AssignmentAppPublic>;
|
|
15299
|
+
validatorGroups: PolkadotPrimitivesV9IndexedVecGroupIndex;
|
|
15294
15300
|
nCores: number;
|
|
15295
15301
|
zerothDelayTrancheWidth: number;
|
|
15296
15302
|
relayVrfModuloSamples: number;
|
|
@@ -15299,11 +15305,11 @@ export type PolkadotPrimitivesV8SessionInfo = {
|
|
|
15299
15305
|
neededApprovals: number;
|
|
15300
15306
|
};
|
|
15301
15307
|
|
|
15302
|
-
export type
|
|
15308
|
+
export type PolkadotPrimitivesV9IndexedVec = Array<PolkadotPrimitivesV9ValidatorAppPublic>;
|
|
15303
15309
|
|
|
15304
|
-
export type
|
|
15310
|
+
export type PolkadotPrimitivesV9IndexedVecGroupIndex = Array<Array<PolkadotPrimitivesV9ValidatorIndex>>;
|
|
15305
15311
|
|
|
15306
|
-
export type
|
|
15312
|
+
export type PolkadotPrimitivesV9DisputeState = {
|
|
15307
15313
|
validatorsFor: BitSequence;
|
|
15308
15314
|
validatorsAgainst: BitSequence;
|
|
15309
15315
|
start: number;
|
|
@@ -15351,9 +15357,9 @@ export type PolkadotRuntimeParachainsDisputesPalletError =
|
|
|
15351
15357
|
**/
|
|
15352
15358
|
| 'UnconfirmedDispute';
|
|
15353
15359
|
|
|
15354
|
-
export type
|
|
15355
|
-
keys: Array<[
|
|
15356
|
-
kind:
|
|
15360
|
+
export type PolkadotPrimitivesV9SlashingPendingSlashes = {
|
|
15361
|
+
keys: Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidatorAppPublic]>;
|
|
15362
|
+
kind: PolkadotPrimitivesV9DisputeOffenceKind;
|
|
15357
15363
|
};
|
|
15358
15364
|
|
|
15359
15365
|
/**
|
|
@@ -15387,7 +15393,7 @@ export type PolkadotRuntimeParachainsDisputesSlashingPalletError =
|
|
|
15387
15393
|
| 'DuplicateSlashingReport';
|
|
15388
15394
|
|
|
15389
15395
|
export type PolkadotRuntimeParachainsOnDemandTypesCoreAffinityCount = {
|
|
15390
|
-
coreIndex:
|
|
15396
|
+
coreIndex: PolkadotPrimitivesV9CoreIndex;
|
|
15391
15397
|
count: number;
|
|
15392
15398
|
};
|
|
15393
15399
|
|
|
@@ -16198,6 +16204,10 @@ export type PalletBeefyError =
|
|
|
16198
16204
|
* The session of the equivocation proof is invalid
|
|
16199
16205
|
**/
|
|
16200
16206
|
| 'InvalidEquivocationProofSession'
|
|
16207
|
+
/**
|
|
16208
|
+
* The session of the equivocation proof is not in the mapping (anymore)
|
|
16209
|
+
**/
|
|
16210
|
+
| 'InvalidEquivocationProofSessionMember'
|
|
16201
16211
|
/**
|
|
16202
16212
|
* A given equivocation report is valid but already previously reported.
|
|
16203
16213
|
**/
|
|
@@ -16209,6 +16219,10 @@ export type PalletBeefyError =
|
|
|
16209
16219
|
|
|
16210
16220
|
export type SpConsensusBeefyMmrBeefyAuthoritySet = { id: bigint; len: number; keysetCommitment: H256 };
|
|
16211
16221
|
|
|
16222
|
+
export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
|
|
16223
|
+
|
|
16224
|
+
export type SpRuntimeOpaqueExtrinsic = Bytes;
|
|
16225
|
+
|
|
16212
16226
|
export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
|
|
16213
16227
|
|
|
16214
16228
|
export type SpCoreOpaqueMetadata = Bytes;
|
|
@@ -16258,147 +16272,121 @@ export type SpRuntimeTransactionValidityValidTransaction = {
|
|
|
16258
16272
|
propagate: boolean;
|
|
16259
16273
|
};
|
|
16260
16274
|
|
|
16261
|
-
export type
|
|
16275
|
+
export type PolkadotPrimitivesV9GroupRotationInfo = {
|
|
16262
16276
|
sessionStartBlock: number;
|
|
16263
16277
|
groupRotationFrequency: number;
|
|
16264
16278
|
now: number;
|
|
16265
16279
|
};
|
|
16266
16280
|
|
|
16267
|
-
export type
|
|
16268
|
-
| { type: 'Occupied'; value:
|
|
16269
|
-
| { type: 'Scheduled'; value:
|
|
16281
|
+
export type PolkadotPrimitivesV9CoreState =
|
|
16282
|
+
| { type: 'Occupied'; value: PolkadotPrimitivesV9OccupiedCore }
|
|
16283
|
+
| { type: 'Scheduled'; value: PolkadotPrimitivesV9ScheduledCore }
|
|
16270
16284
|
| { type: 'Free' };
|
|
16271
16285
|
|
|
16272
|
-
export type
|
|
16273
|
-
nextUpOnAvailable?:
|
|
16286
|
+
export type PolkadotPrimitivesV9OccupiedCore = {
|
|
16287
|
+
nextUpOnAvailable?: PolkadotPrimitivesV9ScheduledCore | undefined;
|
|
16274
16288
|
occupiedSince: number;
|
|
16275
16289
|
timeOutAt: number;
|
|
16276
|
-
nextUpOnTimeOut?:
|
|
16290
|
+
nextUpOnTimeOut?: PolkadotPrimitivesV9ScheduledCore | undefined;
|
|
16277
16291
|
availability: BitSequence;
|
|
16278
|
-
groupResponsible:
|
|
16292
|
+
groupResponsible: PolkadotPrimitivesV9GroupIndex;
|
|
16279
16293
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16280
|
-
candidateDescriptor:
|
|
16294
|
+
candidateDescriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
16281
16295
|
};
|
|
16282
16296
|
|
|
16283
|
-
export type
|
|
16297
|
+
export type PolkadotPrimitivesV9ScheduledCore = {
|
|
16284
16298
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
16285
|
-
collator?:
|
|
16299
|
+
collator?: PolkadotPrimitivesV9CollatorAppPublic | undefined;
|
|
16286
16300
|
};
|
|
16287
16301
|
|
|
16288
|
-
export type
|
|
16302
|
+
export type PolkadotPrimitivesV9CollatorAppPublic = FixedBytes<32>;
|
|
16289
16303
|
|
|
16290
|
-
export type
|
|
16304
|
+
export type PolkadotPrimitivesV9OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
|
|
16291
16305
|
|
|
16292
|
-
export type
|
|
16306
|
+
export type PolkadotPrimitivesV9PersistedValidationData = {
|
|
16293
16307
|
parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16294
16308
|
relayParentNumber: number;
|
|
16295
16309
|
relayParentStorageRoot: H256;
|
|
16296
16310
|
maxPovSize: number;
|
|
16297
16311
|
};
|
|
16298
16312
|
|
|
16299
|
-
export type
|
|
16313
|
+
export type PolkadotPrimitivesV9CandidateEvent =
|
|
16300
16314
|
| {
|
|
16301
16315
|
type: 'CandidateBacked';
|
|
16302
16316
|
value: [
|
|
16303
|
-
|
|
16317
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16304
16318
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16305
|
-
|
|
16306
|
-
|
|
16319
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16320
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
16307
16321
|
];
|
|
16308
16322
|
}
|
|
16309
16323
|
| {
|
|
16310
16324
|
type: 'CandidateIncluded';
|
|
16311
16325
|
value: [
|
|
16312
|
-
|
|
16326
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16313
16327
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16314
|
-
|
|
16315
|
-
|
|
16328
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16329
|
+
PolkadotPrimitivesV9GroupIndex,
|
|
16316
16330
|
];
|
|
16317
16331
|
}
|
|
16318
16332
|
| {
|
|
16319
16333
|
type: 'CandidateTimedOut';
|
|
16320
16334
|
value: [
|
|
16321
|
-
|
|
16335
|
+
PolkadotPrimitivesV9CandidateReceiptV2,
|
|
16322
16336
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16323
|
-
|
|
16337
|
+
PolkadotPrimitivesV9CoreIndex,
|
|
16324
16338
|
];
|
|
16325
16339
|
};
|
|
16326
16340
|
|
|
16327
|
-
export type
|
|
16328
|
-
keys: Array<[
|
|
16329
|
-
kind:
|
|
16341
|
+
export type PolkadotPrimitivesV9SlashingLegacyPendingSlashes = {
|
|
16342
|
+
keys: Array<[PolkadotPrimitivesV9ValidatorIndex, PolkadotPrimitivesV9ValidatorAppPublic]>;
|
|
16343
|
+
kind: PolkadotPrimitivesV9SlashingSlashingOffenceKind;
|
|
16330
16344
|
};
|
|
16331
16345
|
|
|
16332
|
-
export type
|
|
16346
|
+
export type PolkadotPrimitivesV9SlashingSlashingOffenceKind = 'ForInvalid' | 'AgainstValid';
|
|
16333
16347
|
|
|
16334
|
-
export type
|
|
16348
|
+
export type PolkadotPrimitivesV9SlashingOpaqueKeyOwnershipProof = Bytes;
|
|
16335
16349
|
|
|
16336
|
-
export type
|
|
16337
|
-
|
|
16338
|
-
|
|
16339
|
-
validatorIndex: PolkadotPrimitivesV8ValidatorIndex;
|
|
16340
|
-
validatorId: PolkadotPrimitivesV8ValidatorAppPublic;
|
|
16350
|
+
export type PolkadotPrimitivesV9AsyncBackingBackingState = {
|
|
16351
|
+
constraints: PolkadotPrimitivesV9AsyncBackingConstraints;
|
|
16352
|
+
pendingAvailability: Array<PolkadotPrimitivesV9AsyncBackingCandidatePendingAvailability>;
|
|
16341
16353
|
};
|
|
16342
16354
|
|
|
16343
|
-
export type
|
|
16344
|
-
constraints: PolkadotPrimitivesV8AsyncBackingConstraints;
|
|
16345
|
-
pendingAvailability: Array<PolkadotPrimitivesVstagingAsyncBackingCandidatePendingAvailability>;
|
|
16346
|
-
};
|
|
16347
|
-
|
|
16348
|
-
export type PolkadotPrimitivesV8AsyncBackingConstraints = {
|
|
16355
|
+
export type PolkadotPrimitivesV9AsyncBackingConstraints = {
|
|
16349
16356
|
minRelayParentNumber: number;
|
|
16350
16357
|
maxPovSize: number;
|
|
16351
16358
|
maxCodeSize: number;
|
|
16359
|
+
maxHeadDataSize: number;
|
|
16352
16360
|
umpRemaining: number;
|
|
16353
16361
|
umpRemainingBytes: number;
|
|
16354
16362
|
maxUmpNumPerCandidate: number;
|
|
16355
16363
|
dmpRemainingMessages: Array<number>;
|
|
16356
|
-
hrmpInbound:
|
|
16364
|
+
hrmpInbound: PolkadotPrimitivesV9AsyncBackingInboundHrmpLimitations;
|
|
16357
16365
|
hrmpChannelsOut: Array<
|
|
16358
|
-
[PolkadotParachainPrimitivesPrimitivesId,
|
|
16366
|
+
[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV9AsyncBackingOutboundHrmpChannelLimitations]
|
|
16359
16367
|
>;
|
|
16360
16368
|
maxHrmpNumPerCandidate: number;
|
|
16361
16369
|
requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16362
16370
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
16363
|
-
upgradeRestriction?:
|
|
16371
|
+
upgradeRestriction?: PolkadotPrimitivesV9UpgradeRestriction | undefined;
|
|
16364
16372
|
futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
|
|
16365
16373
|
};
|
|
16366
16374
|
|
|
16367
|
-
export type
|
|
16375
|
+
export type PolkadotPrimitivesV9AsyncBackingInboundHrmpLimitations = { validWatermarks: Array<number> };
|
|
16368
16376
|
|
|
16369
|
-
export type
|
|
16377
|
+
export type PolkadotPrimitivesV9AsyncBackingOutboundHrmpChannelLimitations = {
|
|
16370
16378
|
bytesRemaining: number;
|
|
16371
16379
|
messagesRemaining: number;
|
|
16372
16380
|
};
|
|
16373
16381
|
|
|
16374
|
-
export type
|
|
16382
|
+
export type PolkadotPrimitivesV9AsyncBackingCandidatePendingAvailability = {
|
|
16375
16383
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16376
|
-
descriptor:
|
|
16377
|
-
commitments:
|
|
16384
|
+
descriptor: PolkadotPrimitivesV9CandidateDescriptorV2;
|
|
16385
|
+
commitments: PolkadotPrimitivesV9CandidateCommitments;
|
|
16378
16386
|
relayParentNumber: number;
|
|
16379
16387
|
maxPovSize: number;
|
|
16380
16388
|
};
|
|
16381
16389
|
|
|
16382
|
-
export type PolkadotPrimitivesVstagingAsyncBackingConstraints = {
|
|
16383
|
-
minRelayParentNumber: number;
|
|
16384
|
-
maxPovSize: number;
|
|
16385
|
-
maxCodeSize: number;
|
|
16386
|
-
maxHeadDataSize: number;
|
|
16387
|
-
umpRemaining: number;
|
|
16388
|
-
umpRemainingBytes: number;
|
|
16389
|
-
maxUmpNumPerCandidate: number;
|
|
16390
|
-
dmpRemainingMessages: Array<number>;
|
|
16391
|
-
hrmpInbound: PolkadotPrimitivesV8AsyncBackingInboundHrmpLimitations;
|
|
16392
|
-
hrmpChannelsOut: Array<
|
|
16393
|
-
[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations]
|
|
16394
|
-
>;
|
|
16395
|
-
maxHrmpNumPerCandidate: number;
|
|
16396
|
-
requiredParent: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
16397
|
-
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
16398
|
-
upgradeRestriction?: PolkadotPrimitivesV8UpgradeRestriction | undefined;
|
|
16399
|
-
futureValidationCode?: [number, PolkadotParachainPrimitivesPrimitivesValidationCodeHash] | undefined;
|
|
16400
|
-
};
|
|
16401
|
-
|
|
16402
16390
|
export type SpConsensusBeefyValidatorSet = { validators: Array<SpConsensusBeefyEcdsaCryptoPublic>; id: bigint };
|
|
16403
16391
|
|
|
16404
16392
|
export type SpRuntimeOpaqueValue = Bytes;
|