@storagehub/api-augment 0.2.6 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/parachain/interfaces/lookup.js +245 -239
  2. package/dist/parachain/interfaces/lookup.js.map +1 -1
  3. package/dist/solochain-evm/interfaces/lookup.js +195 -189
  4. package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
  5. package/dist/types/parachain/interfaces/augment-api-consts.d.ts +4 -0
  6. package/dist/types/parachain/interfaces/augment-api-errors.d.ts +24 -0
  7. package/dist/types/parachain/interfaces/augment-api-events.d.ts +10 -24
  8. package/dist/types/parachain/interfaces/augment-api-tx.d.ts +27 -29
  9. package/dist/types/parachain/interfaces/lookup.d.ts +239 -239
  10. package/dist/types/parachain/interfaces/registry.d.ts +2 -1
  11. package/dist/types/parachain/interfaces/types-lookup.d.ts +247 -244
  12. package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +4 -0
  13. package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +24 -0
  14. package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +10 -24
  15. package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +27 -23
  16. package/dist/types/solochain-evm/interfaces/lookup.d.ts +189 -189
  17. package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -1
  18. package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +197 -194
  19. package/metadata-sh-parachain.json +1 -1
  20. package/metadata-sh-solochain-evm.json +1 -1
  21. package/package.json +1 -1
  22. package/src/parachain/interfaces/augment-api-consts.ts +4 -0
  23. package/src/parachain/interfaces/augment-api-errors.ts +24 -0
  24. package/src/parachain/interfaces/augment-api-events.ts +8 -32
  25. package/src/parachain/interfaces/augment-api-tx.ts +36 -41
  26. package/src/parachain/interfaces/lookup.ts +245 -239
  27. package/src/parachain/interfaces/registry.ts +2 -0
  28. package/src/parachain/interfaces/types-lookup.ts +255 -246
  29. package/src/solochain-evm/interfaces/augment-api-consts.ts +4 -0
  30. package/src/solochain-evm/interfaces/augment-api-errors.ts +24 -0
  31. package/src/solochain-evm/interfaces/augment-api-events.ts +8 -32
  32. package/src/solochain-evm/interfaces/augment-api-tx.ts +36 -35
  33. package/src/solochain-evm/interfaces/lookup.ts +195 -189
  34. package/src/solochain-evm/interfaces/registry.ts +2 -0
  35. package/src/solochain-evm/interfaces/types-lookup.ts +205 -196
@@ -1811,35 +1811,28 @@ declare module "@polkadot/types/lookup" {
1811
1811
  readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
1812
1812
  readonly signature: SpRuntimeMultiSignature;
1813
1813
  } & Struct;
