@storagehub/api-augment 0.2.5 → 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 +2 -2
  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
@@ -1287,30 +1287,23 @@ declare module "@polkadot/types/lookup" {
1287
1287
  readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
1288
1288
  readonly signature: FpAccountEthereumSignature;
1289
1289
  } & Struct;
1290
- readonly isBucketFileDeletionCompleted: boolean;
1291
- readonly asBucketFileDeletionCompleted: {
1290
+ readonly isBucketFileDeletionsCompleted: boolean;
1291
+ readonly asBucketFileDeletionsCompleted: {
1292
1292
  readonly user: AccountId20;
1293
- readonly fileKey: H256;
1294
- readonly fileSize: u64;
1293
+ readonly fileKeys: Vec<H256>;
1295
1294
  readonly bucketId: H256;
1296
1295
  readonly mspId: Option<H256>;
1297
1296
  readonly oldRoot: H256;
1298
1297
  readonly newRoot: H256;
1299
1298
  } & Struct;
1300
- readonly isBspFileDeletionCompleted: boolean;
1301
- readonly asBspFileDeletionCompleted: {
1302
- readonly user: AccountId20;
1303
- readonly fileKey: H256;
1304
- readonly fileSize: u64;
1299
+ readonly isBspFileDeletionsCompleted: boolean;
1300
+ readonly asBspFileDeletionsCompleted: {
1301
+ readonly users: Vec<AccountId20>;
1302
+ readonly fileKeys: Vec<H256>;
1305
1303
  readonly bspId: H256;
1306
1304
  readonly oldRoot: H256;
1307
1305
  readonly newRoot: H256;
1308
1306
  } & Struct;
1309
- readonly isFileDeletedFromIncompleteStorageRequest: boolean;
1310
- readonly asFileDeletedFromIncompleteStorageRequest: {
1311
- readonly fileKey: H256;
1312
- readonly bspId: Option<H256>;
1313
- } & Struct;
1314
1307
  readonly isIncompleteStorageRequest: boolean;
1315
1308
  readonly asIncompleteStorageRequest: {
1316
1309
  readonly fileKey: H256;
@@ -1348,9 +1341,8 @@ declare module "@polkadot/types/lookup" {
1348
1341
  | "FailedToReleaseStorageRequestCreationDeposit"
1349
1342
  | "FailedToTransferDepositFundsToBsp"
1350
1343
  | "FileDeletionRequested"
1351
- | "BucketFileDeletionCompleted"
1352
- | "BspFileDeletionCompleted"
1353
- | "FileDeletedFromIncompleteStorageRequest"
1344
+ | "BucketFileDeletionsCompleted"
1345
+ | "BspFileDeletionsCompleted"
1354
1346
  | "IncompleteStorageRequest";
1355
1347
  }
1356
1348
 
@@ -1405,7 +1397,7 @@ declare module "@polkadot/types/lookup" {
1405
1397
  /** @name FpAccountEthereumSignature (120) */
1406
1398
  interface FpAccountEthereumSignature extends U8aFixed {}
1407
1399
 
1408
- /** @name PalletProofsDealerEvent (122) */
1400
+ /** @name PalletProofsDealerEvent (125) */
1409
1401
  interface PalletProofsDealerEvent extends Enum {
1410
1402
  readonly isNewChallenge: boolean;
1411
1403
  readonly asNewChallenge: {
@@ -1482,36 +1474,36 @@ declare module "@polkadot/types/lookup" {
1482
1474
  | "ChallengesTickerSet";
1483
1475
  }
1484
1476
 
1485
- /** @name PalletProofsDealerProof (123) */
1477
+ /** @name PalletProofsDealerProof (126) */
1486
1478
  interface PalletProofsDealerProof extends Struct {
1487
1479
  readonly forestProof: SpTrieStorageProofCompactProof;
1488
1480
  readonly keyProofs: BTreeMap<H256, PalletProofsDealerKeyProof>;
1489
1481
  }
1490
1482
 
1491
- /** @name SpTrieStorageProofCompactProof (124) */
1483
+ /** @name SpTrieStorageProofCompactProof (127) */
1492
1484
  interface SpTrieStorageProofCompactProof extends Struct {
1493
1485
  readonly encodedNodes: Vec<Bytes>;
1494
1486
  }
1495
1487
 
1496
- /** @name PalletProofsDealerKeyProof (127) */
1488
+ /** @name PalletProofsDealerKeyProof (130) */
1497
1489
  interface PalletProofsDealerKeyProof extends Struct {
1498
1490
  readonly proof: ShpFileKeyVerifierFileKeyProof;
1499
1491
  readonly challengeCount: u32;
1500
1492
  }
1501
1493
 
1502
- /** @name ShpFileKeyVerifierFileKeyProof (128) */
1494
+ /** @name ShpFileKeyVerifierFileKeyProof (131) */
1503
1495
  interface ShpFileKeyVerifierFileKeyProof extends Struct {
1504
1496
  readonly fileMetadata: ShpFileMetadataFileMetadata;
1505
1497
  readonly proof: SpTrieStorageProofCompactProof;
1506
1498
  }
1507
1499
 
1508
- /** @name PalletProofsDealerCustomChallenge (132) */
1500
+ /** @name PalletProofsDealerCustomChallenge (135) */
1509
1501
  interface PalletProofsDealerCustomChallenge extends Struct {
1510
1502
  readonly key: H256;
1511
1503
  readonly shouldRemoveKey: bool;
1512
1504
  }
1513
1505
 
1514
- /** @name ShpTraitsTrieMutation (136) */
1506
+ /** @name ShpTraitsTrieMutation (139) */
1515
1507
  interface ShpTraitsTrieMutation extends Enum {
1516
1508
  readonly isAdd: boolean;
1517
1509
  readonly asAdd: ShpTraitsTrieAddMutation;
@@ -1520,17 +1512,17 @@ declare module "@polkadot/types/lookup" {
1520
1512
  readonly type: "Add" | "Remove";
1521
1513
  }
1522
1514
 
1523
- /** @name ShpTraitsTrieAddMutation (137) */
1515
+ /** @name ShpTraitsTrieAddMutation (140) */
1524
1516
  interface ShpTraitsTrieAddMutation extends Struct {
1525
1517
  readonly value: Bytes;
1526
1518
  }
1527
1519
 
1528
- /** @name ShpTraitsTrieRemoveMutation (138) */
1520
+ /** @name ShpTraitsTrieRemoveMutation (141) */
1529
1521
  interface ShpTraitsTrieRemoveMutation extends Struct {
1530
1522
  readonly maybeValue: Option<Bytes>;
1531
1523
  }
1532
1524
 
1533
- /** @name PalletRandomnessEvent (140) */
1525
+ /** @name PalletRandomnessEvent (143) */
1534
1526
  interface PalletRandomnessEvent extends Enum {
1535
1527
  readonly isNewOneEpochAgoRandomnessAvailable: boolean;
1536
1528
  readonly asNewOneEpochAgoRandomnessAvailable: {
@@ -1541,7 +1533,7 @@ declare module "@polkadot/types/lookup" {
1541
1533
  readonly type: "NewOneEpochAgoRandomnessAvailable";
1542
1534
  }
1543
1535
 
1544
- /** @name PalletPaymentStreamsEvent (141) */
1536
+ /** @name PalletPaymentStreamsEvent (144) */
1545
1537
  interface PalletPaymentStreamsEvent extends Enum {
1546
1538
  readonly isFixedRatePaymentStreamCreated: boolean;
1547
1539
  readonly asFixedRatePaymentStreamCreated: {
@@ -1635,7 +1627,7 @@ declare module "@polkadot/types/lookup" {
1635
1627
  | "InconsistentTickProcessing";
1636
1628
  }
1637
1629
 
1638
- /** @name PalletBucketNftsEvent (144) */
1630
+ /** @name PalletBucketNftsEvent (146) */
1639
1631
  interface PalletBucketNftsEvent extends Enum {
1640
1632
  readonly isAccessShared: boolean;
1641
1633
  readonly asAccessShared: {
@@ -1657,7 +1649,7 @@ declare module "@polkadot/types/lookup" {
1657
1649
  readonly type: "AccessShared" | "ItemReadAccessUpdated" | "ItemBurned";
1658
1650
  }
1659
1651
 
1660
- /** @name PalletNftsEvent (145) */
1652
+ /** @name PalletNftsEvent (147) */
1661
1653
  interface PalletNftsEvent extends Enum {
1662
1654
  readonly isCreated: boolean;
1663
1655
  readonly asCreated: {
@@ -1932,7 +1924,7 @@ declare module "@polkadot/types/lookup" {
1932
1924
  | "PalletAttributeSet";
1933
1925
  }
1934
1926
 
1935
- /** @name PalletNftsAttributeNamespace (149) */
1927
+ /** @name PalletNftsAttributeNamespace (151) */
1936
1928
  interface PalletNftsAttributeNamespace extends Enum {
1937
1929
  readonly isPallet: boolean;
1938
1930
  readonly isCollectionOwner: boolean;
@@ -1942,20 +1934,20 @@ declare module "@polkadot/types/lookup" {
1942
1934
  readonly type: "Pallet" | "CollectionOwner" | "ItemOwner" | "Account";
1943
1935
  }
1944
1936
 
1945
- /** @name PalletNftsPriceWithDirection (151) */
1937
+ /** @name PalletNftsPriceWithDirection (153) */
1946
1938
  interface PalletNftsPriceWithDirection extends Struct {
1947
1939
  readonly amount: u128;
1948
1940
  readonly direction: PalletNftsPriceDirection;
1949
1941
  }
1950
1942
 
1951
- /** @name PalletNftsPriceDirection (152) */
1943
+ /** @name PalletNftsPriceDirection (154) */
1952
1944
  interface PalletNftsPriceDirection extends Enum {
1953
1945
  readonly isSend: boolean;
1954
1946
  readonly isReceive: boolean;
1955
1947
  readonly type: "Send" | "Receive";
1956
1948
  }
1957
1949
 
1958
- /** @name PalletNftsPalletAttributes (153) */
1950
+ /** @name PalletNftsPalletAttributes (155) */
1959
1951
  interface PalletNftsPalletAttributes extends Enum {
1960
1952
  readonly isUsedToClaim: boolean;
1961
1953
  readonly asUsedToClaim: u32;
@@ -1963,7 +1955,7 @@ declare module "@polkadot/types/lookup" {
1963
1955
  readonly type: "UsedToClaim" | "TransferDisabled";
1964
1956
  }
1965
1957
 
1966
- /** @name FrameSystemPhase (154) */
1958
+ /** @name FrameSystemPhase (156) */
1967
1959
  interface FrameSystemPhase extends Enum {
1968
1960
  readonly isApplyExtrinsic: boolean;
1969
1961
  readonly asApplyExtrinsic: u32;
@@ -1972,19 +1964,19 @@ declare module "@polkadot/types/lookup" {
1972
1964
  readonly type: "ApplyExtrinsic" | "Finalization" | "Initialization";
1973
1965
  }
1974
1966
 
1975
- /** @name FrameSystemLastRuntimeUpgradeInfo (157) */
1967
+ /** @name FrameSystemLastRuntimeUpgradeInfo (159) */
1976
1968
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1977
1969
  readonly specVersion: Compact<u32>;
1978
1970
  readonly specName: Text;
1979
1971
  }
1980
1972
 
1981
- /** @name FrameSystemCodeUpgradeAuthorization (159) */
1973
+ /** @name FrameSystemCodeUpgradeAuthorization (161) */
1982
1974
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1983
1975
  readonly codeHash: H256;
1984
1976
  readonly checkVersion: bool;
1985
1977
  }
1986
1978
 
1987
- /** @name FrameSystemCall (160) */
1979
+ /** @name FrameSystemCall (162) */
1988
1980
  interface FrameSystemCall extends Enum {
1989
1981
  readonly isRemark: boolean;
1990
1982
  readonly asRemark: {
@@ -2045,21 +2037,21 @@ declare module "@polkadot/types/lookup" {
2045
2037
  | "ApplyAuthorizedUpgrade";
2046
2038
  }
2047
2039
 
2048
- /** @name FrameSystemLimitsBlockWeights (163) */
2040
+ /** @name FrameSystemLimitsBlockWeights (165) */
2049
2041
  interface FrameSystemLimitsBlockWeights extends Struct {
2050
2042
  readonly baseBlock: SpWeightsWeightV2Weight;
2051
2043
  readonly maxBlock: SpWeightsWeightV2Weight;
2052
2044
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
2053
2045
  }
2054
2046
 
2055
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (164) */
2047
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (166) */
2056
2048
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
2057
2049
  readonly normal: FrameSystemLimitsWeightsPerClass;
2058
2050
  readonly operational: FrameSystemLimitsWeightsPerClass;
2059
2051
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
2060
2052
  }
2061
2053
 
2062
- /** @name FrameSystemLimitsWeightsPerClass (165) */
2054
+ /** @name FrameSystemLimitsWeightsPerClass (167) */
2063
2055
  interface FrameSystemLimitsWeightsPerClass extends Struct {
2064
2056
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
2065
2057
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -2067,25 +2059,25 @@ declare module "@polkadot/types/lookup" {
2067
2059
  readonly reserved: Option<SpWeightsWeightV2Weight>;
2068
2060
  }
2069
2061
 
2070
- /** @name FrameSystemLimitsBlockLength (167) */
2062
+ /** @name FrameSystemLimitsBlockLength (169) */
2071
2063
  interface FrameSystemLimitsBlockLength extends Struct {
2072
2064
  readonly max: FrameSupportDispatchPerDispatchClassU32;
2073
2065
  }
2074
2066
 
2075
- /** @name FrameSupportDispatchPerDispatchClassU32 (168) */
2067
+ /** @name FrameSupportDispatchPerDispatchClassU32 (170) */
2076
2068
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
2077
2069
  readonly normal: u32;
2078
2070
  readonly operational: u32;
2079
2071
  readonly mandatory: u32;
2080
2072
  }
2081
2073
 
2082
- /** @name SpWeightsRuntimeDbWeight (169) */
2074
+ /** @name SpWeightsRuntimeDbWeight (171) */
2083
2075
  interface SpWeightsRuntimeDbWeight extends Struct {
2084
2076
  readonly read: u64;
2085
2077
  readonly write: u64;
2086
2078
  }
2087
2079
 
2088
- /** @name SpVersionRuntimeVersion (170) */
2080
+ /** @name SpVersionRuntimeVersion (172) */
2089
2081
  interface SpVersionRuntimeVersion extends Struct {
2090
2082
  readonly specName: Text;
2091
2083
  readonly implName: Text;
@@ -2097,7 +2089,7 @@ declare module "@polkadot/types/lookup" {
2097
2089
  readonly systemVersion: u8;
2098
2090
  }
2099
2091
 
2100
- /** @name FrameSystemError (176) */
2092
+ /** @name FrameSystemError (178) */
2101
2093
  interface FrameSystemError extends Enum {
2102
2094
  readonly isInvalidSpecName: boolean;
2103
2095
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2120,10 +2112,10 @@ declare module "@polkadot/types/lookup" {
2120
2112
  | "Unauthorized";
2121
2113
  }
2122
2114
 
2123
- /** @name SpConsensusBabeAppPublic (179) */
2115
+ /** @name SpConsensusBabeAppPublic (181) */
2124
2116
  interface SpConsensusBabeAppPublic extends U8aFixed {}
2125
2117
 
2126
- /** @name SpConsensusBabeDigestsNextConfigDescriptor (182) */
2118
+ /** @name SpConsensusBabeDigestsNextConfigDescriptor (184) */
2127
2119
  interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
2128
2120
  readonly isV1: boolean;
2129
2121
  readonly asV1: {
@@ -2133,7 +2125,7 @@ declare module "@polkadot/types/lookup" {
2133
2125
  readonly type: "V1";
2134
2126
  }
2135
2127
 
2136
- /** @name SpConsensusBabeAllowedSlots (184) */
2128
+ /** @name SpConsensusBabeAllowedSlots (186) */
2137
2129
  interface SpConsensusBabeAllowedSlots extends Enum {
2138
2130
  readonly isPrimarySlots: boolean;
2139
2131
  readonly isPrimaryAndSecondaryPlainSlots: boolean;
@@ -2141,7 +2133,7 @@ declare module "@polkadot/types/lookup" {
2141
2133
  readonly type: "PrimarySlots" | "PrimaryAndSecondaryPlainSlots" | "PrimaryAndSecondaryVRFSlots";
2142
2134
  }
2143
2135
 
2144
- /** @name SpConsensusBabeDigestsPreDigest (188) */
2136
+ /** @name SpConsensusBabeDigestsPreDigest (190) */
2145
2137
  interface SpConsensusBabeDigestsPreDigest extends Enum {
2146
2138
  readonly isPrimary: boolean;
2147
2139
  readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
@@ -2152,39 +2144,39 @@ declare module "@polkadot/types/lookup" {
2152
2144
  readonly type: "Primary" | "SecondaryPlain" | "SecondaryVRF";
2153
2145
  }
2154
2146
 
2155
- /** @name SpConsensusBabeDigestsPrimaryPreDigest (189) */
2147
+ /** @name SpConsensusBabeDigestsPrimaryPreDigest (191) */
2156
2148
  interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
2157
2149
  readonly authorityIndex: u32;
2158
2150
  readonly slot: u64;
2159
2151
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
2160
2152
  }
2161
2153
 
2162
- /** @name SpCoreSr25519VrfVrfSignature (190) */
2154
+ /** @name SpCoreSr25519VrfVrfSignature (192) */
2163
2155
  interface SpCoreSr25519VrfVrfSignature extends Struct {
2164
2156
  readonly preOutput: U8aFixed;
2165
2157
  readonly proof: U8aFixed;
2166
2158
  }
2167
2159
 
2168
- /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (192) */
2160
+ /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (194) */
2169
2161
  interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
2170
2162
  readonly authorityIndex: u32;
2171
2163
  readonly slot: u64;
2172
2164
  }
2173
2165
 
2174
- /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (193) */
2166
+ /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (195) */
2175
2167
  interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
2176
2168
  readonly authorityIndex: u32;
2177
2169
  readonly slot: u64;
2178
2170
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
2179
2171
  }
2180
2172
 
2181
- /** @name SpConsensusBabeBabeEpochConfiguration (195) */
2173
+ /** @name SpConsensusBabeBabeEpochConfiguration (197) */
2182
2174
  interface SpConsensusBabeBabeEpochConfiguration extends Struct {
2183
2175
  readonly c: ITuple<[u64, u64]>;
2184
2176
  readonly allowedSlots: SpConsensusBabeAllowedSlots;
2185
2177
  }
2186
2178
 
2187
- /** @name PalletBabeCall (199) */
2179
+ /** @name PalletBabeCall (201) */
2188
2180
  interface PalletBabeCall extends Enum {
2189
2181
  readonly isReportEquivocation: boolean;
2190
2182
  readonly asReportEquivocation: {
@@ -2203,7 +2195,7 @@ declare module "@polkadot/types/lookup" {
2203
2195
  readonly type: "ReportEquivocation" | "ReportEquivocationUnsigned" | "PlanConfigChange";
2204
2196
  }
2205
2197
 
2206
- /** @name SpConsensusSlotsEquivocationProof (200) */
2198
+ /** @name SpConsensusSlotsEquivocationProof (202) */
2207
2199
  interface SpConsensusSlotsEquivocationProof extends Struct {
2208
2200
  readonly offender: SpConsensusBabeAppPublic;
2209
2201
  readonly slot: u64;
@@ -2211,7 +2203,7 @@ declare module "@polkadot/types/lookup" {
2211
2203
  readonly secondHeader: SpRuntimeHeader;
2212
2204
  }
2213
2205
 
2214
- /** @name SpRuntimeHeader (201) */
2206
+ /** @name SpRuntimeHeader (203) */
2215
2207
  interface SpRuntimeHeader extends Struct {
2216
2208
  readonly parentHash: H256;
2217
2209
  readonly number: Compact<u32>;
@@ -2220,14 +2212,14 @@ declare module "@polkadot/types/lookup" {
2220
2212
  readonly digest: SpRuntimeDigest;
2221
2213
  }
2222
2214
 
2223
- /** @name SpSessionMembershipProof (202) */
2215
+ /** @name SpSessionMembershipProof (204) */
2224
2216
  interface SpSessionMembershipProof extends Struct {
2225
2217
  readonly session: u32;
2226
2218
  readonly trieNodes: Vec<Bytes>;
2227
2219
  readonly validatorCount: u32;
2228
2220
  }
2229
2221
 
2230
- /** @name PalletBabeError (203) */
2222
+ /** @name PalletBabeError (205) */
2231
2223
  interface PalletBabeError extends Enum {
2232
2224
  readonly isInvalidEquivocationProof: boolean;
2233
2225
  readonly isInvalidKeyOwnershipProof: boolean;
@@ -2240,7 +2232,7 @@ declare module "@polkadot/types/lookup" {
2240
2232
  | "InvalidConfiguration";
2241
2233
  }
2242
2234
 
2243
- /** @name PalletTimestampCall (204) */
2235
+ /** @name PalletTimestampCall (206) */
2244
2236
  interface PalletTimestampCall extends Enum {
2245
2237
  readonly isSet: boolean;
2246
2238
  readonly asSet: {
@@ -2249,14 +2241,14 @@ declare module "@polkadot/types/lookup" {
2249
2241
  readonly type: "Set";
2250
2242
  }
2251
2243
 
2252
- /** @name PalletBalancesBalanceLock (206) */
2244
+ /** @name PalletBalancesBalanceLock (208) */
2253
2245
  interface PalletBalancesBalanceLock extends Struct {
2254
2246
  readonly id: U8aFixed;
2255
2247
  readonly amount: u128;
2256
2248
  readonly reasons: PalletBalancesReasons;
2257
2249
  }
2258
2250
 
2259
- /** @name PalletBalancesReasons (207) */
2251
+ /** @name PalletBalancesReasons (209) */
2260
2252
  interface PalletBalancesReasons extends Enum {
2261
2253
  readonly isFee: boolean;
2262
2254
  readonly isMisc: boolean;
@@ -2264,19 +2256,19 @@ declare module "@polkadot/types/lookup" {
2264
2256
  readonly type: "Fee" | "Misc" | "All";
2265
2257
  }
2266
2258
 
2267
- /** @name PalletBalancesReserveData (210) */
2259
+ /** @name PalletBalancesReserveData (212) */
2268
2260
  interface PalletBalancesReserveData extends Struct {
2269
2261
  readonly id: U8aFixed;
2270
2262
  readonly amount: u128;
2271
2263
  }
2272
2264
 
2273
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (213) */
2265
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (215) */
2274
2266
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2275
2267
  readonly id: ShSolochainEvmRuntimeRuntimeHoldReason;
2276
2268
  readonly amount: u128;
2277
2269
  }
2278
2270
 
2279
- /** @name ShSolochainEvmRuntimeRuntimeHoldReason (214) */
2271
+ /** @name ShSolochainEvmRuntimeRuntimeHoldReason (216) */
2280
2272
  interface ShSolochainEvmRuntimeRuntimeHoldReason extends Enum {
2281
2273
  readonly isProviders: boolean;
2282
2274
  readonly asProviders: PalletStorageProvidersHoldReason;
@@ -2287,36 +2279,36 @@ declare module "@polkadot/types/lookup" {
2287
2279
  readonly type: "Providers" | "FileSystem" | "PaymentStreams";
2288
2280
  }
2289
2281
 
2290
- /** @name PalletStorageProvidersHoldReason (215) */
2282
+ /** @name PalletStorageProvidersHoldReason (217) */
2291
2283
  interface PalletStorageProvidersHoldReason extends Enum {
2292
2284
  readonly isStorageProviderDeposit: boolean;
2293
2285
  readonly isBucketDeposit: boolean;
2294
2286
  readonly type: "StorageProviderDeposit" | "BucketDeposit";
2295
2287
  }
2296
2288
 
2297
- /** @name PalletFileSystemHoldReason (216) */
2289
+ /** @name PalletFileSystemHoldReason (218) */
2298
2290
  interface PalletFileSystemHoldReason extends Enum {
2299
2291
  readonly isStorageRequestCreationHold: boolean;
2300
2292
  readonly isFileDeletionRequestHold: boolean;
2301
2293
  readonly type: "StorageRequestCreationHold" | "FileDeletionRequestHold";
2302
2294
  }
2303
2295
 
2304
- /** @name PalletPaymentStreamsHoldReason (217) */
2296
+ /** @name PalletPaymentStreamsHoldReason (219) */
2305
2297
  interface PalletPaymentStreamsHoldReason extends Enum {
2306
2298
  readonly isPaymentStreamDeposit: boolean;
2307
2299
  readonly type: "PaymentStreamDeposit";
2308
2300
  }
2309
2301
 
2310
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (220) */
2302
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (222) */
2311
2303
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2312
2304
  readonly id: ShSolochainEvmRuntimeRuntimeFreezeReason;
2313
2305
  readonly amount: u128;
2314
2306
  }
2315
2307
 
2316
- /** @name ShSolochainEvmRuntimeRuntimeFreezeReason (221) */
2308
+ /** @name ShSolochainEvmRuntimeRuntimeFreezeReason (223) */
2317
2309
  type ShSolochainEvmRuntimeRuntimeFreezeReason = Null;
2318
2310
 
2319
- /** @name PalletBalancesCall (223) */
2311
+ /** @name PalletBalancesCall (225) */
2320
2312
  interface PalletBalancesCall extends Enum {
2321
2313
  readonly isTransferAllowDeath: boolean;
2322
2314
  readonly asTransferAllowDeath: {
@@ -2375,14 +2367,14 @@ declare module "@polkadot/types/lookup" {
2375
2367
  | "Burn";
2376
2368
  }
2377
2369
 
2378
- /** @name PalletBalancesAdjustmentDirection (225) */
2370
+ /** @name PalletBalancesAdjustmentDirection (227) */
2379
2371
  interface PalletBalancesAdjustmentDirection extends Enum {
2380
2372
  readonly isIncrease: boolean;
2381
2373
  readonly isDecrease: boolean;
2382
2374
  readonly type: "Increase" | "Decrease";
2383
2375
  }
2384
2376
 
2385
- /** @name PalletBalancesError (226) */
2377
+ /** @name PalletBalancesError (228) */
2386
2378
  interface PalletBalancesError extends Enum {
2387
2379
  readonly isVestingBalance: boolean;
2388
2380
  readonly isLiquidityRestrictions: boolean;
@@ -2411,22 +2403,22 @@ declare module "@polkadot/types/lookup" {
2411
2403
  | "DeltaZero";
2412
2404
  }
2413
2405
 
2414
- /** @name SpStakingOffenceOffenceDetails (227) */
2406
+ /** @name SpStakingOffenceOffenceDetails (229) */
2415
2407
  interface SpStakingOffenceOffenceDetails extends Struct {
2416
2408
  readonly offender: ITuple<[AccountId20, Null]>;
2417
2409
  readonly reporters: Vec<AccountId20>;
2418
2410
  }
2419
2411
 
2420
- /** @name ShSolochainEvmRuntimeSessionKeys (233) */
2412
+ /** @name ShSolochainEvmRuntimeSessionKeys (235) */
2421
2413
  interface ShSolochainEvmRuntimeSessionKeys extends Struct {
2422
2414
  readonly babe: SpConsensusBabeAppPublic;
2423
2415
  readonly grandpa: SpConsensusGrandpaAppPublic;
2424
2416
  }
2425
2417
 
2426
- /** @name SpCoreCryptoKeyTypeId (235) */
2418
+ /** @name SpCoreCryptoKeyTypeId (237) */
2427
2419
  interface SpCoreCryptoKeyTypeId extends U8aFixed {}
2428
2420
 
2429
- /** @name PalletSessionCall (236) */
2421
+ /** @name PalletSessionCall (238) */
2430
2422
  interface PalletSessionCall extends Enum {
2431
2423
  readonly isSetKeys: boolean;
2432
2424
  readonly asSetKeys: {
@@ -2437,7 +2429,7 @@ declare module "@polkadot/types/lookup" {
2437
2429
  readonly type: "SetKeys" | "PurgeKeys";
2438
2430
  }
2439
2431
 
2440
- /** @name PalletSessionError (237) */
2432
+ /** @name PalletSessionError (239) */
2441
2433
  interface PalletSessionError extends Enum {
2442
2434
  readonly isInvalidProof: boolean;
2443
2435
  readonly isNoAssociatedValidatorId: boolean;
@@ -2452,7 +2444,7 @@ declare module "@polkadot/types/lookup" {
2452
2444
  | "NoAccount";
2453
2445
  }
2454
2446
 
2455
- /** @name PalletGrandpaStoredState (238) */
2447
+ /** @name PalletGrandpaStoredState (240) */
2456
2448
  interface PalletGrandpaStoredState extends Enum {
2457
2449
  readonly isLive: boolean;
2458
2450
  readonly isPendingPause: boolean;
@@ -2469,7 +2461,7 @@ declare module "@polkadot/types/lookup" {
2469
2461
  readonly type: "Live" | "PendingPause" | "Paused" | "PendingResume";
2470
2462
  }
2471
2463
 
2472
- /** @name PalletGrandpaStoredPendingChange (239) */
2464
+ /** @name PalletGrandpaStoredPendingChange (241) */
2473
2465
  interface PalletGrandpaStoredPendingChange extends Struct {
2474
2466
  readonly scheduledAt: u32;
2475
2467
  readonly delay: u32;
@@ -2477,7 +2469,7 @@ declare module "@polkadot/types/lookup" {
2477
2469
  readonly forced: Option<u32>;
2478
2470
  }
2479
2471
 
2480
- /** @name PalletGrandpaCall (241) */
2472
+ /** @name PalletGrandpaCall (243) */
2481
2473
  interface PalletGrandpaCall extends Enum {
2482
2474
  readonly isReportEquivocation: boolean;
2483
2475
  readonly asReportEquivocation: {
@@ -2497,13 +2489,13 @@ declare module "@polkadot/types/lookup" {
2497
2489
  readonly type: "ReportEquivocation" | "ReportEquivocationUnsigned" | "NoteStalled";
2498
2490
  }
2499
2491
 
2500
- /** @name SpConsensusGrandpaEquivocationProof (242) */
2492
+ /** @name SpConsensusGrandpaEquivocationProof (244) */
2501
2493
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2502
2494
  readonly setId: u64;
2503
2495
  readonly equivocation: SpConsensusGrandpaEquivocation;
2504
2496
  }
2505
2497
 
2506
- /** @name SpConsensusGrandpaEquivocation (243) */
2498
+ /** @name SpConsensusGrandpaEquivocation (245) */
2507
2499
  interface SpConsensusGrandpaEquivocation extends Enum {
2508
2500
  readonly isPrevote: boolean;
2509
2501
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2512,7 +2504,7 @@ declare module "@polkadot/types/lookup" {
2512
2504
  readonly type: "Prevote" | "Precommit";
2513
2505
  }
2514
2506
 
2515
- /** @name FinalityGrandpaEquivocationPrevote (244) */
2507
+ /** @name FinalityGrandpaEquivocationPrevote (246) */
2516
2508
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2517
2509
  readonly roundNumber: u64;
2518
2510
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2520,16 +2512,16 @@ declare module "@polkadot/types/lookup" {
2520
2512
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2521
2513
  }
2522
2514
 
2523
- /** @name FinalityGrandpaPrevote (245) */
2515
+ /** @name FinalityGrandpaPrevote (247) */
2524
2516
  interface FinalityGrandpaPrevote extends Struct {
2525
2517
  readonly targetHash: H256;
2526
2518
  readonly targetNumber: u32;
2527
2519
  }
2528
2520
 
2529
- /** @name SpConsensusGrandpaAppSignature (246) */
2521
+ /** @name SpConsensusGrandpaAppSignature (248) */
2530
2522
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2531
2523
 
2532
- /** @name FinalityGrandpaEquivocationPrecommit (248) */
2524
+ /** @name FinalityGrandpaEquivocationPrecommit (250) */
2533
2525
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2534
2526
  readonly roundNumber: u64;
2535
2527
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2537,13 +2529,13 @@ declare module "@polkadot/types/lookup" {
2537
2529
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2538
2530
  }
2539
2531
 
2540
- /** @name FinalityGrandpaPrecommit (249) */
2532
+ /** @name FinalityGrandpaPrecommit (251) */
2541
2533
  interface FinalityGrandpaPrecommit extends Struct {
2542
2534
  readonly targetHash: H256;
2543
2535
  readonly targetNumber: u32;
2544
2536
  }
2545
2537
 
2546
- /** @name PalletGrandpaError (251) */
2538
+ /** @name PalletGrandpaError (253) */
2547
2539
  interface PalletGrandpaError extends Enum {
2548
2540
  readonly isPauseFailed: boolean;
2549
2541
  readonly isResumeFailed: boolean;
@@ -2562,14 +2554,14 @@ declare module "@polkadot/types/lookup" {
2562
2554
  | "DuplicateOffenceReport";
2563
2555
  }
2564
2556
 
2565
- /** @name PalletTransactionPaymentReleases (253) */
2557
+ /** @name PalletTransactionPaymentReleases (255) */
2566
2558
  interface PalletTransactionPaymentReleases extends Enum {
2567
2559
  readonly isV1Ancient: boolean;
2568
2560
  readonly isV2: boolean;
2569
2561
  readonly type: "V1Ancient" | "V2";
2570
2562
  }
2571
2563
 
2572
- /** @name PalletParametersCall (254) */
2564
+ /** @name PalletParametersCall (256) */
2573
2565
  interface PalletParametersCall extends Enum {
2574
2566
  readonly isSetParameter: boolean;
2575
2567
  readonly asSetParameter: {
@@ -2578,14 +2570,14 @@ declare module "@polkadot/types/lookup" {
2578
2570
  readonly type: "SetParameter";
2579
2571
  }
2580
2572
 
2581
- /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters (255) */
2573
+ /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters (257) */
2582
2574
  interface ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters extends Enum {
2583
2575
  readonly isRuntimeConfig: boolean;
2584
2576
  readonly asRuntimeConfig: ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
2585
2577
  readonly type: "RuntimeConfig";
2586
2578
  }
2587
2579
 
2588
- /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (256) */
2580
+ /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (258) */
2589
2581
  interface ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters
2590
2582
  extends Enum {
2591
2583
  readonly isSlashAmountPerMaxFileSize: boolean;
@@ -2825,7 +2817,7 @@ declare module "@polkadot/types/lookup" {
2825
2817
  | "UpfrontTicksToPay";
2826
2818
  }
2827
2819
 
2828
- /** @name PalletSudoCall (259) */
2820
+ /** @name PalletSudoCall (261) */
2829
2821
  interface PalletSudoCall extends Enum {
2830
2822
  readonly isSudo: boolean;
2831
2823
  readonly asSudo: {
@@ -2849,7 +2841,7 @@ declare module "@polkadot/types/lookup" {
2849
2841
  readonly type: "Sudo" | "SudoUncheckedWeight" | "SetKey" | "SudoAs" | "RemoveKey";
2850
2842
  }
2851
2843
 
2852
- /** @name PalletEthereumCall (261) */
2844
+ /** @name PalletEthereumCall (263) */
2853
2845
  interface PalletEthereumCall extends Enum {
2854
2846
  readonly isTransact: boolean;
2855
2847
  readonly asTransact: {
@@ -2858,7 +2850,7 @@ declare module "@polkadot/types/lookup" {
2858
2850
  readonly type: "Transact";
2859
2851
  }
2860
2852
 
2861
- /** @name EthereumTransactionTransactionV2 (262) */
2853
+ /** @name EthereumTransactionTransactionV2 (264) */
2862
2854
  interface EthereumTransactionTransactionV2 extends Enum {
2863
2855
  readonly isLegacy: boolean;
2864
2856
  readonly asLegacy: EthereumTransactionLegacyLegacyTransaction;
@@ -2869,7 +2861,7 @@ declare module "@polkadot/types/lookup" {
2869
2861
  readonly type: "Legacy" | "Eip2930" | "Eip1559";
2870
2862
  }
2871
2863
 
2872
- /** @name EthereumTransactionLegacyLegacyTransaction (263) */
2864
+ /** @name EthereumTransactionLegacyLegacyTransaction (265) */
2873
2865
  interface EthereumTransactionLegacyLegacyTransaction extends Struct {
2874
2866
  readonly nonce: U256;
2875
2867
  readonly gasPrice: U256;
@@ -2880,7 +2872,7 @@ declare module "@polkadot/types/lookup" {
2880
2872
  readonly signature: EthereumTransactionLegacyTransactionSignature;
2881
2873
  }
2882
2874
 
2883
- /** @name EthereumTransactionLegacyTransactionAction (266) */
2875
+ /** @name EthereumTransactionLegacyTransactionAction (268) */
2884
2876
  interface EthereumTransactionLegacyTransactionAction extends Enum {
2885
2877
  readonly isCall: boolean;
2886
2878
  readonly asCall: H160;
@@ -2888,14 +2880,14 @@ declare module "@polkadot/types/lookup" {
2888
2880
  readonly type: "Call" | "Create";
2889
2881
  }
2890
2882
 
2891
- /** @name EthereumTransactionLegacyTransactionSignature (267) */
2883
+ /** @name EthereumTransactionLegacyTransactionSignature (269) */
2892
2884
  interface EthereumTransactionLegacyTransactionSignature extends Struct {
2893
2885
  readonly v: u64;
2894
2886
  readonly r: H256;
2895
2887
  readonly s: H256;
2896
2888
  }
2897
2889
 
2898
- /** @name EthereumTransactionEip2930Eip2930Transaction (269) */
2890
+ /** @name EthereumTransactionEip2930Eip2930Transaction (271) */
2899
2891
  interface EthereumTransactionEip2930Eip2930Transaction extends Struct {
2900
2892
  readonly chainId: u64;
2901
2893
  readonly nonce: U256;
@@ -2910,13 +2902,13 @@ declare module "@polkadot/types/lookup" {
2910
2902
  readonly s: H256;
2911
2903
  }
2912
2904
 
2913
- /** @name EthereumTransactionEip2930AccessListItem (271) */
2905
+ /** @name EthereumTransactionEip2930AccessListItem (273) */
2914
2906
  interface EthereumTransactionEip2930AccessListItem extends Struct {
2915
2907
  readonly address: H160;
2916
2908
  readonly storageKeys: Vec<H256>;
2917
2909
  }
2918
2910
 
2919
- /** @name EthereumTransactionEip1559Eip1559Transaction (272) */
2911
+ /** @name EthereumTransactionEip1559Eip1559Transaction (274) */
2920
2912
  interface EthereumTransactionEip1559Eip1559Transaction extends Struct {
2921
2913
  readonly chainId: u64;
2922
2914
  readonly nonce: U256;
@@ -2932,7 +2924,7 @@ declare module "@polkadot/types/lookup" {
2932
2924
  readonly s: H256;
2933
2925
  }
2934
2926
 
2935
- /** @name PalletEvmCall (273) */
2927
+ /** @name PalletEvmCall (275) */
2936
2928
  interface PalletEvmCall extends Enum {
2937
2929
  readonly isWithdraw: boolean;
2938
2930
  readonly asWithdraw: {
@@ -2977,7 +2969,7 @@ declare module "@polkadot/types/lookup" {
2977
2969
  readonly type: "Withdraw" | "Call" | "Create" | "Create2";
2978
2970
  }
2979
2971
 
2980
- /** @name PalletStorageProvidersCall (277) */
2972
+ /** @name PalletStorageProvidersCall (279) */
2981
2973
  interface PalletStorageProvidersCall extends Enum {
2982
2974
  readonly isRequestMspSignUp: boolean;
2983
2975
  readonly asRequestMspSignUp: {
@@ -3076,7 +3068,7 @@ declare module "@polkadot/types/lookup" {
3076
3068
  | "StopAllCycles";
3077
3069
  }
3078
3070
 
3079
- /** @name PalletFileSystemCall (278) */
3071
+ /** @name PalletFileSystemCall (280) */
3080
3072
  interface PalletFileSystemCall extends Enum {
3081
3073
  readonly isCreateBucket: boolean;
3082
3074
  readonly asCreateBucket: {
@@ -3179,21 +3171,15 @@ declare module "@polkadot/types/lookup" {
3179
3171
  readonly size_: u64;
3180
3172
  readonly fingerprint: H256;
3181
3173
  } & Struct;
3182
- readonly isDeleteFile: boolean;
3183
- readonly asDeleteFile: {
3184
- readonly fileOwner: AccountId20;
3185
- readonly signedIntention: PalletFileSystemFileOperationIntention;
3186
- readonly signature: FpAccountEthereumSignature;
3187
- readonly bucketId: H256;
3188
- readonly location: Bytes;
3189
- readonly size_: u64;
3190
- readonly fingerprint: H256;
3174
+ readonly isDeleteFiles: boolean;
3175
+ readonly asDeleteFiles: {
3176
+ readonly fileDeletions: Vec<PalletFileSystemFileDeletionRequest>;
3191
3177
  readonly bspId: Option<H256>;
3192
3178
  readonly forestProof: SpTrieStorageProofCompactProof;
3193
3179
  } & Struct;
3194
- readonly isDeleteFileForIncompleteStorageRequest: boolean;
3195
- readonly asDeleteFileForIncompleteStorageRequest: {
3196
- readonly fileKey: H256;
3180
+ readonly isDeleteFilesForIncompleteStorageRequest: boolean;
3181
+ readonly asDeleteFilesForIncompleteStorageRequest: {
3182
+ readonly fileKeys: Vec<H256>;
3197
3183
  readonly bspId: Option<H256>;
3198
3184
  readonly forestProof: SpTrieStorageProofCompactProof;
3199
3185
  } & Struct;
@@ -3215,18 +3201,18 @@ declare module "@polkadot/types/lookup" {
3215
3201
  | "StopStoringForInsolventUser"
3216
3202
  | "MspStopStoringBucketForInsolventUser"
3217
3203
  | "RequestDeleteFile"
3218
- | "DeleteFile"
3219
- | "DeleteFileForIncompleteStorageRequest";
3204
+ | "DeleteFiles"
3205
+ | "DeleteFilesForIncompleteStorageRequest";
3220
3206
  }
3221
3207
 
3222
- /** @name PalletFileSystemBucketMoveRequestResponse (279) */
3208
+ /** @name PalletFileSystemBucketMoveRequestResponse (281) */
3223
3209
  interface PalletFileSystemBucketMoveRequestResponse extends Enum {
3224
3210
  readonly isAccepted: boolean;
3225
3211
  readonly isRejected: boolean;
3226
3212
  readonly type: "Accepted" | "Rejected";
3227
3213
  }
3228
3214
 
3229
- /** @name PalletFileSystemReplicationTarget (280) */
3215
+ /** @name PalletFileSystemReplicationTarget (282) */
3230
3216
  interface PalletFileSystemReplicationTarget extends Enum {
3231
3217
  readonly isBasic: boolean;
3232
3218
  readonly isStandard: boolean;
@@ -3244,32 +3230,43 @@ declare module "@polkadot/types/lookup" {
3244
3230
  | "Custom";
3245
3231
  }
3246
3232
 
3247
- /** @name PalletFileSystemStorageRequestMspBucketResponse (282) */
3233
+ /** @name PalletFileSystemStorageRequestMspBucketResponse (284) */
3248
3234
  interface PalletFileSystemStorageRequestMspBucketResponse extends Struct {
3249
3235
  readonly bucketId: H256;
3250
3236
  readonly accept: Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>;
3251
3237
  readonly reject: Vec<PalletFileSystemRejectedStorageRequest>;
3252
3238
  }
3253
3239
 
3254
- /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (284) */
3240
+ /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (286) */
3255
3241
  interface PalletFileSystemStorageRequestMspAcceptedFileKeys extends Struct {
3256
3242
  readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
3257
3243
  readonly forestProof: SpTrieStorageProofCompactProof;
3258
3244
  }
3259
3245
 
3260
- /** @name PalletFileSystemFileKeyWithProof (286) */
3246
+ /** @name PalletFileSystemFileKeyWithProof (288) */
3261
3247
  interface PalletFileSystemFileKeyWithProof extends Struct {
3262
3248
  readonly fileKey: H256;
3263
3249
  readonly proof: ShpFileKeyVerifierFileKeyProof;
3264
3250
  }
3265
3251
 
3266
- /** @name PalletFileSystemRejectedStorageRequest (288) */
3252
+ /** @name PalletFileSystemRejectedStorageRequest (290) */
3267
3253
  interface PalletFileSystemRejectedStorageRequest extends Struct {
3268
3254
  readonly fileKey: H256;
3269
3255
  readonly reason: PalletFileSystemRejectedStorageRequestReason;
3270
3256
  }
3271
3257
 
3272
- /** @name PalletProofsDealerCall (290) */
3258
+ /** @name PalletFileSystemFileDeletionRequest (293) */
3259
+ interface PalletFileSystemFileDeletionRequest extends Struct {
3260
+ readonly fileOwner: AccountId20;
3261
+ readonly signedIntention: PalletFileSystemFileOperationIntention;
3262
+ readonly signature: FpAccountEthereumSignature;
3263
+ readonly bucketId: H256;
3264
+ readonly location: Bytes;
3265
+ readonly size_: u64;
3266
+ readonly fingerprint: H256;
3267
+ }
3268
+
3269
+ /** @name PalletProofsDealerCall (295) */
3273
3270
  interface PalletProofsDealerCall extends Enum {
3274
3271
  readonly isChallenge: boolean;
3275
3272
  readonly asChallenge: {
@@ -3301,13 +3298,13 @@ declare module "@polkadot/types/lookup" {
3301
3298
  | "PriorityChallenge";
3302
3299
  }
3303
3300
 
3304
- /** @name PalletRandomnessCall (291) */
3301
+ /** @name PalletRandomnessCall (296) */
3305
3302
  interface PalletRandomnessCall extends Enum {
3306
3303
  readonly isSetBabeRandomness: boolean;
3307
3304
  readonly type: "SetBabeRandomness";
3308
3305
  }
3309
3306
 
3310
- /** @name PalletPaymentStreamsCall (292) */
3307
+ /** @name PalletPaymentStreamsCall (297) */
3311
3308
  interface PalletPaymentStreamsCall extends Enum {
3312
3309
  readonly isCreateFixedRatePaymentStream: boolean;
3313
3310
  readonly asCreateFixedRatePaymentStream: {
@@ -3369,7 +3366,7 @@ declare module "@polkadot/types/lookup" {
3369
3366
  | "ClearInsolventFlag";
3370
3367
  }
3371
3368
 
3372
- /** @name PalletBucketNftsCall (293) */
3369
+ /** @name PalletBucketNftsCall (298) */
3373
3370
  interface PalletBucketNftsCall extends Enum {
3374
3371
  readonly isShareAccess: boolean;
3375
3372
  readonly asShareAccess: {
@@ -3387,7 +3384,7 @@ declare module "@polkadot/types/lookup" {
3387
3384
  readonly type: "ShareAccess" | "UpdateReadAccess";
3388
3385
  }
3389
3386
 
3390
- /** @name PalletNftsCall (295) */
3387
+ /** @name PalletNftsCall (300) */
3391
3388
  interface PalletNftsCall extends Enum {
3392
3389
  readonly isCreate: boolean;
3393
3390
  readonly asCreate: {
@@ -3660,14 +3657,14 @@ declare module "@polkadot/types/lookup" {
3660
3657
  | "SetAttributesPreSigned";
3661
3658
  }
3662
3659
 
3663
- /** @name PalletNftsCollectionConfig (296) */
3660
+ /** @name PalletNftsCollectionConfig (301) */
3664
3661
  interface PalletNftsCollectionConfig extends Struct {
3665
3662
  readonly settings: u64;
3666
3663
  readonly maxSupply: Option<u32>;
3667
3664
  readonly mintSettings: PalletNftsMintSettings;
3668
3665
  }
3669
3666
 
3670
- /** @name PalletNftsCollectionSetting (298) */
3667
+ /** @name PalletNftsCollectionSetting (303) */
3671
3668
  interface PalletNftsCollectionSetting extends Enum {
3672
3669
  readonly isTransferableItems: boolean;
3673
3670
  readonly isUnlockedMetadata: boolean;
@@ -3682,7 +3679,7 @@ declare module "@polkadot/types/lookup" {
3682
3679
  | "DepositRequired";
3683
3680
  }
3684
3681
 
3685
- /** @name PalletNftsMintSettings (299) */
3682
+ /** @name PalletNftsMintSettings (304) */
3686
3683
  interface PalletNftsMintSettings extends Struct {
3687
3684
  readonly mintType: PalletNftsMintType;
3688
3685
  readonly price: Option<u128>;
@@ -3691,7 +3688,7 @@ declare module "@polkadot/types/lookup" {
3691
3688
  readonly defaultItemSettings: u64;
3692
3689
  }
3693
3690
 
3694
- /** @name PalletNftsMintType (300) */
3691
+ /** @name PalletNftsMintType (305) */
3695
3692
  interface PalletNftsMintType extends Enum {
3696
3693
  readonly isIssuer: boolean;
3697
3694
  readonly isPublic: boolean;
@@ -3700,7 +3697,7 @@ declare module "@polkadot/types/lookup" {
3700
3697
  readonly type: "Issuer" | "Public" | "HolderOf";
3701
3698
  }
3702
3699
 
3703
- /** @name PalletNftsItemSetting (302) */
3700
+ /** @name PalletNftsItemSetting (307) */
3704
3701
  interface PalletNftsItemSetting extends Enum {
3705
3702
  readonly isTransferable: boolean;
3706
3703
  readonly isUnlockedMetadata: boolean;
@@ -3708,30 +3705,30 @@ declare module "@polkadot/types/lookup" {
3708
3705
  readonly type: "Transferable" | "UnlockedMetadata" | "UnlockedAttributes";
3709
3706
  }
3710
3707
 
3711
- /** @name PalletNftsDestroyWitness (303) */
3708
+ /** @name PalletNftsDestroyWitness (308) */
3712
3709
  interface PalletNftsDestroyWitness extends Struct {
3713
3710
  readonly itemMetadatas: Compact<u32>;
3714
3711
  readonly itemConfigs: Compact<u32>;
3715
3712
  readonly attributes: Compact<u32>;
3716
3713
  }
3717
3714
 
3718
- /** @name PalletNftsMintWitness (305) */
3715
+ /** @name PalletNftsMintWitness (310) */
3719
3716
  interface PalletNftsMintWitness extends Struct {
3720
3717
  readonly ownedItem: Option<u32>;
3721
3718
  readonly mintPrice: Option<u128>;
3722
3719
  }
3723
3720
 
3724
- /** @name PalletNftsItemConfig (306) */
3721
+ /** @name PalletNftsItemConfig (311) */
3725
3722
  interface PalletNftsItemConfig extends Struct {
3726
3723
  readonly settings: u64;
3727
3724
  }
3728
3725
 
3729
- /** @name PalletNftsCancelAttributesApprovalWitness (307) */
3726
+ /** @name PalletNftsCancelAttributesApprovalWitness (312) */
3730
3727
  interface PalletNftsCancelAttributesApprovalWitness extends Struct {
3731
3728
  readonly accountAttributes: u32;
3732
3729
  }
3733
3730
 
3734
- /** @name PalletNftsItemTip (309) */
3731
+ /** @name PalletNftsItemTip (314) */
3735
3732
  interface PalletNftsItemTip extends Struct {
3736
3733
  readonly collection: u32;
3737
3734
  readonly item: u32;
@@ -3739,7 +3736,7 @@ declare module "@polkadot/types/lookup" {
3739
3736
  readonly amount: u128;
3740
3737
  }
3741
3738
 
3742
- /** @name PalletNftsPreSignedMint (311) */
3739
+ /** @name PalletNftsPreSignedMint (316) */
3743
3740
  interface PalletNftsPreSignedMint extends Struct {
3744
3741
  readonly collection: u32;
3745
3742
  readonly item: u32;
@@ -3750,7 +3747,7 @@ declare module "@polkadot/types/lookup" {
3750
3747
  readonly mintPrice: Option<u128>;
3751
3748
  }
3752
3749
 
3753
- /** @name PalletNftsPreSignedAttributes (312) */
3750
+ /** @name PalletNftsPreSignedAttributes (317) */
3754
3751
  interface PalletNftsPreSignedAttributes extends Struct {
3755
3752
  readonly collection: u32;
3756
3753
  readonly item: u32;
@@ -3759,13 +3756,13 @@ declare module "@polkadot/types/lookup" {
3759
3756
  readonly deadline: u32;
3760
3757
  }
3761
3758
 
3762
- /** @name PalletSudoError (313) */
3759
+ /** @name PalletSudoError (318) */
3763
3760
  interface PalletSudoError extends Enum {
3764
3761
  readonly isRequireSudo: boolean;
3765
3762
  readonly type: "RequireSudo";
3766
3763
  }
3767
3764
 
3768
- /** @name FpRpcTransactionStatus (315) */
3765
+ /** @name FpRpcTransactionStatus (320) */
3769
3766
  interface FpRpcTransactionStatus extends Struct {
3770
3767
  readonly transactionHash: H256;
3771
3768
  readonly transactionIndex: u32;
@@ -3776,10 +3773,10 @@ declare module "@polkadot/types/lookup" {
3776
3773
  readonly logsBloom: EthbloomBloom;
3777
3774
  }
3778
3775
 
3779
- /** @name EthbloomBloom (318) */
3776
+ /** @name EthbloomBloom (323) */
3780
3777
  interface EthbloomBloom extends U8aFixed {}
3781
3778
 
3782
- /** @name EthereumReceiptReceiptV3 (320) */
3779
+ /** @name EthereumReceiptReceiptV3 (325) */
3783
3780
  interface EthereumReceiptReceiptV3 extends Enum {
3784
3781
  readonly isLegacy: boolean;
3785
3782
  readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3790,7 +3787,7 @@ declare module "@polkadot/types/lookup" {
3790
3787
  readonly type: "Legacy" | "Eip2930" | "Eip1559";
3791
3788
  }
3792
3789
 
3793
- /** @name EthereumReceiptEip658ReceiptData (321) */
3790
+ /** @name EthereumReceiptEip658ReceiptData (326) */
3794
3791
  interface EthereumReceiptEip658ReceiptData extends Struct {
3795
3792
  readonly statusCode: u8;
3796
3793
  readonly usedGas: U256;
@@ -3798,14 +3795,14 @@ declare module "@polkadot/types/lookup" {
3798
3795
  readonly logs: Vec<EthereumLog>;
3799
3796
  }
3800
3797
 
3801
- /** @name EthereumBlock (322) */
3798
+ /** @name EthereumBlock (327) */
3802
3799
  interface EthereumBlock extends Struct {
3803
3800
  readonly header: EthereumHeader;
3804
3801
  readonly transactions: Vec<EthereumTransactionTransactionV2>;
3805
3802
  readonly ommers: Vec<EthereumHeader>;
3806
3803
  }
3807
3804
 
3808
- /** @name EthereumHeader (323) */
3805
+ /** @name EthereumHeader (328) */
3809
3806
  interface EthereumHeader extends Struct {
3810
3807
  readonly parentHash: H256;
3811
3808
  readonly ommersHash: H256;
@@ -3824,23 +3821,23 @@ declare module "@polkadot/types/lookup" {
3824
3821
  readonly nonce: EthereumTypesHashH64;
3825
3822
  }
3826
3823
 
3827
- /** @name EthereumTypesHashH64 (324) */
3824
+ /** @name EthereumTypesHashH64 (329) */
3828
3825
  interface EthereumTypesHashH64 extends U8aFixed {}
3829
3826
 
3830
- /** @name PalletEthereumError (329) */
3827
+ /** @name PalletEthereumError (334) */
3831
3828
  interface PalletEthereumError extends Enum {
3832
3829
  readonly isInvalidSignature: boolean;
3833
3830
  readonly isPreLogExists: boolean;
3834
3831
  readonly type: "InvalidSignature" | "PreLogExists";
3835
3832
  }
3836
3833
 
3837
- /** @name PalletEvmCodeMetadata (330) */
3834
+ /** @name PalletEvmCodeMetadata (335) */
3838
3835
  interface PalletEvmCodeMetadata extends Struct {
3839
3836
  readonly size_: u64;
3840
3837
  readonly hash_: H256;
3841
3838
  }
3842
3839
 
3843
- /** @name PalletEvmError (332) */
3840
+ /** @name PalletEvmError (337) */
3844
3841
  interface PalletEvmError extends Enum {
3845
3842
  readonly isBalanceLow: boolean;
3846
3843
  readonly isFeeOverflow: boolean;
@@ -3871,13 +3868,13 @@ declare module "@polkadot/types/lookup" {
3871
3868
  | "Undefined";
3872
3869
  }
3873
3870
 
3874
- /** @name PalletStorageProvidersSignUpRequest (333) */
3871
+ /** @name PalletStorageProvidersSignUpRequest (338) */
3875
3872
  interface PalletStorageProvidersSignUpRequest extends Struct {
3876
3873
  readonly spSignUpRequest: PalletStorageProvidersSignUpRequestSpParams;
3877
3874
  readonly at: u32;
3878
3875
  }
3879
3876
 
3880
- /** @name PalletStorageProvidersSignUpRequestSpParams (334) */
3877
+ /** @name PalletStorageProvidersSignUpRequestSpParams (339) */
3881
3878
  interface PalletStorageProvidersSignUpRequestSpParams extends Enum {
3882
3879
  readonly isBackupStorageProvider: boolean;
3883
3880
  readonly asBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
@@ -3886,7 +3883,7 @@ declare module "@polkadot/types/lookup" {
3886
3883
  readonly type: "BackupStorageProvider" | "MainStorageProvider";
3887
3884
  }
3888
3885
 
3889
- /** @name PalletStorageProvidersBackupStorageProvider (335) */
3886
+ /** @name PalletStorageProvidersBackupStorageProvider (340) */
3890
3887
  interface PalletStorageProvidersBackupStorageProvider extends Struct {
3891
3888
  readonly capacity: u64;
3892
3889
  readonly capacityUsed: u64;
@@ -3899,13 +3896,13 @@ declare module "@polkadot/types/lookup" {
3899
3896
  readonly signUpBlock: u32;
3900
3897
  }
3901
3898
 
3902
- /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (336) */
3899
+ /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (341) */
3903
3900
  interface PalletStorageProvidersMainStorageProviderSignUpRequest extends Struct {
3904
3901
  readonly mspInfo: PalletStorageProvidersMainStorageProvider;
3905
3902
  readonly valueProp: PalletStorageProvidersValueProposition;
3906
3903
  }
3907
3904
 
3908
- /** @name PalletStorageProvidersMainStorageProvider (337) */
3905
+ /** @name PalletStorageProvidersMainStorageProvider (342) */
3909
3906
  interface PalletStorageProvidersMainStorageProvider extends Struct {
3910
3907
  readonly capacity: u64;
3911
3908
  readonly capacityUsed: u64;
@@ -3918,7 +3915,7 @@ declare module "@polkadot/types/lookup" {
3918
3915
  readonly signUpBlock: u32;
3919
3916
  }
3920
3917
 
3921
- /** @name PalletStorageProvidersBucket (338) */
3918
+ /** @name PalletStorageProvidersBucket (343) */
3922
3919
  interface PalletStorageProvidersBucket extends Struct {
3923
3920
  readonly root: H256;
3924
3921
  readonly userId: AccountId20;
@@ -3929,7 +3926,7 @@ declare module "@polkadot/types/lookup" {
3929
3926
  readonly valuePropId: H256;
3930
3927
  }
3931
3928
 
3932
- /** @name PalletStorageProvidersError (342) */
3929
+ /** @name PalletStorageProvidersError (347) */
3933
3930
  interface PalletStorageProvidersError extends Enum {
3934
3931
  readonly isAlreadyRegistered: boolean;
3935
3932
  readonly isSignUpNotRequested: boolean;
@@ -4038,7 +4035,7 @@ declare module "@polkadot/types/lookup" {
4038
4035
  | "PaymentStreamNotFound";
4039
4036
  }
4040
4037
 
4041
- /** @name PalletFileSystemStorageRequestMetadata (343) */
4038
+ /** @name PalletFileSystemStorageRequestMetadata (348) */
4042
4039
  interface PalletFileSystemStorageRequestMetadata extends Struct {
4043
4040
  readonly requestedAt: u32;
4044
4041
  readonly expiresAt: u32;
@@ -4055,12 +4052,12 @@ declare module "@polkadot/types/lookup" {
4055
4052
  readonly depositPaid: u128;
4056
4053
  }
4057
4054
 
4058
- /** @name PalletFileSystemStorageRequestBspsMetadata (346) */
4055
+ /** @name PalletFileSystemStorageRequestBspsMetadata (351) */
4059
4056
  interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
4060
4057
  readonly confirmed: bool;
4061
4058
  }
4062
4059
 
4063
- /** @name PalletFileSystemPendingFileDeletionRequest (349) */
4060
+ /** @name PalletFileSystemPendingFileDeletionRequest (353) */
4064
4061
  interface PalletFileSystemPendingFileDeletionRequest extends Struct {
4065
4062
  readonly user: AccountId20;
4066
4063
  readonly fileKey: H256;
@@ -4070,21 +4067,21 @@ declare module "@polkadot/types/lookup" {
4070
4067
  readonly queuePriorityChallenge: bool;
4071
4068
  }
4072
4069
 
4073
- /** @name PalletFileSystemPendingStopStoringRequest (351) */
4070
+ /** @name PalletFileSystemPendingStopStoringRequest (355) */
4074
4071
  interface PalletFileSystemPendingStopStoringRequest extends Struct {
4075
4072
  readonly tickWhenRequested: u32;
4076
4073
  readonly fileOwner: AccountId20;
4077
4074
  readonly fileSize: u64;
4078
4075
  }
4079
4076
 
4080
- /** @name PalletFileSystemMoveBucketRequestMetadata (352) */
4077
+ /** @name PalletFileSystemMoveBucketRequestMetadata (356) */
4081
4078
  interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
4082
4079
  readonly requester: AccountId20;
4083
4080
  readonly newMspId: H256;
4084
4081
  readonly newValuePropId: H256;
4085
4082
  }
4086
4083
 
4087
- /** @name PalletFileSystemIncompleteStorageRequestMetadata (353) */
4084
+ /** @name PalletFileSystemIncompleteStorageRequestMetadata (357) */
4088
4085
  interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
4089
4086
  readonly owner: AccountId20;
4090
4087
  readonly bucketId: H256;
@@ -4095,7 +4092,7 @@ declare module "@polkadot/types/lookup" {
4095
4092
  readonly pendingBucketRemoval: bool;
4096
4093
  }
4097
4094
 
4098
- /** @name PalletFileSystemError (355) */
4095
+ /** @name PalletFileSystemError (359) */
4099
4096
  interface PalletFileSystemError extends Enum {
4100
4097
  readonly isStorageRequestAlreadyRegistered: boolean;
4101
4098
  readonly isStorageRequestNotFound: boolean;
@@ -4139,6 +4136,12 @@ declare module "@polkadot/types/lookup" {
4139
4136
  readonly isThresholdBelowAsymptote: boolean;
4140
4137
  readonly isNotFileOwner: boolean;
4141
4138
  readonly isFileKeyAlreadyPendingDeletion: boolean;
4139
+ readonly isBatchFileDeletionMustContainSingleBucket: boolean;
4140
+ readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
4141
+ readonly isNoFileKeysToDelete: boolean;
4142
+ readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
4143
+ readonly isFailedToPushUserToBspDeletionVector: boolean;
4144
+ readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
4142
4145
  readonly isMaxUserPendingDeletionRequestsReached: boolean;
4143
4146
  readonly isMspNotStoringBucket: boolean;
4144
4147
  readonly isFileKeyNotPendingDeletion: boolean;
@@ -4228,6 +4231,12 @@ declare module "@polkadot/types/lookup" {
4228
4231
  | "ThresholdBelowAsymptote"
4229
4232
  | "NotFileOwner"
4230
4233
  | "FileKeyAlreadyPendingDeletion"
4234
+ | "BatchFileDeletionMustContainSingleBucket"
4235
+ | "DuplicateFileKeyInBatchFileDeletion"
4236
+ | "NoFileKeysToDelete"
4237
+ | "FailedToPushFileKeyToBucketDeletionVector"
4238
+ | "FailedToPushUserToBspDeletionVector"
4239
+ | "FailedToPushFileKeyToBspDeletionVector"
4231
4240
  | "MaxUserPendingDeletionRequestsReached"
4232
4241
  | "MspNotStoringBucket"
4233
4242
  | "FileKeyNotPendingDeletion"
@@ -4276,13 +4285,13 @@ declare module "@polkadot/types/lookup" {
4276
4285
  | "IncompleteStorageRequestNotFound";
4277
4286
  }
4278
4287
 
4279
- /** @name PalletProofsDealerProofSubmissionRecord (357) */
4288
+ /** @name PalletProofsDealerProofSubmissionRecord (361) */
4280
4289
  interface PalletProofsDealerProofSubmissionRecord extends Struct {
4281
4290
  readonly lastTickProven: u32;
4282
4291
  readonly nextTickToSubmitProofFor: u32;
4283
4292
  }
4284
4293
 
4285
- /** @name PalletProofsDealerError (364) */
4294
+ /** @name PalletProofsDealerError (368) */
4286
4295
  interface PalletProofsDealerError extends Enum {
4287
4296
  readonly isNotProvider: boolean;
4288
4297
  readonly isChallengesQueueOverflow: boolean;
@@ -4335,7 +4344,7 @@ declare module "@polkadot/types/lookup" {
4335
4344
  | "TooManyValidProofSubmitters";
4336
4345
  }
4337
4346
 
4338
- /** @name PalletPaymentStreamsFixedRatePaymentStream (366) */
4347
+ /** @name PalletPaymentStreamsFixedRatePaymentStream (370) */
4339
4348
  interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
4340
4349
  readonly rate: u128;
4341
4350
  readonly lastChargedTick: u32;
@@ -4343,7 +4352,7 @@ declare module "@polkadot/types/lookup" {
4343
4352
  readonly outOfFundsTick: Option<u32>;
4344
4353
  }
4345
4354
 
4346
- /** @name PalletPaymentStreamsDynamicRatePaymentStream (367) */
4355
+ /** @name PalletPaymentStreamsDynamicRatePaymentStream (371) */
4347
4356
  interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
4348
4357
  readonly amountProvided: u64;
4349
4358
  readonly priceIndexWhenLastCharged: u128;
@@ -4351,13 +4360,13 @@ declare module "@polkadot/types/lookup" {
4351
4360
  readonly outOfFundsTick: Option<u32>;
4352
4361
  }
4353
4362
 
4354
- /** @name PalletPaymentStreamsProviderLastChargeableInfo (368) */
4363
+ /** @name PalletPaymentStreamsProviderLastChargeableInfo (372) */
4355
4364
  interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
4356
4365
  readonly lastChargeableTick: u32;
4357
4366
  readonly priceIndex: u128;
4358
4367
  }
4359
4368
 
4360
- /** @name PalletPaymentStreamsError (369) */
4369
+ /** @name PalletPaymentStreamsError (373) */
4361
4370
  interface PalletPaymentStreamsError extends Enum {
4362
4371
  readonly isPaymentStreamAlreadyExists: boolean;
4363
4372
  readonly isPaymentStreamNotFound: boolean;
@@ -4398,7 +4407,7 @@ declare module "@polkadot/types/lookup" {
4398
4407
  | "ProviderInsolvent";
4399
4408
  }
4400
4409
 
4401
- /** @name PalletBucketNftsError (370) */
4410
+ /** @name PalletBucketNftsError (374) */
4402
4411
  interface PalletBucketNftsError extends Enum {
4403
4412
  readonly isBucketIsNotPrivate: boolean;
4404
4413
  readonly isNotBucketOwner: boolean;
@@ -4411,7 +4420,7 @@ declare module "@polkadot/types/lookup" {
4411
4420
  | "ConvertBytesToBoundedVec";
4412
4421
  }
4413
4422
 
4414
- /** @name PalletNftsCollectionDetails (371) */
4423
+ /** @name PalletNftsCollectionDetails (375) */
4415
4424
  interface PalletNftsCollectionDetails extends Struct {
4416
4425
  readonly owner: AccountId20;
4417
4426
  readonly ownerDeposit: u128;
@@ -4421,7 +4430,7 @@ declare module "@polkadot/types/lookup" {
4421
4430
  readonly attributes: u32;
4422
4431
  }
4423
4432
 
4424
- /** @name PalletNftsCollectionRole (376) */
4433
+ /** @name PalletNftsCollectionRole (380) */
4425
4434
  interface PalletNftsCollectionRole extends Enum {
4426
4435
  readonly isIssuer: boolean;
4427
4436
  readonly isFreezer: boolean;
@@ -4429,44 +4438,44 @@ declare module "@polkadot/types/lookup" {
4429
4438
  readonly type: "Issuer" | "Freezer" | "Admin";
4430
4439
  }
4431
4440
 
4432
- /** @name PalletNftsItemDetails (377) */
4441
+ /** @name PalletNftsItemDetails (381) */
4433
4442
  interface PalletNftsItemDetails extends Struct {
4434
4443
  readonly owner: AccountId20;
4435
4444
  readonly approvals: BTreeMap<AccountId20, Option<u32>>;
4436
4445
  readonly deposit: PalletNftsItemDeposit;
4437
4446
  }
4438
4447
 
4439
- /** @name PalletNftsItemDeposit (378) */
4448
+ /** @name PalletNftsItemDeposit (382) */
4440
4449
  interface PalletNftsItemDeposit extends Struct {
4441
4450
  readonly account: AccountId20;
4442
4451
  readonly amount: u128;
4443
4452
  }
4444
4453
 
4445
- /** @name PalletNftsCollectionMetadata (383) */
4454
+ /** @name PalletNftsCollectionMetadata (387) */
4446
4455
  interface PalletNftsCollectionMetadata extends Struct {
4447
4456
  readonly deposit: u128;
4448
4457
  readonly data: Bytes;
4449
4458
  }
4450
4459
 
4451
- /** @name PalletNftsItemMetadata (384) */
4460
+ /** @name PalletNftsItemMetadata (388) */
4452
4461
  interface PalletNftsItemMetadata extends Struct {
4453
4462
  readonly deposit: PalletNftsItemMetadataDeposit;
4454
4463
  readonly data: Bytes;
4455
4464
  }
4456
4465
 
4457
- /** @name PalletNftsItemMetadataDeposit (385) */
4466
+ /** @name PalletNftsItemMetadataDeposit (389) */
4458
4467
  interface PalletNftsItemMetadataDeposit extends Struct {
4459
4468
  readonly account: Option<AccountId20>;
4460
4469
  readonly amount: u128;
4461
4470
  }
4462
4471
 
4463
- /** @name PalletNftsAttributeDeposit (388) */
4472
+ /** @name PalletNftsAttributeDeposit (392) */
4464
4473
  interface PalletNftsAttributeDeposit extends Struct {
4465
4474
  readonly account: Option<AccountId20>;
4466
4475
  readonly amount: u128;
4467
4476
  }
4468
4477
 
4469
- /** @name PalletNftsPendingSwap (392) */
4478
+ /** @name PalletNftsPendingSwap (396) */
4470
4479
  interface PalletNftsPendingSwap extends Struct {
4471
4480
  readonly desiredCollection: u32;
4472
4481
  readonly desiredItem: Option<u32>;
@@ -4474,7 +4483,7 @@ declare module "@polkadot/types/lookup" {
4474
4483
  readonly deadline: u32;
4475
4484
  }
4476
4485
 
4477
- /** @name PalletNftsPalletFeature (394) */
4486
+ /** @name PalletNftsPalletFeature (398) */
4478
4487
  interface PalletNftsPalletFeature extends Enum {
4479
4488
  readonly isTrading: boolean;
4480
4489
  readonly isAttributes: boolean;
@@ -4483,7 +4492,7 @@ declare module "@polkadot/types/lookup" {
4483
4492
  readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
4484
4493
  }
4485
4494
 
4486
- /** @name PalletNftsError (395) */
4495
+ /** @name PalletNftsError (399) */
4487
4496
  interface PalletNftsError extends Enum {
4488
4497
  readonly isNoPermission: boolean;
4489
4498
  readonly isUnknownCollection: boolean;
@@ -4578,39 +4587,39 @@ declare module "@polkadot/types/lookup" {
4578
4587
  | "WitnessRequired";
4579
4588
  }
4580
4589
 
4581
- /** @name FrameSystemExtensionsCheckNonZeroSender (398) */
4590
+ /** @name FrameSystemExtensionsCheckNonZeroSender (402) */
4582
4591
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4583
4592
 
4584
- /** @name FrameSystemExtensionsCheckSpecVersion (399) */
4593
+ /** @name FrameSystemExtensionsCheckSpecVersion (403) */
4585
4594
  type FrameSystemExtensionsCheckSpecVersion = Null;
4586
4595
 
4587
- /** @name FrameSystemExtensionsCheckTxVersion (400) */
4596
+ /** @name FrameSystemExtensionsCheckTxVersion (404) */
4588
4597
  type FrameSystemExtensionsCheckTxVersion = Null;
4589
4598
 
4590
- /** @name FrameSystemExtensionsCheckGenesis (401) */
4599
+ /** @name FrameSystemExtensionsCheckGenesis (405) */
4591
4600
  type FrameSystemExtensionsCheckGenesis = Null;
4592
4601
 
4593
- /** @name FrameSystemExtensionsCheckNonce (404) */
4602
+ /** @name FrameSystemExtensionsCheckNonce (408) */
4594
4603
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
4595
4604
 
4596
- /** @name FrameSystemExtensionsCheckWeight (405) */
4605
+ /** @name FrameSystemExtensionsCheckWeight (409) */
4597
4606
  type FrameSystemExtensionsCheckWeight = Null;
4598
4607
 
4599
- /** @name PalletTransactionPaymentChargeTransactionPayment (406) */
4608
+ /** @name PalletTransactionPaymentChargeTransactionPayment (410) */
4600
4609
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
4601
4610
 
4602
- /** @name FrameMetadataHashExtensionCheckMetadataHash (407) */
4611
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (411) */
4603
4612
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
4604
4613
  readonly mode: FrameMetadataHashExtensionMode;
4605
4614
  }
4606
4615
 
4607
- /** @name FrameMetadataHashExtensionMode (408) */
4616
+ /** @name FrameMetadataHashExtensionMode (412) */
4608
4617
  interface FrameMetadataHashExtensionMode extends Enum {
4609
4618
  readonly isDisabled: boolean;
4610
4619
  readonly isEnabled: boolean;
4611
4620
  readonly type: "Disabled" | "Enabled";
4612
4621
  }
4613
4622
 
4614
- /** @name ShSolochainEvmRuntimeRuntime (410) */
4623
+ /** @name ShSolochainEvmRuntimeRuntime (414) */
4615
4624
  type ShSolochainEvmRuntimeRuntime = Null;
4616
4625
  } // declare module