@@ -22,12 +22,12 @@ import type {
2222 SpWeightsWeightV2Weight ,
2323 CumulusPalletParachainSystemUnincludedSegmentAncestor ,
2424 CumulusPalletParachainSystemUnincludedSegmentSegmentTracker ,
25- PolkadotPrimitivesV8PersistedValidationData ,
26- PolkadotPrimitivesV8UpgradeRestriction ,
27- PolkadotPrimitivesV8UpgradeGoAhead ,
25+ PolkadotPrimitivesV9PersistedValidationData ,
26+ PolkadotPrimitivesV9UpgradeRestriction ,
27+ PolkadotPrimitivesV9UpgradeGoAhead ,
2828 SpTrieStorageProof ,
2929 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot ,
30- PolkadotPrimitivesV8AbridgedHostConfiguration ,
30+ PolkadotPrimitivesV9AbridgedHostConfiguration ,
3131 CumulusPrimitivesParachainInherentMessageQueueChain ,
3232 PolkadotParachainPrimitivesPrimitivesId ,
3333 CumulusPalletParachainSystemParachainInherentInboundMessageId ,
@@ -294,12 +294,12 @@ export interface ChainStorage extends GenericChainStorage {
294294
295295 /**
296296 * The [`PersistedValidationData`] set for this block.
297- * This value is expected to be set only once per block and it's never stored
298- * in the trie.
299297 *
300- * @param {Callback<PolkadotPrimitivesV8PersistedValidationData | undefined> = } callback
298+ * This value is expected to be set only once by the [`Pallet::set_validation_data`] inherent.
299+ *
300+ * @param {Callback<PolkadotPrimitivesV9PersistedValidationData | undefined> = } callback
301301 **/
302- validationData : GenericStorageQuery < ( ) => PolkadotPrimitivesV8PersistedValidationData | undefined > ;
302+ validationData : GenericStorageQuery < ( ) => PolkadotPrimitivesV9PersistedValidationData | undefined > ;
303303
304304 /**
305305 * Were the validation data set to notify the relay chain?
@@ -326,9 +326,9 @@ export interface ChainStorage extends GenericChainStorage {
326326 * relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
327327 * set after the inherent.
328328 *
329- * @param {Callback<PolkadotPrimitivesV8UpgradeRestriction | undefined> = } callback
329+ * @param {Callback<PolkadotPrimitivesV9UpgradeRestriction | undefined> = } callback
330330 **/
331- upgradeRestrictionSignal : GenericStorageQuery < ( ) => PolkadotPrimitivesV8UpgradeRestriction | undefined > ;
331+ upgradeRestrictionSignal : GenericStorageQuery < ( ) => PolkadotPrimitivesV9UpgradeRestriction | undefined > ;
332332
333333 /**
334334 * Optional upgrade go-ahead signal from the relay-chain.
@@ -337,9 +337,9 @@ export interface ChainStorage extends GenericChainStorage {
337337 * relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
338338 * set after the inherent.
339339 *
340- * @param {Callback<PolkadotPrimitivesV8UpgradeGoAhead | undefined> = } callback
340+ * @param {Callback<PolkadotPrimitivesV9UpgradeGoAhead | undefined> = } callback
341341 **/
342- upgradeGoAhead : GenericStorageQuery < ( ) => PolkadotPrimitivesV8UpgradeGoAhead | undefined > ;
342+ upgradeGoAhead : GenericStorageQuery < ( ) => PolkadotPrimitivesV9UpgradeGoAhead | undefined > ;
343343
344344 /**
345345 * The state proof for the last relay parent block.
@@ -376,9 +376,9 @@ export interface ChainStorage extends GenericChainStorage {
376376 *
377377 * This data is also absent from the genesis.
378378 *
379- * @param {Callback<PolkadotPrimitivesV8AbridgedHostConfiguration | undefined> = } callback
379+ * @param {Callback<PolkadotPrimitivesV9AbridgedHostConfiguration | undefined> = } callback
380380 **/
381- hostConfiguration : GenericStorageQuery < ( ) => PolkadotPrimitivesV8AbridgedHostConfiguration | undefined > ;
381+ hostConfiguration : GenericStorageQuery < ( ) => PolkadotPrimitivesV9AbridgedHostConfiguration | undefined > ;
382382
383383 /**
384384 * The last downward message queue chain head we have observed.
@@ -452,19 +452,28 @@ export interface ChainStorage extends GenericChainStorage {
452452 /**
453453 * Upward messages that were sent in a block.
454454 *
455- * This will be cleared in `on_initialize` of each new block.
455+ * This will be cleared in `on_initialize` for each new block.
456456 *
457457 * @param {Callback<Array<Bytes>> = } callback
458458 **/
459459 upwardMessages : GenericStorageQuery < ( ) => Array < Bytes > > ;
460460
461461 /**
462- * Upward messages that are still pending and not yet send to the relay chain.
462+ * Upward messages that are still pending and not yet sent to the relay chain.
463463 *
464464 * @param {Callback<Array<Bytes>> = } callback
465465 **/
466466 pendingUpwardMessages : GenericStorageQuery < ( ) => Array < Bytes > > ;
467467
468+ /**
469+ * Upward signals that are still pending and not yet sent to the relay chain.
470+ *
471+ * This will be cleared in `on_finalize` for each block.
472+ *
473+ * @param {Callback<Array<Bytes>> = } callback
474+ **/
475+ pendingUpwardSignals : GenericStorageQuery < ( ) => Array < Bytes > > ;
476+
468477 /**
469478 * The factor to multiply the base delivery fee by for UMP.
470479 *
@@ -748,6 +757,14 @@ export interface ChainStorage extends GenericChainStorage {
748757 **/
749758 metadata : GenericStorageQuery < ( arg : StagingXcmV5Location ) => PalletAssetsAssetMetadata , StagingXcmV5Location > ;
750759
760+ /**
761+ * Maps an asset to a list of its configured reserve information.
762+ *
763+ * @param {StagingXcmV5Location } arg
764+ * @param {Callback<Array<[]>> = } callback
765+ **/
766+ reserves : GenericStorageQuery < ( arg : StagingXcmV5Location ) => Array < [ ] > , StagingXcmV5Location > ;
767+
751768 /**
752769 * The asset ID enforced for the next asset creation, if any present. Otherwise, this storage
753770 * item has no effect.
@@ -954,6 +971,17 @@ export interface ChainStorage extends GenericChainStorage {
954971 [ SpCoreCryptoKeyTypeId , Bytes ]
955972 > ;
956973
974+ /**
975+ * Accounts whose keys were set via `SessionInterface` (external path) without
976+ * incrementing the consumer reference or placing a key deposit. `do_purge_keys`
977+ * only decrements consumers for accounts that were registered through the local
978+ * session pallet.
979+ *
980+ * @param {AccountId32Like } arg
981+ * @param {Callback<[] | undefined> = } callback
982+ **/
983+ externallySetKeys : GenericStorageQuery < ( arg : AccountId32Like ) => [ ] | undefined , AccountId32 > ;
984+
957985 /**
958986 * Generic pallet storage query
959987 **/
0 commit comments