@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
@@ -1040,27 +1040,21 @@ export default {
1040
1040
  signedDeleteIntention: "PalletFileSystemFileOperationIntention",
1041
1041
  signature: "FpAccountEthereumSignature"
1042
1042
  },
1043
- BucketFileDeletionCompleted: {
1043
+ BucketFileDeletionsCompleted: {
1044
1044
  user: "AccountId20",
1045
- fileKey: "H256",
1046
- fileSize: "u64",
1045
+ fileKeys: "Vec<H256>",
1047
1046
  bucketId: "H256",
1048
1047
  mspId: "Option<H256>",
1049
1048
  oldRoot: "H256",
1050
1049
  newRoot: "H256"
1051
1050
  },
1052
- BspFileDeletionCompleted: {
1053
- user: "AccountId20",
1054
- fileKey: "H256",
1055
- fileSize: "u64",
1051
+ BspFileDeletionsCompleted: {
1052
+ users: "Vec<AccountId20>",
1053
+ fileKeys: "Vec<H256>",
1056
1054
  bspId: "H256",
1057
1055
  oldRoot: "H256",
1058
1056
  newRoot: "H256"
1059
1057
  },
1060
- FileDeletedFromIncompleteStorageRequest: {
1061
- fileKey: "H256",
1062
- bspId: "Option<H256>"
1063
- },
1064
1058
  IncompleteStorageRequest: {
1065
1059
  fileKey: "H256"
1066
1060
  }
@@ -1119,7 +1113,7 @@ export default {
1119
1113
  **/
1120
1114
  FpAccountEthereumSignature: "[u8;65]",
1121
1115
  /**
1122
- * Lookup122: pallet_proofs_dealer::pallet::Event<T>
1116
+ * Lookup125: pallet_proofs_dealer::pallet::Event<T>
1123
1117
  **/
1124
1118
  PalletProofsDealerEvent: {
1125
1119
  _enum: {
@@ -1176,41 +1170,41 @@ export default {
1176
1170
  }
1177
1171
  },
1178
1172
  /**
1179
- * Lookup123: pallet_proofs_dealer::types::Proof<T>
1173
+ * Lookup126: pallet_proofs_dealer::types::Proof<T>
1180
1174
  **/
1181
1175
  PalletProofsDealerProof: {
1182
1176
  forestProof: "SpTrieStorageProofCompactProof",
1183
1177
  keyProofs: "BTreeMap<H256, PalletProofsDealerKeyProof>"
1184
1178
  },
1185
1179
  /**
1186
- * Lookup124: sp_trie::storage_proof::CompactProof
1180
+ * Lookup127: sp_trie::storage_proof::CompactProof
1187
1181
  **/
1188
1182
  SpTrieStorageProofCompactProof: {
1189
1183
  encodedNodes: "Vec<Bytes>"
1190
1184
  },
1191
1185
  /**
1192
- * Lookup127: pallet_proofs_dealer::types::KeyProof<T>
1186
+ * Lookup130: pallet_proofs_dealer::types::KeyProof<T>
1193
1187
  **/
1194
1188
  PalletProofsDealerKeyProof: {
1195
1189
  proof: "ShpFileKeyVerifierFileKeyProof",
1196
1190
  challengeCount: "u32"
1197
1191
  },
1198
1192
  /**
1199
- * Lookup128: shp_file_key_verifier::types::FileKeyProof
1193
+ * Lookup131: shp_file_key_verifier::types::FileKeyProof
1200
1194
  **/
1201
1195
  ShpFileKeyVerifierFileKeyProof: {
1202
1196
  fileMetadata: "ShpFileMetadataFileMetadata",
1203
1197
  proof: "SpTrieStorageProofCompactProof"
1204
1198
  },
1205
1199
  /**
1206
- * Lookup132: pallet_proofs_dealer::types::CustomChallenge<T>
1200
+ * Lookup135: pallet_proofs_dealer::types::CustomChallenge<T>
1207
1201
  **/
1208
1202
  PalletProofsDealerCustomChallenge: {
1209
1203
  key: "H256",
1210
1204
  shouldRemoveKey: "bool"
1211
1205
  },
1212
1206
  /**
1213
- * Lookup136: shp_traits::TrieMutation
1207
+ * Lookup139: shp_traits::TrieMutation
1214
1208
  **/
1215
1209
  ShpTraitsTrieMutation: {
1216
1210
  _enum: {
@@ -1219,19 +1213,19 @@ export default {
1219
1213
  }
1220
1214
  },
1221
1215
  /**
1222
- * Lookup137: shp_traits::TrieAddMutation
1216
+ * Lookup140: shp_traits::TrieAddMutation
1223
1217
  **/
1224
1218
  ShpTraitsTrieAddMutation: {
1225
1219
  value: "Bytes"
1226
1220
  },
1227
1221
  /**
1228
- * Lookup138: shp_traits::TrieRemoveMutation
1222
+ * Lookup141: shp_traits::TrieRemoveMutation
1229
1223
  **/
1230
1224
  ShpTraitsTrieRemoveMutation: {
1231
1225
  maybeValue: "Option<Bytes>"
1232
1226
  },
1233
1227
  /**
1234
- * Lookup140: pallet_randomness::pallet::Event<T>
1228
+ * Lookup143: pallet_randomness::pallet::Event<T>
1235
1229
  **/
1236
1230
  PalletRandomnessEvent: {
1237
1231
  _enum: {
@@ -1243,7 +1237,7 @@ export default {
1243
1237
  }
1244
1238
  },
1245
1239
  /**
1246
- * Lookup141: pallet_payment_streams::pallet::Event<T>
1240
+ * Lookup144: pallet_payment_streams::pallet::Event<T>
1247
1241
  **/
1248
1242
  PalletPaymentStreamsEvent: {
1249
1243
  _enum: {
@@ -1311,7 +1305,7 @@ export default {
1311
1305
  }
1312
1306
  },
1313
1307
  /**
1314
- * Lookup144: pallet_bucket_nfts::pallet::Event<T>
1308
+ * Lookup146: pallet_bucket_nfts::pallet::Event<T>
1315
1309
  **/
1316
1310
  PalletBucketNftsEvent: {
1317
1311
  _enum: {
@@ -1332,7 +1326,7 @@ export default {
1332
1326
  }
1333
1327
  },
1334
1328
  /**
1335
- * Lookup145: pallet_nfts::pallet::Event<T, I>
1329
+ * Lookup147: pallet_nfts::pallet::Event<T, I>
1336
1330
  **/
1337
1331
  PalletNftsEvent: {
1338
1332
  _enum: {
@@ -1533,7 +1527,7 @@ export default {
1533
1527
  }
1534
1528
  },
1535
1529
  /**
1536
- * Lookup149: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
1530
+ * Lookup151: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
1537
1531
  **/
1538
1532
  PalletNftsAttributeNamespace: {
1539
1533
  _enum: {
@@ -1544,20 +1538,20 @@ export default {
1544
1538
  }
1545
1539
  },
1546
1540
  /**
1547
- * Lookup151: pallet_nfts::types::PriceWithDirection<Amount>
1541
+ * Lookup153: pallet_nfts::types::PriceWithDirection<Amount>
1548
1542
  **/
1549
1543
  PalletNftsPriceWithDirection: {
1550
1544
  amount: "u128",
1551
1545
  direction: "PalletNftsPriceDirection"
1552
1546
  },
1553
1547
  /**
1554
- * Lookup152: pallet_nfts::types::PriceDirection
1548
+ * Lookup154: pallet_nfts::types::PriceDirection
1555
1549
  **/
1556
1550
  PalletNftsPriceDirection: {
1557
1551
  _enum: ["Send", "Receive"]
1558
1552
  },
1559
1553
  /**
1560
- * Lookup153: pallet_nfts::types::PalletAttributes<CollectionId>
1554
+ * Lookup155: pallet_nfts::types::PalletAttributes<CollectionId>
1561
1555
  **/
1562
1556
  PalletNftsPalletAttributes: {
1563
1557
  _enum: {
@@ -1566,7 +1560,7 @@ export default {
1566
1560
  }
1567
1561
  },
1568
1562
  /**
1569
- * Lookup154: frame_system::Phase
1563
+ * Lookup156: frame_system::Phase
1570
1564
  **/
1571
1565
  FrameSystemPhase: {
1572
1566
  _enum: {
@@ -1576,21 +1570,21 @@ export default {
1576
1570
  }
1577
1571
  },
1578
1572
  /**
1579
- * Lookup157: frame_system::LastRuntimeUpgradeInfo
1573
+ * Lookup159: frame_system::LastRuntimeUpgradeInfo
1580
1574
  **/
1581
1575
  FrameSystemLastRuntimeUpgradeInfo: {
1582
1576
  specVersion: "Compact<u32>",
1583
1577
  specName: "Text"
1584
1578
  },
1585
1579
  /**
1586
- * Lookup159: frame_system::CodeUpgradeAuthorization<T>
1580
+ * Lookup161: frame_system::CodeUpgradeAuthorization<T>
1587
1581
  **/
1588
1582
  FrameSystemCodeUpgradeAuthorization: {
1589
1583
  codeHash: "H256",
1590
1584
  checkVersion: "bool"
1591
1585
  },
1592
1586
  /**
1593
- * Lookup160: frame_system::pallet::Call<T>
1587
+ * Lookup162: frame_system::pallet::Call<T>
1594
1588
  **/
1595
1589
  FrameSystemCall: {
1596
1590
  _enum: {
@@ -1635,7 +1629,7 @@ export default {
1635
1629
  }
1636
1630
  },
1637
1631
  /**
1638
- * Lookup163: frame_system::limits::BlockWeights
1632
+ * Lookup165: frame_system::limits::BlockWeights
1639
1633
  **/
1640
1634
  FrameSystemLimitsBlockWeights: {
1641
1635
  baseBlock: "SpWeightsWeightV2Weight",
@@ -1643,7 +1637,7 @@ export default {
1643
1637
  perClass: "FrameSupportDispatchPerDispatchClassWeightsPerClass"
1644
1638
  },
1645
1639
  /**
1646
- * Lookup164: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1640
+ * Lookup166: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1647
1641
  **/
1648
1642
  FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1649
1643
  normal: "FrameSystemLimitsWeightsPerClass",
@@ -1651,7 +1645,7 @@ export default {
1651
1645
  mandatory: "FrameSystemLimitsWeightsPerClass"
1652
1646
  },
1653
1647
  /**
1654
- * Lookup165: frame_system::limits::WeightsPerClass
1648
+ * Lookup167: frame_system::limits::WeightsPerClass
1655
1649
  **/
1656
1650
  FrameSystemLimitsWeightsPerClass: {
1657
1651
  baseExtrinsic: "SpWeightsWeightV2Weight",
@@ -1660,13 +1654,13 @@ export default {
1660
1654
  reserved: "Option<SpWeightsWeightV2Weight>"
1661
1655
  },
1662
1656
  /**
1663
- * Lookup167: frame_system::limits::BlockLength
1657
+ * Lookup169: frame_system::limits::BlockLength
1664
1658
  **/
1665
1659
  FrameSystemLimitsBlockLength: {
1666
1660
  max: "FrameSupportDispatchPerDispatchClassU32"
1667
1661
  },
1668
1662
  /**
1669
- * Lookup168: frame_support::dispatch::PerDispatchClass<T>
1663
+ * Lookup170: frame_support::dispatch::PerDispatchClass<T>
1670
1664
  **/
1671
1665
  FrameSupportDispatchPerDispatchClassU32: {
1672
1666
  normal: "u32",
@@ -1674,14 +1668,14 @@ export default {
1674
1668
  mandatory: "u32"
1675
1669
  },
1676
1670
  /**
1677
- * Lookup169: sp_weights::RuntimeDbWeight
1671
+ * Lookup171: sp_weights::RuntimeDbWeight
1678
1672
  **/
1679
1673
  SpWeightsRuntimeDbWeight: {
1680
1674
  read: "u64",
1681
1675
  write: "u64"
1682
1676
  },
1683
1677
  /**
1684
- * Lookup170: sp_version::RuntimeVersion
1678
+ * Lookup172: sp_version::RuntimeVersion
1685
1679
  **/
1686
1680
  SpVersionRuntimeVersion: {
1687
1681
  specName: "Text",
@@ -1694,7 +1688,7 @@ export default {
1694
1688
  systemVersion: "u8"
1695
1689
  },
1696
1690
  /**
1697
- * Lookup176: frame_system::pallet::Error<T>
1691
+ * Lookup178: frame_system::pallet::Error<T>
1698
1692
  **/
1699
1693
  FrameSystemError: {
1700
1694
  _enum: [
@@ -1710,11 +1704,11 @@ export default {
1710
1704
  ]
1711
1705
  },
1712
1706
  /**
1713
- * Lookup179: sp_consensus_babe::app::Public
1707
+ * Lookup181: sp_consensus_babe::app::Public
1714
1708
  **/
1715
1709
  SpConsensusBabeAppPublic: "[u8;32]",
1716
1710
  /**
1717
- * Lookup182: sp_consensus_babe::digests::NextConfigDescriptor
1711
+ * Lookup184: sp_consensus_babe::digests::NextConfigDescriptor
1718
1712
  **/
1719
1713
  SpConsensusBabeDigestsNextConfigDescriptor: {
1720
1714
  _enum: {
@@ -1726,13 +1720,13 @@ export default {
1726
1720
  }
1727
1721
  },
1728
1722
  /**
1729
- * Lookup184: sp_consensus_babe::AllowedSlots
1723
+ * Lookup186: sp_consensus_babe::AllowedSlots
1730
1724
  **/
1731
1725
  SpConsensusBabeAllowedSlots: {
1732
1726
  _enum: ["PrimarySlots", "PrimaryAndSecondaryPlainSlots", "PrimaryAndSecondaryVRFSlots"]
1733
1727
  },
1734
1728
  /**
1735
- * Lookup188: sp_consensus_babe::digests::PreDigest
1729
+ * Lookup190: sp_consensus_babe::digests::PreDigest
1736
1730
  **/
1737
1731
  SpConsensusBabeDigestsPreDigest: {
1738
1732
  _enum: {
@@ -1743,7 +1737,7 @@ export default {
1743
1737
  }
1744
1738
  },
1745
1739
  /**
1746
- * Lookup189: sp_consensus_babe::digests::PrimaryPreDigest
1740
+ * Lookup191: sp_consensus_babe::digests::PrimaryPreDigest
1747
1741
  **/
1748
1742
  SpConsensusBabeDigestsPrimaryPreDigest: {
1749
1743
  authorityIndex: "u32",
@@ -1751,21 +1745,21 @@ export default {
1751
1745
  vrfSignature: "SpCoreSr25519VrfVrfSignature"
1752
1746
  },
1753
1747
  /**
1754
- * Lookup190: sp_core::sr25519::vrf::VrfSignature
1748
+ * Lookup192: sp_core::sr25519::vrf::VrfSignature
1755
1749
  **/
1756
1750
  SpCoreSr25519VrfVrfSignature: {
1757
1751
  preOutput: "[u8;32]",
1758
1752
  proof: "[u8;64]"
1759
1753
  },
1760
1754
  /**
1761
- * Lookup192: sp_consensus_babe::digests::SecondaryPlainPreDigest
1755
+ * Lookup194: sp_consensus_babe::digests::SecondaryPlainPreDigest
1762
1756
  **/
1763
1757
  SpConsensusBabeDigestsSecondaryPlainPreDigest: {
1764
1758
  authorityIndex: "u32",
1765
1759
  slot: "u64"
1766
1760
  },
1767
1761
  /**
1768
- * Lookup193: sp_consensus_babe::digests::SecondaryVRFPreDigest
1762
+ * Lookup195: sp_consensus_babe::digests::SecondaryVRFPreDigest
1769
1763
  **/
1770
1764
  SpConsensusBabeDigestsSecondaryVRFPreDigest: {
1771
1765
  authorityIndex: "u32",
@@ -1773,14 +1767,14 @@ export default {
1773
1767
  vrfSignature: "SpCoreSr25519VrfVrfSignature"
1774
1768
  },
1775
1769
  /**
1776
- * Lookup195: sp_consensus_babe::BabeEpochConfiguration
1770
+ * Lookup197: sp_consensus_babe::BabeEpochConfiguration
1777
1771
  **/
1778
1772
  SpConsensusBabeBabeEpochConfiguration: {
1779
1773
  c: "(u64,u64)",
1780
1774
  allowedSlots: "SpConsensusBabeAllowedSlots"
1781
1775
  },
1782
1776
  /**
1783
- * Lookup199: pallet_babe::pallet::Call<T>
1777
+ * Lookup201: pallet_babe::pallet::Call<T>
1784
1778
  **/
1785
1779
  PalletBabeCall: {
1786
1780
  _enum: {
@@ -1798,7 +1792,7 @@ export default {
1798
1792
  }
1799
1793
  },
1800
1794
  /**
1801
- * Lookup200: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
1795
+ * Lookup202: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
1802
1796
  **/
1803
1797
  SpConsensusSlotsEquivocationProof: {
1804
1798
  offender: "SpConsensusBabeAppPublic",
@@ -1807,7 +1801,7 @@ export default {
1807
1801
  secondHeader: "SpRuntimeHeader"
1808
1802
  },
1809
1803
  /**
1810
- * Lookup201: sp_runtime::generic::header::Header<Number, Hash>
1804
+ * Lookup203: sp_runtime::generic::header::Header<Number, Hash>
1811
1805
  **/
1812
1806
  SpRuntimeHeader: {
1813
1807
  parentHash: "H256",
@@ -1817,7 +1811,7 @@ export default {
1817
1811
  digest: "SpRuntimeDigest"
1818
1812
  },
1819
1813
  /**
1820
- * Lookup202: sp_session::MembershipProof
1814
+ * Lookup204: sp_session::MembershipProof
1821
1815
  **/
1822
1816
  SpSessionMembershipProof: {
1823
1817
  session: "u32",
@@ -1825,7 +1819,7 @@ export default {
1825
1819
  validatorCount: "u32"
1826
1820
  },
1827
1821
  /**
1828
- * Lookup203: pallet_babe::pallet::Error<T>
1822
+ * Lookup205: pallet_babe::pallet::Error<T>
1829
1823
  **/
1830
1824
  PalletBabeError: {
1831
1825
  _enum: [
@@ -1836,7 +1830,7 @@ export default {
1836
1830
  ]
1837
1831
  },
1838
1832
  /**
1839
- * Lookup204: pallet_timestamp::pallet::Call<T>
1833
+ * Lookup206: pallet_timestamp::pallet::Call<T>
1840
1834
  **/
1841
1835
  PalletTimestampCall: {
1842
1836
  _enum: {
@@ -1846,7 +1840,7 @@ export default {
1846
1840
  }
1847
1841
  },
1848
1842
  /**
1849
- * Lookup206: pallet_balances::types::BalanceLock<Balance>
1843
+ * Lookup208: pallet_balances::types::BalanceLock<Balance>
1850
1844
  **/
1851
1845
  PalletBalancesBalanceLock: {
1852
1846
  id: "[u8;8]",
@@ -1854,27 +1848,27 @@ export default {
1854
1848
  reasons: "PalletBalancesReasons"
1855
1849
  },
1856
1850
  /**
1857
- * Lookup207: pallet_balances::types::Reasons
1851
+ * Lookup209: pallet_balances::types::Reasons
1858
1852
  **/
1859
1853
  PalletBalancesReasons: {
1860
1854
  _enum: ["Fee", "Misc", "All"]
1861
1855
  },
1862
1856
  /**
1863
- * Lookup210: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1857
+ * Lookup212: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1864
1858
  **/
1865
1859
  PalletBalancesReserveData: {
1866
1860
  id: "[u8;8]",
1867
1861
  amount: "u128"
1868
1862
  },
1869
1863
  /**
1870
- * Lookup213: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
1864
+ * Lookup215: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
1871
1865
  **/
1872
1866
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
1873
1867
  id: "ShSolochainEvmRuntimeRuntimeHoldReason",
1874
1868
  amount: "u128"
1875
1869
  },
1876
1870
  /**
1877
- * Lookup214: sh_solochain_evm_runtime::RuntimeHoldReason
1871
+ * Lookup216: sh_solochain_evm_runtime::RuntimeHoldReason
1878
1872
  **/
1879
1873
  ShSolochainEvmRuntimeRuntimeHoldReason: {
1880
1874
  _enum: {
@@ -1966,36 +1960,36 @@ export default {
1966
1960
  }
1967
1961
  },
1968
1962
  /**
1969
- * Lookup215: pallet_storage_providers::pallet::HoldReason
1963
+ * Lookup217: pallet_storage_providers::pallet::HoldReason
1970
1964
  **/
1971
1965
  PalletStorageProvidersHoldReason: {
1972
1966
  _enum: ["StorageProviderDeposit", "BucketDeposit"]
1973
1967
  },
1974
1968
  /**
1975
- * Lookup216: pallet_file_system::pallet::HoldReason
1969
+ * Lookup218: pallet_file_system::pallet::HoldReason
1976
1970
  **/
1977
1971
  PalletFileSystemHoldReason: {
1978
1972
  _enum: ["StorageRequestCreationHold", "FileDeletionRequestHold"]
1979
1973
  },
1980
1974
  /**
1981
- * Lookup217: pallet_payment_streams::pallet::HoldReason
1975
+ * Lookup219: pallet_payment_streams::pallet::HoldReason
1982
1976
  **/
1983
1977
  PalletPaymentStreamsHoldReason: {
1984
1978
  _enum: ["PaymentStreamDeposit"]
1985
1979
  },
1986
1980
  /**
1987
- * Lookup220: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
1981
+ * Lookup222: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
1988
1982
  **/
1989
1983
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
1990
1984
  id: "ShSolochainEvmRuntimeRuntimeFreezeReason",
1991
1985
  amount: "u128"
1992
1986
  },
1993
1987
  /**
1994
- * Lookup221: sh_solochain_evm_runtime::RuntimeFreezeReason
1988
+ * Lookup223: sh_solochain_evm_runtime::RuntimeFreezeReason
1995
1989
  **/
1996
1990
  ShSolochainEvmRuntimeRuntimeFreezeReason: "Null",
1997
1991
  /**
1998
- * Lookup223: pallet_balances::pallet::Call<T, I>
1992
+ * Lookup225: pallet_balances::pallet::Call<T, I>
1999
1993
  **/
2000
1994
  PalletBalancesCall: {
2001
1995
  _enum: {
@@ -2040,13 +2034,13 @@ export default {
2040
2034
  }
2041
2035
  },
2042
2036
  /**
2043
- * Lookup225: pallet_balances::types::AdjustmentDirection
2037
+ * Lookup227: pallet_balances::types::AdjustmentDirection
2044
2038
  **/
2045
2039
  PalletBalancesAdjustmentDirection: {
2046
2040
  _enum: ["Increase", "Decrease"]
2047
2041
  },
2048
2042
  /**
2049
- * Lookup226: pallet_balances::pallet::Error<T, I>
2043
+ * Lookup228: pallet_balances::pallet::Error<T, I>
2050
2044
  **/
2051
2045
  PalletBalancesError: {
2052
2046
  _enum: [
@@ -2065,25 +2059,25 @@ export default {
2065
2059
  ]
2066
2060
  },
2067
2061
  /**
2068
- * Lookup227: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
2062
+ * Lookup229: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
2069
2063
  **/
2070
2064
  SpStakingOffenceOffenceDetails: {
2071
2065
  offender: "(AccountId20,Null)",
2072
2066
  reporters: "Vec<AccountId20>"
2073
2067
  },
2074
2068
  /**
2075
- * Lookup233: sh_solochain_evm_runtime::SessionKeys
2069
+ * Lookup235: sh_solochain_evm_runtime::SessionKeys
2076
2070
  **/
2077
2071
  ShSolochainEvmRuntimeSessionKeys: {
2078
2072
  babe: "SpConsensusBabeAppPublic",
2079
2073
  grandpa: "SpConsensusGrandpaAppPublic"
2080
2074
  },
2081
2075
  /**
2082
- * Lookup235: sp_core::crypto::KeyTypeId
2076
+ * Lookup237: sp_core::crypto::KeyTypeId
2083
2077
  **/
2084
2078
  SpCoreCryptoKeyTypeId: "[u8;4]",
2085
2079
  /**
2086
- * Lookup236: pallet_session::pallet::Call<T>
2080
+ * Lookup238: pallet_session::pallet::Call<T>
2087
2081
  **/
2088
2082
  PalletSessionCall: {
2089
2083
  _enum: {
@@ -2098,13 +2092,13 @@ export default {
2098
2092
  }
2099
2093
  },
2100
2094
  /**
2101
- * Lookup237: pallet_session::pallet::Error<T>
2095
+ * Lookup239: pallet_session::pallet::Error<T>
2102
2096
  **/
2103
2097
  PalletSessionError: {
2104
2098
  _enum: ["InvalidProof", "NoAssociatedValidatorId", "DuplicatedKey", "NoKeys", "NoAccount"]
2105
2099
  },
2106
2100
  /**
2107
- * Lookup238: pallet_grandpa::StoredState<N>
2101
+ * Lookup240: pallet_grandpa::StoredState<N>
2108
2102
  **/
2109
2103
  PalletGrandpaStoredState: {
2110
2104
  _enum: {
@@ -2121,7 +2115,7 @@ export default {
2121
2115
  }
2122
2116
  },
2123
2117
  /**
2124
- * Lookup239: pallet_grandpa::StoredPendingChange<N, Limit>
2118
+ * Lookup241: pallet_grandpa::StoredPendingChange<N, Limit>
2125
2119
  **/
2126
2120
  PalletGrandpaStoredPendingChange: {
2127
2121
  scheduledAt: "u32",
@@ -2130,7 +2124,7 @@ export default {
2130
2124
  forced: "Option<u32>"
2131
2125
  },
2132
2126
  /**
2133
- * Lookup241: pallet_grandpa::pallet::Call<T>
2127
+ * Lookup243: pallet_grandpa::pallet::Call<T>
2134
2128
  **/
2135
2129
  PalletGrandpaCall: {
2136
2130
  _enum: {
@@ -2149,14 +2143,14 @@ export default {
2149
2143
  }
2150
2144
  },
2151
2145
  /**
2152
- * Lookup242: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
2146
+ * Lookup244: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
2153
2147
  **/
2154
2148
  SpConsensusGrandpaEquivocationProof: {
2155
2149
  setId: "u64",
2156
2150
  equivocation: "SpConsensusGrandpaEquivocation"
2157
2151
  },
2158
2152
  /**
2159
- * Lookup243: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
2153
+ * Lookup245: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
2160
2154
  **/
2161
2155
  SpConsensusGrandpaEquivocation: {
2162
2156
  _enum: {
@@ -2165,7 +2159,7 @@ export default {
2165
2159
  }
2166
2160
  },
2167
2161
  /**
2168
- * Lookup244: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2162
+ * Lookup246: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2169
2163
  **/
2170
2164
  FinalityGrandpaEquivocationPrevote: {
2171
2165
  roundNumber: "u64",
@@ -2174,18 +2168,18 @@ export default {
2174
2168
  second: "(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)"
2175
2169
  },
2176
2170
  /**
2177
- * Lookup245: finality_grandpa::Prevote<primitive_types::H256, N>
2171
+ * Lookup247: finality_grandpa::Prevote<primitive_types::H256, N>
2178
2172
  **/
2179
2173
  FinalityGrandpaPrevote: {
2180
2174
  targetHash: "H256",
2181
2175
  targetNumber: "u32"
2182
2176
  },
2183
2177
  /**
2184
- * Lookup246: sp_consensus_grandpa::app::Signature
2178
+ * Lookup248: sp_consensus_grandpa::app::Signature
2185
2179
  **/
2186
2180
  SpConsensusGrandpaAppSignature: "[u8;64]",
2187
2181
  /**
2188
- * Lookup248: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2182
+ * Lookup250: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2189
2183
  **/
2190
2184
  FinalityGrandpaEquivocationPrecommit: {
2191
2185
  roundNumber: "u64",
@@ -2194,14 +2188,14 @@ export default {
2194
2188
  second: "(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)"
2195
2189
  },
2196
2190
  /**
2197
- * Lookup249: finality_grandpa::Precommit<primitive_types::H256, N>
2191
+ * Lookup251: finality_grandpa::Precommit<primitive_types::H256, N>
2198
2192
  **/
2199
2193
  FinalityGrandpaPrecommit: {
2200
2194
  targetHash: "H256",
2201
2195
  targetNumber: "u32"
2202
2196
  },
2203
2197
  /**
2204
- * Lookup251: pallet_grandpa::pallet::Error<T>
2198
+ * Lookup253: pallet_grandpa::pallet::Error<T>
2205
2199
  **/
2206
2200
  PalletGrandpaError: {
2207
2201
  _enum: [
@@ -2215,13 +2209,13 @@ export default {
2215
2209
  ]
2216
2210
  },
2217
2211
  /**
2218
- * Lookup253: pallet_transaction_payment::Releases
2212
+ * Lookup255: pallet_transaction_payment::Releases
2219
2213
  **/
2220
2214
  PalletTransactionPaymentReleases: {
2221
2215
  _enum: ["V1Ancient", "V2"]
2222
2216
  },
2223
2217
  /**
2224
- * Lookup254: pallet_parameters::pallet::Call<T>
2218
+ * Lookup256: pallet_parameters::pallet::Call<T>
2225
2219
  **/
2226
2220
  PalletParametersCall: {
2227
2221
  _enum: {
@@ -2231,7 +2225,7 @@ export default {
2231
2225
  }
2232
2226
  },
2233
2227
  /**
2234
- * Lookup255: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
2228
+ * Lookup257: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
2235
2229
  **/
2236
2230
  ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
2237
2231
  _enum: {
@@ -2239,7 +2233,7 @@ export default {
2239
2233
  }
2240
2234
  },
2241
2235
  /**
2242
- * Lookup256: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
2236
+ * Lookup258: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
2243
2237
  **/
2244
2238
  ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
2245
2239
  _enum: {
@@ -2306,7 +2300,7 @@ export default {
2306
2300
  }
2307
2301
  },
2308
2302
  /**
2309
- * Lookup259: pallet_sudo::pallet::Call<T>
2303
+ * Lookup261: pallet_sudo::pallet::Call<T>
2310
2304
  **/
2311
2305
  PalletSudoCall: {
2312
2306
  _enum: {
@@ -2331,7 +2325,7 @@ export default {
2331
2325
  }
2332
2326
  },
2333
2327
  /**
2334
- * Lookup261: pallet_ethereum::pallet::Call<T>
2328
+ * Lookup263: pallet_ethereum::pallet::Call<T>
2335
2329
  **/
2336
2330
  PalletEthereumCall: {
2337
2331
  _enum: {
@@ -2341,7 +2335,7 @@ export default {
2341
2335
  }
2342
2336
  },
2343
2337
  /**
2344
- * Lookup262: ethereum::transaction::TransactionV2
2338
+ * Lookup264: ethereum::transaction::TransactionV2
2345
2339
  **/
2346
2340
  EthereumTransactionTransactionV2: {
2347
2341
  _enum: {
@@ -2351,7 +2345,7 @@ export default {
2351
2345
  }
2352
2346
  },
2353
2347
  /**
2354
- * Lookup263: ethereum::transaction::legacy::LegacyTransaction
2348
+ * Lookup265: ethereum::transaction::legacy::LegacyTransaction
2355
2349
  **/
2356
2350
  EthereumTransactionLegacyLegacyTransaction: {
2357
2351
  nonce: "U256",
@@ -2363,7 +2357,7 @@ export default {
2363
2357
  signature: "EthereumTransactionLegacyTransactionSignature"
2364
2358
  },
2365
2359
  /**
2366
- * Lookup266: ethereum::transaction::legacy::TransactionAction
2360
+ * Lookup268: ethereum::transaction::legacy::TransactionAction
2367
2361
  **/
2368
2362
  EthereumTransactionLegacyTransactionAction: {
2369
2363
  _enum: {
@@ -2372,7 +2366,7 @@ export default {
2372
2366
  }
2373
2367
  },
2374
2368
  /**
2375
- * Lookup267: ethereum::transaction::legacy::TransactionSignature
2369
+ * Lookup269: ethereum::transaction::legacy::TransactionSignature
2376
2370
  **/
2377
2371
  EthereumTransactionLegacyTransactionSignature: {
2378
2372
  v: "u64",
@@ -2380,7 +2374,7 @@ export default {
2380
2374
  s: "H256"
2381
2375
  },
2382
2376
  /**
2383
- * Lookup269: ethereum::transaction::eip2930::EIP2930Transaction
2377
+ * Lookup271: ethereum::transaction::eip2930::EIP2930Transaction
2384
2378
  **/
2385
2379
  EthereumTransactionEip2930Eip2930Transaction: {
2386
2380
  chainId: "u64",
@@ -2396,14 +2390,14 @@ export default {
2396
2390
  s: "H256"
2397
2391
  },
2398
2392
  /**
2399
- * Lookup271: ethereum::transaction::eip2930::AccessListItem
2393
+ * Lookup273: ethereum::transaction::eip2930::AccessListItem
2400
2394
  **/
2401
2395
  EthereumTransactionEip2930AccessListItem: {
2402
2396
  address: "H160",
2403
2397
  storageKeys: "Vec<H256>"
2404
2398
  },
2405
2399
  /**
2406
- * Lookup272: ethereum::transaction::eip1559::EIP1559Transaction
2400
+ * Lookup274: ethereum::transaction::eip1559::EIP1559Transaction
2407
2401
  **/
2408
2402
  EthereumTransactionEip1559Eip1559Transaction: {
2409
2403
  chainId: "u64",
@@ -2420,7 +2414,7 @@ export default {
2420
2414
  s: "H256"
2421
2415
  },
2422
2416
  /**
2423
- * Lookup273: pallet_evm::pallet::Call<T>
2417
+ * Lookup275: pallet_evm::pallet::Call<T>
2424
2418
  **/
2425
2419
  PalletEvmCall: {
2426
2420
  _enum: {
@@ -2463,7 +2457,7 @@ export default {
2463
2457
  }
2464
2458
  },
2465
2459
  /**
2466
- * Lookup277: pallet_storage_providers::pallet::Call<T>
2460
+ * Lookup279: pallet_storage_providers::pallet::Call<T>
2467
2461
  **/
2468
2462
  PalletStorageProvidersCall: {
2469
2463
  _enum: {
@@ -2534,7 +2528,7 @@ export default {
2534
2528
  }
2535
2529
  },
2536
2530
  /**
2537
- * Lookup278: pallet_file_system::pallet::Call<T>
2531
+ * Lookup280: pallet_file_system::pallet::Call<T>
2538
2532
  **/
2539
2533
  PalletFileSystemCall: {
2540
2534
  _enum: {
@@ -2634,35 +2628,26 @@ export default {
2634
2628
  size_: "u64",
2635
2629
  fingerprint: "H256"
2636
2630
  },
2637
- delete_file: {
2638
- _alias: {
2639
- size_: "size"
2640
- },
2641
- fileOwner: "AccountId20",
2642
- signedIntention: "PalletFileSystemFileOperationIntention",
2643
- signature: "FpAccountEthereumSignature",
2644
- bucketId: "H256",
2645
- location: "Bytes",
2646
- size_: "u64",
2647
- fingerprint: "H256",
2631
+ delete_files: {
2632
+ fileDeletions: "Vec<PalletFileSystemFileDeletionRequest>",
2648
2633
  bspId: "Option<H256>",
2649
2634
  forestProof: "SpTrieStorageProofCompactProof"
2650
2635
  },
2651
- delete_file_for_incomplete_storage_request: {
2652
- fileKey: "H256",
2636
+ delete_files_for_incomplete_storage_request: {
2637
+ fileKeys: "Vec<H256>",
2653
2638
  bspId: "Option<H256>",
2654
2639
  forestProof: "SpTrieStorageProofCompactProof"
2655
2640
  }
2656
2641
  }
2657
2642
  },
2658
2643
  /**
2659
- * Lookup279: pallet_file_system::types::BucketMoveRequestResponse
2644
+ * Lookup281: pallet_file_system::types::BucketMoveRequestResponse
2660
2645
  **/
2661
2646
  PalletFileSystemBucketMoveRequestResponse: {
2662
2647
  _enum: ["Accepted", "Rejected"]
2663
2648
  },
2664
2649
  /**
2665
- * Lookup280: pallet_file_system::types::ReplicationTarget<T>
2650
+ * Lookup282: pallet_file_system::types::ReplicationTarget<T>
2666
2651
  **/
2667
2652
  PalletFileSystemReplicationTarget: {
2668
2653
  _enum: {
@@ -2675,7 +2660,7 @@ export default {
2675
2660
  }
2676
2661
  },
2677
2662
  /**
2678
- * Lookup282: pallet_file_system::types::StorageRequestMspBucketResponse<T>
2663
+ * Lookup284: pallet_file_system::types::StorageRequestMspBucketResponse<T>
2679
2664
  **/
2680
2665
  PalletFileSystemStorageRequestMspBucketResponse: {
2681
2666
  bucketId: "H256",
@@ -2683,28 +2668,43 @@ export default {
2683
2668
  reject: "Vec<PalletFileSystemRejectedStorageRequest>"
2684
2669
  },
2685
2670
  /**
2686
- * Lookup284: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
2671
+ * Lookup286: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
2687
2672
  **/
2688
2673
  PalletFileSystemStorageRequestMspAcceptedFileKeys: {
2689
2674
  fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>",
2690
2675
  forestProof: "SpTrieStorageProofCompactProof"
2691
2676
  },
2692
2677
  /**
2693
- * Lookup286: pallet_file_system::types::FileKeyWithProof<T>
2678
+ * Lookup288: pallet_file_system::types::FileKeyWithProof<T>
2694
2679
  **/
2695
2680
  PalletFileSystemFileKeyWithProof: {
2696
2681
  fileKey: "H256",
2697
2682
  proof: "ShpFileKeyVerifierFileKeyProof"
2698
2683
  },
2699
2684
  /**
2700
- * Lookup288: pallet_file_system::types::RejectedStorageRequest<T>
2685
+ * Lookup290: pallet_file_system::types::RejectedStorageRequest<T>
2701
2686
  **/
2702
2687
  PalletFileSystemRejectedStorageRequest: {
2703
2688
  fileKey: "H256",
2704
2689
  reason: "PalletFileSystemRejectedStorageRequestReason"
2705
2690
  },
2706
2691
  /**
2707
- * Lookup290: pallet_proofs_dealer::pallet::Call<T>
2692
+ * Lookup293: pallet_file_system::types::FileDeletionRequest<T>
2693
+ **/
2694
+ PalletFileSystemFileDeletionRequest: {
2695
+ _alias: {
2696
+ size_: "size"
2697
+ },
2698
+ fileOwner: "AccountId20",
2699
+ signedIntention: "PalletFileSystemFileOperationIntention",
2700
+ signature: "FpAccountEthereumSignature",
2701
+ bucketId: "H256",
2702
+ location: "Bytes",
2703
+ size_: "u64",
2704
+ fingerprint: "H256"
2705
+ },
2706
+ /**
2707
+ * Lookup295: pallet_proofs_dealer::pallet::Call<T>
2708
2708
  **/
2709
2709
  PalletProofsDealerCall: {
2710
2710
  _enum: {
@@ -2728,13 +2728,13 @@ export default {
2728
2728
  }
2729
2729
  },
2730
2730
  /**
2731
- * Lookup291: pallet_randomness::pallet::Call<T>
2731
+ * Lookup296: pallet_randomness::pallet::Call<T>
2732
2732
  **/
2733
2733
  PalletRandomnessCall: {
2734
2734
  _enum: ["set_babe_randomness"]
2735
2735
  },
2736
2736
  /**
2737
- * Lookup292: pallet_payment_streams::pallet::Call<T>
2737
+ * Lookup297: pallet_payment_streams::pallet::Call<T>
2738
2738
  **/
2739
2739
  PalletPaymentStreamsCall: {
2740
2740
  _enum: {
@@ -2779,7 +2779,7 @@ export default {
2779
2779
  }
2780
2780
  },
2781
2781
  /**
2782
- * Lookup293: pallet_bucket_nfts::pallet::Call<T>
2782
+ * Lookup298: pallet_bucket_nfts::pallet::Call<T>
2783
2783
  **/
2784
2784
  PalletBucketNftsCall: {
2785
2785
  _enum: {
@@ -2797,7 +2797,7 @@ export default {
2797
2797
  }
2798
2798
  },
2799
2799
  /**
2800
- * Lookup295: pallet_nfts::pallet::Call<T, I>
2800
+ * Lookup300: pallet_nfts::pallet::Call<T, I>
2801
2801
  **/
2802
2802
  PalletNftsCall: {
2803
2803
  _enum: {
@@ -2994,7 +2994,7 @@ export default {
2994
2994
  }
2995
2995
  },
2996
2996
  /**
2997
- * Lookup296: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
2997
+ * Lookup301: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
2998
2998
  **/
2999
2999
  PalletNftsCollectionConfig: {
3000
3000
  settings: "u64",
@@ -3002,7 +3002,7 @@ export default {
3002
3002
  mintSettings: "PalletNftsMintSettings"
3003
3003
  },
3004
3004
  /**
3005
- * Lookup298: pallet_nfts::types::CollectionSetting
3005
+ * Lookup303: pallet_nfts::types::CollectionSetting
3006
3006
  **/
3007
3007
  PalletNftsCollectionSetting: {
3008
3008
  _enum: [
@@ -3026,7 +3026,7 @@ export default {
3026
3026
  ]
3027
3027
  },
3028
3028
  /**
3029
- * Lookup299: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
3029
+ * Lookup304: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
3030
3030
  **/
3031
3031
  PalletNftsMintSettings: {
3032
3032
  mintType: "PalletNftsMintType",
@@ -3036,7 +3036,7 @@ export default {
3036
3036
  defaultItemSettings: "u64"
3037
3037
  },
3038
3038
  /**
3039
- * Lookup300: pallet_nfts::types::MintType<CollectionId>
3039
+ * Lookup305: pallet_nfts::types::MintType<CollectionId>
3040
3040
  **/
3041
3041
  PalletNftsMintType: {
3042
3042
  _enum: {
@@ -3046,13 +3046,13 @@ export default {
3046
3046
  }
3047
3047
  },
3048
3048
  /**
3049
- * Lookup302: pallet_nfts::types::ItemSetting
3049
+ * Lookup307: pallet_nfts::types::ItemSetting
3050
3050
  **/
3051
3051
  PalletNftsItemSetting: {
3052
3052
  _enum: ["__Unused0", "Transferable", "UnlockedMetadata", "__Unused3", "UnlockedAttributes"]
3053
3053
  },
3054
3054
  /**
3055
- * Lookup303: pallet_nfts::types::DestroyWitness
3055
+ * Lookup308: pallet_nfts::types::DestroyWitness
3056
3056
  **/
3057
3057
  PalletNftsDestroyWitness: {
3058
3058
  itemMetadatas: "Compact<u32>",
@@ -3060,26 +3060,26 @@ export default {
3060
3060
  attributes: "Compact<u32>"
3061
3061
  },
3062
3062
  /**
3063
- * Lookup305: pallet_nfts::types::MintWitness<ItemId, Balance>
3063
+ * Lookup310: pallet_nfts::types::MintWitness<ItemId, Balance>
3064
3064
  **/
3065
3065
  PalletNftsMintWitness: {
3066
3066
  ownedItem: "Option<u32>",
3067
3067
  mintPrice: "Option<u128>"
3068
3068
  },
3069
3069
  /**
3070
- * Lookup306: pallet_nfts::types::ItemConfig
3070
+ * Lookup311: pallet_nfts::types::ItemConfig
3071
3071
  **/
3072
3072
  PalletNftsItemConfig: {
3073
3073
  settings: "u64"
3074
3074
  },
3075
3075
  /**
3076
- * Lookup307: pallet_nfts::types::CancelAttributesApprovalWitness
3076
+ * Lookup312: pallet_nfts::types::CancelAttributesApprovalWitness
3077
3077
  **/
3078
3078
  PalletNftsCancelAttributesApprovalWitness: {
3079
3079
  accountAttributes: "u32"
3080
3080
  },
3081
3081
  /**
3082
- * Lookup309: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
3082
+ * Lookup314: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
3083
3083
  **/
3084
3084
  PalletNftsItemTip: {
3085
3085
  collection: "u32",
@@ -3088,7 +3088,7 @@ export default {
3088
3088
  amount: "u128"
3089
3089
  },
3090
3090
  /**
3091
- * Lookup311: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
3091
+ * Lookup316: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
3092
3092
  **/
3093
3093
  PalletNftsPreSignedMint: {
3094
3094
  collection: "u32",
@@ -3100,7 +3100,7 @@ export default {
3100
3100
  mintPrice: "Option<u128>"
3101
3101
  },
3102
3102
  /**
3103
- * Lookup312: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
3103
+ * Lookup317: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
3104
3104
  **/
3105
3105
  PalletNftsPreSignedAttributes: {
3106
3106
  collection: "u32",
@@ -3110,13 +3110,13 @@ export default {
3110
3110
  deadline: "u32"
3111
3111
  },
3112
3112
  /**
3113
- * Lookup313: pallet_sudo::pallet::Error<T>
3113
+ * Lookup318: pallet_sudo::pallet::Error<T>
3114
3114
  **/
3115
3115
  PalletSudoError: {
3116
3116
  _enum: ["RequireSudo"]
3117
3117
  },
3118
3118
  /**
3119
- * Lookup315: fp_rpc::TransactionStatus
3119
+ * Lookup320: fp_rpc::TransactionStatus
3120
3120
  **/
3121
3121
  FpRpcTransactionStatus: {
3122
3122
  transactionHash: "H256",
@@ -3128,11 +3128,11 @@ export default {
3128
3128
  logsBloom: "EthbloomBloom"
3129
3129
  },
3130
3130
  /**
3131
- * Lookup318: ethbloom::Bloom
3131
+ * Lookup323: ethbloom::Bloom
3132
3132
  **/
3133
3133
  EthbloomBloom: "[u8;256]",
3134
3134
  /**
3135
- * Lookup320: ethereum::receipt::ReceiptV3
3135
+ * Lookup325: ethereum::receipt::ReceiptV3
3136
3136
  **/
3137
3137
  EthereumReceiptReceiptV3: {
3138
3138
  _enum: {
@@ -3142,7 +3142,7 @@ export default {
3142
3142
  }
3143
3143
  },
3144
3144
  /**
3145
- * Lookup321: ethereum::receipt::EIP658ReceiptData
3145
+ * Lookup326: ethereum::receipt::EIP658ReceiptData
3146
3146
  **/
3147
3147
  EthereumReceiptEip658ReceiptData: {
3148
3148
  statusCode: "u8",
@@ -3151,7 +3151,7 @@ export default {
3151
3151
  logs: "Vec<EthereumLog>"
3152
3152
  },
3153
3153
  /**
3154
- * Lookup322: ethereum::block::Block<ethereum::transaction::TransactionV2>
3154
+ * Lookup327: ethereum::block::Block<ethereum::transaction::TransactionV2>
3155
3155
  **/
3156
3156
  EthereumBlock: {
3157
3157
  header: "EthereumHeader",
@@ -3159,7 +3159,7 @@ export default {
3159
3159
  ommers: "Vec<EthereumHeader>"
3160
3160
  },
3161
3161
  /**
3162
- * Lookup323: ethereum::header::Header
3162
+ * Lookup328: ethereum::header::Header
3163
3163
  **/
3164
3164
  EthereumHeader: {
3165
3165
  parentHash: "H256",
@@ -3179,17 +3179,17 @@ export default {
3179
3179
  nonce: "EthereumTypesHashH64"
3180
3180
  },
3181
3181
  /**
3182
- * Lookup324: ethereum_types::hash::H64
3182
+ * Lookup329: ethereum_types::hash::H64
3183
3183
  **/
3184
3184
  EthereumTypesHashH64: "[u8;8]",
3185
3185
  /**
3186
- * Lookup329: pallet_ethereum::pallet::Error<T>
3186
+ * Lookup334: pallet_ethereum::pallet::Error<T>
3187
3187
  **/
3188
3188
  PalletEthereumError: {
3189
3189
  _enum: ["InvalidSignature", "PreLogExists"]
3190
3190
  },
3191
3191
  /**
3192
- * Lookup330: pallet_evm::CodeMetadata
3192
+ * Lookup335: pallet_evm::CodeMetadata
3193
3193
  **/
3194
3194
  PalletEvmCodeMetadata: {
3195
3195
  _alias: {
@@ -3200,7 +3200,7 @@ export default {
3200
3200
  hash_: "H256"
3201
3201
  },
3202
3202
  /**
3203
- * Lookup332: pallet_evm::pallet::Error<T>
3203
+ * Lookup337: pallet_evm::pallet::Error<T>
3204
3204
  **/
3205
3205
  PalletEvmError: {
3206
3206
  _enum: [
@@ -3220,14 +3220,14 @@ export default {
3220
3220
  ]
3221
3221
  },
3222
3222
  /**
3223
- * Lookup333: pallet_storage_providers::types::SignUpRequest<T>
3223
+ * Lookup338: pallet_storage_providers::types::SignUpRequest<T>
3224
3224
  **/
3225
3225
  PalletStorageProvidersSignUpRequest: {
3226
3226
  spSignUpRequest: "PalletStorageProvidersSignUpRequestSpParams",
3227
3227
  at: "u32"
3228
3228
  },
3229
3229
  /**
3230
- * Lookup334: pallet_storage_providers::types::SignUpRequestSpParams<T>
3230
+ * Lookup339: pallet_storage_providers::types::SignUpRequestSpParams<T>
3231
3231
  **/
3232
3232
  PalletStorageProvidersSignUpRequestSpParams: {
3233
3233
  _enum: {
@@ -3236,7 +3236,7 @@ export default {
3236
3236
  }
3237
3237
  },
3238
3238
  /**
3239
- * Lookup335: pallet_storage_providers::types::BackupStorageProvider<T>
3239
+ * Lookup340: pallet_storage_providers::types::BackupStorageProvider<T>
3240
3240
  **/
3241
3241
  PalletStorageProvidersBackupStorageProvider: {
3242
3242
  capacity: "u64",
@@ -3250,14 +3250,14 @@ export default {
3250
3250
  signUpBlock: "u32"
3251
3251
  },
3252
3252
  /**
3253
- * Lookup336: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
3253
+ * Lookup341: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
3254
3254
  **/
3255
3255
  PalletStorageProvidersMainStorageProviderSignUpRequest: {
3256
3256
  mspInfo: "PalletStorageProvidersMainStorageProvider",
3257
3257
  valueProp: "PalletStorageProvidersValueProposition"
3258
3258
  },
3259
3259
  /**
3260
- * Lookup337: pallet_storage_providers::types::MainStorageProvider<T>
3260
+ * Lookup342: pallet_storage_providers::types::MainStorageProvider<T>
3261
3261
  **/
3262
3262
  PalletStorageProvidersMainStorageProvider: {
3263
3263
  capacity: "u64",
@@ -3271,7 +3271,7 @@ export default {
3271
3271
  signUpBlock: "u32"
3272
3272
  },
3273
3273
  /**
3274
- * Lookup338: pallet_storage_providers::types::Bucket<T>
3274
+ * Lookup343: pallet_storage_providers::types::Bucket<T>
3275
3275
  **/
3276
3276
  PalletStorageProvidersBucket: {
3277
3277
  _alias: {
@@ -3286,7 +3286,7 @@ export default {
3286
3286
  valuePropId: "H256"
3287
3287
  },
3288
3288
  /**
3289
- * Lookup342: pallet_storage_providers::pallet::Error<T>
3289
+ * Lookup347: pallet_storage_providers::pallet::Error<T>
3290
3290
  **/
3291
3291
  PalletStorageProvidersError: {
3292
3292
  _enum: [
@@ -3345,7 +3345,7 @@ export default {
3345
3345
  ]
3346
3346
  },
3347
3347
  /**
3348
- * Lookup343: pallet_file_system::types::StorageRequestMetadata<T>
3348
+ * Lookup348: pallet_file_system::types::StorageRequestMetadata<T>
3349
3349
  **/
3350
3350
  PalletFileSystemStorageRequestMetadata: {
3351
3351
  _alias: {
@@ -3366,13 +3366,13 @@ export default {
3366
3366
  depositPaid: "u128"
3367
3367
  },
3368
3368
  /**
3369
- * Lookup346: pallet_file_system::types::StorageRequestBspsMetadata<T>
3369
+ * Lookup351: pallet_file_system::types::StorageRequestBspsMetadata<T>
3370
3370
  **/
3371
3371
  PalletFileSystemStorageRequestBspsMetadata: {
3372
3372
  confirmed: "bool"
3373
3373
  },
3374
3374
  /**
3375
- * Lookup349: pallet_file_system::types::PendingFileDeletionRequest<T>
3375
+ * Lookup353: pallet_file_system::types::PendingFileDeletionRequest<T>
3376
3376
  **/
3377
3377
  PalletFileSystemPendingFileDeletionRequest: {
3378
3378
  user: "AccountId20",
@@ -3383,7 +3383,7 @@ export default {
3383
3383
  queuePriorityChallenge: "bool"
3384
3384
  },
3385
3385
  /**
3386
- * Lookup351: pallet_file_system::types::PendingStopStoringRequest<T>
3386
+ * Lookup355: pallet_file_system::types::PendingStopStoringRequest<T>
3387
3387
  **/
3388
3388
  PalletFileSystemPendingStopStoringRequest: {
3389
3389
  tickWhenRequested: "u32",
@@ -3391,7 +3391,7 @@ export default {
3391
3391
  fileSize: "u64"
3392
3392
  },
3393
3393
  /**
3394
- * Lookup352: pallet_file_system::types::MoveBucketRequestMetadata<T>
3394
+ * Lookup356: pallet_file_system::types::MoveBucketRequestMetadata<T>
3395
3395
  **/
3396
3396
  PalletFileSystemMoveBucketRequestMetadata: {
3397
3397
  requester: "AccountId20",
@@ -3399,7 +3399,7 @@ export default {
3399
3399
  newValuePropId: "H256"
3400
3400
  },
3401
3401
  /**
3402
- * Lookup353: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
3402
+ * Lookup357: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
3403
3403
  **/
3404
3404
  PalletFileSystemIncompleteStorageRequestMetadata: {
3405
3405
  owner: "AccountId20",
@@ -3411,7 +3411,7 @@ export default {
3411
3411
  pendingBucketRemoval: "bool"
3412
3412
  },
3413
3413
  /**
3414
- * Lookup355: pallet_file_system::pallet::Error<T>
3414
+ * Lookup359: pallet_file_system::pallet::Error<T>
3415
3415
  **/
3416
3416
  PalletFileSystemError: {
3417
3417
  _enum: [
@@ -3457,6 +3457,12 @@ export default {
3457
3457
  "ThresholdBelowAsymptote",
3458
3458
  "NotFileOwner",
3459
3459
  "FileKeyAlreadyPendingDeletion",
3460
+ "BatchFileDeletionMustContainSingleBucket",
3461
+ "DuplicateFileKeyInBatchFileDeletion",
3462
+ "NoFileKeysToDelete",
3463
+ "FailedToPushFileKeyToBucketDeletionVector",
3464
+ "FailedToPushUserToBspDeletionVector",
3465
+ "FailedToPushFileKeyToBspDeletionVector",
3460
3466
  "MaxUserPendingDeletionRequestsReached",
3461
3467
  "MspNotStoringBucket",
3462
3468
  "FileKeyNotPendingDeletion",
@@ -3506,14 +3512,14 @@ export default {
3506
3512
  ]
3507
3513
  },
3508
3514
  /**
3509
- * Lookup357: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
3515
+ * Lookup361: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
3510
3516
  **/
3511
3517
  PalletProofsDealerProofSubmissionRecord: {
3512
3518
  lastTickProven: "u32",
3513
3519
  nextTickToSubmitProofFor: "u32"
3514
3520
  },
3515
3521
  /**
3516
- * Lookup364: pallet_proofs_dealer::pallet::Error<T>
3522
+ * Lookup368: pallet_proofs_dealer::pallet::Error<T>
3517
3523
  **/
3518
3524
  PalletProofsDealerError: {
3519
3525
  _enum: [
@@ -3544,7 +3550,7 @@ export default {
3544
3550
  ]
3545
3551
  },
3546
3552
  /**
3547
- * Lookup366: pallet_payment_streams::types::FixedRatePaymentStream<T>
3553
+ * Lookup370: pallet_payment_streams::types::FixedRatePaymentStream<T>
3548
3554
  **/
3549
3555
  PalletPaymentStreamsFixedRatePaymentStream: {
3550
3556
  rate: "u128",
@@ -3553,7 +3559,7 @@ export default {
3553
3559
  outOfFundsTick: "Option<u32>"
3554
3560
  },
3555
3561
  /**
3556
- * Lookup367: pallet_payment_streams::types::DynamicRatePaymentStream<T>
3562
+ * Lookup371: pallet_payment_streams::types::DynamicRatePaymentStream<T>
3557
3563
  **/
3558
3564
  PalletPaymentStreamsDynamicRatePaymentStream: {
3559
3565
  amountProvided: "u64",
@@ -3562,14 +3568,14 @@ export default {
3562
3568
  outOfFundsTick: "Option<u32>"
3563
3569
  },
3564
3570
  /**
3565
- * Lookup368: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
3571
+ * Lookup372: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
3566
3572
  **/
3567
3573
  PalletPaymentStreamsProviderLastChargeableInfo: {
3568
3574
  lastChargeableTick: "u32",
3569
3575
  priceIndex: "u128"
3570
3576
  },
3571
3577
  /**
3572
- * Lookup369: pallet_payment_streams::pallet::Error<T>
3578
+ * Lookup373: pallet_payment_streams::pallet::Error<T>
3573
3579
  **/
3574
3580
  PalletPaymentStreamsError: {
3575
3581
  _enum: [
@@ -3594,7 +3600,7 @@ export default {
3594
3600
  ]
3595
3601
  },
3596
3602
  /**
3597
- * Lookup370: pallet_bucket_nfts::pallet::Error<T>
3603
+ * Lookup374: pallet_bucket_nfts::pallet::Error<T>
3598
3604
  **/
3599
3605
  PalletBucketNftsError: {
3600
3606
  _enum: [
@@ -3605,7 +3611,7 @@ export default {
3605
3611
  ]
3606
3612
  },
3607
3613
  /**
3608
- * Lookup371: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
3614
+ * Lookup375: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
3609
3615
  **/
3610
3616
  PalletNftsCollectionDetails: {
3611
3617
  owner: "AccountId20",
@@ -3616,13 +3622,13 @@ export default {
3616
3622
  attributes: "u32"
3617
3623
  },
3618
3624
  /**
3619
- * Lookup376: pallet_nfts::types::CollectionRole
3625
+ * Lookup380: pallet_nfts::types::CollectionRole
3620
3626
  **/
3621
3627
  PalletNftsCollectionRole: {
3622
3628
  _enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
3623
3629
  },
3624
3630
  /**
3625
- * Lookup377: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
3631
+ * Lookup381: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
3626
3632
  **/
3627
3633
  PalletNftsItemDetails: {
3628
3634
  owner: "AccountId20",
@@ -3630,42 +3636,42 @@ export default {
3630
3636
  deposit: "PalletNftsItemDeposit"
3631
3637
  },
3632
3638
  /**
3633
- * Lookup378: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
3639
+ * Lookup382: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
3634
3640
  **/
3635
3641
  PalletNftsItemDeposit: {
3636
3642
  account: "AccountId20",
3637
3643
  amount: "u128"
3638
3644
  },
3639
3645
  /**
3640
- * Lookup383: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
3646
+ * Lookup387: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
3641
3647
  **/
3642
3648
  PalletNftsCollectionMetadata: {
3643
3649
  deposit: "u128",
3644
3650
  data: "Bytes"
3645
3651
  },
3646
3652
  /**
3647
- * Lookup384: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
3653
+ * Lookup388: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
3648
3654
  **/
3649
3655
  PalletNftsItemMetadata: {
3650
3656
  deposit: "PalletNftsItemMetadataDeposit",
3651
3657
  data: "Bytes"
3652
3658
  },
3653
3659
  /**
3654
- * Lookup385: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
3660
+ * Lookup389: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
3655
3661
  **/
3656
3662
  PalletNftsItemMetadataDeposit: {
3657
3663
  account: "Option<AccountId20>",
3658
3664
  amount: "u128"
3659
3665
  },
3660
3666
  /**
3661
- * Lookup388: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
3667
+ * Lookup392: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
3662
3668
  **/
3663
3669
  PalletNftsAttributeDeposit: {
3664
3670
  account: "Option<AccountId20>",
3665
3671
  amount: "u128"
3666
3672
  },
3667
3673
  /**
3668
- * Lookup392: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
3674
+ * Lookup396: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
3669
3675
  **/
3670
3676
  PalletNftsPendingSwap: {
3671
3677
  desiredCollection: "u32",
@@ -3674,7 +3680,7 @@ export default {
3674
3680
  deadline: "u32"
3675
3681
  },
3676
3682
  /**
3677
- * Lookup394: pallet_nfts::types::PalletFeature
3683
+ * Lookup398: pallet_nfts::types::PalletFeature
3678
3684
  **/
3679
3685
  PalletNftsPalletFeature: {
3680
3686
  _enum: [
@@ -3690,7 +3696,7 @@ export default {
3690
3696
  ]
3691
3697
  },
3692
3698
  /**
3693
- * Lookup395: pallet_nfts::pallet::Error<T, I>
3699
+ * Lookup399: pallet_nfts::pallet::Error<T, I>
3694
3700
  **/
3695
3701
  PalletNftsError: {
3696
3702
  _enum: [
@@ -3742,47 +3748,47 @@ export default {
3742
3748
  ]
3743
3749
  },
3744
3750
  /**
3745
- * Lookup398: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3751
+ * Lookup402: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3746
3752
  **/
3747
3753
  FrameSystemExtensionsCheckNonZeroSender: "Null",
3748
3754
  /**
3749
- * Lookup399: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3755
+ * Lookup403: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3750
3756
  **/
3751
3757
  FrameSystemExtensionsCheckSpecVersion: "Null",
3752
3758
  /**
3753
- * Lookup400: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3759
+ * Lookup404: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3754
3760
  **/
3755
3761
  FrameSystemExtensionsCheckTxVersion: "Null",
3756
3762
  /**
3757
- * Lookup401: frame_system::extensions::check_genesis::CheckGenesis<T>
3763
+ * Lookup405: frame_system::extensions::check_genesis::CheckGenesis<T>
3758
3764
  **/
3759
3765
  FrameSystemExtensionsCheckGenesis: "Null",
3760
3766
  /**
3761
- * Lookup404: frame_system::extensions::check_nonce::CheckNonce<T>
3767
+ * Lookup408: frame_system::extensions::check_nonce::CheckNonce<T>
3762
3768
  **/
3763
3769
  FrameSystemExtensionsCheckNonce: "Compact<u32>",
3764
3770
  /**
3765
- * Lookup405: frame_system::extensions::check_weight::CheckWeight<T>
3771
+ * Lookup409: frame_system::extensions::check_weight::CheckWeight<T>
3766
3772
  **/
3767
3773
  FrameSystemExtensionsCheckWeight: "Null",
3768
3774
  /**
3769
- * Lookup406: pallet_transaction_payment::ChargeTransactionPayment<T>
3775
+ * Lookup410: pallet_transaction_payment::ChargeTransactionPayment<T>
3770
3776
  **/
3771
3777
  PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
3772
3778
  /**
3773
- * Lookup407: frame_metadata_hash_extension::CheckMetadataHash<T>
3779
+ * Lookup411: frame_metadata_hash_extension::CheckMetadataHash<T>
3774
3780
  **/
3775
3781
  FrameMetadataHashExtensionCheckMetadataHash: {
3776
3782
  mode: "FrameMetadataHashExtensionMode"
3777
3783
  },
3778
3784
  /**
3779
- * Lookup408: frame_metadata_hash_extension::Mode
3785
+ * Lookup412: frame_metadata_hash_extension::Mode
3780
3786
  **/
3781
3787
  FrameMetadataHashExtensionMode: {
3782
3788
  _enum: ["Disabled", "Enabled"]
3783
3789
  },
3784
3790
  /**
3785
- * Lookup410: sh_solochain_evm_runtime::Runtime
3791
+ * Lookup414: sh_solochain_evm_runtime::Runtime
3786
3792
  **/
3787
3793
  ShSolochainEvmRuntimeRuntime: "Null"
3788
3794
  };