1814
- readonly isBucketFileDeletionCompleted: boolean;
1815
- readonly asBucketFileDeletionCompleted: {
1814
+ readonly isBucketFileDeletionsCompleted: boolean;
1815
+ readonly asBucketFileDeletionsCompleted: {
1816
1816
  readonly user: AccountId32;
1817
- readonly fileKey: H256;
1818
- readonly fileSize: u64;
1817
+ readonly fileKeys: Vec<H256>;
1819
1818
  readonly bucketId: H256;
1820
1819
  readonly mspId: Option<H256>;
1821
1820
  readonly oldRoot: H256;
1822
1821
  readonly newRoot: H256;
1823
1822
  } & Struct;
1824
- readonly isBspFileDeletionCompleted: boolean;
1825
- readonly asBspFileDeletionCompleted: {
1826
- readonly user: AccountId32;
1827
- readonly fileKey: H256;
1828
- readonly fileSize: u64;
1823
+ readonly isBspFileDeletionsCompleted: boolean;
1824
+ readonly asBspFileDeletionsCompleted: {
1825
+ readonly users: Vec<AccountId32>;
1826
+ readonly fileKeys: Vec<H256>;
1829
1827
  readonly bspId: H256;
1830
1828
  readonly oldRoot: H256;
1831
1829
  readonly newRoot: H256;
1832
1830
  } & Struct;
1833
- readonly isFileDeletedFromIncompleteStorageRequest: boolean;
1834
- readonly asFileDeletedFromIncompleteStorageRequest: {
1835
- readonly fileKey: H256;
1836
- readonly bspId: Option<H256>;
1837
- } & Struct;
1838
1831
  readonly isIncompleteStorageRequest: boolean;
1839
1832
  readonly asIncompleteStorageRequest: {
1840
1833
  readonly fileKey: H256;
1841
1834
  } & Struct;
1842
- readonly type: "NewBucket" | "BucketDeleted" | "MoveBucketRequested" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "PriorityChallengeForFileDeletionQueued" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FailedToQueuePriorityChallenge" | "FileDeletionRequest" | "ProofSubmittedForPendingFileDeletionRequest" | "BspChallengeCycleInitialised" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "MspStoppedStoringBucket" | "FailedToGetMspOfBucket" | "FailedToDecreaseMspUsedCapacity" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "FailedToTransferDepositFundsToBsp" | "FileDeletionRequested" | "BucketFileDeletionCompleted" | "BspFileDeletionCompleted" | "FileDeletedFromIncompleteStorageRequest" | "IncompleteStorageRequest";
1835
+ readonly type: "NewBucket" | "BucketDeleted" | "MoveBucketRequested" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "PriorityChallengeForFileDeletionQueued" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FailedToQueuePriorityChallenge" | "FileDeletionRequest" | "ProofSubmittedForPendingFileDeletionRequest" | "BspChallengeCycleInitialised" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "MspStoppedStoringBucket" | "FailedToGetMspOfBucket" | "FailedToDecreaseMspUsedCapacity" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "FailedToTransferDepositFundsToBsp" | "FileDeletionRequested" | "BucketFileDeletionsCompleted" | "BspFileDeletionsCompleted" | "IncompleteStorageRequest";
1843
1836
  }
1844
1837
  /** @name ShpFileMetadataFileMetadata (153) */
1845
1838
  interface ShpFileMetadataFileMetadata extends Struct {
@@ -1889,7 +1882,7 @@ declare module "@polkadot/types/lookup" {
1889
1882
  readonly asEcdsa: U8aFixed;
1890
1883
  readonly type: "Ed25519" | "Sr25519" | "Ecdsa";
1891
1884
  }
1892
- /** @name PalletProofsDealerEvent (167) */
1885
+ /** @name PalletProofsDealerEvent (169) */
1893
1886
  interface PalletProofsDealerEvent extends Enum {
1894
1887
  readonly isNewChallenge: boolean;
1895
1888
  readonly asNewChallenge: {
@@ -1954,31 +1947,31 @@ declare module "@polkadot/types/lookup" {
1954
1947
  } & Struct;
1955
1948
  readonly type: "NewChallenge" | "NewPriorityChallenge" | "ProofAccepted" | "NewChallengeSeed" | "NewCheckpointChallenge" | "SlashableProvider" | "NoRecordOfLastSubmittedProof" | "NewChallengeCycleInitialised" | "MutationsAppliedForProvider" | "MutationsApplied" | "ChallengesTickerSet";
1956
1949
  }
1957
- /** @name PalletProofsDealerProof (168) */
1950
+ /** @name PalletProofsDealerProof (170) */
1958
1951
  interface PalletProofsDealerProof extends Struct {
1959
1952
  readonly forestProof: SpTrieStorageProofCompactProof;
1960
1953
  readonly keyProofs: BTreeMap<H256, PalletProofsDealerKeyProof>;
1961
1954
  }
1962
- /** @name SpTrieStorageProofCompactProof (169) */
1955
+ /** @name SpTrieStorageProofCompactProof (171) */
1963
1956
  interface SpTrieStorageProofCompactProof extends Struct {
1964
1957
  readonly encodedNodes: Vec<Bytes>;
1965
1958
  }
1966
- /** @name PalletProofsDealerKeyProof (172) */
1959
+ /** @name PalletProofsDealerKeyProof (174) */
1967
1960
  interface PalletProofsDealerKeyProof extends Struct {
1968
1961
  readonly proof: ShpFileKeyVerifierFileKeyProof;
1969
1962
  readonly challengeCount: u32;
1970
1963
  }
1971
- /** @name ShpFileKeyVerifierFileKeyProof (173) */
1964
+ /** @name ShpFileKeyVerifierFileKeyProof (175) */
1972
1965
  interface ShpFileKeyVerifierFileKeyProof extends Struct {
1973
1966
  readonly fileMetadata: ShpFileMetadataFileMetadata;
1974
1967
  readonly proof: SpTrieStorageProofCompactProof;
1975
1968
  }
1976
- /** @name PalletProofsDealerCustomChallenge (177) */
1969
+ /** @name PalletProofsDealerCustomChallenge (179) */
1977
1970
  interface PalletProofsDealerCustomChallenge extends Struct {
1978
1971
  readonly key: H256;
1979
1972
  readonly shouldRemoveKey: bool;
1980
1973
  }
1981
- /** @name ShpTraitsTrieMutation (181) */
1974
+ /** @name ShpTraitsTrieMutation (183) */
1982
1975
  interface ShpTraitsTrieMutation extends Enum {
1983
1976
  readonly isAdd: boolean;
1984
1977
  readonly asAdd: ShpTraitsTrieAddMutation;
@@ -1986,15 +1979,15 @@ declare module "@polkadot/types/lookup" {
1986
1979
  readonly asRemove: ShpTraitsTrieRemoveMutation;
1987
1980
  readonly type: "Add" | "Remove";
1988
1981
  }
1989
- /** @name ShpTraitsTrieAddMutation (182) */
1982
+ /** @name ShpTraitsTrieAddMutation (184) */
1990
1983
  interface ShpTraitsTrieAddMutation extends Struct {
1991
1984
  readonly value: Bytes;
1992
1985
  }
1993
- /** @name ShpTraitsTrieRemoveMutation (183) */
1986
+ /** @name ShpTraitsTrieRemoveMutation (185) */
1994
1987
  interface ShpTraitsTrieRemoveMutation extends Struct {
1995
1988
  readonly maybeValue: Option<Bytes>;
1996
1989
  }
1997
- /** @name PalletRandomnessEvent (185) */
1990
+ /** @name PalletRandomnessEvent (187) */
1998
1991
  interface PalletRandomnessEvent extends Enum {
1999
1992
  readonly isNewOneEpochAgoRandomnessAvailable: boolean;
2000
1993
  readonly asNewOneEpochAgoRandomnessAvailable: {
@@ -2004,7 +1997,7 @@ declare module "@polkadot/types/lookup" {
2004
1997
  } & Struct;
2005
1998
  readonly type: "NewOneEpochAgoRandomnessAvailable";
2006
1999
  }
2007
- /** @name PalletPaymentStreamsEvent (186) */
2000
+ /** @name PalletPaymentStreamsEvent (188) */
2008
2001
  interface PalletPaymentStreamsEvent extends Enum {
2009
2002
  readonly isFixedRatePaymentStreamCreated: boolean;
2010
2003
  readonly asFixedRatePaymentStreamCreated: {
@@ -2083,7 +2076,7 @@ declare module "@polkadot/types/lookup" {
2083
2076
  } & Struct;
2084
2077
  readonly type: "FixedRatePaymentStreamCreated" | "FixedRatePaymentStreamUpdated" | "FixedRatePaymentStreamDeleted" | "DynamicRatePaymentStreamCreated" | "DynamicRatePaymentStreamUpdated" | "DynamicRatePaymentStreamDeleted" | "PaymentStreamCharged" | "UsersCharged" | "LastChargeableInfoUpdated" | "UserWithoutFunds" | "UserPaidAllDebts" | "UserPaidSomeDebts" | "UserSolvent" | "InconsistentTickProcessing";
2085
2078
  }
2086
- /** @name PalletBucketNftsEvent (188) */
2079
+ /** @name PalletBucketNftsEvent (190) */
2087
2080
  interface PalletBucketNftsEvent extends Enum {
2088
2081
  readonly isAccessShared: boolean;
2089
2082
  readonly asAccessShared: {
@@ -2104,7 +2097,7 @@ declare module "@polkadot/types/lookup" {
2104
2097
  } & Struct;
2105
2098
  readonly type: "AccessShared" | "ItemReadAccessUpdated" | "ItemBurned";
2106
2099
  }
2107
- /** @name PalletNftsEvent (189) */
2100
+ /** @name PalletNftsEvent (191) */
2108
2101
  interface PalletNftsEvent extends Enum {
2109
2102
  readonly isCreated: boolean;
2110
2103
  readonly asCreated: {
@@ -2340,7 +2333,7 @@ declare module "@polkadot/types/lookup" {
2340
2333
  } & Struct;
2341
2334
  readonly type: "Created" | "ForceCreated" | "Destroyed" | "Issued" | "Transferred" | "Burned" | "ItemTransferLocked" | "ItemTransferUnlocked" | "ItemPropertiesLocked" | "CollectionLocked" | "OwnerChanged" | "TeamChanged" | "TransferApproved" | "ApprovalCancelled" | "AllApprovalsCancelled" | "CollectionConfigChanged" | "CollectionMetadataSet" | "CollectionMetadataCleared" | "ItemMetadataSet" | "ItemMetadataCleared" | "Redeposited" | "AttributeSet" | "AttributeCleared" | "ItemAttributesApprovalAdded" | "ItemAttributesApprovalRemoved" | "OwnershipAcceptanceChanged" | "CollectionMaxSupplySet" | "CollectionMintSettingsUpdated" | "NextCollectionIdIncremented" | "ItemPriceSet" | "ItemPriceRemoved" | "ItemBought" | "TipSent" | "SwapCreated" | "SwapCancelled" | "SwapClaimed" | "PreSignedAttributesSet" | "PalletAttributeSet";
2342
2335
  }
2343
- /** @name PalletNftsAttributeNamespace (193) */
2336
+ /** @name PalletNftsAttributeNamespace (195) */
2344
2337
  interface PalletNftsAttributeNamespace extends Enum {
2345
2338
  readonly isPallet: boolean;
2346
2339
  readonly isCollectionOwner: boolean;
@@ -2349,25 +2342,25 @@ declare module "@polkadot/types/lookup" {
2349
2342
  readonly asAccount: AccountId32;
2350
2343
  readonly type: "Pallet" | "CollectionOwner" | "ItemOwner" | "Account";
2351
2344
  }
2352
- /** @name PalletNftsPriceWithDirection (195) */
2345
+ /** @name PalletNftsPriceWithDirection (197) */
2353
2346
  interface PalletNftsPriceWithDirection extends Struct {
2354
2347
  readonly amount: u128;
2355
2348
  readonly direction: PalletNftsPriceDirection;
2356
2349
  }
2357
- /** @name PalletNftsPriceDirection (196) */
2350
+ /** @name PalletNftsPriceDirection (198) */
2358
2351
  interface PalletNftsPriceDirection extends Enum {
2359
2352
  readonly isSend: boolean;
2360
2353
  readonly isReceive: boolean;
2361
2354
  readonly type: "Send" | "Receive";
2362
2355
  }
2363
- /** @name PalletNftsPalletAttributes (197) */
2356
+ /** @name PalletNftsPalletAttributes (199) */
2364
2357
  interface PalletNftsPalletAttributes extends Enum {
2365
2358
  readonly isUsedToClaim: boolean;
2366
2359
  readonly asUsedToClaim: u32;
2367
2360
  readonly isTransferDisabled: boolean;
2368
2361
  readonly type: "UsedToClaim" | "TransferDisabled";
2369
2362
  }
2370
- /** @name PalletParametersEvent (198) */
2363
+ /** @name PalletParametersEvent (200) */
2371
2364
  interface PalletParametersEvent extends Enum {
2372
2365
  readonly isUpdated: boolean;
2373
2366
  readonly asUpdated: {
@@ -2377,13 +2370,13 @@ declare module "@polkadot/types/lookup" {
2377
2370
  } & Struct;
2378
2371
  readonly type: "Updated";
2379
2372
  }
2380
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey (199) */
2373
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey (201) */
2381
2374
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey extends Enum {
2382
2375
  readonly isRuntimeConfig: boolean;
2383
2376
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey;
2384
2377
  readonly type: "RuntimeConfig";
2385
2378
  }
2386
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey (200) */
2379
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey (202) */
2387
2380
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey extends Enum {
2388
2381
  readonly isSlashAmountPerMaxFileSize: boolean;
2389
2382
  readonly isStakeToChallengePeriod: boolean;
@@ -2417,73 +2410,73 @@ declare module "@polkadot/types/lookup" {
2417
2410
  readonly isUpfrontTicksToPay: boolean;
2418
2411
  readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
2419
2412
  }
2420
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize (201) */
2413
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize (203) */
2421
2414
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize = Null;
2422
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod (202) */
2415
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod (204) */
2423
2416
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod = Null;
2424
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod (203) */
2417
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod (205) */
2425
2418
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod = Null;
2426
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod (204) */
2419
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod (206) */
2427
2420
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod = Null;
2428
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage (205) */
2421
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage (207) */
2429
2422
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage = Null;
2430
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage (206) */
2423
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage (208) */
2431
2424
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage = Null;
2432
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice (207) */
2425
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice (209) */
2433
2426
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice = Null;
2434
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice (208) */
2427
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice (210) */
2435
2428
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice = Null;
2436
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice (209) */
2429
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice (211) */
2437
2430
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice = Null;
2438
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor (210) */
2431
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor (212) */
2439
2432
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor = Null;
2440
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor (211) */
2433
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor (213) */
2441
2434
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor = Null;
2442
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate (212) */
2435
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate (214) */
2443
2436
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate = Null;
2444
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate (213) */
2437
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate (215) */
2445
2438
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate = Null;
2446
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate (214) */
2439
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate (216) */
2447
2440
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate = Null;
2448
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut (215) */
2441
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut (217) */
2449
2442
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut = Null;
2450
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut (216) */
2443
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut (218) */
2451
2444
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut = Null;
2452
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty (217) */
2445
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty (219) */
2453
2446
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty = Null;
2454
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl (218) */
2447
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl (220) */
2455
2448
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl = Null;
2456
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget (219) */
2449
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget (221) */
2457
2450
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget = Null;
2458
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget (220) */
2451
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget (222) */
2459
2452
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget = Null;
2460
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget (221) */
2453
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget (223) */
2461
2454
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget = Null;
2462
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget (222) */
2455
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget (224) */
2463
2456
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget = Null;
2464
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget (223) */
2457
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget (225) */
2465
2458
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget = Null;
2466
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget (224) */
2459
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget (226) */
2467
2460
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget = Null;
2468
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold (225) */
2461
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold (227) */
2469
2462
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold = Null;
2470
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl (226) */
2463
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl (228) */
2471
2464
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl = Null;
2472
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring (227) */
2465
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring (229) */
2473
2466
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring = Null;
2474
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod (228) */
2467
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod (230) */
2475
2468
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod = Null;
2476
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod (229) */
2469
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod (231) */
2477
2470
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod = Null;
2478
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay (230) */
2471
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay (232) */
2479
2472
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay = Null;
2480
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue (232) */
2473
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue (234) */
2481
2474
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue extends Enum {
2482
2475
  readonly isRuntimeConfig: boolean;
2483
2476
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue;
2484
2477
  readonly type: "RuntimeConfig";
2485
2478
  }
2486
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue (233) */
2479
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue (235) */
2487
2480
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue extends Enum {
2488
2481
  readonly isSlashAmountPerMaxFileSize: boolean;
2489
2482
  readonly asSlashAmountPerMaxFileSize: u128;
@@ -2547,7 +2540,7 @@ declare module "@polkadot/types/lookup" {
2547
2540
  readonly asUpfrontTicksToPay: u32;
2548
2541
  readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
2549
2542
  }
2550
- /** @name FrameSystemPhase (235) */
2543
+ /** @name FrameSystemPhase (237) */
2551
2544
  interface FrameSystemPhase extends Enum {
2552
2545
  readonly isApplyExtrinsic: boolean;
2553
2546
  readonly asApplyExtrinsic: u32;
@@ -2555,17 +2548,17 @@ declare module "@polkadot/types/lookup" {
2555
2548
  readonly isInitialization: boolean;
2556
2549
  readonly type: "ApplyExtrinsic" | "Finalization" | "Initialization";
2557
2550
  }
2558
- /** @name FrameSystemLastRuntimeUpgradeInfo (238) */
2551
+ /** @name FrameSystemLastRuntimeUpgradeInfo (240) */
2559
2552
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2560
2553
  readonly specVersion: Compact<u32>;
2561
2554
  readonly specName: Text;
2562
2555
  }
2563
- /** @name FrameSystemCodeUpgradeAuthorization (241) */
2556
+ /** @name FrameSystemCodeUpgradeAuthorization (243) */
2564
2557
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
2565
2558
  readonly codeHash: H256;
2566
2559
  readonly checkVersion: bool;
2567
2560
  }
2568
- /** @name FrameSystemCall (242) */
2561
+ /** @name FrameSystemCall (244) */
2569
2562
  interface FrameSystemCall extends Enum {
2570
2563
  readonly isRemark: boolean;
2571
2564
  readonly asRemark: {
@@ -2614,41 +2607,41 @@ declare module "@polkadot/types/lookup" {
2614
2607
  } & Struct;
2615
2608
  readonly type: "Remark" | "SetHeapPages" | "SetCode" | "SetCodeWithoutChecks" | "SetStorage" | "KillStorage" | "KillPrefix" | "RemarkWithEvent" | "AuthorizeUpgrade" | "AuthorizeUpgradeWithoutChecks" | "ApplyAuthorizedUpgrade";
2616
2609
  }
2617
- /** @name FrameSystemLimitsBlockWeights (245) */
2610
+ /** @name FrameSystemLimitsBlockWeights (247) */
2618
2611
  interface FrameSystemLimitsBlockWeights extends Struct {
2619
2612
  readonly baseBlock: SpWeightsWeightV2Weight;
2620
2613
  readonly maxBlock: SpWeightsWeightV2Weight;
2621
2614
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
2622
2615
  }
2623
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (246) */
2616
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (248) */
2624
2617
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
2625
2618
  readonly normal: FrameSystemLimitsWeightsPerClass;
2626
2619
  readonly operational: FrameSystemLimitsWeightsPerClass;
2627
2620
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
2628
2621
  }
2629
- /** @name FrameSystemLimitsWeightsPerClass (247) */
2622
+ /** @name FrameSystemLimitsWeightsPerClass (249) */
2630
2623
  interface FrameSystemLimitsWeightsPerClass extends Struct {
2631
2624
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
2632
2625
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
2633
2626
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
2634
2627
  readonly reserved: Option<SpWeightsWeightV2Weight>;
2635
2628
  }
2636
- /** @name FrameSystemLimitsBlockLength (248) */
2629
+ /** @name FrameSystemLimitsBlockLength (250) */
2637
2630
  interface FrameSystemLimitsBlockLength extends Struct {
2638
2631
  readonly max: FrameSupportDispatchPerDispatchClassU32;
2639
2632
  }
2640
- /** @name FrameSupportDispatchPerDispatchClassU32 (249) */
2633
+ /** @name FrameSupportDispatchPerDispatchClassU32 (251) */
2641
2634
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
2642
2635
  readonly normal: u32;
2643
2636
  readonly operational: u32;
2644
2637
  readonly mandatory: u32;
2645
2638
  }
2646
- /** @name SpWeightsRuntimeDbWeight (250) */
2639
+ /** @name SpWeightsRuntimeDbWeight (252) */
2647
2640
  interface SpWeightsRuntimeDbWeight extends Struct {
2648
2641
  readonly read: u64;
2649
2642
  readonly write: u64;
2650
2643
  }
2651
- /** @name SpVersionRuntimeVersion (251) */
2644
+ /** @name SpVersionRuntimeVersion (253) */
2652
2645
  interface SpVersionRuntimeVersion extends Struct {
2653
2646
  readonly specName: Text;
2654
2647
  readonly implName: Text;
@@ -2659,7 +2652,7 @@ declare module "@polkadot/types/lookup" {
2659
2652
  readonly transactionVersion: u32;
2660
2653
  readonly systemVersion: u8;
2661
2654
  }
2662
- /** @name FrameSystemError (256) */
2655
+ /** @name FrameSystemError (258) */
2663
2656
  interface FrameSystemError extends Enum {
2664
2657
  readonly isInvalidSpecName: boolean;
2665
2658
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2672,64 +2665,64 @@ declare module "@polkadot/types/lookup" {
2672
2665
  readonly isUnauthorized: boolean;
2673
2666
  readonly type: "InvalidSpecName" | "SpecVersionNeedsToIncrease" | "FailedToExtractRuntimeVersion" | "NonDefaultComposite" | "NonZeroRefCount" | "CallFiltered" | "MultiBlockMigrationsOngoing" | "NothingAuthorized" | "Unauthorized";
2674
2667
  }
2675
- /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (258) */
2668
+ /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (260) */
2676
2669
  interface CumulusPalletParachainSystemUnincludedSegmentAncestor extends Struct {
2677
2670
  readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
2678
2671
  readonly paraHeadHash: Option<H256>;
2679
2672
  readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
2680
2673
  }
2681
- /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (259) */
2674
+ /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (261) */
2682
2675
  interface CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth extends Struct {
2683
2676
  readonly umpMsgCount: u32;
2684
2677
  readonly umpTotalBytes: u32;
2685
2678
  readonly hrmpOutgoing: BTreeMap<u32, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate>;
2686
2679
  }
2687
- /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (261) */
2680
+ /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (263) */
2688
2681
  interface CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate extends Struct {
2689
2682
  readonly msgCount: u32;
2690
2683
  readonly totalBytes: u32;
2691
2684
  }
2692
- /** @name PolkadotPrimitivesV8UpgradeGoAhead (265) */
2685
+ /** @name PolkadotPrimitivesV8UpgradeGoAhead (267) */
2693
2686
  interface PolkadotPrimitivesV8UpgradeGoAhead extends Enum {
2694
2687
  readonly isAbort: boolean;
2695
2688
  readonly isGoAhead: boolean;
2696
2689
  readonly type: "Abort" | "GoAhead";
2697
2690
  }
2698
- /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (266) */
2691
+ /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (268) */
2699
2692
  interface CumulusPalletParachainSystemUnincludedSegmentSegmentTracker extends Struct {
2700
2693
  readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
2701
2694
  readonly hrmpWatermark: Option<u32>;
2702
2695
  readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
2703
2696
  }
2704
- /** @name PolkadotPrimitivesV8PersistedValidationData (267) */
2697
+ /** @name PolkadotPrimitivesV8PersistedValidationData (269) */
2705
2698
  interface PolkadotPrimitivesV8PersistedValidationData extends Struct {
2706
2699
  readonly parentHead: Bytes;
2707
2700
  readonly relayParentNumber: u32;
2708
2701
  readonly relayParentStorageRoot: H256;
2709
2702
  readonly maxPovSize: u32;
2710
2703
  }
2711
- /** @name PolkadotPrimitivesV8UpgradeRestriction (270) */
2704
+ /** @name PolkadotPrimitivesV8UpgradeRestriction (272) */
2712
2705
  interface PolkadotPrimitivesV8UpgradeRestriction extends Enum {
2713
2706
  readonly isPresent: boolean;
2714
2707
  readonly type: "Present";
2715
2708
  }
2716
- /** @name SpTrieStorageProof (271) */
2709
+ /** @name SpTrieStorageProof (273) */
2717
2710
  interface SpTrieStorageProof extends Struct {
2718
2711
  readonly trieNodes: BTreeSet<Bytes>;
2719
2712
  }
2720
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (273) */
2713
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (275) */
2721
2714
  interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
2722
2715
  readonly dmqMqcHead: H256;
2723
2716
  readonly relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
2724
2717
  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV8AbridgedHrmpChannel]>>;
2725
2718
  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV8AbridgedHrmpChannel]>>;
2726
2719
  }
2727
- /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (274) */
2720
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (276) */
2728
2721
  interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity extends Struct {
2729
2722
  readonly remainingCount: u32;
2730
2723
  readonly remainingSize: u32;
2731
2724
  }
2732
- /** @name PolkadotPrimitivesV8AbridgedHrmpChannel (277) */
2725
+ /** @name PolkadotPrimitivesV8AbridgedHrmpChannel (279) */
2733
2726
  interface PolkadotPrimitivesV8AbridgedHrmpChannel extends Struct {
2734
2727
  readonly maxCapacity: u32;
2735
2728
  readonly maxTotalSize: u32;
@@ -2738,7 +2731,7 @@ declare module "@polkadot/types/lookup" {
2738
2731
  readonly totalSize: u32;
2739
2732
  readonly mqcHead: Option<H256>;
2740
2733
  }
2741
- /** @name PolkadotPrimitivesV8AbridgedHostConfiguration (278) */
2734
+ /** @name PolkadotPrimitivesV8AbridgedHostConfiguration (280) */
2742
2735
  interface PolkadotPrimitivesV8AbridgedHostConfiguration extends Struct {
2743
2736
  readonly maxCodeSize: u32;
2744
2737
  readonly maxHeadDataSize: u32;
@@ -2751,17 +2744,17 @@ declare module "@polkadot/types/lookup" {
2751
2744
  readonly validationUpgradeDelay: u32;
2752
2745
  readonly asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
2753
2746
  }
2754
- /** @name PolkadotPrimitivesV8AsyncBackingAsyncBackingParams (279) */
2747
+ /** @name PolkadotPrimitivesV8AsyncBackingAsyncBackingParams (281) */
2755
2748
  interface PolkadotPrimitivesV8AsyncBackingAsyncBackingParams extends Struct {
2756
2749
  readonly maxCandidateDepth: u32;
2757
2750
  readonly allowedAncestryLen: u32;
2758
2751
  }
2759
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (285) */
2752
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (287) */
2760
2753
  interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
2761
2754
  readonly recipient: u32;
2762
2755
  readonly data: Bytes;
2763
2756
  }
2764
- /** @name CumulusPalletParachainSystemCall (287) */
2757
+ /** @name CumulusPalletParachainSystemCall (289) */
2765
2758
  interface CumulusPalletParachainSystemCall extends Enum {
2766
2759
  readonly isSetValidationData: boolean;
2767
2760
  readonly asSetValidationData: {
@@ -2773,24 +2766,24 @@ declare module "@polkadot/types/lookup" {
2773
2766
  } & Struct;
2774
2767
  readonly type: "SetValidationData" | "SudoSendUpwardMessage";
2775
2768
  }
2776
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (288) */
2769
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (290) */
2777
2770
  interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
2778
2771
  readonly validationData: PolkadotPrimitivesV8PersistedValidationData;
2779
2772
  readonly relayChainState: SpTrieStorageProof;
2780
2773
  readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
2781
2774
  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
2782
2775
  }
2783
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (290) */
2776
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (292) */
2784
2777
  interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
2785
2778
  readonly sentAt: u32;
2786
2779
  readonly msg: Bytes;
2787
2780
  }
2788
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (293) */
2781
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (295) */
2789
2782
  interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
2790
2783
  readonly sentAt: u32;
2791
2784
  readonly data: Bytes;
2792
2785
  }
2793
- /** @name CumulusPalletParachainSystemError (296) */
2786
+ /** @name CumulusPalletParachainSystemError (298) */
2794
2787
  interface CumulusPalletParachainSystemError extends Enum {
2795
2788
  readonly isOverlappingUpgrades: boolean;
2796
2789
  readonly isProhibitedByPolkadot: boolean;
@@ -2802,7 +2795,7 @@ declare module "@polkadot/types/lookup" {
2802
2795
  readonly isUnauthorized: boolean;
2803
2796
  readonly type: "OverlappingUpgrades" | "ProhibitedByPolkadot" | "TooBig" | "ValidationDataNotAvailable" | "HostConfigurationNotAvailable" | "NotScheduled" | "NothingAuthorized" | "Unauthorized";
2804
2797
  }
2805
- /** @name PalletTimestampCall (297) */
2798
+ /** @name PalletTimestampCall (299) */
2806
2799
  interface PalletTimestampCall extends Enum {
2807
2800
  readonly isSet: boolean;
2808
2801
  readonly asSet: {
@@ -2810,27 +2803,27 @@ declare module "@polkadot/types/lookup" {
2810
2803
  } & Struct;
2811
2804
  readonly type: "Set";
2812
2805
  }
2813
- /** @name StagingParachainInfoCall (298) */
2806
+ /** @name StagingParachainInfoCall (300) */
2814
2807
  type StagingParachainInfoCall = Null;
2815
- /** @name PalletBalancesBalanceLock (300) */
2808
+ /** @name PalletBalancesBalanceLock (302) */
2816
2809
  interface PalletBalancesBalanceLock extends Struct {
2817
2810
  readonly id: U8aFixed;
2818
2811
  readonly amount: u128;
2819
2812
  readonly reasons: PalletBalancesReasons;
2820
2813
  }
2821
- /** @name PalletBalancesReasons (301) */
2814
+ /** @name PalletBalancesReasons (303) */
2822
2815
  interface PalletBalancesReasons extends Enum {
2823
2816
  readonly isFee: boolean;
2824
2817
  readonly isMisc: boolean;
2825
2818
  readonly isAll: boolean;
2826
2819
  readonly type: "Fee" | "Misc" | "All";
2827
2820
  }
2828
- /** @name PalletBalancesReserveData (304) */
2821
+ /** @name PalletBalancesReserveData (306) */
2829
2822
  interface PalletBalancesReserveData extends Struct {
2830
2823
  readonly id: U8aFixed;
2831
2824
  readonly amount: u128;
2832
2825
  }
2833
- /** @name ShParachainRuntimeRuntimeHoldReason (308) */
2826
+ /** @name ShParachainRuntimeRuntimeHoldReason (310) */
2834
2827
  interface ShParachainRuntimeRuntimeHoldReason extends Enum {
2835
2828
  readonly isProviders: boolean;
2836
2829
  readonly asProviders: PalletStorageProvidersHoldReason;
@@ -2840,29 +2833,29 @@ declare module "@polkadot/types/lookup" {
2840
2833
  readonly asPaymentStreams: PalletPaymentStreamsHoldReason;
2841
2834
  readonly type: "Providers" | "FileSystem" | "PaymentStreams";
2842
2835
  }
2843
- /** @name PalletStorageProvidersHoldReason (309) */
2836
+ /** @name PalletStorageProvidersHoldReason (311) */
2844
2837
  interface PalletStorageProvidersHoldReason extends Enum {
2845
2838
  readonly isStorageProviderDeposit: boolean;
2846
2839
  readonly isBucketDeposit: boolean;
2847
2840
  readonly type: "StorageProviderDeposit" | "BucketDeposit";
2848
2841
  }
2849
- /** @name PalletFileSystemHoldReason (310) */
2842
+ /** @name PalletFileSystemHoldReason (312) */
2850
2843
  interface PalletFileSystemHoldReason extends Enum {
2851
2844
  readonly isStorageRequestCreationHold: boolean;
2852
2845
  readonly isFileDeletionRequestHold: boolean;
2853
2846
  readonly type: "StorageRequestCreationHold" | "FileDeletionRequestHold";
2854
2847
  }
2855
- /** @name PalletPaymentStreamsHoldReason (311) */
2848
+ /** @name PalletPaymentStreamsHoldReason (313) */
2856
2849
  interface PalletPaymentStreamsHoldReason extends Enum {
2857
2850
  readonly isPaymentStreamDeposit: boolean;
2858
2851
  readonly type: "PaymentStreamDeposit";
2859
2852
  }
2860
- /** @name FrameSupportTokensMiscIdAmount (314) */
2853
+ /** @name FrameSupportTokensMiscIdAmount (316) */
2861
2854
  interface FrameSupportTokensMiscIdAmount extends Struct {
2862
2855
  readonly id: Null;
2863
2856
  readonly amount: u128;
2864
2857
  }
2865
- /** @name PalletBalancesCall (316) */
2858
+ /** @name PalletBalancesCall (318) */
2866
2859
  interface PalletBalancesCall extends Enum {
2867
2860
  readonly isTransferAllowDeath: boolean;
2868
2861
  readonly asTransferAllowDeath: {
@@ -2911,13 +2904,13 @@ declare module "@polkadot/types/lookup" {
2911
2904
  } & Struct;
2912
2905
  readonly type: "TransferAllowDeath" | "ForceTransfer" | "TransferKeepAlive" | "TransferAll" | "ForceUnreserve" | "UpgradeAccounts" | "ForceSetBalance" | "ForceAdjustTotalIssuance" | "Burn";
2913
2906
  }
2914
- /** @name PalletBalancesAdjustmentDirection (319) */
2907
+ /** @name PalletBalancesAdjustmentDirection (321) */
2915
2908
  interface PalletBalancesAdjustmentDirection extends Enum {
2916
2909
  readonly isIncrease: boolean;
2917
2910
  readonly isDecrease: boolean;
2918
2911
  readonly type: "Increase" | "Decrease";
2919
2912
  }
2920
- /** @name PalletBalancesError (320) */
2913
+ /** @name PalletBalancesError (322) */
2921
2914
  interface PalletBalancesError extends Enum {
2922
2915
  readonly isVestingBalance: boolean;
2923
2916
  readonly isLiquidityRestrictions: boolean;
@@ -2933,13 +2926,13 @@ declare module "@polkadot/types/lookup" {
2933
2926
  readonly isDeltaZero: boolean;
2934
2927
  readonly type: "VestingBalance" | "LiquidityRestrictions" | "InsufficientBalance" | "ExistentialDeposit" | "Expendability" | "ExistingVestingSchedule" | "DeadAccount" | "TooManyReserves" | "TooManyHolds" | "TooManyFreezes" | "IssuanceDeactivated" | "DeltaZero";
2935
2928
  }
2936
- /** @name PalletTransactionPaymentReleases (321) */
2929
+ /** @name PalletTransactionPaymentReleases (323) */
2937
2930
  interface PalletTransactionPaymentReleases extends Enum {
2938
2931
  readonly isV1Ancient: boolean;
2939
2932
  readonly isV2: boolean;
2940
2933
  readonly type: "V1Ancient" | "V2";
2941
2934
  }
2942
- /** @name PalletSudoCall (322) */
2935
+ /** @name PalletSudoCall (324) */
2943
2936
  interface PalletSudoCall extends Enum {
2944
2937
  readonly isSudo: boolean;
2945
2938
  readonly asSudo: {
@@ -2962,7 +2955,7 @@ declare module "@polkadot/types/lookup" {
2962
2955
  readonly isRemoveKey: boolean;
2963
2956
  readonly type: "Sudo" | "SudoUncheckedWeight" | "SetKey" | "SudoAs" | "RemoveKey";
2964
2957
  }
2965
- /** @name PalletCollatorSelectionCall (324) */
2958
+ /** @name PalletCollatorSelectionCall (326) */
2966
2959
  interface PalletCollatorSelectionCall extends Enum {
2967
2960
  readonly isSetInvulnerables: boolean;
2968
2961
  readonly asSetInvulnerables: {
@@ -2997,7 +2990,7 @@ declare module "@polkadot/types/lookup" {
2997
2990
  } & Struct;
2998
2991
  readonly type: "SetInvulnerables" | "SetDesiredCandidates" | "SetCandidacyBond" | "RegisterAsCandidate" | "LeaveIntent" | "AddInvulnerable" | "RemoveInvulnerable" | "UpdateBond" | "TakeCandidateSlot";
2999
2992
  }
3000
- /** @name PalletSessionCall (325) */
2993
+ /** @name PalletSessionCall (327) */
3001
2994
  interface PalletSessionCall extends Enum {
3002
2995
  readonly isSetKeys: boolean;
3003
2996
  readonly asSetKeys: {
@@ -3007,14 +3000,14 @@ declare module "@polkadot/types/lookup" {
3007
3000
  readonly isPurgeKeys: boolean;
3008
3001
  readonly type: "SetKeys" | "PurgeKeys";
3009
3002
  }
3010
- /** @name ShParachainRuntimeSessionKeys (326) */
3003
+ /** @name ShParachainRuntimeSessionKeys (328) */
3011
3004
  interface ShParachainRuntimeSessionKeys extends Struct {
3012
3005
  readonly aura: SpConsensusAuraSr25519AppSr25519Public;
3013
3006
  }
3014
- /** @name SpConsensusAuraSr25519AppSr25519Public (327) */
3007
+ /** @name SpConsensusAuraSr25519AppSr25519Public (329) */
3015
3008
  interface SpConsensusAuraSr25519AppSr25519Public extends U8aFixed {
3016
3009
  }
3017
- /** @name CumulusPalletXcmpQueueCall (328) */
3010
+ /** @name CumulusPalletXcmpQueueCall (330) */
3018
3011
  interface CumulusPalletXcmpQueueCall extends Enum {
3019
3012
  readonly isSuspendXcmExecution: boolean;
3020
3013
  readonly isResumeXcmExecution: boolean;
@@ -3032,7 +3025,7 @@ declare module "@polkadot/types/lookup" {
3032
3025
  } & Struct;
3033
3026
  readonly type: "SuspendXcmExecution" | "ResumeXcmExecution" | "UpdateSuspendThreshold" | "UpdateDropThreshold" | "UpdateResumeThreshold";
3034
3027
  }
3035
- /** @name PalletXcmCall (329) */
3028
+ /** @name PalletXcmCall (331) */
3036
3029
  interface PalletXcmCall extends Enum {
3037
3030
  readonly isSend: boolean;
3038
3031
  readonly asSend: {
@@ -3120,7 +3113,7 @@ declare module "@polkadot/types/lookup" {
3120
3113
  } & Struct;
3121
3114
  readonly type: "Send" | "TeleportAssets" | "ReserveTransferAssets" | "Execute" | "ForceXcmVersion" | "ForceDefaultXcmVersion" | "ForceSubscribeVersionNotify" | "ForceUnsubscribeVersionNotify" | "LimitedReserveTransferAssets" | "LimitedTeleportAssets" | "ForceSuspension" | "TransferAssets" | "ClaimAssets" | "TransferAssetsUsingTypeAndThen";
3122
3115
  }
3123
- /** @name XcmVersionedXcm (330) */
3116
+ /** @name XcmVersionedXcm (332) */
3124
3117
  interface XcmVersionedXcm extends Enum {
3125
3118
  readonly isV3: boolean;
3126
3119
  readonly asV3: XcmV3Xcm;
@@ -3130,10 +3123,10 @@ declare module "@polkadot/types/lookup" {
3130
3123
  readonly asV5: StagingXcmV5Xcm;
3131
3124
  readonly type: "V3" | "V4" | "V5";
3132
3125
  }
3133
- /** @name XcmV3Xcm (331) */
3126
+ /** @name XcmV3Xcm (333) */
3134
3127
  interface XcmV3Xcm extends Vec<XcmV3Instruction> {
3135
3128
  }
3136
- /** @name XcmV3Instruction (333) */
3129
+ /** @name XcmV3Instruction (335) */
3137
3130
  interface XcmV3Instruction extends Enum {
3138
3131
  readonly isWithdrawAsset: boolean;
3139
3132
  readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
@@ -3314,7 +3307,7 @@ declare module "@polkadot/types/lookup" {
3314
3307
  } & Struct;
3315
3308
  readonly type: "WithdrawAsset" | "ReserveAssetDeposited" | "ReceiveTeleportedAsset" | "QueryResponse" | "TransferAsset" | "TransferReserveAsset" | "Transact" | "HrmpNewChannelOpenRequest" | "HrmpChannelAccepted" | "HrmpChannelClosing" | "ClearOrigin" | "DescendOrigin" | "ReportError" | "DepositAsset" | "DepositReserveAsset" | "ExchangeAsset" | "InitiateReserveWithdraw" | "InitiateTeleport" | "ReportHolding" | "BuyExecution" | "RefundSurplus" | "SetErrorHandler" | "SetAppendix" | "ClearError" | "ClaimAsset" | "Trap" | "SubscribeVersion" | "UnsubscribeVersion" | "BurnAsset" | "ExpectAsset" | "ExpectOrigin" | "ExpectError" | "ExpectTransactStatus" | "QueryPallet" | "ExpectPallet" | "ReportTransactStatus" | "ClearTransactStatus" | "UniversalOrigin" | "ExportMessage" | "LockAsset" | "UnlockAsset" | "NoteUnlockable" | "RequestUnlock" | "SetFeesMode" | "SetTopic" | "ClearTopic" | "AliasOrigin" | "UnpaidExecution";
3316
3309
  }
3317
- /** @name XcmV3Response (334) */
3310
+ /** @name XcmV3Response (336) */
3318
3311
  interface XcmV3Response extends Enum {
3319
3312
  readonly isNull: boolean;
3320
3313
  readonly isAssets: boolean;
@@ -3329,7 +3322,7 @@ declare module "@polkadot/types/lookup" {
3329
3322
  readonly asDispatchResult: XcmV3MaybeErrorCode;
3330
3323
  readonly type: "Null" | "Assets" | "ExecutionResult" | "Version" | "PalletsInfo" | "DispatchResult";
3331
3324
  }
3332
- /** @name XcmV3TraitsError (337) */
3325
+ /** @name XcmV3TraitsError (339) */
3333
3326
  interface XcmV3TraitsError extends Enum {
3334
3327
  readonly isOverflow: boolean;
3335
3328
  readonly isUnimplemented: boolean;
@@ -3375,7 +3368,7 @@ declare module "@polkadot/types/lookup" {
3375
3368
  readonly isExceedsStackLimit: boolean;
3376
3369
  readonly type: "Overflow" | "Unimplemented" | "UntrustedReserveLocation" | "UntrustedTeleportLocation" | "LocationFull" | "LocationNotInvertible" | "BadOrigin" | "InvalidLocation" | "AssetNotFound" | "FailedToTransactAsset" | "NotWithdrawable" | "LocationCannotHold" | "ExceedsMaxMessageSize" | "DestinationUnsupported" | "Transport" | "Unroutable" | "UnknownClaim" | "FailedToDecode" | "MaxWeightInvalid" | "NotHoldingFees" | "TooExpensive" | "Trap" | "ExpectationFalse" | "PalletNotFound" | "NameMismatch" | "VersionIncompatible" | "HoldingWouldOverflow" | "ExportError" | "ReanchorFailed" | "NoDeal" | "FeesNotMet" | "LockError" | "NoPermission" | "Unanchored" | "NotDepositable" | "UnhandledXcmVersion" | "WeightLimitReached" | "Barrier" | "WeightNotComputable" | "ExceedsStackLimit";
3377
3370
  }
3378
- /** @name XcmV3PalletInfo (339) */
3371
+ /** @name XcmV3PalletInfo (341) */
3379
3372
  interface XcmV3PalletInfo extends Struct {
3380
3373
  readonly index: Compact<u32>;
3381
3374
  readonly name: Bytes;
@@ -3384,13 +3377,13 @@ declare module "@polkadot/types/lookup" {
3384
3377
  readonly minor: Compact<u32>;
3385
3378
  readonly patch: Compact<u32>;
3386
3379
  }
3387
- /** @name XcmV3QueryResponseInfo (343) */
3380
+ /** @name XcmV3QueryResponseInfo (345) */
3388
3381
  interface XcmV3QueryResponseInfo extends Struct {
3389
3382
  readonly destination: StagingXcmV3MultiLocation;
3390
3383
  readonly queryId: Compact<u64>;
3391
3384
  readonly maxWeight: SpWeightsWeightV2Weight;
3392
3385
  }
3393
- /** @name XcmV3MultiassetMultiAssetFilter (344) */
3386
+ /** @name XcmV3MultiassetMultiAssetFilter (346) */
3394
3387
  interface XcmV3MultiassetMultiAssetFilter extends Enum {
3395
3388
  readonly isDefinite: boolean;
3396
3389
  readonly asDefinite: XcmV3MultiassetMultiAssets;
@@ -3398,7 +3391,7 @@ declare module "@polkadot/types/lookup" {
3398
3391
  readonly asWild: XcmV3MultiassetWildMultiAsset;
3399
3392
  readonly type: "Definite" | "Wild";
3400
3393
  }
3401
- /** @name XcmV3MultiassetWildMultiAsset (345) */
3394
+ /** @name XcmV3MultiassetWildMultiAsset (347) */
3402
3395
  interface XcmV3MultiassetWildMultiAsset extends Enum {
3403
3396
  readonly isAll: boolean;
3404
3397
  readonly isAllOf: boolean;
@@ -3416,16 +3409,16 @@ declare module "@polkadot/types/lookup" {
3416
3409
  } & Struct;
3417
3410
  readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
3418
3411
  }
3419
- /** @name XcmV3MultiassetWildFungibility (346) */
3412
+ /** @name XcmV3MultiassetWildFungibility (348) */
3420
3413
  interface XcmV3MultiassetWildFungibility extends Enum {
3421
3414
  readonly isFungible: boolean;
3422
3415
  readonly isNonFungible: boolean;
3423
3416
  readonly type: "Fungible" | "NonFungible";
3424
3417
  }
3425
- /** @name StagingXcmV4Xcm (347) */
3418
+ /** @name StagingXcmV4Xcm (349) */
3426
3419
  interface StagingXcmV4Xcm extends Vec<StagingXcmV4Instruction> {
3427
3420
  }
3428
- /** @name StagingXcmV4Instruction (349) */
3421
+ /** @name StagingXcmV4Instruction (351) */
3429
3422
  interface StagingXcmV4Instruction extends Enum {
3430
3423
  readonly isWithdrawAsset: boolean;
3431
3424
  readonly asWithdrawAsset: StagingXcmV4AssetAssets;
@@ -3606,7 +3599,7 @@ declare module "@polkadot/types/lookup" {
3606
3599
  } & Struct;
3607
3600
  readonly type: "WithdrawAsset" | "ReserveAssetDeposited" | "ReceiveTeleportedAsset" | "QueryResponse" | "TransferAsset" | "TransferReserveAsset" | "Transact" | "HrmpNewChannelOpenRequest" | "HrmpChannelAccepted" | "HrmpChannelClosing" | "ClearOrigin" | "DescendOrigin" | "ReportError" | "DepositAsset" | "DepositReserveAsset" | "ExchangeAsset" | "InitiateReserveWithdraw" | "InitiateTeleport" | "ReportHolding" | "BuyExecution" | "RefundSurplus" | "SetErrorHandler" | "SetAppendix" | "ClearError" | "ClaimAsset" | "Trap" | "SubscribeVersion" | "UnsubscribeVersion" | "BurnAsset" | "ExpectAsset" | "ExpectOrigin" | "ExpectError" | "ExpectTransactStatus" | "QueryPallet" | "ExpectPallet" | "ReportTransactStatus" | "ClearTransactStatus" | "UniversalOrigin" | "ExportMessage" | "LockAsset" | "UnlockAsset" | "NoteUnlockable" | "RequestUnlock" | "SetFeesMode" | "SetTopic" | "ClearTopic" | "AliasOrigin" | "UnpaidExecution";
3608
3601
  }
3609
- /** @name StagingXcmV4Response (350) */
3602
+ /** @name StagingXcmV4Response (352) */
3610
3603
  interface StagingXcmV4Response extends Enum {
3611
3604
  readonly isNull: boolean;
3612
3605
  readonly isAssets: boolean;
@@ -3621,7 +3614,7 @@ declare module "@polkadot/types/lookup" {
3621
3614
  readonly asDispatchResult: XcmV3MaybeErrorCode;
3622
3615
  readonly type: "Null" | "Assets" | "ExecutionResult" | "Version" | "PalletsInfo" | "DispatchResult";
3623
3616
  }
3624
- /** @name StagingXcmV4PalletInfo (352) */
3617
+ /** @name StagingXcmV4PalletInfo (354) */
3625
3618
  interface StagingXcmV4PalletInfo extends Struct {
3626
3619
  readonly index: Compact<u32>;
3627
3620
  readonly name: Bytes;
@@ -3630,13 +3623,13 @@ declare module "@polkadot/types/lookup" {
3630
3623
  readonly minor: Compact<u32>;
3631
3624
  readonly patch: Compact<u32>;
3632
3625
  }
3633
- /** @name StagingXcmV4QueryResponseInfo (356) */
3626
+ /** @name StagingXcmV4QueryResponseInfo (358) */
3634
3627
  interface StagingXcmV4QueryResponseInfo extends Struct {
3635
3628
  readonly destination: StagingXcmV4Location;
3636
3629
  readonly queryId: Compact<u64>;
3637
3630
  readonly maxWeight: SpWeightsWeightV2Weight;
3638
3631
  }
3639
- /** @name StagingXcmV4AssetAssetFilter (357) */
3632
+ /** @name StagingXcmV4AssetAssetFilter (359) */
3640
3633
  interface StagingXcmV4AssetAssetFilter extends Enum {
3641
3634
  readonly isDefinite: boolean;
3642
3635
  readonly asDefinite: StagingXcmV4AssetAssets;
@@ -3644,7 +3637,7 @@ declare module "@polkadot/types/lookup" {
3644
3637
  readonly asWild: StagingXcmV4AssetWildAsset;
3645
3638
  readonly type: "Definite" | "Wild";
3646
3639
  }
3647
- /** @name StagingXcmV4AssetWildAsset (358) */
3640
+ /** @name StagingXcmV4AssetWildAsset (360) */
3648
3641
  interface StagingXcmV4AssetWildAsset extends Enum {
3649
3642
  readonly isAll: boolean;
3650
3643
  readonly isAllOf: boolean;
@@ -3662,13 +3655,13 @@ declare module "@polkadot/types/lookup" {
3662
3655
  } & Struct;
3663
3656
  readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
3664
3657
  }
3665
- /** @name StagingXcmV4AssetWildFungibility (359) */
3658
+ /** @name StagingXcmV4AssetWildFungibility (361) */
3666
3659
  interface StagingXcmV4AssetWildFungibility extends Enum {
3667
3660
  readonly isFungible: boolean;
3668
3661
  readonly isNonFungible: boolean;
3669
3662
  readonly type: "Fungible" | "NonFungible";
3670
3663
  }
3671
- /** @name StagingXcmExecutorAssetTransferTransferType (371) */
3664
+ /** @name StagingXcmExecutorAssetTransferTransferType (373) */
3672
3665
  interface StagingXcmExecutorAssetTransferTransferType extends Enum {
3673
3666
  readonly isTeleport: boolean;
3674
3667
  readonly isLocalReserve: boolean;
@@ -3677,7 +3670,7 @@ declare module "@polkadot/types/lookup" {
3677
3670
  readonly asRemoteReserve: XcmVersionedLocation;
3678
3671
  readonly type: "Teleport" | "LocalReserve" | "DestinationReserve" | "RemoteReserve";
3679
3672
  }
3680
- /** @name XcmVersionedAssetId (372) */
3673
+ /** @name XcmVersionedAssetId (374) */
3681
3674
  interface XcmVersionedAssetId extends Enum {
3682
3675
  readonly isV3: boolean;
3683
3676
  readonly asV3: XcmV3MultiassetAssetId;
@@ -3687,9 +3680,9 @@ declare module "@polkadot/types/lookup" {
3687
3680
  readonly asV5: StagingXcmV5AssetAssetId;
3688
3681
  readonly type: "V3" | "V4" | "V5";
3689
3682
  }
3690
- /** @name CumulusPalletXcmCall (373) */
3683
+ /** @name CumulusPalletXcmCall (375) */
3691
3684
  type CumulusPalletXcmCall = Null;
3692
- /** @name PalletMessageQueueCall (374) */
3685
+ /** @name PalletMessageQueueCall (376) */
3693
3686
  interface PalletMessageQueueCall extends Enum {
3694
3687
  readonly isReapPage: boolean;
3695
3688
  readonly asReapPage: {
@@ -3705,7 +3698,7 @@ declare module "@polkadot/types/lookup" {
3705
3698
  } & Struct;
3706
3699
  readonly type: "ReapPage" | "ExecuteOverweight";
3707
3700
  }
3708
- /** @name PalletStorageProvidersCall (375) */
3701
+ /** @name PalletStorageProvidersCall (377) */
3709
3702
  interface PalletStorageProvidersCall extends Enum {
3710
3703
  readonly isRequestMspSignUp: boolean;
3711
3704
  readonly asRequestMspSignUp: {
@@ -3786,7 +3779,7 @@ declare module "@polkadot/types/lookup" {
3786
3779
  readonly isStopAllCycles: boolean;
3787
3780
  readonly type: "RequestMspSignUp" | "RequestBspSignUp" | "ConfirmSignUp" | "CancelSignUp" | "MspSignOff" | "BspSignOff" | "ChangeCapacity" | "AddValueProp" | "MakeValuePropUnavailable" | "AddMultiaddress" | "RemoveMultiaddress" | "ForceMspSignUp" | "ForceBspSignUp" | "Slash" | "TopUpDeposit" | "DeleteProvider" | "StopAllCycles";
3788
3781
  }
3789
- /** @name PalletFileSystemCall (376) */
3782
+ /** @name PalletFileSystemCall (378) */
3790
3783
  interface PalletFileSystemCall extends Enum {
3791
3784
  readonly isCreateBucket: boolean;
3792
3785
  readonly asCreateBucket: {
@@ -3889,33 +3882,27 @@ declare module "@polkadot/types/lookup" {
3889
3882
  readonly size_: u64;
3890
3883
  readonly fingerprint: H256;
3891
3884
  } & Struct;
3892
- readonly isDeleteFile: boolean;
3893
- readonly asDeleteFile: {
3894
- readonly fileOwner: AccountId32;
3895
- readonly signedIntention: PalletFileSystemFileOperationIntention;
3896
- readonly signature: SpRuntimeMultiSignature;
3897
- readonly bucketId: H256;
3898
- readonly location: Bytes;
3899
- readonly size_: u64;
3900
- readonly fingerprint: H256;
3885
+ readonly isDeleteFiles: boolean;
3886
+ readonly asDeleteFiles: {
3887
+ readonly fileDeletions: Vec<PalletFileSystemFileDeletionRequest>;
3901
3888
  readonly bspId: Option<H256>;
3902
3889
  readonly forestProof: SpTrieStorageProofCompactProof;
3903
3890
  } & Struct;
3904
- readonly isDeleteFileForIncompleteStorageRequest: boolean;
3905
- readonly asDeleteFileForIncompleteStorageRequest: {
3906
- readonly fileKey: H256;
3891
+ readonly isDeleteFilesForIncompleteStorageRequest: boolean;
3892
+ readonly asDeleteFilesForIncompleteStorageRequest: {
3893
+ readonly fileKeys: Vec<H256>;
3907
3894
  readonly bspId: Option<H256>;
3908
3895
  readonly forestProof: SpTrieStorageProofCompactProof;
3909
3896
  } & Struct;
3910
- readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFile" | "DeleteFileForIncompleteStorageRequest";
3897
+ readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFiles" | "DeleteFilesForIncompleteStorageRequest";
3911
3898
  }
3912
- /** @name PalletFileSystemBucketMoveRequestResponse (377) */
3899
+ /** @name PalletFileSystemBucketMoveRequestResponse (379) */
3913
3900
  interface PalletFileSystemBucketMoveRequestResponse extends Enum {
3914
3901
  readonly isAccepted: boolean;
3915
3902
  readonly isRejected: boolean;
3916
3903
  readonly type: "Accepted" | "Rejected";
3917
3904
  }
3918
- /** @name PalletFileSystemReplicationTarget (378) */
3905
+ /** @name PalletFileSystemReplicationTarget (380) */
3919
3906
  interface PalletFileSystemReplicationTarget extends Enum {
3920
3907
  readonly isBasic: boolean;
3921
3908
  readonly isStandard: boolean;
@@ -3926,28 +3913,38 @@ declare module "@polkadot/types/lookup" {
3926
3913
  readonly asCustom: u32;
3927
3914
  readonly type: "Basic" | "Standard" | "HighSecurity" | "SuperHighSecurity" | "UltraHighSecurity" | "Custom";
3928
3915
  }
3929
- /** @name PalletFileSystemStorageRequestMspBucketResponse (380) */
3916
+ /** @name PalletFileSystemStorageRequestMspBucketResponse (382) */
3930
3917
  interface PalletFileSystemStorageRequestMspBucketResponse extends Struct {
3931
3918
  readonly bucketId: H256;
3932
3919
  readonly accept: Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>;
3933
3920
  readonly reject: Vec<PalletFileSystemRejectedStorageRequest>;
3934
3921
  }
3935
- /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (382) */
3922
+ /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (384) */
3936
3923
  interface PalletFileSystemStorageRequestMspAcceptedFileKeys extends Struct {
3937
3924
  readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
3938
3925
  readonly forestProof: SpTrieStorageProofCompactProof;
3939
3926
  }
3940
- /** @name PalletFileSystemFileKeyWithProof (384) */
3927
+ /** @name PalletFileSystemFileKeyWithProof (386) */
3941
3928
  interface PalletFileSystemFileKeyWithProof extends Struct {
3942
3929
  readonly fileKey: H256;
3943
3930
  readonly proof: ShpFileKeyVerifierFileKeyProof;
3944
3931
  }
3945
- /** @name PalletFileSystemRejectedStorageRequest (386) */
3932
+ /** @name PalletFileSystemRejectedStorageRequest (388) */
3946
3933
  interface PalletFileSystemRejectedStorageRequest extends Struct {
3947
3934
  readonly fileKey: H256;
3948
3935
  readonly reason: PalletFileSystemRejectedStorageRequestReason;
3949
3936
  }
3950
- /** @name PalletProofsDealerCall (388) */
3937
+ /** @name PalletFileSystemFileDeletionRequest (391) */
3938
+ interface PalletFileSystemFileDeletionRequest extends Struct {
3939
+ readonly fileOwner: AccountId32;
3940
+ readonly signedIntention: PalletFileSystemFileOperationIntention;
3941
+ readonly signature: SpRuntimeMultiSignature;
3942
+ readonly bucketId: H256;
3943
+ readonly location: Bytes;
3944
+ readonly size_: u64;
3945
+ readonly fingerprint: H256;
3946
+ }
3947
+ /** @name PalletProofsDealerCall (393) */
3951
3948
  interface PalletProofsDealerCall extends Enum {
3952
3949
  readonly isChallenge: boolean;
3953
3950
  readonly asChallenge: {
@@ -3973,12 +3970,12 @@ declare module "@polkadot/types/lookup" {
3973
3970
  } & Struct;
3974
3971
  readonly type: "Challenge" | "SubmitProof" | "ForceInitialiseChallengeCycle" | "SetPaused" | "PriorityChallenge";
3975
3972
  }
3976
- /** @name PalletRandomnessCall (389) */
3973
+ /** @name PalletRandomnessCall (394) */
3977
3974
  interface PalletRandomnessCall extends Enum {
3978
3975
  readonly isSetBabeRandomness: boolean;
3979
3976
  readonly type: "SetBabeRandomness";
3980
3977
  }
3981
- /** @name PalletPaymentStreamsCall (390) */
3978
+ /** @name PalletPaymentStreamsCall (395) */
3982
3979
  interface PalletPaymentStreamsCall extends Enum {
3983
3980
  readonly isCreateFixedRatePaymentStream: boolean;
3984
3981
  readonly asCreateFixedRatePaymentStream: {
@@ -4029,7 +4026,7 @@ declare module "@polkadot/types/lookup" {
4029
4026
  readonly isClearInsolventFlag: boolean;
4030
4027
  readonly type: "CreateFixedRatePaymentStream" | "UpdateFixedRatePaymentStream" | "DeleteFixedRatePaymentStream" | "CreateDynamicRatePaymentStream" | "UpdateDynamicRatePaymentStream" | "DeleteDynamicRatePaymentStream" | "ChargePaymentStreams" | "ChargeMultipleUsersPaymentStreams" | "PayOutstandingDebt" | "ClearInsolventFlag";
4031
4028
  }
4032
- /** @name PalletBucketNftsCall (391) */
4029
+ /** @name PalletBucketNftsCall (396) */
4033
4030
  interface PalletBucketNftsCall extends Enum {
4034
4031
  readonly isShareAccess: boolean;
4035
4032
  readonly asShareAccess: {
@@ -4046,7 +4043,7 @@ declare module "@polkadot/types/lookup" {
4046
4043
  } & Struct;
4047
4044
  readonly type: "ShareAccess" | "UpdateReadAccess";
4048
4045
  }
4049
- /** @name PalletNftsCall (393) */
4046
+ /** @name PalletNftsCall (398) */
4050
4047
  interface PalletNftsCall extends Enum {
4051
4048
  readonly isCreate: boolean;
4052
4049
  readonly asCreate: {
@@ -4279,13 +4276,13 @@ declare module "@polkadot/types/lookup" {
4279
4276
  } & Struct;
4280
4277
  readonly type: "Create" | "ForceCreate" | "Destroy" | "Mint" | "ForceMint" | "Burn" | "Transfer" | "Redeposit" | "LockItemTransfer" | "UnlockItemTransfer" | "LockCollection" | "TransferOwnership" | "SetTeam" | "ForceCollectionOwner" | "ForceCollectionConfig" | "ApproveTransfer" | "CancelApproval" | "ClearAllTransferApprovals" | "LockItemProperties" | "SetAttribute" | "ForceSetAttribute" | "ClearAttribute" | "ApproveItemAttributes" | "CancelItemAttributesApproval" | "SetMetadata" | "ClearMetadata" | "SetCollectionMetadata" | "ClearCollectionMetadata" | "SetAcceptOwnership" | "SetCollectionMaxSupply" | "UpdateMintSettings" | "SetPrice" | "BuyItem" | "PayTips" | "CreateSwap" | "CancelSwap" | "ClaimSwap" | "MintPreSigned" | "SetAttributesPreSigned";
4281
4278
  }
4282
- /** @name PalletNftsCollectionConfig (394) */
4279
+ /** @name PalletNftsCollectionConfig (399) */
4283
4280
  interface PalletNftsCollectionConfig extends Struct {
4284
4281
  readonly settings: u64;
4285
4282
  readonly maxSupply: Option<u32>;
4286
4283
  readonly mintSettings: PalletNftsMintSettings;
4287
4284
  }
4288
- /** @name PalletNftsCollectionSetting (396) */
4285
+ /** @name PalletNftsCollectionSetting (401) */
4289
4286
  interface PalletNftsCollectionSetting extends Enum {
4290
4287
  readonly isTransferableItems: boolean;
4291
4288
  readonly isUnlockedMetadata: boolean;
@@ -4294,7 +4291,7 @@ declare module "@polkadot/types/lookup" {
4294
4291
  readonly isDepositRequired: boolean;
4295
4292
  readonly type: "TransferableItems" | "UnlockedMetadata" | "UnlockedAttributes" | "UnlockedMaxSupply" | "DepositRequired";
4296
4293
  }
4297
- /** @name PalletNftsMintSettings (397) */
4294
+ /** @name PalletNftsMintSettings (402) */
4298
4295
  interface PalletNftsMintSettings extends Struct {
4299
4296
  readonly mintType: PalletNftsMintType;
4300
4297
  readonly price: Option<u128>;
@@ -4302,7 +4299,7 @@ declare module "@polkadot/types/lookup" {
4302
4299
  readonly endBlock: Option<u32>;
4303
4300
  readonly defaultItemSettings: u64;
4304
4301
  }
4305
- /** @name PalletNftsMintType (398) */
4302
+ /** @name PalletNftsMintType (403) */
4306
4303
  interface PalletNftsMintType extends Enum {
4307
4304
  readonly isIssuer: boolean;
4308
4305
  readonly isPublic: boolean;
@@ -4310,40 +4307,40 @@ declare module "@polkadot/types/lookup" {
4310
4307
  readonly asHolderOf: u32;
4311
4308
  readonly type: "Issuer" | "Public" | "HolderOf";
4312
4309
  }
4313
- /** @name PalletNftsItemSetting (401) */
4310
+ /** @name PalletNftsItemSetting (406) */
4314
4311
  interface PalletNftsItemSetting extends Enum {
4315
4312
  readonly isTransferable: boolean;
4316
4313
  readonly isUnlockedMetadata: boolean;
4317
4314
  readonly isUnlockedAttributes: boolean;
4318
4315
  readonly type: "Transferable" | "UnlockedMetadata" | "UnlockedAttributes";
4319
4316
  }
4320
- /** @name PalletNftsDestroyWitness (402) */
4317
+ /** @name PalletNftsDestroyWitness (407) */
4321
4318
  interface PalletNftsDestroyWitness extends Struct {
4322
4319
  readonly itemMetadatas: Compact<u32>;
4323
4320
  readonly itemConfigs: Compact<u32>;
4324
4321
  readonly attributes: Compact<u32>;
4325
4322
  }
4326
- /** @name PalletNftsMintWitness (404) */
4323
+ /** @name PalletNftsMintWitness (409) */
4327
4324
  interface PalletNftsMintWitness extends Struct {
4328
4325
  readonly ownedItem: Option<u32>;
4329
4326
  readonly mintPrice: Option<u128>;
4330
4327
  }
4331
- /** @name PalletNftsItemConfig (405) */
4328
+ /** @name PalletNftsItemConfig (410) */
4332
4329
  interface PalletNftsItemConfig extends Struct {
4333
4330
  readonly settings: u64;
4334
4331
  }
4335
- /** @name PalletNftsCancelAttributesApprovalWitness (407) */
4332
+ /** @name PalletNftsCancelAttributesApprovalWitness (412) */
4336
4333
  interface PalletNftsCancelAttributesApprovalWitness extends Struct {
4337
4334
  readonly accountAttributes: u32;
4338
4335
  }
4339
- /** @name PalletNftsItemTip (409) */
4336
+ /** @name PalletNftsItemTip (414) */
4340
4337
  interface PalletNftsItemTip extends Struct {
4341
4338
  readonly collection: u32;
4342
4339
  readonly item: u32;
4343
4340
  readonly receiver: AccountId32;
4344
4341
  readonly amount: u128;
4345
4342
  }
4346
- /** @name PalletNftsPreSignedMint (411) */
4343
+ /** @name PalletNftsPreSignedMint (416) */
4347
4344
  interface PalletNftsPreSignedMint extends Struct {
4348
4345
  readonly collection: u32;
4349
4346
  readonly item: u32;
@@ -4353,7 +4350,7 @@ declare module "@polkadot/types/lookup" {
4353
4350
  readonly deadline: u32;
4354
4351
  readonly mintPrice: Option<u128>;
4355
4352
  }
4356
- /** @name PalletNftsPreSignedAttributes (412) */
4353
+ /** @name PalletNftsPreSignedAttributes (417) */
4357
4354
  interface PalletNftsPreSignedAttributes extends Struct {
4358
4355
  readonly collection: u32;
4359
4356
  readonly item: u32;
@@ -4361,7 +4358,7 @@ declare module "@polkadot/types/lookup" {
4361
4358
  readonly namespace: PalletNftsAttributeNamespace;
4362
4359
  readonly deadline: u32;
4363
4360
  }
4364
- /** @name PalletParametersCall (413) */
4361
+ /** @name PalletParametersCall (418) */
4365
4362
  interface PalletParametersCall extends Enum {
4366
4363
  readonly isSetParameter: boolean;
4367
4364
  readonly asSetParameter: {
@@ -4369,13 +4366,13 @@ declare module "@polkadot/types/lookup" {
4369
4366
  } & Struct;
4370
4367
  readonly type: "SetParameter";
4371
4368
  }
4372
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters (414) */
4369
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters (419) */
4373
4370
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters extends Enum {
4374
4371
  readonly isRuntimeConfig: boolean;
4375
4372
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
4376
4373
  readonly type: "RuntimeConfig";
4377
4374
  }
4378
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (415) */
4375
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (420) */
4379
4376
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters extends Enum {
4380
4377
  readonly isSlashAmountPerMaxFileSize: boolean;
4381
4378
  readonly asSlashAmountPerMaxFileSize: ITuple<[
@@ -4529,17 +4526,17 @@ declare module "@polkadot/types/lookup" {
4529
4526
  ]>;
4530
4527
  readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
4531
4528
  }
4532
- /** @name PalletSudoError (417) */
4529
+ /** @name PalletSudoError (422) */
4533
4530
  interface PalletSudoError extends Enum {
4534
4531
  readonly isRequireSudo: boolean;
4535
4532
  readonly type: "RequireSudo";
4536
4533
  }
4537
- /** @name PalletCollatorSelectionCandidateInfo (420) */
4534
+ /** @name PalletCollatorSelectionCandidateInfo (425) */
4538
4535
  interface PalletCollatorSelectionCandidateInfo extends Struct {
4539
4536
  readonly who: AccountId32;
4540
4537
  readonly deposit: u128;
4541
4538
  }
4542
- /** @name PalletCollatorSelectionError (422) */
4539
+ /** @name PalletCollatorSelectionError (427) */
4543
4540
  interface PalletCollatorSelectionError extends Enum {
4544
4541
  readonly isTooManyCandidates: boolean;
4545
4542
  readonly isTooFewEligibleCollators: boolean;
@@ -4560,10 +4557,10 @@ declare module "@polkadot/types/lookup" {
4560
4557
  readonly isInvalidUnreserve: boolean;
4561
4558
  readonly type: "TooManyCandidates" | "TooFewEligibleCollators" | "AlreadyCandidate" | "NotCandidate" | "TooManyInvulnerables" | "AlreadyInvulnerable" | "NotInvulnerable" | "NoAssociatedValidatorId" | "ValidatorNotRegistered" | "InsertToCandidateListFailed" | "RemoveFromCandidateListFailed" | "DepositTooLow" | "UpdateCandidateListFailed" | "InsufficientBond" | "TargetIsNotCandidate" | "IdenticalDeposit" | "InvalidUnreserve";
4562
4559
  }
4563
- /** @name SpCoreCryptoKeyTypeId (426) */
4560
+ /** @name SpCoreCryptoKeyTypeId (431) */
4564
4561
  interface SpCoreCryptoKeyTypeId extends U8aFixed {
4565
4562
  }
4566
- /** @name PalletSessionError (427) */
4563
+ /** @name PalletSessionError (432) */
4567
4564
  interface PalletSessionError extends Enum {
4568
4565
  readonly isInvalidProof: boolean;
4569
4566
  readonly isNoAssociatedValidatorId: boolean;
@@ -4572,7 +4569,7 @@ declare module "@polkadot/types/lookup" {
4572
4569
  readonly isNoAccount: boolean;
4573
4570
  readonly type: "InvalidProof" | "NoAssociatedValidatorId" | "DuplicatedKey" | "NoKeys" | "NoAccount";
4574
4571
  }
4575
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
4572
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */
4576
4573
  interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
4577
4574
  readonly recipient: u32;
4578
4575
  readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -4580,19 +4577,19 @@ declare module "@polkadot/types/lookup" {
4580
4577
  readonly firstIndex: u16;
4581
4578
  readonly lastIndex: u16;
4582
4579
  }
4583
- /** @name CumulusPalletXcmpQueueOutboundState (437) */
4580
+ /** @name CumulusPalletXcmpQueueOutboundState (442) */
4584
4581
  interface CumulusPalletXcmpQueueOutboundState extends Enum {
4585
4582
  readonly isOk: boolean;
4586
4583
  readonly isSuspended: boolean;
4587
4584
  readonly type: "Ok" | "Suspended";
4588
4585
  }
4589
- /** @name CumulusPalletXcmpQueueQueueConfigData (441) */
4586
+ /** @name CumulusPalletXcmpQueueQueueConfigData (446) */
4590
4587
  interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
4591
4588
  readonly suspendThreshold: u32;
4592
4589
  readonly dropThreshold: u32;
4593
4590
  readonly resumeThreshold: u32;
4594
4591
  }
4595
- /** @name CumulusPalletXcmpQueueError (442) */
4592
+ /** @name CumulusPalletXcmpQueueError (447) */
4596
4593
  interface CumulusPalletXcmpQueueError extends Enum {
4597
4594
  readonly isBadQueueConfig: boolean;
4598
4595
  readonly isAlreadySuspended: boolean;
@@ -4601,7 +4598,7 @@ declare module "@polkadot/types/lookup" {
4601
4598
  readonly isTooBig: boolean;
4602
4599
  readonly type: "BadQueueConfig" | "AlreadySuspended" | "AlreadyResumed" | "TooManyActiveOutboundChannels" | "TooBig";
4603
4600
  }
4604
- /** @name PalletXcmQueryStatus (443) */
4601
+ /** @name PalletXcmQueryStatus (448) */
4605
4602
  interface PalletXcmQueryStatus extends Enum {
4606
4603
  readonly isPending: boolean;
4607
4604
  readonly asPending: {
@@ -4622,7 +4619,7 @@ declare module "@polkadot/types/lookup" {
4622
4619
  } & Struct;
4623
4620
  readonly type: "Pending" | "VersionNotifier" | "Ready";
4624
4621
  }
4625
- /** @name XcmVersionedResponse (447) */
4622
+ /** @name XcmVersionedResponse (452) */
4626
4623
  interface XcmVersionedResponse extends Enum {
4627
4624
  readonly isV3: boolean;
4628
4625
  readonly asV3: XcmV3Response;
@@ -4632,7 +4629,7 @@ declare module "@polkadot/types/lookup" {
4632
4629
  readonly asV5: StagingXcmV5Response;
4633
4630
  readonly type: "V3" | "V4" | "V5";
4634
4631
  }
4635
- /** @name PalletXcmVersionMigrationStage (453) */
4632
+ /** @name PalletXcmVersionMigrationStage (458) */
4636
4633
  interface PalletXcmVersionMigrationStage extends Enum {
4637
4634
  readonly isMigrateSupportedVersion: boolean;
4638
4635
  readonly isMigrateVersionNotifiers: boolean;
@@ -4641,14 +4638,14 @@ declare module "@polkadot/types/lookup" {
4641
4638
  readonly isMigrateAndNotifyOldTargets: boolean;
4642
4639
  readonly type: "MigrateSupportedVersion" | "MigrateVersionNotifiers" | "NotifyCurrentTargets" | "MigrateAndNotifyOldTargets";
4643
4640
  }
4644
- /** @name PalletXcmRemoteLockedFungibleRecord (455) */
4641
+ /** @name PalletXcmRemoteLockedFungibleRecord (460) */
4645
4642
  interface PalletXcmRemoteLockedFungibleRecord extends Struct {
4646
4643
  readonly amount: u128;
4647
4644
  readonly owner: XcmVersionedLocation;
4648
4645
  readonly locker: XcmVersionedLocation;
4649
4646
  readonly consumers: Vec<ITuple<[Null, u128]>>;
4650
4647
  }
4651
- /** @name PalletXcmError (462) */
4648
+ /** @name PalletXcmError (467) */
4652
4649
  interface PalletXcmError extends Enum {
4653
4650
  readonly isUnreachable: boolean;
4654
4651
  readonly isSendFailure: boolean;
@@ -4676,7 +4673,7 @@ declare module "@polkadot/types/lookup" {
4676
4673
  readonly isLocalExecutionIncomplete: boolean;
4677
4674
  readonly type: "Unreachable" | "SendFailure" | "Filtered" | "UnweighableMessage" | "DestinationNotInvertible" | "Empty" | "CannotReanchor" | "TooManyAssets" | "InvalidOrigin" | "BadVersion" | "BadLocation" | "NoSubscription" | "AlreadySubscribed" | "CannotCheckOutTeleport" | "LowBalance" | "TooManyLocks" | "AccountNotSovereign" | "FeesNotMet" | "LockNotFound" | "InUse" | "InvalidAssetUnknownReserve" | "InvalidAssetUnsupportedReserve" | "TooManyReserves" | "LocalExecutionIncomplete";
4678
4675
  }
4679
- /** @name PalletMessageQueueBookState (463) */
4676
+ /** @name PalletMessageQueueBookState (468) */
4680
4677
  interface PalletMessageQueueBookState extends Struct {
4681
4678
  readonly begin: u32;
4682
4679
  readonly end: u32;
@@ -4685,12 +4682,12 @@ declare module "@polkadot/types/lookup" {
4685
4682
  readonly messageCount: u64;
4686
4683
  readonly size_: u64;
4687
4684
  }
4688
- /** @name PalletMessageQueueNeighbours (465) */
4685
+ /** @name PalletMessageQueueNeighbours (470) */
4689
4686
  interface PalletMessageQueueNeighbours extends Struct {
4690
4687
  readonly prev: CumulusPrimitivesCoreAggregateMessageOrigin;
4691
4688
  readonly next: CumulusPrimitivesCoreAggregateMessageOrigin;
4692
4689
  }
4693
- /** @name PalletMessageQueuePage (467) */
4690
+ /** @name PalletMessageQueuePage (472) */
4694
4691
  interface PalletMessageQueuePage extends Struct {
4695
4692
  readonly remaining: u32;
4696
4693
  readonly remainingSize: u32;
@@ -4699,7 +4696,7 @@ declare module "@polkadot/types/lookup" {
4699
4696
  readonly last: u32;
4700
4697
  readonly heap: Bytes;
4701
4698
  }
4702
- /** @name PalletMessageQueueError (469) */
4699
+ /** @name PalletMessageQueueError (474) */
4703
4700
  interface PalletMessageQueueError extends Enum {
4704
4701
  readonly isNotReapable: boolean;
4705
4702
  readonly isNoPage: boolean;
@@ -4712,12 +4709,12 @@ declare module "@polkadot/types/lookup" {
4712
4709
  readonly isRecursiveDisallowed: boolean;
4713
4710
  readonly type: "NotReapable" | "NoPage" | "NoMessage" | "AlreadyProcessed" | "Queued" | "InsufficientWeight" | "TemporarilyUnprocessable" | "QueuePaused" | "RecursiveDisallowed";
4714
4711
  }
4715
- /** @name PalletStorageProvidersSignUpRequest (470) */
4712
+ /** @name PalletStorageProvidersSignUpRequest (475) */
4716
4713
  interface PalletStorageProvidersSignUpRequest extends Struct {
4717
4714
  readonly spSignUpRequest: PalletStorageProvidersSignUpRequestSpParams;
4718
4715
  readonly at: u32;
4719
4716
  }
4720
- /** @name PalletStorageProvidersSignUpRequestSpParams (471) */
4717
+ /** @name PalletStorageProvidersSignUpRequestSpParams (476) */
4721
4718
  interface PalletStorageProvidersSignUpRequestSpParams extends Enum {
4722
4719
  readonly isBackupStorageProvider: boolean;
4723
4720
  readonly asBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
@@ -4725,7 +4722,7 @@ declare module "@polkadot/types/lookup" {
4725
4722
  readonly asMainStorageProvider: PalletStorageProvidersMainStorageProviderSignUpRequest;
4726
4723
  readonly type: "BackupStorageProvider" | "MainStorageProvider";
4727
4724
  }
4728
- /** @name PalletStorageProvidersBackupStorageProvider (472) */
4725
+ /** @name PalletStorageProvidersBackupStorageProvider (477) */
4729
4726
  interface PalletStorageProvidersBackupStorageProvider extends Struct {
4730
4727
  readonly capacity: u64;
4731
4728
  readonly capacityUsed: u64;
@@ -4737,12 +4734,12 @@ declare module "@polkadot/types/lookup" {
4737
4734
  readonly reputationWeight: u32;
4738
4735
  readonly signUpBlock: u32;
4739
4736
  }
4740
- /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (473) */
4737
+ /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (478) */
4741
4738
  interface PalletStorageProvidersMainStorageProviderSignUpRequest extends Struct {
4742
4739
  readonly mspInfo: PalletStorageProvidersMainStorageProvider;
4743
4740
  readonly valueProp: PalletStorageProvidersValueProposition;
4744
4741
  }
4745
- /** @name PalletStorageProvidersMainStorageProvider (474) */
4742
+ /** @name PalletStorageProvidersMainStorageProvider (479) */
4746
4743
  interface PalletStorageProvidersMainStorageProvider extends Struct {
4747
4744
  readonly capacity: u64;
4748
4745
  readonly capacityUsed: u64;
@@ -4754,7 +4751,7 @@ declare module "@polkadot/types/lookup" {
4754
4751
  readonly paymentAccount: AccountId32;
4755
4752
  readonly signUpBlock: u32;
4756
4753
  }
4757
- /** @name PalletStorageProvidersBucket (475) */
4754
+ /** @name PalletStorageProvidersBucket (480) */
4758
4755
  interface PalletStorageProvidersBucket extends Struct {
4759
4756
  readonly root: H256;
4760
4757
  readonly userId: AccountId32;
@@ -4764,7 +4761,7 @@ declare module "@polkadot/types/lookup" {
4764
4761
  readonly size_: u64;
4765
4762
  readonly valuePropId: H256;
4766
4763
  }
4767
- /** @name PalletStorageProvidersError (479) */
4764
+ /** @name PalletStorageProvidersError (484) */
4768
4765
  interface PalletStorageProvidersError extends Enum {
4769
4766
  readonly isAlreadyRegistered: boolean;
4770
4767
  readonly isSignUpNotRequested: boolean;
@@ -4820,7 +4817,7 @@ declare module "@polkadot/types/lookup" {
4820
4817
  readonly isPaymentStreamNotFound: boolean;
4821
4818
  readonly type: "AlreadyRegistered" | "SignUpNotRequested" | "SignUpRequestPending" | "NoMultiAddress" | "InvalidMultiAddress" | "StorageTooLow" | "NotEnoughBalance" | "CannotHoldDeposit" | "StorageStillInUse" | "SignOffPeriodNotPassed" | "RandomnessNotValidYet" | "SignUpRequestExpired" | "NewCapacityLessThanUsedStorage" | "NewCapacityEqualsCurrentCapacity" | "NewCapacityCantBeZero" | "NotEnoughTimePassed" | "NewUsedCapacityExceedsStorageCapacity" | "DepositTooLow" | "NotRegistered" | "NoUserId" | "NoBucketId" | "SpRegisteredButDataNotFound" | "BucketNotFound" | "BucketAlreadyExists" | "BucketNotEmpty" | "BucketsMovedAmountMismatch" | "AppendBucketToMspFailed" | "ProviderNotSlashable" | "TopUpNotRequired" | "BucketMustHaveMspForOperation" | "MultiAddressesMaxAmountReached" | "MultiAddressNotFound" | "MultiAddressAlreadyExists" | "LastMultiAddressCantBeRemoved" | "ValuePropositionNotFound" | "ValuePropositionAlreadyExists" | "ValuePropositionNotAvailable" | "CantDeactivateLastValueProp" | "ValuePropositionsDeletedAmountMismatch" | "FixedRatePaymentStreamNotFound" | "MspAlreadyAssignedToBucket" | "BucketSizeExceedsLimit" | "BucketHasNoValueProposition" | "MaxBlockNumberReached" | "OperationNotAllowedForInsolventProvider" | "DeleteProviderConditionsNotMet" | "CannotStopCycleWithNonDefaultRoot" | "BspOnlyOperation" | "MspOnlyOperation" | "InvalidEncodedFileMetadata" | "InvalidEncodedAccountId" | "PaymentStreamNotFound";
4822
4819
  }
4823
- /** @name PalletFileSystemStorageRequestMetadata (480) */
4820
+ /** @name PalletFileSystemStorageRequestMetadata (485) */
4824
4821
  interface PalletFileSystemStorageRequestMetadata extends Struct {
4825
4822
  readonly requestedAt: u32;
4826
4823
  readonly expiresAt: u32;
@@ -4836,11 +4833,11 @@ declare module "@polkadot/types/lookup" {
4836
4833
  readonly bspsVolunteered: u32;
4837
4834
  readonly depositPaid: u128;
4838
4835
  }
4839
- /** @name PalletFileSystemStorageRequestBspsMetadata (483) */
4836
+ /** @name PalletFileSystemStorageRequestBspsMetadata (488) */
4840
4837
  interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
4841
4838
  readonly confirmed: bool;
4842
4839
  }
4843
- /** @name PalletFileSystemPendingFileDeletionRequest (486) */
4840
+ /** @name PalletFileSystemPendingFileDeletionRequest (490) */
4844
4841
  interface PalletFileSystemPendingFileDeletionRequest extends Struct {
4845
4842
  readonly user: AccountId32;
4846
4843
  readonly fileKey: H256;
@@ -4849,19 +4846,19 @@ declare module "@polkadot/types/lookup" {
4849
4846
  readonly depositPaidForCreation: u128;
4850
4847
  readonly queuePriorityChallenge: bool;
4851
4848
  }
4852
- /** @name PalletFileSystemPendingStopStoringRequest (488) */
4849
+ /** @name PalletFileSystemPendingStopStoringRequest (492) */
4853
4850
  interface PalletFileSystemPendingStopStoringRequest extends Struct {
4854
4851
  readonly tickWhenRequested: u32;
4855
4852
  readonly fileOwner: AccountId32;
4856
4853
  readonly fileSize: u64;
4857
4854
  }
4858
- /** @name PalletFileSystemMoveBucketRequestMetadata (489) */
4855
+ /** @name PalletFileSystemMoveBucketRequestMetadata (493) */
4859
4856
  interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
4860
4857
  readonly requester: AccountId32;
4861
4858
  readonly newMspId: H256;
4862
4859
  readonly newValuePropId: H256;
4863
4860
  }
4864
- /** @name PalletFileSystemIncompleteStorageRequestMetadata (490) */
4861
+ /** @name PalletFileSystemIncompleteStorageRequestMetadata (494) */
4865
4862
  interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
4866
4863
  readonly owner: AccountId32;
4867
4864
  readonly bucketId: H256;
@@ -4871,7 +4868,7 @@ declare module "@polkadot/types/lookup" {
4871
4868
  readonly pendingBspRemovals: Vec<H256>;
4872
4869
  readonly pendingBucketRemoval: bool;
4873
4870
  }
4874
- /** @name PalletFileSystemError (492) */
4871
+ /** @name PalletFileSystemError (496) */
4875
4872
  interface PalletFileSystemError extends Enum {
4876
4873
  readonly isStorageRequestAlreadyRegistered: boolean;
4877
4874
  readonly isStorageRequestNotFound: boolean;
@@ -4915,6 +4912,12 @@ declare module "@polkadot/types/lookup" {
4915
4912
  readonly isThresholdBelowAsymptote: boolean;
4916
4913
  readonly isNotFileOwner: boolean;
4917
4914
  readonly isFileKeyAlreadyPendingDeletion: boolean;
4915
+ readonly isBatchFileDeletionMustContainSingleBucket: boolean;
4916
+ readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
4917
+ readonly isNoFileKeysToDelete: boolean;
4918
+ readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
4919
+ readonly isFailedToPushUserToBspDeletionVector: boolean;
4920
+ readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
4918
4921
  readonly isMaxUserPendingDeletionRequestsReached: boolean;
4919
4922
  readonly isMspNotStoringBucket: boolean;
4920
4923
  readonly isFileKeyNotPendingDeletion: boolean;
@@ -4961,14 +4964,14 @@ declare module "@polkadot/types/lookup" {
4961
4964
  readonly isInvalidSignedOperation: boolean;
4962
4965
  readonly isFileKeyMismatch: boolean;
4963
4966
  readonly isIncompleteStorageRequestNotFound: boolean;
4964
- readonly type: "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestNotRevoked" | "StorageRequestExists" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "MaxReplicationTargetSmallerThanDefault" | "NotABsp" | "NotAMsp" | "NotASp" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "StorageRequestBspsRequiredFulfilled" | "BspAlreadyVolunteered" | "InsufficientAvailableCapacity" | "UnexpectedNumberOfRemovedVolunteeredBsps" | "BspNotEligibleToVolunteer" | "StorageRequestExpiredNoSlotAvailable" | "StorageRequestNotAuthorized" | "MaxTickNumberReached" | "FailedToEncodeBsp" | "FailedToEncodeFingerprint" | "FailedToDecodeThreshold" | "AboveThreshold" | "ThresholdArithmeticError" | "FailedTypeConversion" | "DividedByZero" | "ImpossibleFailedToGetValue" | "BucketIsNotPrivate" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "ProviderRootNotFound" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "InvalidFileKeyMetadata" | "ThresholdBelowAsymptote" | "NotFileOwner" | "FileKeyAlreadyPendingDeletion" | "MaxUserPendingDeletionRequestsReached" | "MspNotStoringBucket" | "FileKeyNotPendingDeletion" | "FileSizeCannotBeZero" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "MaximumThresholdCannotBeZero" | "TickRangeToMaximumThresholdCannotBeZero" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "MoveBucketRequestNotFound" | "BucketIsBeingMoved" | "BspAlreadyDataServer" | "BspDataServersExceeded" | "FileMetadataProcessingQueueFull" | "TooManyBatchResponses" | "TooManyStorageRequestResponses" | "InvalidBucketIdFileKeyPair" | "InconsistentStateKeyAlreadyExists" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "CannotHoldDeposit" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "NoFileKeysToConfirm" | "RootNotUpdated" | "NoPrivacyChange" | "OperationNotAllowedForInsolventProvider" | "OperationNotAllowedWhileBucketIsNotStoredByMsp" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "InvalidSignature" | "ForestProofVerificationFailed" | "ProviderNotStoringFile" | "InvalidProviderID" | "InvalidSignedOperation" | "FileKeyMismatch" | "IncompleteStorageRequestNotFound";
4967
+ readonly type: "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestNotRevoked" | "StorageRequestExists" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "MaxReplicationTargetSmallerThanDefault" | "NotABsp" | "NotAMsp" | "NotASp" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "StorageRequestBspsRequiredFulfilled" | "BspAlreadyVolunteered" | "InsufficientAvailableCapacity" | "UnexpectedNumberOfRemovedVolunteeredBsps" | "BspNotEligibleToVolunteer" | "StorageRequestExpiredNoSlotAvailable" | "StorageRequestNotAuthorized" | "MaxTickNumberReached" | "FailedToEncodeBsp" | "FailedToEncodeFingerprint" | "FailedToDecodeThreshold" | "AboveThreshold" | "ThresholdArithmeticError" | "FailedTypeConversion" | "DividedByZero" | "ImpossibleFailedToGetValue" | "BucketIsNotPrivate" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "ProviderRootNotFound" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "InvalidFileKeyMetadata" | "ThresholdBelowAsymptote" | "NotFileOwner" | "FileKeyAlreadyPendingDeletion" | "BatchFileDeletionMustContainSingleBucket" | "DuplicateFileKeyInBatchFileDeletion" | "NoFileKeysToDelete" | "FailedToPushFileKeyToBucketDeletionVector" | "FailedToPushUserToBspDeletionVector" | "FailedToPushFileKeyToBspDeletionVector" | "MaxUserPendingDeletionRequestsReached" | "MspNotStoringBucket" | "FileKeyNotPendingDeletion" | "FileSizeCannotBeZero" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "MaximumThresholdCannotBeZero" | "TickRangeToMaximumThresholdCannotBeZero" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "MoveBucketRequestNotFound" | "BucketIsBeingMoved" | "BspAlreadyDataServer" | "BspDataServersExceeded" | "FileMetadataProcessingQueueFull" | "TooManyBatchResponses" | "TooManyStorageRequestResponses" | "InvalidBucketIdFileKeyPair" | "InconsistentStateKeyAlreadyExists" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "CannotHoldDeposit" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "NoFileKeysToConfirm" | "RootNotUpdated" | "NoPrivacyChange" | "OperationNotAllowedForInsolventProvider" | "OperationNotAllowedWhileBucketIsNotStoredByMsp" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "InvalidSignature" | "ForestProofVerificationFailed" | "ProviderNotStoringFile" | "InvalidProviderID" | "InvalidSignedOperation" | "FileKeyMismatch" | "IncompleteStorageRequestNotFound";
4965
4968
  }
4966
- /** @name PalletProofsDealerProofSubmissionRecord (494) */
4969
+ /** @name PalletProofsDealerProofSubmissionRecord (498) */
4967
4970
  interface PalletProofsDealerProofSubmissionRecord extends Struct {
4968
4971
  readonly lastTickProven: u32;
4969
4972
  readonly nextTickToSubmitProofFor: u32;
4970
4973
  }
4971
- /** @name PalletProofsDealerError (501) */
4974
+ /** @name PalletProofsDealerError (505) */
4972
4975
  interface PalletProofsDealerError extends Enum {
4973
4976
  readonly isNotProvider: boolean;
4974
4977
  readonly isChallengesQueueOverflow: boolean;
@@ -4996,26 +4999,26 @@ declare module "@polkadot/types/lookup" {
4996
4999
  readonly isTooManyValidProofSubmitters: boolean;
4997
5000
  readonly type: "NotProvider" | "ChallengesQueueOverflow" | "PriorityChallengesQueueOverflow" | "FeeChargeFailed" | "EmptyKeyProofs" | "ProviderRootNotFound" | "ZeroRoot" | "NoRecordOfLastSubmittedProof" | "ProviderStakeNotFound" | "ZeroStake" | "StakeCouldNotBeConverted" | "ChallengesTickNotReached" | "ChallengesTickTooOld" | "ChallengesTickTooLate" | "SeedNotFound" | "CheckpointChallengesNotFound" | "ForestProofVerificationFailed" | "IncorrectNumberOfKeyProofs" | "KeyProofNotFound" | "KeyProofVerificationFailed" | "FailedToApplyDelta" | "UnexpectedNumberOfRemoveMutations" | "FailedToUpdateProviderAfterKeyRemoval" | "TooManyValidProofSubmitters";
4998
5001
  }
4999
- /** @name PalletPaymentStreamsFixedRatePaymentStream (504) */
5002
+ /** @name PalletPaymentStreamsFixedRatePaymentStream (508) */
5000
5003
  interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
5001
5004
  readonly rate: u128;
5002
5005
  readonly lastChargedTick: u32;
5003
5006
  readonly userDeposit: u128;
5004
5007
  readonly outOfFundsTick: Option<u32>;
5005
5008
  }
5006
- /** @name PalletPaymentStreamsDynamicRatePaymentStream (505) */
5009
+ /** @name PalletPaymentStreamsDynamicRatePaymentStream (509) */
5007
5010
  interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
5008
5011
  readonly amountProvided: u64;
5009
5012
  readonly priceIndexWhenLastCharged: u128;
5010
5013
  readonly userDeposit: u128;
5011
5014
  readonly outOfFundsTick: Option<u32>;
5012
5015
  }
5013
- /** @name PalletPaymentStreamsProviderLastChargeableInfo (506) */
5016
+ /** @name PalletPaymentStreamsProviderLastChargeableInfo (510) */
5014
5017
  interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
5015
5018
  readonly lastChargeableTick: u32;
5016
5019
  readonly priceIndex: u128;
5017
5020
  }
5018
- /** @name PalletPaymentStreamsError (507) */
5021
+ /** @name PalletPaymentStreamsError (511) */
5019
5022
  interface PalletPaymentStreamsError extends Enum {
5020
5023
  readonly isPaymentStreamAlreadyExists: boolean;
5021
5024
  readonly isPaymentStreamNotFound: boolean;
@@ -5037,7 +5040,7 @@ declare module "@polkadot/types/lookup" {
5037
5040
  readonly isProviderInsolvent: boolean;
5038
5041
  readonly type: "PaymentStreamAlreadyExists" | "PaymentStreamNotFound" | "NotAProvider" | "ProviderInconsistencyError" | "CannotHoldDeposit" | "UpdateRateToSameRate" | "UpdateAmountToSameAmount" | "RateCantBeZero" | "AmountProvidedCantBeZero" | "LastChargedGreaterThanLastChargeable" | "InvalidLastChargeableBlockNumber" | "InvalidLastChargeablePriceIndex" | "ChargeOverflow" | "UserWithoutFunds" | "UserNotFlaggedAsWithoutFunds" | "CooldownPeriodNotPassed" | "UserHasRemainingDebt" | "ProviderInsolvent";
5039
5042
  }
5040
- /** @name PalletBucketNftsError (508) */
5043
+ /** @name PalletBucketNftsError (512) */
5041
5044
  interface PalletBucketNftsError extends Enum {
5042
5045
  readonly isBucketIsNotPrivate: boolean;
5043
5046
  readonly isNotBucketOwner: boolean;
@@ -5045,7 +5048,7 @@ declare module "@polkadot/types/lookup" {
5045
5048
  readonly isConvertBytesToBoundedVec: boolean;
5046
5049
  readonly type: "BucketIsNotPrivate" | "NotBucketOwner" | "NoCorrespondingCollection" | "ConvertBytesToBoundedVec";
5047
5050
  }
5048
- /** @name PalletNftsCollectionDetails (509) */
5051
+ /** @name PalletNftsCollectionDetails (513) */
5049
5052
  interface PalletNftsCollectionDetails extends Struct {
5050
5053
  readonly owner: AccountId32;
5051
5054
  readonly ownerDeposit: u128;
@@ -5054,52 +5057,52 @@ declare module "@polkadot/types/lookup" {
5054
5057
  readonly itemConfigs: u32;
5055
5058
  readonly attributes: u32;
5056
5059
  }
5057
- /** @name PalletNftsCollectionRole (514) */
5060
+ /** @name PalletNftsCollectionRole (518) */
5058
5061
  interface PalletNftsCollectionRole extends Enum {
5059
5062
  readonly isIssuer: boolean;
5060
5063
  readonly isFreezer: boolean;
5061
5064
  readonly isAdmin: boolean;
5062
5065
  readonly type: "Issuer" | "Freezer" | "Admin";
5063
5066
  }
5064
- /** @name PalletNftsItemDetails (515) */
5067
+ /** @name PalletNftsItemDetails (519) */
5065
5068
  interface PalletNftsItemDetails extends Struct {
5066
5069
  readonly owner: AccountId32;
5067
5070
  readonly approvals: BTreeMap<AccountId32, Option<u32>>;
5068
5071
  readonly deposit: PalletNftsItemDeposit;
5069
5072
  }
5070
- /** @name PalletNftsItemDeposit (516) */
5073
+ /** @name PalletNftsItemDeposit (520) */
5071
5074
  interface PalletNftsItemDeposit extends Struct {
5072
5075
  readonly account: AccountId32;
5073
5076
  readonly amount: u128;
5074
5077
  }
5075
- /** @name PalletNftsCollectionMetadata (521) */
5078
+ /** @name PalletNftsCollectionMetadata (525) */
5076
5079
  interface PalletNftsCollectionMetadata extends Struct {
5077
5080
  readonly deposit: u128;
5078
5081
  readonly data: Bytes;
5079
5082
  }
5080
- /** @name PalletNftsItemMetadata (522) */
5083
+ /** @name PalletNftsItemMetadata (526) */
5081
5084
  interface PalletNftsItemMetadata extends Struct {
5082
5085
  readonly deposit: PalletNftsItemMetadataDeposit;
5083
5086
  readonly data: Bytes;
5084
5087
  }
5085
- /** @name PalletNftsItemMetadataDeposit (523) */
5088
+ /** @name PalletNftsItemMetadataDeposit (527) */
5086
5089
  interface PalletNftsItemMetadataDeposit extends Struct {
5087
5090
  readonly account: Option<AccountId32>;
5088
5091
  readonly amount: u128;
5089
5092
  }
5090
- /** @name PalletNftsAttributeDeposit (526) */
5093
+ /** @name PalletNftsAttributeDeposit (530) */
5091
5094
  interface PalletNftsAttributeDeposit extends Struct {
5092
5095
  readonly account: Option<AccountId32>;
5093
5096
  readonly amount: u128;
5094
5097
  }
5095
- /** @name PalletNftsPendingSwap (530) */
5098
+ /** @name PalletNftsPendingSwap (534) */
5096
5099
  interface PalletNftsPendingSwap extends Struct {
5097
5100
  readonly desiredCollection: u32;
5098
5101
  readonly desiredItem: Option<u32>;
5099
5102
  readonly price: Option<PalletNftsPriceWithDirection>;
5100
5103
  readonly deadline: u32;
5101
5104
  }
5102
- /** @name PalletNftsPalletFeature (532) */
5105
+ /** @name PalletNftsPalletFeature (536) */
5103
5106
  interface PalletNftsPalletFeature extends Enum {
5104
5107
  readonly isTrading: boolean;
5105
5108
  readonly isAttributes: boolean;
@@ -5107,7 +5110,7 @@ declare module "@polkadot/types/lookup" {
5107
5110
  readonly isSwaps: boolean;
5108
5111
  readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
5109
5112
  }
5110
- /** @name PalletNftsError (533) */
5113
+ /** @name PalletNftsError (537) */
5111
5114
  interface PalletNftsError extends Enum {
5112
5115
  readonly isNoPermission: boolean;
5113
5116
  readonly isUnknownCollection: boolean;
@@ -5156,34 +5159,34 @@ declare module "@polkadot/types/lookup" {
5156
5159
  readonly isWitnessRequired: boolean;
5157
5160
  readonly type: "NoPermission" | "UnknownCollection" | "AlreadyExists" | "ApprovalExpired" | "WrongOwner" | "BadWitness" | "CollectionIdInUse" | "ItemsNonTransferable" | "NotDelegate" | "WrongDelegate" | "Unapproved" | "Unaccepted" | "ItemLocked" | "LockedItemAttributes" | "LockedCollectionAttributes" | "LockedItemMetadata" | "LockedCollectionMetadata" | "MaxSupplyReached" | "MaxSupplyLocked" | "MaxSupplyTooSmall" | "UnknownItem" | "UnknownSwap" | "MetadataNotFound" | "AttributeNotFound" | "NotForSale" | "BidTooLow" | "ReachedApprovalLimit" | "DeadlineExpired" | "WrongDuration" | "MethodDisabled" | "WrongSetting" | "InconsistentItemConfig" | "NoConfig" | "RolesNotCleared" | "MintNotStarted" | "MintEnded" | "AlreadyClaimed" | "IncorrectData" | "WrongOrigin" | "WrongSignature" | "IncorrectMetadata" | "MaxAttributesLimitReached" | "WrongNamespace" | "CollectionNotEmpty" | "WitnessRequired";
5158
5161
  }
5159
- /** @name FrameSystemExtensionsCheckNonZeroSender (536) */
5162
+ /** @name FrameSystemExtensionsCheckNonZeroSender (540) */
5160
5163
  type FrameSystemExtensionsCheckNonZeroSender = Null;
5161
- /** @name FrameSystemExtensionsCheckSpecVersion (537) */
5164
+ /** @name FrameSystemExtensionsCheckSpecVersion (541) */
5162
5165
  type FrameSystemExtensionsCheckSpecVersion = Null;
5163
- /** @name FrameSystemExtensionsCheckTxVersion (538) */
5166
+ /** @name FrameSystemExtensionsCheckTxVersion (542) */
5164
5167
  type FrameSystemExtensionsCheckTxVersion = Null;
5165
- /** @name FrameSystemExtensionsCheckGenesis (539) */
5168
+ /** @name FrameSystemExtensionsCheckGenesis (543) */
5166
5169
  type FrameSystemExtensionsCheckGenesis = Null;
5167
- /** @name FrameSystemExtensionsCheckNonce (542) */
5170
+ /** @name FrameSystemExtensionsCheckNonce (546) */
5168
5171
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
5169
5172
  }
5170
- /** @name FrameSystemExtensionsCheckWeight (543) */
5173
+ /** @name FrameSystemExtensionsCheckWeight (547) */
5171
5174
  type FrameSystemExtensionsCheckWeight = Null;
5172
- /** @name PalletTransactionPaymentChargeTransactionPayment (544) */
5175
+ /** @name PalletTransactionPaymentChargeTransactionPayment (548) */
5173
5176
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
5174
5177
  }
5175
- /** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (545) */
5178
+ /** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (549) */
5176
5179
  type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = Null;
5177
- /** @name FrameMetadataHashExtensionCheckMetadataHash (546) */
5180
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (550) */
5178
5181
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
5179
5182
  readonly mode: FrameMetadataHashExtensionMode;
5180
5183
  }
5181
- /** @name FrameMetadataHashExtensionMode (547) */
5184
+ /** @name FrameMetadataHashExtensionMode (551) */
5182
5185
  interface FrameMetadataHashExtensionMode extends Enum {
5183
5186
  readonly isDisabled: boolean;
5184
5187
  readonly isEnabled: boolean;
5185
5188
  readonly type: "Disabled" | "Enabled";
5186
5189
  }
5187
- /** @name ShParachainRuntimeRuntime (548) */
5190
+ /** @name ShParachainRuntimeRuntime (552) */
5188
5191
  type ShParachainRuntimeRuntime = Null;
5189
5192
  }