@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
@@ -2221,30 +2221,23 @@ declare module "@polkadot/types/lookup" {
2221
2221
  readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
2222
2222
  readonly signature: SpRuntimeMultiSignature;
2223
2223
  } & Struct;
2224
- readonly isBucketFileDeletionCompleted: boolean;
2225
- readonly asBucketFileDeletionCompleted: {
2224
+ readonly isBucketFileDeletionsCompleted: boolean;
2225
+ readonly asBucketFileDeletionsCompleted: {
2226
2226
  readonly user: AccountId32;
2227
- readonly fileKey: H256;
2228
- readonly fileSize: u64;
2227
+ readonly fileKeys: Vec<H256>;
2229
2228
  readonly bucketId: H256;
2230
2229
  readonly mspId: Option<H256>;
2231
2230
  readonly oldRoot: H256;
2232
2231
  readonly newRoot: H256;
2233
2232
  } & Struct;
2234
- readonly isBspFileDeletionCompleted: boolean;
2235
- readonly asBspFileDeletionCompleted: {
2236
- readonly user: AccountId32;
2237
- readonly fileKey: H256;
2238
- readonly fileSize: u64;
2233
+ readonly isBspFileDeletionsCompleted: boolean;
2234
+ readonly asBspFileDeletionsCompleted: {
2235
+ readonly users: Vec<AccountId32>;
2236
+ readonly fileKeys: Vec<H256>;
2239
2237
  readonly bspId: H256;
2240
2238
  readonly oldRoot: H256;
2241
2239
  readonly newRoot: H256;
2242
2240
  } & Struct;
2243
- readonly isFileDeletedFromIncompleteStorageRequest: boolean;
2244
- readonly asFileDeletedFromIncompleteStorageRequest: {
2245
- readonly fileKey: H256;
2246
- readonly bspId: Option<H256>;
2247
- } & Struct;
2248
2241
  readonly isIncompleteStorageRequest: boolean;
2249
2242
  readonly asIncompleteStorageRequest: {
2250
2243
  readonly fileKey: H256;
@@ -2282,9 +2275,8 @@ declare module "@polkadot/types/lookup" {
2282
2275
  | "FailedToReleaseStorageRequestCreationDeposit"
2283
2276
  | "FailedToTransferDepositFundsToBsp"
2284
2277
  | "FileDeletionRequested"
2285
- | "BucketFileDeletionCompleted"
2286
- | "BspFileDeletionCompleted"
2287
- | "FileDeletedFromIncompleteStorageRequest"
2278
+ | "BucketFileDeletionsCompleted"
2279
+ | "BspFileDeletionsCompleted"
2288
2280
  | "IncompleteStorageRequest";
2289
2281
  }
2290
2282
 
@@ -2347,7 +2339,7 @@ declare module "@polkadot/types/lookup" {
2347
2339
  readonly type: "Ed25519" | "Sr25519" | "Ecdsa";
2348
2340
  }
2349
2341
 
2350
- /** @name PalletProofsDealerEvent (167) */
2342
+ /** @name PalletProofsDealerEvent (169) */
2351
2343
  interface PalletProofsDealerEvent extends Enum {
2352
2344
  readonly isNewChallenge: boolean;
2353
2345
  readonly asNewChallenge: {
@@ -2424,36 +2416,36 @@ declare module "@polkadot/types/lookup" {
2424
2416
  | "ChallengesTickerSet";
2425
2417
  }
2426
2418
 
2427
- /** @name PalletProofsDealerProof (168) */
2419
+ /** @name PalletProofsDealerProof (170) */
2428
2420
  interface PalletProofsDealerProof extends Struct {
2429
2421
  readonly forestProof: SpTrieStorageProofCompactProof;
2430
2422
  readonly keyProofs: BTreeMap<H256, PalletProofsDealerKeyProof>;
2431
2423
  }
2432
2424
 
2433
- /** @name SpTrieStorageProofCompactProof (169) */
2425
+ /** @name SpTrieStorageProofCompactProof (171) */
2434
2426
  interface SpTrieStorageProofCompactProof extends Struct {
2435
2427
  readonly encodedNodes: Vec<Bytes>;
2436
2428
  }
2437
2429
 
2438
- /** @name PalletProofsDealerKeyProof (172) */
2430
+ /** @name PalletProofsDealerKeyProof (174) */
2439
2431
  interface PalletProofsDealerKeyProof extends Struct {
2440
2432
  readonly proof: ShpFileKeyVerifierFileKeyProof;
2441
2433
  readonly challengeCount: u32;
2442
2434
  }
2443
2435
 
2444
- /** @name ShpFileKeyVerifierFileKeyProof (173) */
2436
+ /** @name ShpFileKeyVerifierFileKeyProof (175) */
2445
2437
  interface ShpFileKeyVerifierFileKeyProof extends Struct {
2446
2438
  readonly fileMetadata: ShpFileMetadataFileMetadata;
2447
2439
  readonly proof: SpTrieStorageProofCompactProof;
2448
2440
  }
2449
2441
 
2450
- /** @name PalletProofsDealerCustomChallenge (177) */
2442
+ /** @name PalletProofsDealerCustomChallenge (179) */
2451
2443
  interface PalletProofsDealerCustomChallenge extends Struct {
2452
2444
  readonly key: H256;
2453
2445
  readonly shouldRemoveKey: bool;
2454
2446
  }
2455
2447
 
2456
- /** @name ShpTraitsTrieMutation (181) */
2448
+ /** @name ShpTraitsTrieMutation (183) */
2457
2449
  interface ShpTraitsTrieMutation extends Enum {
2458
2450
  readonly isAdd: boolean;
2459
2451
  readonly asAdd: ShpTraitsTrieAddMutation;
@@ -2462,17 +2454,17 @@ declare module "@polkadot/types/lookup" {
2462
2454
  readonly type: "Add" | "Remove";
2463
2455
  }
2464
2456
 
2465
- /** @name ShpTraitsTrieAddMutation (182) */
2457
+ /** @name ShpTraitsTrieAddMutation (184) */
2466
2458
  interface ShpTraitsTrieAddMutation extends Struct {
2467
2459
  readonly value: Bytes;
2468
2460
  }
2469
2461
 
2470
- /** @name ShpTraitsTrieRemoveMutation (183) */
2462
+ /** @name ShpTraitsTrieRemoveMutation (185) */
2471
2463
  interface ShpTraitsTrieRemoveMutation extends Struct {
2472
2464
  readonly maybeValue: Option<Bytes>;
2473
2465
  }
2474
2466
 
2475
- /** @name PalletRandomnessEvent (185) */
2467
+ /** @name PalletRandomnessEvent (187) */
2476
2468
  interface PalletRandomnessEvent extends Enum {
2477
2469
  readonly isNewOneEpochAgoRandomnessAvailable: boolean;
2478
2470
  readonly asNewOneEpochAgoRandomnessAvailable: {
@@ -2483,7 +2475,7 @@ declare module "@polkadot/types/lookup" {
2483
2475
  readonly type: "NewOneEpochAgoRandomnessAvailable";
2484
2476
  }
2485
2477
 
2486
- /** @name PalletPaymentStreamsEvent (186) */
2478
+ /** @name PalletPaymentStreamsEvent (188) */
2487
2479
  interface PalletPaymentStreamsEvent extends Enum {
2488
2480
  readonly isFixedRatePaymentStreamCreated: boolean;
2489
2481
  readonly asFixedRatePaymentStreamCreated: {
@@ -2577,7 +2569,7 @@ declare module "@polkadot/types/lookup" {
2577
2569
  | "InconsistentTickProcessing";
2578
2570
  }
2579
2571
 
2580
- /** @name PalletBucketNftsEvent (188) */
2572
+ /** @name PalletBucketNftsEvent (190) */
2581
2573
  interface PalletBucketNftsEvent extends Enum {
2582
2574
  readonly isAccessShared: boolean;
2583
2575
  readonly asAccessShared: {
@@ -2599,7 +2591,7 @@ declare module "@polkadot/types/lookup" {
2599
2591
  readonly type: "AccessShared" | "ItemReadAccessUpdated" | "ItemBurned";
2600
2592
  }
2601
2593
 
2602
- /** @name PalletNftsEvent (189) */
2594
+ /** @name PalletNftsEvent (191) */
2603
2595
  interface PalletNftsEvent extends Enum {
2604
2596
  readonly isCreated: boolean;
2605
2597
  readonly asCreated: {
@@ -2874,7 +2866,7 @@ declare module "@polkadot/types/lookup" {
2874
2866
  | "PalletAttributeSet";
2875
2867
  }
2876
2868
 
2877
- /** @name PalletNftsAttributeNamespace (193) */
2869
+ /** @name PalletNftsAttributeNamespace (195) */
2878
2870
  interface PalletNftsAttributeNamespace extends Enum {
2879
2871
  readonly isPallet: boolean;
2880
2872
  readonly isCollectionOwner: boolean;
@@ -2884,20 +2876,20 @@ declare module "@polkadot/types/lookup" {
2884
2876
  readonly type: "Pallet" | "CollectionOwner" | "ItemOwner" | "Account";
2885
2877
  }
2886
2878
 
2887
- /** @name PalletNftsPriceWithDirection (195) */
2879
+ /** @name PalletNftsPriceWithDirection (197) */
2888
2880
  interface PalletNftsPriceWithDirection extends Struct {
2889
2881
  readonly amount: u128;
2890
2882
  readonly direction: PalletNftsPriceDirection;
2891
2883
  }
2892
2884
 
2893
- /** @name PalletNftsPriceDirection (196) */
2885
+ /** @name PalletNftsPriceDirection (198) */
2894
2886
  interface PalletNftsPriceDirection extends Enum {
2895
2887
  readonly isSend: boolean;
2896
2888
  readonly isReceive: boolean;
2897
2889
  readonly type: "Send" | "Receive";
2898
2890
  }
2899
2891
 
2900
- /** @name PalletNftsPalletAttributes (197) */
2892
+ /** @name PalletNftsPalletAttributes (199) */
2901
2893
  interface PalletNftsPalletAttributes extends Enum {
2902
2894
  readonly isUsedToClaim: boolean;
2903
2895
  readonly asUsedToClaim: u32;
@@ -2905,7 +2897,7 @@ declare module "@polkadot/types/lookup" {
2905
2897
  readonly type: "UsedToClaim" | "TransferDisabled";
2906
2898
  }
2907
2899
 
2908
- /** @name PalletParametersEvent (198) */
2900
+ /** @name PalletParametersEvent (200) */
2909
2901
  interface PalletParametersEvent extends Enum {
2910
2902
  readonly isUpdated: boolean;
2911
2903
  readonly asUpdated: {
@@ -2916,14 +2908,14 @@ declare module "@polkadot/types/lookup" {
2916
2908
  readonly type: "Updated";
2917
2909
  }
2918
2910
 
2919
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey (199) */
2911
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey (201) */
2920
2912
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey extends Enum {
2921
2913
  readonly isRuntimeConfig: boolean;
2922
2914
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey;
2923
2915
  readonly type: "RuntimeConfig";
2924
2916
  }
2925
2917
 
2926
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey (200) */
2918
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey (202) */
2927
2919
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey
2928
2920
  extends Enum {
2929
2921
  readonly isSlashAmountPerMaxFileSize: boolean;
@@ -2989,117 +2981,117 @@ declare module "@polkadot/types/lookup" {
2989
2981
  | "UpfrontTicksToPay";
2990
2982
  }
2991
2983
 
2992
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize (201) */
2984
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize (203) */
2993
2985
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize =
2994
2986
  Null;
2995
2987
 
2996
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod (202) */
2988
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod (204) */
2997
2989
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod =
2998
2990
  Null;
2999
2991
 
3000
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod (203) */
2992
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod (205) */
3001
2993
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod =
3002
2994
  Null;
3003
2995
 
3004
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod (204) */
2996
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod (206) */
3005
2997
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod = Null;
3006
2998
 
3007
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage (205) */
2999
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage (207) */
3008
3000
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage =
3009
3001
  Null;
3010
3002
 
3011
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage (206) */
3003
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage (208) */
3012
3004
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage =
3013
3005
  Null;
3014
3006
 
3015
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice (207) */
3007
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice (209) */
3016
3008
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice = Null;
3017
3009
 
3018
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice (208) */
3010
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice (210) */
3019
3011
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice = Null;
3020
3012
 
3021
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice (209) */
3013
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice (211) */
3022
3014
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice = Null;
3023
3015
 
3024
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor (210) */
3016
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor (212) */
3025
3017
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor = Null;
3026
3018
 
3027
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor (211) */
3019
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor (213) */
3028
3020
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor = Null;
3029
3021
 
3030
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate (212) */
3022
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate (214) */
3031
3023
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate =
3032
3024
  Null;
3033
3025
 
3034
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate (213) */
3026
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate (215) */
3035
3027
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate = Null;
3036
3028
 
3037
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate (214) */
3029
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate (216) */
3038
3030
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate = Null;
3039
3031
 
3040
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut (215) */
3032
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut (217) */
3041
3033
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut = Null;
3042
3034
 
3043
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut (216) */
3035
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut (218) */
3044
3036
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut = Null;
3045
3037
 
3046
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty (217) */
3038
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty (219) */
3047
3039
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty =
3048
3040
  Null;
3049
3041
 
3050
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl (218) */
3042
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl (220) */
3051
3043
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl = Null;
3052
3044
 
3053
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget (219) */
3045
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget (221) */
3054
3046
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget =
3055
3047
  Null;
3056
3048
 
3057
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget (220) */
3049
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget (222) */
3058
3050
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget =
3059
3051
  Null;
3060
3052
 
3061
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget (221) */
3053
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget (223) */
3062
3054
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget =
3063
3055
  Null;
3064
3056
 
3065
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget (222) */
3057
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget (224) */
3066
3058
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget =
3067
3059
  Null;
3068
3060
 
3069
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget (223) */
3061
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget (225) */
3070
3062
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget =
3071
3063
  Null;
3072
3064
 
3073
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget (224) */
3065
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget (226) */
3074
3066
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget = Null;
3075
3067
 
3076
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold (225) */
3068
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold (227) */
3077
3069
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold =
3078
3070
  Null;
3079
3071
 
3080
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl (226) */
3072
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl (228) */
3081
3073
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl = Null;
3082
3074
 
3083
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring (227) */
3075
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring (229) */
3084
3076
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring = Null;
3085
3077
 
3086
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod (228) */
3078
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod (230) */
3087
3079
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod = Null;
3088
3080
 
3089
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod (229) */
3081
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod (231) */
3090
3082
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod = Null;
3091
3083
 
3092
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay (230) */
3084
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay (232) */
3093
3085
  type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay = Null;
3094
3086
 
3095
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue (232) */
3087
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue (234) */
3096
3088
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue extends Enum {
3097
3089
  readonly isRuntimeConfig: boolean;
3098
3090
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue;
3099
3091
  readonly type: "RuntimeConfig";
3100
3092
  }
3101
3093
 
3102
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue (233) */
3094
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue (235) */
3103
3095
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue
3104
3096
  extends Enum {
3105
3097
  readonly isSlashAmountPerMaxFileSize: boolean;
@@ -3195,7 +3187,7 @@ declare module "@polkadot/types/lookup" {
3195
3187
  | "UpfrontTicksToPay";
3196
3188
  }
3197
3189
 
3198
- /** @name FrameSystemPhase (235) */
3190
+ /** @name FrameSystemPhase (237) */
3199
3191
  interface FrameSystemPhase extends Enum {
3200
3192
  readonly isApplyExtrinsic: boolean;
3201
3193
  readonly asApplyExtrinsic: u32;
@@ -3204,19 +3196,19 @@ declare module "@polkadot/types/lookup" {
3204
3196
  readonly type: "ApplyExtrinsic" | "Finalization" | "Initialization";
3205
3197
  }
3206
3198
 
3207
- /** @name FrameSystemLastRuntimeUpgradeInfo (238) */
3199
+ /** @name FrameSystemLastRuntimeUpgradeInfo (240) */
3208
3200
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
3209
3201
  readonly specVersion: Compact<u32>;
3210
3202
  readonly specName: Text;
3211
3203
  }
3212
3204
 
3213
- /** @name FrameSystemCodeUpgradeAuthorization (241) */
3205
+ /** @name FrameSystemCodeUpgradeAuthorization (243) */
3214
3206
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
3215
3207
  readonly codeHash: H256;
3216
3208
  readonly checkVersion: bool;
3217
3209
  }
3218
3210
 
3219
- /** @name FrameSystemCall (242) */
3211
+ /** @name FrameSystemCall (244) */
3220
3212
  interface FrameSystemCall extends Enum {
3221
3213
  readonly isRemark: boolean;
3222
3214
  readonly asRemark: {
@@ -3277,21 +3269,21 @@ declare module "@polkadot/types/lookup" {
3277
3269
  | "ApplyAuthorizedUpgrade";
3278
3270
  }
3279
3271
 
3280
- /** @name FrameSystemLimitsBlockWeights (245) */
3272
+ /** @name FrameSystemLimitsBlockWeights (247) */
3281
3273
  interface FrameSystemLimitsBlockWeights extends Struct {
3282
3274
  readonly baseBlock: SpWeightsWeightV2Weight;
3283
3275
  readonly maxBlock: SpWeightsWeightV2Weight;
3284
3276
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
3285
3277
  }
3286
3278
 
3287
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (246) */
3279
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (248) */
3288
3280
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
3289
3281
  readonly normal: FrameSystemLimitsWeightsPerClass;
3290
3282
  readonly operational: FrameSystemLimitsWeightsPerClass;
3291
3283
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
3292
3284
  }
3293
3285
 
3294
- /** @name FrameSystemLimitsWeightsPerClass (247) */
3286
+ /** @name FrameSystemLimitsWeightsPerClass (249) */
3295
3287
  interface FrameSystemLimitsWeightsPerClass extends Struct {
3296
3288
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
3297
3289
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -3299,25 +3291,25 @@ declare module "@polkadot/types/lookup" {
3299
3291
  readonly reserved: Option<SpWeightsWeightV2Weight>;
3300
3292
  }
3301
3293
 
3302
- /** @name FrameSystemLimitsBlockLength (248) */
3294
+ /** @name FrameSystemLimitsBlockLength (250) */
3303
3295
  interface FrameSystemLimitsBlockLength extends Struct {
3304
3296
  readonly max: FrameSupportDispatchPerDispatchClassU32;
3305
3297
  }
3306
3298
 
3307
- /** @name FrameSupportDispatchPerDispatchClassU32 (249) */
3299
+ /** @name FrameSupportDispatchPerDispatchClassU32 (251) */
3308
3300
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
3309
3301
  readonly normal: u32;
3310
3302
  readonly operational: u32;
3311
3303
  readonly mandatory: u32;
3312
3304
  }
3313
3305
 
3314
- /** @name SpWeightsRuntimeDbWeight (250) */
3306
+ /** @name SpWeightsRuntimeDbWeight (252) */
3315
3307
  interface SpWeightsRuntimeDbWeight extends Struct {
3316
3308
  readonly read: u64;
3317
3309
  readonly write: u64;
3318
3310
  }
3319
3311
 
3320
- /** @name SpVersionRuntimeVersion (251) */
3312
+ /** @name SpVersionRuntimeVersion (253) */
3321
3313
  interface SpVersionRuntimeVersion extends Struct {
3322
3314
  readonly specName: Text;
3323
3315
  readonly implName: Text;
@@ -3329,7 +3321,7 @@ declare module "@polkadot/types/lookup" {
3329
3321
  readonly systemVersion: u8;
3330
3322
  }
3331
3323
 
3332
- /** @name FrameSystemError (256) */
3324
+ /** @name FrameSystemError (258) */
3333
3325
  interface FrameSystemError extends Enum {
3334
3326
  readonly isInvalidSpecName: boolean;
3335
3327
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -3352,14 +3344,14 @@ declare module "@polkadot/types/lookup" {
3352
3344
  | "Unauthorized";
3353
3345
  }
3354
3346
 
3355
- /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (258) */
3347
+ /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (260) */
3356
3348
  interface CumulusPalletParachainSystemUnincludedSegmentAncestor extends Struct {
3357
3349
  readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
3358
3350
  readonly paraHeadHash: Option<H256>;
3359
3351
  readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
3360
3352
  }
3361
3353
 
3362
- /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (259) */
3354
+ /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (261) */
3363
3355
  interface CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth extends Struct {
3364
3356
  readonly umpMsgCount: u32;
3365
3357
  readonly umpTotalBytes: u32;
@@ -3369,27 +3361,27 @@ declare module "@polkadot/types/lookup" {
3369
3361
  >;
3370
3362
  }
3371
3363
 
3372
- /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (261) */
3364
+ /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (263) */
3373
3365
  interface CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate extends Struct {
3374
3366
  readonly msgCount: u32;
3375
3367
  readonly totalBytes: u32;
3376
3368
  }
3377
3369
 
3378
- /** @name PolkadotPrimitivesV8UpgradeGoAhead (265) */
3370
+ /** @name PolkadotPrimitivesV8UpgradeGoAhead (267) */
3379
3371
  interface PolkadotPrimitivesV8UpgradeGoAhead extends Enum {
3380
3372
  readonly isAbort: boolean;
3381
3373
  readonly isGoAhead: boolean;
3382
3374
  readonly type: "Abort" | "GoAhead";
3383
3375
  }
3384
3376
 
3385
- /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (266) */
3377
+ /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (268) */
3386
3378
  interface CumulusPalletParachainSystemUnincludedSegmentSegmentTracker extends Struct {
3387
3379
  readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
3388
3380
  readonly hrmpWatermark: Option<u32>;
3389
3381
  readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
3390
3382
  }
3391
3383
 
3392
- /** @name PolkadotPrimitivesV8PersistedValidationData (267) */
3384
+ /** @name PolkadotPrimitivesV8PersistedValidationData (269) */
3393
3385
  interface PolkadotPrimitivesV8PersistedValidationData extends Struct {
3394
3386
  readonly parentHead: Bytes;
3395
3387
  readonly relayParentNumber: u32;
@@ -3397,18 +3389,18 @@ declare module "@polkadot/types/lookup" {
3397
3389
  readonly maxPovSize: u32;
3398
3390
  }
3399
3391
 
3400
- /** @name PolkadotPrimitivesV8UpgradeRestriction (270) */
3392
+ /** @name PolkadotPrimitivesV8UpgradeRestriction (272) */
3401
3393
  interface PolkadotPrimitivesV8UpgradeRestriction extends Enum {
3402
3394
  readonly isPresent: boolean;
3403
3395
  readonly type: "Present";
3404
3396
  }
3405
3397
 
3406
- /** @name SpTrieStorageProof (271) */
3398
+ /** @name SpTrieStorageProof (273) */
3407
3399
  interface SpTrieStorageProof extends Struct {
3408
3400
  readonly trieNodes: BTreeSet<Bytes>;
3409
3401
  }
3410
3402
 
3411
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (273) */
3403
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (275) */
3412
3404
  interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
3413
3405
  readonly dmqMqcHead: H256;
3414
3406
  readonly relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
@@ -3416,14 +3408,14 @@ declare module "@polkadot/types/lookup" {
3416
3408
  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV8AbridgedHrmpChannel]>>;
3417
3409
  }
3418
3410
 
3419
- /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (274) */
3411
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (276) */
3420
3412
  interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity
3421
3413
  extends Struct {
3422
3414
  readonly remainingCount: u32;
3423
3415
  readonly remainingSize: u32;
3424
3416
  }
3425
3417
 
3426
- /** @name PolkadotPrimitivesV8AbridgedHrmpChannel (277) */
3418
+ /** @name PolkadotPrimitivesV8AbridgedHrmpChannel (279) */
3427
3419
  interface PolkadotPrimitivesV8AbridgedHrmpChannel extends Struct {
3428
3420
  readonly maxCapacity: u32;
3429
3421
  readonly maxTotalSize: u32;
@@ -3433,7 +3425,7 @@ declare module "@polkadot/types/lookup" {
3433
3425
  readonly mqcHead: Option<H256>;
3434
3426
  }
3435
3427
 
3436
- /** @name PolkadotPrimitivesV8AbridgedHostConfiguration (278) */
3428
+ /** @name PolkadotPrimitivesV8AbridgedHostConfiguration (280) */
3437
3429
  interface PolkadotPrimitivesV8AbridgedHostConfiguration extends Struct {
3438
3430
  readonly maxCodeSize: u32;
3439
3431
  readonly maxHeadDataSize: u32;
@@ -3447,19 +3439,19 @@ declare module "@polkadot/types/lookup" {
3447
3439
  readonly asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
3448
3440
  }
3449
3441
 
3450
- /** @name PolkadotPrimitivesV8AsyncBackingAsyncBackingParams (279) */
3442
+ /** @name PolkadotPrimitivesV8AsyncBackingAsyncBackingParams (281) */
3451
3443
  interface PolkadotPrimitivesV8AsyncBackingAsyncBackingParams extends Struct {
3452
3444
  readonly maxCandidateDepth: u32;
3453
3445
  readonly allowedAncestryLen: u32;
3454
3446
  }
3455
3447
 
3456
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (285) */
3448
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (287) */
3457
3449
  interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
3458
3450
  readonly recipient: u32;
3459
3451
  readonly data: Bytes;
3460
3452
  }
3461
3453
 
3462
- /** @name CumulusPalletParachainSystemCall (287) */
3454
+ /** @name CumulusPalletParachainSystemCall (289) */
3463
3455
  interface CumulusPalletParachainSystemCall extends Enum {
3464
3456
  readonly isSetValidationData: boolean;
3465
3457
  readonly asSetValidationData: {
@@ -3472,7 +3464,7 @@ declare module "@polkadot/types/lookup" {
3472
3464
  readonly type: "SetValidationData" | "SudoSendUpwardMessage";
3473
3465
  }
3474
3466
 
3475
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (288) */
3467
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (290) */
3476
3468
  interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
3477
3469
  readonly validationData: PolkadotPrimitivesV8PersistedValidationData;
3478
3470
  readonly relayChainState: SpTrieStorageProof;
@@ -3480,19 +3472,19 @@ declare module "@polkadot/types/lookup" {
3480
3472
  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
3481
3473
  }
3482
3474
 
3483
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (290) */
3475
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (292) */
3484
3476
  interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
3485
3477
  readonly sentAt: u32;
3486
3478
  readonly msg: Bytes;
3487
3479
  }
3488
3480
 
3489
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (293) */
3481
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (295) */
3490
3482
  interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
3491
3483
  readonly sentAt: u32;
3492
3484
  readonly data: Bytes;
3493
3485
  }
3494
3486
 
3495
- /** @name CumulusPalletParachainSystemError (296) */
3487
+ /** @name CumulusPalletParachainSystemError (298) */
3496
3488
  interface CumulusPalletParachainSystemError extends Enum {
3497
3489
  readonly isOverlappingUpgrades: boolean;
3498
3490
  readonly isProhibitedByPolkadot: boolean;
@@ -3513,7 +3505,7 @@ declare module "@polkadot/types/lookup" {
3513
3505
  | "Unauthorized";
3514
3506
  }
3515
3507
 
3516
- /** @name PalletTimestampCall (297) */
3508
+ /** @name PalletTimestampCall (299) */
3517
3509
  interface PalletTimestampCall extends Enum {
3518
3510
  readonly isSet: boolean;
3519
3511
  readonly asSet: {
@@ -3522,17 +3514,17 @@ declare module "@polkadot/types/lookup" {
3522
3514
  readonly type: "Set";
3523
3515
  }
3524
3516
 
3525
- /** @name StagingParachainInfoCall (298) */
3517
+ /** @name StagingParachainInfoCall (300) */
3526
3518
  type StagingParachainInfoCall = Null;
3527
3519
 
3528
- /** @name PalletBalancesBalanceLock (300) */
3520
+ /** @name PalletBalancesBalanceLock (302) */
3529
3521
  interface PalletBalancesBalanceLock extends Struct {
3530
3522
  readonly id: U8aFixed;
3531
3523
  readonly amount: u128;
3532
3524
  readonly reasons: PalletBalancesReasons;
3533
3525
  }
3534
3526
 
3535
- /** @name PalletBalancesReasons (301) */
3527
+ /** @name PalletBalancesReasons (303) */
3536
3528
  interface PalletBalancesReasons extends Enum {
3537
3529
  readonly isFee: boolean;
3538
3530
  readonly isMisc: boolean;
@@ -3540,13 +3532,13 @@ declare module "@polkadot/types/lookup" {
3540
3532
  readonly type: "Fee" | "Misc" | "All";
3541
3533
  }
3542
3534
 
3543
- /** @name PalletBalancesReserveData (304) */
3535
+ /** @name PalletBalancesReserveData (306) */
3544
3536
  interface PalletBalancesReserveData extends Struct {
3545
3537
  readonly id: U8aFixed;
3546
3538
  readonly amount: u128;
3547
3539
  }
3548
3540
 
3549
- /** @name ShParachainRuntimeRuntimeHoldReason (308) */
3541
+ /** @name ShParachainRuntimeRuntimeHoldReason (310) */
3550
3542
  interface ShParachainRuntimeRuntimeHoldReason extends Enum {
3551
3543
  readonly isProviders: boolean;
3552
3544
  readonly asProviders: PalletStorageProvidersHoldReason;
@@ -3557,33 +3549,33 @@ declare module "@polkadot/types/lookup" {
3557
3549
  readonly type: "Providers" | "FileSystem" | "PaymentStreams";
3558
3550
  }
3559
3551
 
3560
- /** @name PalletStorageProvidersHoldReason (309) */
3552
+ /** @name PalletStorageProvidersHoldReason (311) */
3561
3553
  interface PalletStorageProvidersHoldReason extends Enum {
3562
3554
  readonly isStorageProviderDeposit: boolean;
3563
3555
  readonly isBucketDeposit: boolean;
3564
3556
  readonly type: "StorageProviderDeposit" | "BucketDeposit";
3565
3557
  }
3566
3558
 
3567
- /** @name PalletFileSystemHoldReason (310) */
3559
+ /** @name PalletFileSystemHoldReason (312) */
3568
3560
  interface PalletFileSystemHoldReason extends Enum {
3569
3561
  readonly isStorageRequestCreationHold: boolean;
3570
3562
  readonly isFileDeletionRequestHold: boolean;
3571
3563
  readonly type: "StorageRequestCreationHold" | "FileDeletionRequestHold";
3572
3564
  }
3573
3565
 
3574
- /** @name PalletPaymentStreamsHoldReason (311) */
3566
+ /** @name PalletPaymentStreamsHoldReason (313) */
3575
3567
  interface PalletPaymentStreamsHoldReason extends Enum {
3576
3568
  readonly isPaymentStreamDeposit: boolean;
3577
3569
  readonly type: "PaymentStreamDeposit";
3578
3570
  }
3579
3571
 
3580
- /** @name FrameSupportTokensMiscIdAmount (314) */
3572
+ /** @name FrameSupportTokensMiscIdAmount (316) */
3581
3573
  interface FrameSupportTokensMiscIdAmount extends Struct {
3582
3574
  readonly id: Null;
3583
3575
  readonly amount: u128;
3584
3576
  }
3585
3577
 
3586
- /** @name PalletBalancesCall (316) */
3578
+ /** @name PalletBalancesCall (318) */
3587
3579
  interface PalletBalancesCall extends Enum {
3588
3580
  readonly isTransferAllowDeath: boolean;
3589
3581
  readonly asTransferAllowDeath: {
@@ -3642,14 +3634,14 @@ declare module "@polkadot/types/lookup" {
3642
3634
  | "Burn";
3643
3635
  }
3644
3636
 
3645
- /** @name PalletBalancesAdjustmentDirection (319) */
3637
+ /** @name PalletBalancesAdjustmentDirection (321) */
3646
3638
  interface PalletBalancesAdjustmentDirection extends Enum {
3647
3639
  readonly isIncrease: boolean;
3648
3640
  readonly isDecrease: boolean;
3649
3641
  readonly type: "Increase" | "Decrease";
3650
3642
  }
3651
3643
 
3652
- /** @name PalletBalancesError (320) */
3644
+ /** @name PalletBalancesError (322) */
3653
3645
  interface PalletBalancesError extends Enum {
3654
3646
  readonly isVestingBalance: boolean;
3655
3647
  readonly isLiquidityRestrictions: boolean;
@@ -3678,14 +3670,14 @@ declare module "@polkadot/types/lookup" {
3678
3670
  | "DeltaZero";
3679
3671
  }
3680
3672
 
3681
- /** @name PalletTransactionPaymentReleases (321) */
3673
+ /** @name PalletTransactionPaymentReleases (323) */
3682
3674
  interface PalletTransactionPaymentReleases extends Enum {
3683
3675
  readonly isV1Ancient: boolean;
3684
3676
  readonly isV2: boolean;
3685
3677
  readonly type: "V1Ancient" | "V2";
3686
3678
  }
3687
3679
 
3688
- /** @name PalletSudoCall (322) */
3680
+ /** @name PalletSudoCall (324) */
3689
3681
  interface PalletSudoCall extends Enum {
3690
3682
  readonly isSudo: boolean;
3691
3683
  readonly asSudo: {
@@ -3709,7 +3701,7 @@ declare module "@polkadot/types/lookup" {
3709
3701
  readonly type: "Sudo" | "SudoUncheckedWeight" | "SetKey" | "SudoAs" | "RemoveKey";
3710
3702
  }
3711
3703
 
3712
- /** @name PalletCollatorSelectionCall (324) */
3704
+ /** @name PalletCollatorSelectionCall (326) */
3713
3705
  interface PalletCollatorSelectionCall extends Enum {
3714
3706
  readonly isSetInvulnerables: boolean;
3715
3707
  readonly asSetInvulnerables: {
@@ -3754,7 +3746,7 @@ declare module "@polkadot/types/lookup" {
3754
3746
  | "TakeCandidateSlot";
3755
3747
  }
3756
3748
 
3757
- /** @name PalletSessionCall (325) */
3749
+ /** @name PalletSessionCall (327) */
3758
3750
  interface PalletSessionCall extends Enum {
3759
3751
  readonly isSetKeys: boolean;
3760
3752
  readonly asSetKeys: {
@@ -3765,15 +3757,15 @@ declare module "@polkadot/types/lookup" {
3765
3757
  readonly type: "SetKeys" | "PurgeKeys";
3766
3758
  }
3767
3759
 
3768
- /** @name ShParachainRuntimeSessionKeys (326) */
3760
+ /** @name ShParachainRuntimeSessionKeys (328) */
3769
3761
  interface ShParachainRuntimeSessionKeys extends Struct {
3770
3762
  readonly aura: SpConsensusAuraSr25519AppSr25519Public;
3771
3763
  }
3772
3764
 
3773
- /** @name SpConsensusAuraSr25519AppSr25519Public (327) */
3765
+ /** @name SpConsensusAuraSr25519AppSr25519Public (329) */
3774
3766
  interface SpConsensusAuraSr25519AppSr25519Public extends U8aFixed {}
3775
3767
 
3776
- /** @name CumulusPalletXcmpQueueCall (328) */
3768
+ /** @name CumulusPalletXcmpQueueCall (330) */
3777
3769
  interface CumulusPalletXcmpQueueCall extends Enum {
3778
3770
  readonly isSuspendXcmExecution: boolean;
3779
3771
  readonly isResumeXcmExecution: boolean;
@@ -3797,7 +3789,7 @@ declare module "@polkadot/types/lookup" {
3797
3789
  | "UpdateResumeThreshold";
3798
3790
  }
3799
3791
 
3800
- /** @name PalletXcmCall (329) */
3792
+ /** @name PalletXcmCall (331) */
3801
3793
  interface PalletXcmCall extends Enum {
3802
3794
  readonly isSend: boolean;
3803
3795
  readonly asSend: {
@@ -3900,7 +3892,7 @@ declare module "@polkadot/types/lookup" {
3900
3892
  | "TransferAssetsUsingTypeAndThen";
3901
3893
  }
3902
3894
 
3903
- /** @name XcmVersionedXcm (330) */
3895
+ /** @name XcmVersionedXcm (332) */
3904
3896
  interface XcmVersionedXcm extends Enum {
3905
3897
  readonly isV3: boolean;
3906
3898
  readonly asV3: XcmV3Xcm;
@@ -3911,10 +3903,10 @@ declare module "@polkadot/types/lookup" {
3911
3903
  readonly type: "V3" | "V4" | "V5";
3912
3904
  }
3913
3905
 
3914
- /** @name XcmV3Xcm (331) */
3906
+ /** @name XcmV3Xcm (333) */
3915
3907
  interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
3916
3908
 
3917
- /** @name XcmV3Instruction (333) */
3909
+ /** @name XcmV3Instruction (335) */
3918
3910
  interface XcmV3Instruction extends Enum {
3919
3911
  readonly isWithdrawAsset: boolean;
3920
3912
  readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
@@ -4144,7 +4136,7 @@ declare module "@polkadot/types/lookup" {
4144
4136
  | "UnpaidExecution";
4145
4137
  }
4146
4138
 
4147
- /** @name XcmV3Response (334) */
4139
+ /** @name XcmV3Response (336) */
4148
4140
  interface XcmV3Response extends Enum {
4149
4141
  readonly isNull: boolean;
4150
4142
  readonly isAssets: boolean;
@@ -4166,7 +4158,7 @@ declare module "@polkadot/types/lookup" {
4166
4158
  | "DispatchResult";
4167
4159
  }
4168
4160
 
4169
- /** @name XcmV3TraitsError (337) */
4161
+ /** @name XcmV3TraitsError (339) */
4170
4162
  interface XcmV3TraitsError extends Enum {
4171
4163
  readonly isOverflow: boolean;
4172
4164
  readonly isUnimplemented: boolean;
@@ -4253,7 +4245,7 @@ declare module "@polkadot/types/lookup" {
4253
4245
  | "ExceedsStackLimit";
4254
4246
  }
4255
4247
 
4256
- /** @name XcmV3PalletInfo (339) */
4248
+ /** @name XcmV3PalletInfo (341) */
4257
4249
  interface XcmV3PalletInfo extends Struct {
4258
4250
  readonly index: Compact<u32>;
4259
4251
  readonly name: Bytes;
@@ -4263,14 +4255,14 @@ declare module "@polkadot/types/lookup" {
4263
4255
  readonly patch: Compact<u32>;
4264
4256
  }
4265
4257
 
4266
- /** @name XcmV3QueryResponseInfo (343) */
4258
+ /** @name XcmV3QueryResponseInfo (345) */
4267
4259
  interface XcmV3QueryResponseInfo extends Struct {
4268
4260
  readonly destination: StagingXcmV3MultiLocation;
4269
4261
  readonly queryId: Compact<u64>;
4270
4262
  readonly maxWeight: SpWeightsWeightV2Weight;
4271
4263
  }
4272
4264
 
4273
- /** @name XcmV3MultiassetMultiAssetFilter (344) */
4265
+ /** @name XcmV3MultiassetMultiAssetFilter (346) */
4274
4266
  interface XcmV3MultiassetMultiAssetFilter extends Enum {
4275
4267
  readonly isDefinite: boolean;
4276
4268
  readonly asDefinite: XcmV3MultiassetMultiAssets;
@@ -4279,7 +4271,7 @@ declare module "@polkadot/types/lookup" {
4279
4271
  readonly type: "Definite" | "Wild";
4280
4272
  }
4281
4273
 
4282
- /** @name XcmV3MultiassetWildMultiAsset (345) */
4274
+ /** @name XcmV3MultiassetWildMultiAsset (347) */
4283
4275
  interface XcmV3MultiassetWildMultiAsset extends Enum {
4284
4276
  readonly isAll: boolean;
4285
4277
  readonly isAllOf: boolean;
@@ -4298,17 +4290,17 @@ declare module "@polkadot/types/lookup" {
4298
4290
  readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
4299
4291
  }
4300
4292
 
4301
- /** @name XcmV3MultiassetWildFungibility (346) */
4293
+ /** @name XcmV3MultiassetWildFungibility (348) */
4302
4294
  interface XcmV3MultiassetWildFungibility extends Enum {
4303
4295
  readonly isFungible: boolean;
4304
4296
  readonly isNonFungible: boolean;
4305
4297
  readonly type: "Fungible" | "NonFungible";
4306
4298
  }
4307
4299
 
4308
- /** @name StagingXcmV4Xcm (347) */
4300
+ /** @name StagingXcmV4Xcm (349) */
4309
4301
  interface StagingXcmV4Xcm extends Vec<StagingXcmV4Instruction> {}
4310
4302
 
4311
- /** @name StagingXcmV4Instruction (349) */
4303
+ /** @name StagingXcmV4Instruction (351) */
4312
4304
  interface StagingXcmV4Instruction extends Enum {
4313
4305
  readonly isWithdrawAsset: boolean;
4314
4306
  readonly asWithdrawAsset: StagingXcmV4AssetAssets;
@@ -4538,7 +4530,7 @@ declare module "@polkadot/types/lookup" {
4538
4530
  | "UnpaidExecution";
4539
4531
  }
4540
4532
 
4541
- /** @name StagingXcmV4Response (350) */
4533
+ /** @name StagingXcmV4Response (352) */
4542
4534
  interface StagingXcmV4Response extends Enum {
4543
4535
  readonly isNull: boolean;
4544
4536
  readonly isAssets: boolean;
@@ -4560,7 +4552,7 @@ declare module "@polkadot/types/lookup" {
4560
4552
  | "DispatchResult";
4561
4553
  }
4562
4554
 
4563
- /** @name StagingXcmV4PalletInfo (352) */
4555
+ /** @name StagingXcmV4PalletInfo (354) */
4564
4556
  interface StagingXcmV4PalletInfo extends Struct {
4565
4557
  readonly index: Compact<u32>;
4566
4558
  readonly name: Bytes;
@@ -4570,14 +4562,14 @@ declare module "@polkadot/types/lookup" {
4570
4562
  readonly patch: Compact<u32>;
4571
4563
  }
4572
4564
 
4573
- /** @name StagingXcmV4QueryResponseInfo (356) */
4565
+ /** @name StagingXcmV4QueryResponseInfo (358) */
4574
4566
  interface StagingXcmV4QueryResponseInfo extends Struct {
4575
4567
  readonly destination: StagingXcmV4Location;
4576
4568
  readonly queryId: Compact<u64>;
4577
4569
  readonly maxWeight: SpWeightsWeightV2Weight;
4578
4570
  }
4579
4571
 
4580
- /** @name StagingXcmV4AssetAssetFilter (357) */
4572
+ /** @name StagingXcmV4AssetAssetFilter (359) */
4581
4573
  interface StagingXcmV4AssetAssetFilter extends Enum {
4582
4574
  readonly isDefinite: boolean;
4583
4575
  readonly asDefinite: StagingXcmV4AssetAssets;
@@ -4586,7 +4578,7 @@ declare module "@polkadot/types/lookup" {
4586
4578
  readonly type: "Definite" | "Wild";
4587
4579
  }
4588
4580
 
4589
- /** @name StagingXcmV4AssetWildAsset (358) */
4581
+ /** @name StagingXcmV4AssetWildAsset (360) */
4590
4582
  interface StagingXcmV4AssetWildAsset extends Enum {
4591
4583
  readonly isAll: boolean;
4592
4584
  readonly isAllOf: boolean;
@@ -4605,14 +4597,14 @@ declare module "@polkadot/types/lookup" {
4605
4597
  readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
4606
4598
  }
4607
4599
 
4608
- /** @name StagingXcmV4AssetWildFungibility (359) */
4600
+ /** @name StagingXcmV4AssetWildFungibility (361) */
4609
4601
  interface StagingXcmV4AssetWildFungibility extends Enum {
4610
4602
  readonly isFungible: boolean;
4611
4603
  readonly isNonFungible: boolean;
4612
4604
  readonly type: "Fungible" | "NonFungible";
4613
4605
  }
4614
4606
 
4615
- /** @name StagingXcmExecutorAssetTransferTransferType (371) */
4607
+ /** @name StagingXcmExecutorAssetTransferTransferType (373) */
4616
4608
  interface StagingXcmExecutorAssetTransferTransferType extends Enum {
4617
4609
  readonly isTeleport: boolean;
4618
4610
  readonly isLocalReserve: boolean;
@@ -4622,7 +4614,7 @@ declare module "@polkadot/types/lookup" {
4622
4614
  readonly type: "Teleport" | "LocalReserve" | "DestinationReserve" | "RemoteReserve";
4623
4615
  }
4624
4616
 
4625
- /** @name XcmVersionedAssetId (372) */
4617
+ /** @name XcmVersionedAssetId (374) */
4626
4618
  interface XcmVersionedAssetId extends Enum {
4627
4619
  readonly isV3: boolean;
4628
4620
  readonly asV3: XcmV3MultiassetAssetId;
@@ -4633,10 +4625,10 @@ declare module "@polkadot/types/lookup" {
4633
4625
  readonly type: "V3" | "V4" | "V5";
4634
4626
  }
4635
4627
 
4636
- /** @name CumulusPalletXcmCall (373) */
4628
+ /** @name CumulusPalletXcmCall (375) */
4637
4629
  type CumulusPalletXcmCall = Null;
4638
4630
 
4639
- /** @name PalletMessageQueueCall (374) */
4631
+ /** @name PalletMessageQueueCall (376) */
4640
4632
  interface PalletMessageQueueCall extends Enum {
4641
4633
  readonly isReapPage: boolean;
4642
4634
  readonly asReapPage: {
@@ -4653,7 +4645,7 @@ declare module "@polkadot/types/lookup" {
4653
4645
  readonly type: "ReapPage" | "ExecuteOverweight";
4654
4646
  }
4655
4647
 
4656
- /** @name PalletStorageProvidersCall (375) */
4648
+ /** @name PalletStorageProvidersCall (377) */
4657
4649
  interface PalletStorageProvidersCall extends Enum {
4658
4650
  readonly isRequestMspSignUp: boolean;
4659
4651
  readonly asRequestMspSignUp: {
@@ -4752,7 +4744,7 @@ declare module "@polkadot/types/lookup" {
4752
4744
  | "StopAllCycles";
4753
4745
  }
4754
4746
 
4755
- /** @name PalletFileSystemCall (376) */
4747
+ /** @name PalletFileSystemCall (378) */
4756
4748
  interface PalletFileSystemCall extends Enum {
4757
4749
  readonly isCreateBucket: boolean;
4758
4750
  readonly asCreateBucket: {
@@ -4855,21 +4847,15 @@ declare module "@polkadot/types/lookup" {
4855
4847
  readonly size_: u64;
4856
4848
  readonly fingerprint: H256;
4857
4849
  } & Struct;
4858
- readonly isDeleteFile: boolean;
4859
- readonly asDeleteFile: {
4860
- readonly fileOwner: AccountId32;
4861
- readonly signedIntention: PalletFileSystemFileOperationIntention;
4862
- readonly signature: SpRuntimeMultiSignature;
4863
- readonly bucketId: H256;
4864
- readonly location: Bytes;
4865
- readonly size_: u64;
4866
- readonly fingerprint: H256;
4850
+ readonly isDeleteFiles: boolean;
4851
+ readonly asDeleteFiles: {
4852
+ readonly fileDeletions: Vec<PalletFileSystemFileDeletionRequest>;
4867
4853
  readonly bspId: Option<H256>;
4868
4854
  readonly forestProof: SpTrieStorageProofCompactProof;
4869
4855
  } & Struct;
4870
- readonly isDeleteFileForIncompleteStorageRequest: boolean;
4871
- readonly asDeleteFileForIncompleteStorageRequest: {
4872
- readonly fileKey: H256;
4856
+ readonly isDeleteFilesForIncompleteStorageRequest: boolean;
4857
+ readonly asDeleteFilesForIncompleteStorageRequest: {
4858
+ readonly fileKeys: Vec<H256>;
4873
4859
  readonly bspId: Option<H256>;
4874
4860
  readonly forestProof: SpTrieStorageProofCompactProof;
4875
4861
  } & Struct;
@@ -4891,18 +4877,18 @@ declare module "@polkadot/types/lookup" {
4891
4877
  | "StopStoringForInsolventUser"
4892
4878
  | "MspStopStoringBucketForInsolventUser"
4893
4879
  | "RequestDeleteFile"
4894
- | "DeleteFile"
4895
- | "DeleteFileForIncompleteStorageRequest";
4880
+ | "DeleteFiles"
4881
+ | "DeleteFilesForIncompleteStorageRequest";
4896
4882
  }
4897
4883
 
4898
- /** @name PalletFileSystemBucketMoveRequestResponse (377) */
4884
+ /** @name PalletFileSystemBucketMoveRequestResponse (379) */
4899
4885
  interface PalletFileSystemBucketMoveRequestResponse extends Enum {
4900
4886
  readonly isAccepted: boolean;
4901
4887
  readonly isRejected: boolean;
4902
4888
  readonly type: "Accepted" | "Rejected";
4903
4889
  }
4904
4890
 
4905
- /** @name PalletFileSystemReplicationTarget (378) */
4891
+ /** @name PalletFileSystemReplicationTarget (380) */
4906
4892
  interface PalletFileSystemReplicationTarget extends Enum {
4907
4893
  readonly isBasic: boolean;
4908
4894
  readonly isStandard: boolean;
@@ -4920,32 +4906,43 @@ declare module "@polkadot/types/lookup" {
4920
4906
  | "Custom";
4921
4907
  }
4922
4908
 
4923
- /** @name PalletFileSystemStorageRequestMspBucketResponse (380) */
4909
+ /** @name PalletFileSystemStorageRequestMspBucketResponse (382) */
4924
4910
  interface PalletFileSystemStorageRequestMspBucketResponse extends Struct {
4925
4911
  readonly bucketId: H256;
4926
4912
  readonly accept: Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>;
4927
4913
  readonly reject: Vec<PalletFileSystemRejectedStorageRequest>;
4928
4914
  }
4929
4915
 
4930
- /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (382) */
4916
+ /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (384) */
4931
4917
  interface PalletFileSystemStorageRequestMspAcceptedFileKeys extends Struct {
4932
4918
  readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
4933
4919
  readonly forestProof: SpTrieStorageProofCompactProof;
4934
4920
  }
4935
4921
 
4936
- /** @name PalletFileSystemFileKeyWithProof (384) */
4922
+ /** @name PalletFileSystemFileKeyWithProof (386) */
4937
4923
  interface PalletFileSystemFileKeyWithProof extends Struct {
4938
4924
  readonly fileKey: H256;
4939
4925
  readonly proof: ShpFileKeyVerifierFileKeyProof;
4940
4926
  }
4941
4927
 
4942
- /** @name PalletFileSystemRejectedStorageRequest (386) */
4928
+ /** @name PalletFileSystemRejectedStorageRequest (388) */
4943
4929
  interface PalletFileSystemRejectedStorageRequest extends Struct {
4944
4930
  readonly fileKey: H256;
4945
4931
  readonly reason: PalletFileSystemRejectedStorageRequestReason;
4946
4932
  }
4947
4933
 
4948
- /** @name PalletProofsDealerCall (388) */
4934
+ /** @name PalletFileSystemFileDeletionRequest (391) */
4935
+ interface PalletFileSystemFileDeletionRequest extends Struct {
4936
+ readonly fileOwner: AccountId32;
4937
+ readonly signedIntention: PalletFileSystemFileOperationIntention;
4938
+ readonly signature: SpRuntimeMultiSignature;
4939
+ readonly bucketId: H256;
4940
+ readonly location: Bytes;
4941
+ readonly size_: u64;
4942
+ readonly fingerprint: H256;
4943
+ }
4944
+
4945
+ /** @name PalletProofsDealerCall (393) */
4949
4946
  interface PalletProofsDealerCall extends Enum {
4950
4947
  readonly isChallenge: boolean;
4951
4948
  readonly asChallenge: {
@@ -4977,13 +4974,13 @@ declare module "@polkadot/types/lookup" {
4977
4974
  | "PriorityChallenge";
4978
4975
  }
4979
4976
 
4980
- /** @name PalletRandomnessCall (389) */
4977
+ /** @name PalletRandomnessCall (394) */
4981
4978
  interface PalletRandomnessCall extends Enum {
4982
4979
  readonly isSetBabeRandomness: boolean;
4983
4980
  readonly type: "SetBabeRandomness";
4984
4981
  }
4985
4982
 
4986
- /** @name PalletPaymentStreamsCall (390) */
4983
+ /** @name PalletPaymentStreamsCall (395) */
4987
4984
  interface PalletPaymentStreamsCall extends Enum {
4988
4985
  readonly isCreateFixedRatePaymentStream: boolean;
4989
4986
  readonly asCreateFixedRatePaymentStream: {
@@ -5045,7 +5042,7 @@ declare module "@polkadot/types/lookup" {
5045
5042
  | "ClearInsolventFlag";
5046
5043
  }
5047
5044
 
5048
- /** @name PalletBucketNftsCall (391) */
5045
+ /** @name PalletBucketNftsCall (396) */
5049
5046
  interface PalletBucketNftsCall extends Enum {
5050
5047
  readonly isShareAccess: boolean;
5051
5048
  readonly asShareAccess: {
@@ -5063,7 +5060,7 @@ declare module "@polkadot/types/lookup" {
5063
5060
  readonly type: "ShareAccess" | "UpdateReadAccess";
5064
5061
  }
5065
5062
 
5066
- /** @name PalletNftsCall (393) */
5063
+ /** @name PalletNftsCall (398) */
5067
5064
  interface PalletNftsCall extends Enum {
5068
5065
  readonly isCreate: boolean;
5069
5066
  readonly asCreate: {
@@ -5336,14 +5333,14 @@ declare module "@polkadot/types/lookup" {
5336
5333
  | "SetAttributesPreSigned";
5337
5334
  }
5338
5335
 
5339
- /** @name PalletNftsCollectionConfig (394) */
5336
+ /** @name PalletNftsCollectionConfig (399) */
5340
5337
  interface PalletNftsCollectionConfig extends Struct {
5341
5338
  readonly settings: u64;
5342
5339
  readonly maxSupply: Option<u32>;
5343
5340
  readonly mintSettings: PalletNftsMintSettings;
5344
5341
  }
5345
5342
 
5346
- /** @name PalletNftsCollectionSetting (396) */
5343
+ /** @name PalletNftsCollectionSetting (401) */
5347
5344
  interface PalletNftsCollectionSetting extends Enum {
5348
5345
  readonly isTransferableItems: boolean;
5349
5346
  readonly isUnlockedMetadata: boolean;
@@ -5358,7 +5355,7 @@ declare module "@polkadot/types/lookup" {
5358
5355
  | "DepositRequired";
5359
5356
  }
5360
5357
 
5361
- /** @name PalletNftsMintSettings (397) */
5358
+ /** @name PalletNftsMintSettings (402) */
5362
5359
  interface PalletNftsMintSettings extends Struct {
5363
5360
  readonly mintType: PalletNftsMintType;
5364
5361
  readonly price: Option<u128>;
@@ -5367,7 +5364,7 @@ declare module "@polkadot/types/lookup" {
5367
5364
  readonly defaultItemSettings: u64;
5368
5365
  }
5369
5366
 
5370
- /** @name PalletNftsMintType (398) */
5367
+ /** @name PalletNftsMintType (403) */
5371
5368
  interface PalletNftsMintType extends Enum {
5372
5369
  readonly isIssuer: boolean;
5373
5370
  readonly isPublic: boolean;
@@ -5376,7 +5373,7 @@ declare module "@polkadot/types/lookup" {
5376
5373
  readonly type: "Issuer" | "Public" | "HolderOf";
5377
5374
  }
5378
5375
 
5379
- /** @name PalletNftsItemSetting (401) */
5376
+ /** @name PalletNftsItemSetting (406) */
5380
5377
  interface PalletNftsItemSetting extends Enum {
5381
5378
  readonly isTransferable: boolean;
5382
5379
  readonly isUnlockedMetadata: boolean;
@@ -5384,30 +5381,30 @@ declare module "@polkadot/types/lookup" {
5384
5381
  readonly type: "Transferable" | "UnlockedMetadata" | "UnlockedAttributes";
5385
5382
  }
5386
5383
 
5387
- /** @name PalletNftsDestroyWitness (402) */
5384
+ /** @name PalletNftsDestroyWitness (407) */
5388
5385
  interface PalletNftsDestroyWitness extends Struct {
5389
5386
  readonly itemMetadatas: Compact<u32>;
5390
5387
  readonly itemConfigs: Compact<u32>;
5391
5388
  readonly attributes: Compact<u32>;
5392
5389
  }
5393
5390
 
5394
- /** @name PalletNftsMintWitness (404) */
5391
+ /** @name PalletNftsMintWitness (409) */
5395
5392
  interface PalletNftsMintWitness extends Struct {
5396
5393
  readonly ownedItem: Option<u32>;
5397
5394
  readonly mintPrice: Option<u128>;
5398
5395
  }
5399
5396
 
5400
- /** @name PalletNftsItemConfig (405) */
5397
+ /** @name PalletNftsItemConfig (410) */
5401
5398
  interface PalletNftsItemConfig extends Struct {
5402
5399
  readonly settings: u64;
5403
5400
  }
5404
5401
 
5405
- /** @name PalletNftsCancelAttributesApprovalWitness (407) */
5402
+ /** @name PalletNftsCancelAttributesApprovalWitness (412) */
5406
5403
  interface PalletNftsCancelAttributesApprovalWitness extends Struct {
5407
5404
  readonly accountAttributes: u32;
5408
5405
  }
5409
5406
 
5410
- /** @name PalletNftsItemTip (409) */
5407
+ /** @name PalletNftsItemTip (414) */
5411
5408
  interface PalletNftsItemTip extends Struct {
5412
5409
  readonly collection: u32;
5413
5410
  readonly item: u32;
@@ -5415,7 +5412,7 @@ declare module "@polkadot/types/lookup" {
5415
5412
  readonly amount: u128;
5416
5413
  }
5417
5414
 
5418
- /** @name PalletNftsPreSignedMint (411) */
5415
+ /** @name PalletNftsPreSignedMint (416) */
5419
5416
  interface PalletNftsPreSignedMint extends Struct {
5420
5417
  readonly collection: u32;
5421
5418
  readonly item: u32;
@@ -5426,7 +5423,7 @@ declare module "@polkadot/types/lookup" {
5426
5423
  readonly mintPrice: Option<u128>;
5427
5424
  }
5428
5425
 
5429
- /** @name PalletNftsPreSignedAttributes (412) */
5426
+ /** @name PalletNftsPreSignedAttributes (417) */
5430
5427
  interface PalletNftsPreSignedAttributes extends Struct {
5431
5428
  readonly collection: u32;
5432
5429
  readonly item: u32;
@@ -5435,7 +5432,7 @@ declare module "@polkadot/types/lookup" {
5435
5432
  readonly deadline: u32;
5436
5433
  }
5437
5434
 
5438
- /** @name PalletParametersCall (413) */
5435
+ /** @name PalletParametersCall (418) */
5439
5436
  interface PalletParametersCall extends Enum {
5440
5437
  readonly isSetParameter: boolean;
5441
5438
  readonly asSetParameter: {
@@ -5444,14 +5441,14 @@ declare module "@polkadot/types/lookup" {
5444
5441
  readonly type: "SetParameter";
5445
5442
  }
5446
5443
 
5447
- /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters (414) */
5444
+ /** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters (419) */
5448
5445
  interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters extends Enum {
5449
5446
  readonly isRuntimeConfig: boolean;
5450
5447
  readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
5451
5448
  readonly type: "RuntimeConfig";
5452
5449
  }
5453
5450
 
5454
- /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (415) */
5451
+ /** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (420) */
5455
5452
  interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters
5456
5453
  extends Enum {
5457
5454
  readonly isSlashAmountPerMaxFileSize: boolean;
@@ -5685,19 +5682,19 @@ declare module "@polkadot/types/lookup" {
5685
5682
  | "UpfrontTicksToPay";
5686
5683
  }
5687
5684
 
5688
- /** @name PalletSudoError (417) */
5685
+ /** @name PalletSudoError (422) */
5689
5686
  interface PalletSudoError extends Enum {
5690
5687
  readonly isRequireSudo: boolean;
5691
5688
  readonly type: "RequireSudo";
5692
5689
  }
5693
5690
 
5694
- /** @name PalletCollatorSelectionCandidateInfo (420) */
5691
+ /** @name PalletCollatorSelectionCandidateInfo (425) */
5695
5692
  interface PalletCollatorSelectionCandidateInfo extends Struct {
5696
5693
  readonly who: AccountId32;
5697
5694
  readonly deposit: u128;
5698
5695
  }
5699
5696
 
5700
- /** @name PalletCollatorSelectionError (422) */
5697
+ /** @name PalletCollatorSelectionError (427) */
5701
5698
  interface PalletCollatorSelectionError extends Enum {
5702
5699
  readonly isTooManyCandidates: boolean;
5703
5700
  readonly isTooFewEligibleCollators: boolean;
@@ -5736,10 +5733,10 @@ declare module "@polkadot/types/lookup" {
5736
5733
  | "InvalidUnreserve";
5737
5734
  }
5738
5735
 
5739
- /** @name SpCoreCryptoKeyTypeId (426) */
5736
+ /** @name SpCoreCryptoKeyTypeId (431) */
5740
5737
  interface SpCoreCryptoKeyTypeId extends U8aFixed {}
5741
5738
 
5742
- /** @name PalletSessionError (427) */
5739
+ /** @name PalletSessionError (432) */
5743
5740
  interface PalletSessionError extends Enum {
5744
5741
  readonly isInvalidProof: boolean;
5745
5742
  readonly isNoAssociatedValidatorId: boolean;
@@ -5754,7 +5751,7 @@ declare module "@polkadot/types/lookup" {
5754
5751
  | "NoAccount";
5755
5752
  }
5756
5753
 
5757
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
5754
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */
5758
5755
  interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
5759
5756
  readonly recipient: u32;
5760
5757
  readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -5763,21 +5760,21 @@ declare module "@polkadot/types/lookup" {
5763
5760
  readonly lastIndex: u16;
5764
5761
  }
5765
5762
 
5766
- /** @name CumulusPalletXcmpQueueOutboundState (437) */
5763
+ /** @name CumulusPalletXcmpQueueOutboundState (442) */
5767
5764
  interface CumulusPalletXcmpQueueOutboundState extends Enum {
5768
5765
  readonly isOk: boolean;
5769
5766
  readonly isSuspended: boolean;
5770
5767
  readonly type: "Ok" | "Suspended";
5771
5768
  }
5772
5769
 
5773
- /** @name CumulusPalletXcmpQueueQueueConfigData (441) */
5770
+ /** @name CumulusPalletXcmpQueueQueueConfigData (446) */
5774
5771
  interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
5775
5772
  readonly suspendThreshold: u32;
5776
5773
  readonly dropThreshold: u32;
5777
5774
  readonly resumeThreshold: u32;
5778
5775
  }
5779
5776
 
5780
- /** @name CumulusPalletXcmpQueueError (442) */
5777
+ /** @name CumulusPalletXcmpQueueError (447) */
5781
5778
  interface CumulusPalletXcmpQueueError extends Enum {
5782
5779
  readonly isBadQueueConfig: boolean;
5783
5780
  readonly isAlreadySuspended: boolean;
@@ -5792,7 +5789,7 @@ declare module "@polkadot/types/lookup" {
5792
5789
  | "TooBig";
5793
5790
  }
5794
5791
 
5795
- /** @name PalletXcmQueryStatus (443) */
5792
+ /** @name PalletXcmQueryStatus (448) */
5796
5793
  interface PalletXcmQueryStatus extends Enum {
5797
5794
  readonly isPending: boolean;
5798
5795
  readonly asPending: {
@@ -5814,7 +5811,7 @@ declare module "@polkadot/types/lookup" {
5814
5811
  readonly type: "Pending" | "VersionNotifier" | "Ready";
5815
5812
  }
5816
5813
 
5817
- /** @name XcmVersionedResponse (447) */
5814
+ /** @name XcmVersionedResponse (452) */
5818
5815
  interface XcmVersionedResponse extends Enum {
5819
5816
  readonly isV3: boolean;
5820
5817
  readonly asV3: XcmV3Response;
@@ -5825,7 +5822,7 @@ declare module "@polkadot/types/lookup" {
5825
5822
  readonly type: "V3" | "V4" | "V5";
5826
5823
  }
5827
5824
 
5828
- /** @name PalletXcmVersionMigrationStage (453) */
5825
+ /** @name PalletXcmVersionMigrationStage (458) */
5829
5826
  interface PalletXcmVersionMigrationStage extends Enum {
5830
5827
  readonly isMigrateSupportedVersion: boolean;
5831
5828
  readonly isMigrateVersionNotifiers: boolean;
@@ -5839,7 +5836,7 @@ declare module "@polkadot/types/lookup" {
5839
5836
  | "MigrateAndNotifyOldTargets";
5840
5837
  }
5841
5838
 
5842
- /** @name PalletXcmRemoteLockedFungibleRecord (455) */
5839
+ /** @name PalletXcmRemoteLockedFungibleRecord (460) */
5843
5840
  interface PalletXcmRemoteLockedFungibleRecord extends Struct {
5844
5841
  readonly amount: u128;
5845
5842
  readonly owner: XcmVersionedLocation;
@@ -5847,7 +5844,7 @@ declare module "@polkadot/types/lookup" {
5847
5844
  readonly consumers: Vec<ITuple<[Null, u128]>>;
5848
5845
  }
5849
5846
 
5850
- /** @name PalletXcmError (462) */
5847
+ /** @name PalletXcmError (467) */
5851
5848
  interface PalletXcmError extends Enum {
5852
5849
  readonly isUnreachable: boolean;
5853
5850
  readonly isSendFailure: boolean;
@@ -5900,7 +5897,7 @@ declare module "@polkadot/types/lookup" {
5900
5897
  | "LocalExecutionIncomplete";
5901
5898
  }
5902
5899
 
5903
- /** @name PalletMessageQueueBookState (463) */
5900
+ /** @name PalletMessageQueueBookState (468) */
5904
5901
  interface PalletMessageQueueBookState extends Struct {
5905
5902
  readonly begin: u32;
5906
5903
  readonly end: u32;
@@ -5910,13 +5907,13 @@ declare module "@polkadot/types/lookup" {
5910
5907
  readonly size_: u64;
5911
5908
  }
5912
5909
 
5913
- /** @name PalletMessageQueueNeighbours (465) */
5910
+ /** @name PalletMessageQueueNeighbours (470) */
5914
5911
  interface PalletMessageQueueNeighbours extends Struct {
5915
5912
  readonly prev: CumulusPrimitivesCoreAggregateMessageOrigin;
5916
5913
  readonly next: CumulusPrimitivesCoreAggregateMessageOrigin;
5917
5914
  }
5918
5915
 
5919
- /** @name PalletMessageQueuePage (467) */
5916
+ /** @name PalletMessageQueuePage (472) */
5920
5917
  interface PalletMessageQueuePage extends Struct {
5921
5918
  readonly remaining: u32;
5922
5919
  readonly remainingSize: u32;
@@ -5926,7 +5923,7 @@ declare module "@polkadot/types/lookup" {
5926
5923
  readonly heap: Bytes;
5927
5924
  }
5928
5925
 
5929
- /** @name PalletMessageQueueError (469) */
5926
+ /** @name PalletMessageQueueError (474) */
5930
5927
  interface PalletMessageQueueError extends Enum {
5931
5928
  readonly isNotReapable: boolean;
5932
5929
  readonly isNoPage: boolean;
@@ -5949,13 +5946,13 @@ declare module "@polkadot/types/lookup" {
5949
5946
  | "RecursiveDisallowed";
5950
5947
  }
5951
5948
 
5952
- /** @name PalletStorageProvidersSignUpRequest (470) */
5949
+ /** @name PalletStorageProvidersSignUpRequest (475) */
5953
5950
  interface PalletStorageProvidersSignUpRequest extends Struct {
5954
5951
  readonly spSignUpRequest: PalletStorageProvidersSignUpRequestSpParams;
5955
5952
  readonly at: u32;
5956
5953
  }
5957
5954
 
5958
- /** @name PalletStorageProvidersSignUpRequestSpParams (471) */
5955
+ /** @name PalletStorageProvidersSignUpRequestSpParams (476) */
5959
5956
  interface PalletStorageProvidersSignUpRequestSpParams extends Enum {
5960
5957
  readonly isBackupStorageProvider: boolean;
5961
5958
  readonly asBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
@@ -5964,7 +5961,7 @@ declare module "@polkadot/types/lookup" {
5964
5961
  readonly type: "BackupStorageProvider" | "MainStorageProvider";
5965
5962
  }
5966
5963
 
5967
- /** @name PalletStorageProvidersBackupStorageProvider (472) */
5964
+ /** @name PalletStorageProvidersBackupStorageProvider (477) */
5968
5965
  interface PalletStorageProvidersBackupStorageProvider extends Struct {
5969
5966
  readonly capacity: u64;
5970
5967
  readonly capacityUsed: u64;
@@ -5977,13 +5974,13 @@ declare module "@polkadot/types/lookup" {
5977
5974
  readonly signUpBlock: u32;
5978
5975
  }
5979
5976
 
5980
- /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (473) */
5977
+ /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (478) */
5981
5978
  interface PalletStorageProvidersMainStorageProviderSignUpRequest extends Struct {
5982
5979
  readonly mspInfo: PalletStorageProvidersMainStorageProvider;
5983
5980
  readonly valueProp: PalletStorageProvidersValueProposition;
5984
5981
  }
5985
5982
 
5986
- /** @name PalletStorageProvidersMainStorageProvider (474) */
5983
+ /** @name PalletStorageProvidersMainStorageProvider (479) */
5987
5984
  interface PalletStorageProvidersMainStorageProvider extends Struct {
5988
5985
  readonly capacity: u64;
5989
5986
  readonly capacityUsed: u64;
@@ -5996,7 +5993,7 @@ declare module "@polkadot/types/lookup" {
5996
5993
  readonly signUpBlock: u32;
5997
5994
  }
5998
5995
 
5999
- /** @name PalletStorageProvidersBucket (475) */
5996
+ /** @name PalletStorageProvidersBucket (480) */
6000
5997
  interface PalletStorageProvidersBucket extends Struct {
6001
5998
  readonly root: H256;
6002
5999
  readonly userId: AccountId32;
@@ -6007,7 +6004,7 @@ declare module "@polkadot/types/lookup" {
6007
6004
  readonly valuePropId: H256;
6008
6005
  }
6009
6006
 
6010
- /** @name PalletStorageProvidersError (479) */
6007
+ /** @name PalletStorageProvidersError (484) */
6011
6008
  interface PalletStorageProvidersError extends Enum {
6012
6009
  readonly isAlreadyRegistered: boolean;
6013
6010
  readonly isSignUpNotRequested: boolean;
@@ -6116,7 +6113,7 @@ declare module "@polkadot/types/lookup" {
6116
6113
  | "PaymentStreamNotFound";
6117
6114
  }
6118
6115
 
6119
- /** @name PalletFileSystemStorageRequestMetadata (480) */
6116
+ /** @name PalletFileSystemStorageRequestMetadata (485) */
6120
6117
  interface PalletFileSystemStorageRequestMetadata extends Struct {
6121
6118
  readonly requestedAt: u32;
6122
6119
  readonly expiresAt: u32;
@@ -6133,12 +6130,12 @@ declare module "@polkadot/types/lookup" {
6133
6130
  readonly depositPaid: u128;
6134
6131
  }
6135
6132
 
6136
- /** @name PalletFileSystemStorageRequestBspsMetadata (483) */
6133
+ /** @name PalletFileSystemStorageRequestBspsMetadata (488) */
6137
6134
  interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
6138
6135
  readonly confirmed: bool;
6139
6136
  }
6140
6137
 
6141
- /** @name PalletFileSystemPendingFileDeletionRequest (486) */
6138
+ /** @name PalletFileSystemPendingFileDeletionRequest (490) */
6142
6139
  interface PalletFileSystemPendingFileDeletionRequest extends Struct {
6143
6140
  readonly user: AccountId32;
6144
6141
  readonly fileKey: H256;
@@ -6148,21 +6145,21 @@ declare module "@polkadot/types/lookup" {
6148
6145
  readonly queuePriorityChallenge: bool;
6149
6146
  }
6150
6147
 
6151
- /** @name PalletFileSystemPendingStopStoringRequest (488) */
6148
+ /** @name PalletFileSystemPendingStopStoringRequest (492) */
6152
6149
  interface PalletFileSystemPendingStopStoringRequest extends Struct {
6153
6150
  readonly tickWhenRequested: u32;
6154
6151
  readonly fileOwner: AccountId32;
6155
6152
  readonly fileSize: u64;
6156
6153
  }
6157
6154
 
6158
- /** @name PalletFileSystemMoveBucketRequestMetadata (489) */
6155
+ /** @name PalletFileSystemMoveBucketRequestMetadata (493) */
6159
6156
  interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
6160
6157
  readonly requester: AccountId32;
6161
6158
  readonly newMspId: H256;
6162
6159
  readonly newValuePropId: H256;
6163
6160
  }
6164
6161
 
6165
- /** @name PalletFileSystemIncompleteStorageRequestMetadata (490) */
6162
+ /** @name PalletFileSystemIncompleteStorageRequestMetadata (494) */
6166
6163
  interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
6167
6164
  readonly owner: AccountId32;
6168
6165
  readonly bucketId: H256;
@@ -6173,7 +6170,7 @@ declare module "@polkadot/types/lookup" {
6173
6170
  readonly pendingBucketRemoval: bool;
6174
6171
  }
6175
6172
 
6176
- /** @name PalletFileSystemError (492) */
6173
+ /** @name PalletFileSystemError (496) */
6177
6174
  interface PalletFileSystemError extends Enum {
6178
6175
  readonly isStorageRequestAlreadyRegistered: boolean;
6179
6176
  readonly isStorageRequestNotFound: boolean;
@@ -6217,6 +6214,12 @@ declare module "@polkadot/types/lookup" {
6217
6214
  readonly isThresholdBelowAsymptote: boolean;
6218
6215
  readonly isNotFileOwner: boolean;
6219
6216
  readonly isFileKeyAlreadyPendingDeletion: boolean;
6217
+ readonly isBatchFileDeletionMustContainSingleBucket: boolean;
6218
+ readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
6219
+ readonly isNoFileKeysToDelete: boolean;
6220
+ readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
6221
+ readonly isFailedToPushUserToBspDeletionVector: boolean;
6222
+ readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
6220
6223
  readonly isMaxUserPendingDeletionRequestsReached: boolean;
6221
6224
  readonly isMspNotStoringBucket: boolean;
6222
6225
  readonly isFileKeyNotPendingDeletion: boolean;
@@ -6306,6 +6309,12 @@ declare module "@polkadot/types/lookup" {
6306
6309
  | "ThresholdBelowAsymptote"
6307
6310
  | "NotFileOwner"
6308
6311
  | "FileKeyAlreadyPendingDeletion"
6312
+ | "BatchFileDeletionMustContainSingleBucket"
6313
+ | "DuplicateFileKeyInBatchFileDeletion"
6314
+ | "NoFileKeysToDelete"
6315
+ | "FailedToPushFileKeyToBucketDeletionVector"
6316
+ | "FailedToPushUserToBspDeletionVector"
6317
+ | "FailedToPushFileKeyToBspDeletionVector"
6309
6318
  | "MaxUserPendingDeletionRequestsReached"
6310
6319
  | "MspNotStoringBucket"
6311
6320
  | "FileKeyNotPendingDeletion"
@@ -6354,13 +6363,13 @@ declare module "@polkadot/types/lookup" {
6354
6363
  | "IncompleteStorageRequestNotFound";
6355
6364
  }
6356
6365
 
6357
- /** @name PalletProofsDealerProofSubmissionRecord (494) */
6366
+ /** @name PalletProofsDealerProofSubmissionRecord (498) */
6358
6367
  interface PalletProofsDealerProofSubmissionRecord extends Struct {
6359
6368
  readonly lastTickProven: u32;
6360
6369
  readonly nextTickToSubmitProofFor: u32;
6361
6370
  }
6362
6371
 
6363
- /** @name PalletProofsDealerError (501) */
6372
+ /** @name PalletProofsDealerError (505) */
6364
6373
  interface PalletProofsDealerError extends Enum {
6365
6374
  readonly isNotProvider: boolean;
6366
6375
  readonly isChallengesQueueOverflow: boolean;
@@ -6413,7 +6422,7 @@ declare module "@polkadot/types/lookup" {
6413
6422
  | "TooManyValidProofSubmitters";
6414
6423
  }
6415
6424
 
6416
- /** @name PalletPaymentStreamsFixedRatePaymentStream (504) */
6425
+ /** @name PalletPaymentStreamsFixedRatePaymentStream (508) */
6417
6426
  interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
6418
6427
  readonly rate: u128;
6419
6428
  readonly lastChargedTick: u32;
@@ -6421,7 +6430,7 @@ declare module "@polkadot/types/lookup" {
6421
6430
  readonly outOfFundsTick: Option<u32>;
6422
6431
  }
6423
6432
 
6424
- /** @name PalletPaymentStreamsDynamicRatePaymentStream (505) */
6433
+ /** @name PalletPaymentStreamsDynamicRatePaymentStream (509) */
6425
6434
  interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
6426
6435
  readonly amountProvided: u64;
6427
6436
  readonly priceIndexWhenLastCharged: u128;
@@ -6429,13 +6438,13 @@ declare module "@polkadot/types/lookup" {
6429
6438
  readonly outOfFundsTick: Option<u32>;
6430
6439
  }
6431
6440
 
6432
- /** @name PalletPaymentStreamsProviderLastChargeableInfo (506) */
6441
+ /** @name PalletPaymentStreamsProviderLastChargeableInfo (510) */
6433
6442
  interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
6434
6443
  readonly lastChargeableTick: u32;
6435
6444
  readonly priceIndex: u128;
6436
6445
  }
6437
6446
 
6438
- /** @name PalletPaymentStreamsError (507) */
6447
+ /** @name PalletPaymentStreamsError (511) */
6439
6448
  interface PalletPaymentStreamsError extends Enum {
6440
6449
  readonly isPaymentStreamAlreadyExists: boolean;
6441
6450
  readonly isPaymentStreamNotFound: boolean;
@@ -6476,7 +6485,7 @@ declare module "@polkadot/types/lookup" {
6476
6485
  | "ProviderInsolvent";
6477
6486
  }
6478
6487
 
6479
- /** @name PalletBucketNftsError (508) */
6488
+ /** @name PalletBucketNftsError (512) */
6480
6489
  interface PalletBucketNftsError extends Enum {
6481
6490
  readonly isBucketIsNotPrivate: boolean;
6482
6491
  readonly isNotBucketOwner: boolean;
@@ -6489,7 +6498,7 @@ declare module "@polkadot/types/lookup" {
6489
6498
  | "ConvertBytesToBoundedVec";
6490
6499
  }
6491
6500
 
6492
- /** @name PalletNftsCollectionDetails (509) */
6501
+ /** @name PalletNftsCollectionDetails (513) */
6493
6502
  interface PalletNftsCollectionDetails extends Struct {
6494
6503
  readonly owner: AccountId32;
6495
6504
  readonly ownerDeposit: u128;
@@ -6499,7 +6508,7 @@ declare module "@polkadot/types/lookup" {
6499
6508
  readonly attributes: u32;
6500
6509
  }
6501
6510
 
6502
- /** @name PalletNftsCollectionRole (514) */
6511
+ /** @name PalletNftsCollectionRole (518) */
6503
6512
  interface PalletNftsCollectionRole extends Enum {
6504
6513
  readonly isIssuer: boolean;
6505
6514
  readonly isFreezer: boolean;
@@ -6507,44 +6516,44 @@ declare module "@polkadot/types/lookup" {
6507
6516
  readonly type: "Issuer" | "Freezer" | "Admin";
6508
6517
  }
6509
6518
 
6510
- /** @name PalletNftsItemDetails (515) */
6519
+ /** @name PalletNftsItemDetails (519) */
6511
6520
  interface PalletNftsItemDetails extends Struct {
6512
6521
  readonly owner: AccountId32;
6513
6522
  readonly approvals: BTreeMap<AccountId32, Option<u32>>;
6514
6523
  readonly deposit: PalletNftsItemDeposit;
6515
6524
  }
6516
6525
 
6517
- /** @name PalletNftsItemDeposit (516) */
6526
+ /** @name PalletNftsItemDeposit (520) */
6518
6527
  interface PalletNftsItemDeposit extends Struct {
6519
6528
  readonly account: AccountId32;
6520
6529
  readonly amount: u128;
6521
6530
  }
6522
6531
 
6523
- /** @name PalletNftsCollectionMetadata (521) */
6532
+ /** @name PalletNftsCollectionMetadata (525) */
6524
6533
  interface PalletNftsCollectionMetadata extends Struct {
6525
6534
  readonly deposit: u128;
6526
6535
  readonly data: Bytes;
6527
6536
  }
6528
6537
 
6529
- /** @name PalletNftsItemMetadata (522) */
6538
+ /** @name PalletNftsItemMetadata (526) */
6530
6539
  interface PalletNftsItemMetadata extends Struct {
6531
6540
  readonly deposit: PalletNftsItemMetadataDeposit;
6532
6541
  readonly data: Bytes;
6533
6542
  }
6534
6543
 
6535
- /** @name PalletNftsItemMetadataDeposit (523) */
6544
+ /** @name PalletNftsItemMetadataDeposit (527) */
6536
6545
  interface PalletNftsItemMetadataDeposit extends Struct {
6537
6546
  readonly account: Option<AccountId32>;
6538
6547
  readonly amount: u128;
6539
6548
  }
6540
6549
 
6541
- /** @name PalletNftsAttributeDeposit (526) */
6550
+ /** @name PalletNftsAttributeDeposit (530) */
6542
6551
  interface PalletNftsAttributeDeposit extends Struct {
6543
6552
  readonly account: Option<AccountId32>;
6544
6553
  readonly amount: u128;
6545
6554
  }
6546
6555
 
6547
- /** @name PalletNftsPendingSwap (530) */
6556
+ /** @name PalletNftsPendingSwap (534) */
6548
6557
  interface PalletNftsPendingSwap extends Struct {
6549
6558
  readonly desiredCollection: u32;
6550
6559
  readonly desiredItem: Option<u32>;
@@ -6552,7 +6561,7 @@ declare module "@polkadot/types/lookup" {
6552
6561
  readonly deadline: u32;
6553
6562
  }
6554
6563
 
6555
- /** @name PalletNftsPalletFeature (532) */
6564
+ /** @name PalletNftsPalletFeature (536) */
6556
6565
  interface PalletNftsPalletFeature extends Enum {
6557
6566
  readonly isTrading: boolean;
6558
6567
  readonly isAttributes: boolean;
@@ -6561,7 +6570,7 @@ declare module "@polkadot/types/lookup" {
6561
6570
  readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
6562
6571
  }
6563
6572
 
6564
- /** @name PalletNftsError (533) */
6573
+ /** @name PalletNftsError (537) */
6565
6574
  interface PalletNftsError extends Enum {
6566
6575
  readonly isNoPermission: boolean;
6567
6576
  readonly isUnknownCollection: boolean;
@@ -6656,42 +6665,42 @@ declare module "@polkadot/types/lookup" {
6656
6665
  | "WitnessRequired";
6657
6666
  }
6658
6667
 
6659
- /** @name FrameSystemExtensionsCheckNonZeroSender (536) */
6668
+ /** @name FrameSystemExtensionsCheckNonZeroSender (540) */
6660
6669
  type FrameSystemExtensionsCheckNonZeroSender = Null;
6661
6670
 
6662
- /** @name FrameSystemExtensionsCheckSpecVersion (537) */
6671
+ /** @name FrameSystemExtensionsCheckSpecVersion (541) */
6663
6672
  type FrameSystemExtensionsCheckSpecVersion = Null;
6664
6673
 
6665
- /** @name FrameSystemExtensionsCheckTxVersion (538) */
6674
+ /** @name FrameSystemExtensionsCheckTxVersion (542) */
6666
6675
  type FrameSystemExtensionsCheckTxVersion = Null;
6667
6676
 
6668
- /** @name FrameSystemExtensionsCheckGenesis (539) */
6677
+ /** @name FrameSystemExtensionsCheckGenesis (543) */
6669
6678
  type FrameSystemExtensionsCheckGenesis = Null;
6670
6679
 
6671
- /** @name FrameSystemExtensionsCheckNonce (542) */
6680
+ /** @name FrameSystemExtensionsCheckNonce (546) */
6672
6681
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
6673
6682
 
6674
- /** @name FrameSystemExtensionsCheckWeight (543) */
6683
+ /** @name FrameSystemExtensionsCheckWeight (547) */
6675
6684
  type FrameSystemExtensionsCheckWeight = Null;
6676
6685
 
6677
- /** @name PalletTransactionPaymentChargeTransactionPayment (544) */
6686
+ /** @name PalletTransactionPaymentChargeTransactionPayment (548) */
6678
6687
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
6679
6688
 
6680
- /** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (545) */
6689
+ /** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (549) */
6681
6690
  type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = Null;
6682
6691
 
6683
- /** @name FrameMetadataHashExtensionCheckMetadataHash (546) */
6692
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (550) */
6684
6693
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
6685
6694
  readonly mode: FrameMetadataHashExtensionMode;
6686
6695
  }
6687
6696
 
6688
- /** @name FrameMetadataHashExtensionMode (547) */
6697
+ /** @name FrameMetadataHashExtensionMode (551) */
6689
6698
  interface FrameMetadataHashExtensionMode extends Enum {
6690
6699
  readonly isDisabled: boolean;
6691
6700
  readonly isEnabled: boolean;
6692
6701
  readonly type: "Disabled" | "Enabled";
6693
6702
  }
6694
6703
 
6695
- /** @name ShParachainRuntimeRuntime (548) */
6704
+ /** @name ShParachainRuntimeRuntime (552) */
6696
6705
  type ShParachainRuntimeRuntime = Null;
6697
6706
  } // declare module