@storagehub/api-augment 0.2.11 → 0.4.0

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 (50) hide show
  1. package/dist/parachain/interfaces/lookup.js +160 -213
  2. package/dist/parachain/interfaces/lookup.js.map +1 -1
  3. package/dist/parachain/interfaces/storagehubclient/runtime.js +5 -0
  4. package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -1
  5. package/dist/solochain-evm/interfaces/lookup.js +290 -343
  6. package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
  7. package/dist/types/parachain/interfaces/augment-api-errors.d.ts +4 -108
  8. package/dist/types/parachain/interfaces/augment-api-events.d.ts +25 -103
  9. package/dist/types/parachain/interfaces/augment-api-query.d.ts +11 -0
  10. package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +8 -0
  11. package/dist/types/parachain/interfaces/augment-api-tx.d.ts +75 -10
  12. package/dist/types/parachain/interfaces/augment-types.d.ts +2 -1
  13. package/dist/types/parachain/interfaces/lookup.d.ts +118 -145
  14. package/dist/types/parachain/interfaces/registry.d.ts +2 -2
  15. package/dist/types/parachain/interfaces/storagehubclient/types.d.ts +14 -4
  16. package/dist/types/parachain/interfaces/types-lookup.d.ts +175 -234
  17. package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +4 -108
  18. package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +25 -103
  19. package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +11 -0
  20. package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +8 -0
  21. package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +75 -10
  22. package/dist/types/solochain-evm/interfaces/augment-types.d.ts +2 -1
  23. package/dist/types/solochain-evm/interfaces/lookup.d.ts +248 -275
  24. package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -2
  25. package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +14 -4
  26. package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +305 -364
  27. package/metadata-sh-parachain.json +1 -1
  28. package/metadata-sh-solochain-evm.json +1 -1
  29. package/package.json +2 -2
  30. package/src/parachain/interfaces/augment-api-errors.ts +4 -108
  31. package/src/parachain/interfaces/augment-api-events.ts +22 -113
  32. package/src/parachain/interfaces/augment-api-query.ts +12 -0
  33. package/src/parachain/interfaces/augment-api-runtime.ts +14 -0
  34. package/src/parachain/interfaces/augment-api-tx.ts +76 -10
  35. package/src/parachain/interfaces/augment-types.ts +2 -0
  36. package/src/parachain/interfaces/lookup.ts +160 -213
  37. package/src/parachain/interfaces/registry.ts +2 -2
  38. package/src/parachain/interfaces/storagehubclient/runtime.ts +5 -0
  39. package/src/parachain/interfaces/storagehubclient/types.ts +14 -4
  40. package/src/parachain/interfaces/types-lookup.ts +225 -314
  41. package/src/solochain-evm/interfaces/augment-api-errors.ts +4 -108
  42. package/src/solochain-evm/interfaces/augment-api-events.ts +22 -113
  43. package/src/solochain-evm/interfaces/augment-api-query.ts +12 -0
  44. package/src/solochain-evm/interfaces/augment-api-runtime.ts +14 -0
  45. package/src/solochain-evm/interfaces/augment-api-tx.ts +76 -10
  46. package/src/solochain-evm/interfaces/augment-types.ts +2 -0
  47. package/src/solochain-evm/interfaces/lookup.ts +290 -343
  48. package/src/solochain-evm/interfaces/registry.ts +2 -2
  49. package/src/solochain-evm/interfaces/storagehubclient/types.ts +14 -4
  50. package/src/solochain-evm/interfaces/types-lookup.ts +355 -444
@@ -1530,12 +1530,6 @@ export default {
1530
1530
  bucketId: "H256",
1531
1531
  maybeCollectionId: "Option<u32>"
1532
1532
  },
1533
- MoveBucketRequested: {
1534
- who: "AccountId32",
1535
- bucketId: "H256",
1536
- newMspId: "H256",
1537
- newValuePropId: "H256"
1538
- },
1539
1533
  BucketPrivacyUpdated: {
1540
1534
  who: "AccountId32",
1541
1535
  bucketId: "H256",
@@ -1547,6 +1541,26 @@ export default {
1547
1541
  bucketId: "H256",
1548
1542
  collectionId: "u32"
1549
1543
  },
1544
+ MoveBucketRequested: {
1545
+ who: "AccountId32",
1546
+ bucketId: "H256",
1547
+ newMspId: "H256",
1548
+ newValuePropId: "H256"
1549
+ },
1550
+ MoveBucketRequestExpired: {
1551
+ bucketId: "H256"
1552
+ },
1553
+ MoveBucketAccepted: {
1554
+ bucketId: "H256",
1555
+ oldMspId: "Option<H256>",
1556
+ newMspId: "H256",
1557
+ valuePropId: "H256"
1558
+ },
1559
+ MoveBucketRejected: {
1560
+ bucketId: "H256",
1561
+ oldMspId: "Option<H256>",
1562
+ newMspId: "H256"
1563
+ },
1550
1564
  NewStorageRequest: {
1551
1565
  _alias: {
1552
1566
  size_: "size"
@@ -1564,6 +1578,27 @@ export default {
1564
1578
  fileKey: "H256",
1565
1579
  fileMetadata: "ShpFileMetadataFileMetadata"
1566
1580
  },
1581
+ StorageRequestFulfilled: {
1582
+ fileKey: "H256"
1583
+ },
1584
+ StorageRequestExpired: {
1585
+ fileKey: "H256"
1586
+ },
1587
+ StorageRequestRevoked: {
1588
+ fileKey: "H256"
1589
+ },
1590
+ StorageRequestRejected: {
1591
+ fileKey: "H256",
1592
+ mspId: "H256",
1593
+ bucketId: "H256",
1594
+ reason: "PalletFileSystemRejectedStorageRequestReason"
1595
+ },
1596
+ IncompleteStorageRequest: {
1597
+ fileKey: "H256"
1598
+ },
1599
+ IncompleteStorageRequestCleanedUp: {
1600
+ fileKey: "H256"
1601
+ },
1567
1602
  AcceptedBspVolunteer: {
1568
1603
  _alias: {
1569
1604
  size_: "size"
@@ -1583,20 +1618,9 @@ export default {
1583
1618
  skippedFileKeys: "Vec<H256>",
1584
1619
  newRoot: "H256"
1585
1620
  },
1586
- StorageRequestFulfilled: {
1587
- fileKey: "H256"
1588
- },
1589
- StorageRequestExpired: {
1590
- fileKey: "H256"
1591
- },
1592
- StorageRequestRevoked: {
1593
- fileKey: "H256"
1594
- },
1595
- StorageRequestRejected: {
1596
- fileKey: "H256",
1597
- mspId: "H256",
1598
- bucketId: "H256",
1599
- reason: "PalletFileSystemRejectedStorageRequestReason"
1621
+ BspChallengeCycleInitialised: {
1622
+ who: "AccountId32",
1623
+ bspId: "H256"
1600
1624
  },
1601
1625
  BspRequestedToStopStoring: {
1602
1626
  bspId: "H256",
@@ -1609,9 +1633,10 @@ export default {
1609
1633
  fileKey: "H256",
1610
1634
  newRoot: "H256"
1611
1635
  },
1612
- PriorityChallengeForFileDeletionQueued: {
1613
- issuer: "PalletFileSystemEitherAccountIdOrMspId",
1614
- fileKey: "H256"
1636
+ MspStoppedStoringBucket: {
1637
+ mspId: "H256",
1638
+ owner: "AccountId32",
1639
+ bucketId: "H256"
1615
1640
  },
1616
1641
  SpStopStoringInsolventUser: {
1617
1642
  spId: "H256",
@@ -1625,76 +1650,6 @@ export default {
1625
1650
  owner: "AccountId32",
1626
1651
  bucketId: "H256"
1627
1652
  },
1628
- FailedToQueuePriorityChallenge: {
1629
- fileKey: "H256",
1630
- error: "SpRuntimeDispatchError"
1631
- },
1632
- FileDeletionRequest: {
1633
- user: "AccountId32",
1634
- fileKey: "H256",
1635
- fileSize: "u64",
1636
- bucketId: "H256",
1637
- mspId: "H256",
1638
- proofOfInclusion: "bool"
1639
- },
1640
- ProofSubmittedForPendingFileDeletionRequest: {
1641
- user: "AccountId32",
1642
- fileKey: "H256",
1643
- fileSize: "u64",
1644
- bucketId: "H256",
1645
- mspId: "H256",
1646
- proofOfInclusion: "bool"
1647
- },
1648
- BspChallengeCycleInitialised: {
1649
- who: "AccountId32",
1650
- bspId: "H256"
1651
- },
1652
- MoveBucketRequestExpired: {
1653
- bucketId: "H256"
1654
- },
1655
- MoveBucketAccepted: {
1656
- bucketId: "H256",
1657
- oldMspId: "Option<H256>",
1658
- newMspId: "H256",
1659
- valuePropId: "H256"
1660
- },
1661
- MoveBucketRejected: {
1662
- bucketId: "H256",
1663
- oldMspId: "Option<H256>",
1664
- newMspId: "H256"
1665
- },
1666
- MspStoppedStoringBucket: {
1667
- mspId: "H256",
1668
- owner: "AccountId32",
1669
- bucketId: "H256"
1670
- },
1671
- FailedToGetMspOfBucket: {
1672
- bucketId: "H256",
1673
- error: "SpRuntimeDispatchError"
1674
- },
1675
- FailedToDecreaseMspUsedCapacity: {
1676
- user: "AccountId32",
1677
- mspId: "H256",
1678
- fileKey: "H256",
1679
- fileSize: "u64",
1680
- error: "SpRuntimeDispatchError"
1681
- },
1682
- UsedCapacityShouldBeZero: {
1683
- actualUsedCapacity: "u64"
1684
- },
1685
- FailedToReleaseStorageRequestCreationDeposit: {
1686
- fileKey: "H256",
1687
- owner: "AccountId32",
1688
- amountToReturn: "u128",
1689
- error: "SpRuntimeDispatchError"
1690
- },
1691
- FailedToTransferDepositFundsToBsp: {
1692
- fileKey: "H256",
1693
- owner: "AccountId32",
1694
- bspId: "H256",
1695
- amountToTransfer: "u128",
1696
- error: "SpRuntimeDispatchError"
1697
- },
1698
1653
  FileDeletionRequested: {
1699
1654
  signedDeleteIntention: "PalletFileSystemFileOperationIntention",
1700
1655
  signature: "SpRuntimeMultiSignature"
@@ -1714,13 +1669,26 @@ export default {
1714
1669
  oldRoot: "H256",
1715
1670
  newRoot: "H256"
1716
1671
  },
1717
- IncompleteStorageRequest: {
1718
- fileKey: "H256"
1672
+ UsedCapacityShouldBeZero: {
1673
+ actualUsedCapacity: "u64"
1674
+ },
1675
+ FailedToReleaseStorageRequestCreationDeposit: {
1676
+ fileKey: "H256",
1677
+ owner: "AccountId32",
1678
+ amountToReturn: "u128",
1679
+ error: "SpRuntimeDispatchError"
1680
+ },
1681
+ UserOperationPauseFlagsUpdated: {
1682
+ _alias: {
1683
+ new_: "new"
1684
+ },
1685
+ old: "u32",
1686
+ new_: "u32"
1719
1687
  }
1720
1688
  }
1721
1689
  },
1722
1690
  /**
1723
- * Lookup153: shp_file_metadata::FileMetadata
1691
+ * Lookup154: shp_file_metadata::FileMetadata
1724
1692
  **/
1725
1693
  ShpFileMetadataFileMetadata: {
1726
1694
  owner: "Bytes",
@@ -1730,11 +1698,11 @@ export default {
1730
1698
  fingerprint: "ShpFileMetadataFingerprint"
1731
1699
  },
1732
1700
  /**
1733
- * Lookup154: shp_file_metadata::Fingerprint
1701
+ * Lookup155: shp_file_metadata::Fingerprint
1734
1702
  **/
1735
1703
  ShpFileMetadataFingerprint: "[u8;32]",
1736
1704
  /**
1737
- * Lookup159: pallet_file_system::types::RejectedStorageRequestReason
1705
+ * Lookup156: pallet_file_system::types::RejectedStorageRequestReason
1738
1706
  **/
1739
1707
  PalletFileSystemRejectedStorageRequestReason: {
1740
1708
  _enum: [
@@ -1746,29 +1714,20 @@ export default {
1746
1714
  ]
1747
1715
  },
1748
1716
  /**
1749
- * Lookup160: pallet_file_system::types::EitherAccountIdOrMspId<T>
1750
- **/
1751
- PalletFileSystemEitherAccountIdOrMspId: {
1752
- _enum: {
1753
- AccountId: "AccountId32",
1754
- MspId: "H256"
1755
- }
1756
- },
1757
- /**
1758
- * Lookup162: pallet_file_system::types::FileOperationIntention<T>
1717
+ * Lookup161: pallet_file_system::types::FileOperationIntention<T>
1759
1718
  **/
1760
1719
  PalletFileSystemFileOperationIntention: {
1761
1720
  fileKey: "H256",
1762
1721
  operation: "PalletFileSystemFileOperation"
1763
1722
  },
1764
1723
  /**
1765
- * Lookup163: pallet_file_system::types::FileOperation
1724
+ * Lookup162: pallet_file_system::types::FileOperation
1766
1725
  **/
1767
1726
  PalletFileSystemFileOperation: {
1768
1727
  _enum: ["Delete"]
1769
1728
  },
1770
1729
  /**
1771
- * Lookup164: sp_runtime::MultiSignature
1730
+ * Lookup163: sp_runtime::MultiSignature
1772
1731
  **/
1773
1732
  SpRuntimeMultiSignature: {
1774
1733
  _enum: {
@@ -2423,8 +2382,8 @@ export default {
2423
2382
  MostlyStablePrice: "u128",
2424
2383
  MaxPrice: "u128",
2425
2384
  MinPrice: "u128",
2426
- UpperExponentFactor: "u32",
2427
- LowerExponentFactor: "u32",
2385
+ UpperExponentFactor: "u128",
2386
+ LowerExponentFactor: "u128",
2428
2387
  ZeroSizeBucketFixedRate: "u128",
2429
2388
  IdealUtilisationRate: "Perbill",
2430
2389
  DecayRate: "Perbill",
@@ -3840,6 +3799,9 @@ export default {
3840
3799
  fileKeys: "Vec<H256>",
3841
3800
  bspId: "Option<H256>",
3842
3801
  forestProof: "SpTrieStorageProofCompactProof"
3802
+ },
3803
+ set_user_operation_pause_flags: {
3804
+ newFlags: "u32"
3843
3805
  }
3844
3806
  }
3845
3807
  },
@@ -4344,8 +4306,8 @@ export default {
4344
4306
  MostlyStablePrice: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice,Option<u128>)",
4345
4307
  MaxPrice: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice,Option<u128>)",
4346
4308
  MinPrice: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,Option<u128>)",
4347
- UpperExponentFactor: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u32>)",
4348
- LowerExponentFactor: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u32>)",
4309
+ UpperExponentFactor: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u128>)",
4310
+ LowerExponentFactor: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u128>)",
4349
4311
  ZeroSizeBucketFixedRate: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,Option<u128>)",
4350
4312
  IdealUtilisationRate: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate,Option<Perbill>)",
4351
4313
  DecayRate: "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate,Option<Perbill>)",
@@ -4723,7 +4685,7 @@ export default {
4723
4685
  location: "Bytes",
4724
4686
  fingerprint: "H256",
4725
4687
  size_: "u64",
4726
- msp: "Option<(H256,bool)>",
4688
+ mspStatus: "PalletFileSystemMspStorageRequestStatus",
4727
4689
  userPeerIds: "Vec<Bytes>",
4728
4690
  bspsRequired: "u32",
4729
4691
  bspsConfirmed: "u32",
@@ -4731,13 +4693,24 @@ export default {
4731
4693
  depositPaid: "u128"
4732
4694
  },
4733
4695
  /**
4734
- * Lookup488: pallet_file_system::types::StorageRequestBspsMetadata<T>
4696
+ * Lookup486: pallet_file_system::types::MspStorageRequestStatus<T>
4697
+ **/
4698
+ PalletFileSystemMspStorageRequestStatus: {
4699
+ _enum: {
4700
+ None: "Null",
4701
+ Pending: "H256",
4702
+ AcceptedNewFile: "H256",
4703
+ AcceptedExistingFile: "H256"
4704
+ }
4705
+ },
4706
+ /**
4707
+ * Lookup487: pallet_file_system::types::StorageRequestBspsMetadata<T>
4735
4708
  **/
4736
4709
  PalletFileSystemStorageRequestBspsMetadata: {
4737
4710
  confirmed: "bool"
4738
4711
  },
4739
4712
  /**
4740
- * Lookup490: pallet_file_system::types::PendingFileDeletionRequest<T>
4713
+ * Lookup489: pallet_file_system::types::PendingFileDeletionRequest<T>
4741
4714
  **/
4742
4715
  PalletFileSystemPendingFileDeletionRequest: {
4743
4716
  user: "AccountId32",
@@ -4748,7 +4721,7 @@ export default {
4748
4721
  queuePriorityChallenge: "bool"
4749
4722
  },
4750
4723
  /**
4751
- * Lookup492: pallet_file_system::types::PendingStopStoringRequest<T>
4724
+ * Lookup491: pallet_file_system::types::PendingStopStoringRequest<T>
4752
4725
  **/
4753
4726
  PalletFileSystemPendingStopStoringRequest: {
4754
4727
  tickWhenRequested: "u32",
@@ -4756,7 +4729,7 @@ export default {
4756
4729
  fileSize: "u64"
4757
4730
  },
4758
4731
  /**
4759
- * Lookup493: pallet_file_system::types::MoveBucketRequestMetadata<T>
4732
+ * Lookup492: pallet_file_system::types::MoveBucketRequestMetadata<T>
4760
4733
  **/
4761
4734
  PalletFileSystemMoveBucketRequestMetadata: {
4762
4735
  requester: "AccountId32",
@@ -4764,7 +4737,7 @@ export default {
4764
4737
  newValuePropId: "H256"
4765
4738
  },
4766
4739
  /**
4767
- * Lookup494: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4740
+ * Lookup493: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4768
4741
  **/
4769
4742
  PalletFileSystemIncompleteStorageRequestMetadata: {
4770
4743
  owner: "AccountId32",
@@ -4776,117 +4749,91 @@ export default {
4776
4749
  pendingBucketRemoval: "bool"
4777
4750
  },
4778
4751
  /**
4779
- * Lookup496: pallet_file_system::pallet::Error<T>
4752
+ * Lookup495: pallet_file_system::pallet::Error<T>
4780
4753
  **/
4781
4754
  PalletFileSystemError: {
4782
4755
  _enum: [
4756
+ "NotABsp",
4757
+ "NotAMsp",
4758
+ "NotASp",
4783
4759
  "StorageRequestAlreadyRegistered",
4784
4760
  "StorageRequestNotFound",
4785
- "StorageRequestNotRevoked",
4786
4761
  "StorageRequestExists",
4762
+ "StorageRequestNotAuthorized",
4763
+ "StorageRequestBspsRequiredFulfilled",
4764
+ "TooManyStorageRequestResponses",
4765
+ "IncompleteStorageRequestNotFound",
4787
4766
  "ReplicationTargetCannotBeZero",
4788
4767
  "ReplicationTargetExceedsMaximum",
4789
- "MaxReplicationTargetSmallerThanDefault",
4790
- "NotABsp",
4791
- "NotAMsp",
4792
- "NotASp",
4793
4768
  "BspNotVolunteered",
4794
4769
  "BspNotConfirmed",
4795
4770
  "BspAlreadyConfirmed",
4796
- "StorageRequestBspsRequiredFulfilled",
4797
4771
  "BspAlreadyVolunteered",
4798
- "InsufficientAvailableCapacity",
4799
- "UnexpectedNumberOfRemovedVolunteeredBsps",
4800
4772
  "BspNotEligibleToVolunteer",
4801
- "StorageRequestExpiredNoSlotAvailable",
4802
- "StorageRequestNotAuthorized",
4803
- "MaxTickNumberReached",
4804
- "FailedToEncodeBsp",
4805
- "FailedToEncodeFingerprint",
4806
- "FailedToDecodeThreshold",
4807
- "AboveThreshold",
4808
- "ThresholdArithmeticError",
4809
- "FailedTypeConversion",
4810
- "DividedByZero",
4811
- "ImpossibleFailedToGetValue",
4812
- "BucketIsNotPrivate",
4773
+ "InsufficientAvailableCapacity",
4774
+ "NoFileKeysToConfirm",
4775
+ "MspNotStoringBucket",
4776
+ "NotSelectedMsp",
4777
+ "MspAlreadyConfirmed",
4778
+ "RequestWithoutMsp",
4779
+ "MspAlreadyStoringBucket",
4813
4780
  "BucketNotFound",
4814
4781
  "BucketNotEmpty",
4815
4782
  "NotBucketOwner",
4783
+ "BucketIsBeingMoved",
4784
+ "InvalidBucketIdFileKeyPair",
4816
4785
  "ValuePropositionNotAvailable",
4817
4786
  "CollectionNotFound",
4818
- "ProviderRootNotFound",
4819
- "ExpectedNonInclusionProof",
4820
- "ExpectedInclusionProof",
4787
+ "MoveBucketRequestNotFound",
4821
4788
  "InvalidFileKeyMetadata",
4822
- "ThresholdBelowAsymptote",
4823
- "NotFileOwner",
4824
- "FileKeyAlreadyPendingDeletion",
4789
+ "FileSizeCannotBeZero",
4790
+ "ProviderNotStoringFile",
4791
+ "FileHasActiveStorageRequest",
4792
+ "FileHasIncompleteStorageRequest",
4825
4793
  "BatchFileDeletionMustContainSingleBucket",
4826
4794
  "DuplicateFileKeyInBatchFileDeletion",
4827
4795
  "NoFileKeysToDelete",
4828
4796
  "FailedToPushFileKeyToBucketDeletionVector",
4829
4797
  "FailedToPushUserToBspDeletionVector",
4830
4798
  "FailedToPushFileKeyToBspDeletionVector",
4831
- "MaxUserPendingDeletionRequestsReached",
4832
- "MspNotStoringBucket",
4833
- "FileKeyNotPendingDeletion",
4834
- "FileSizeCannotBeZero",
4835
- "NoGlobalReputationWeightSet",
4836
- "NoBspReputationWeightSet",
4837
- "MaximumThresholdCannotBeZero",
4838
- "TickRangeToMaximumThresholdCannotBeZero",
4839
4799
  "PendingStopStoringRequestNotFound",
4840
4800
  "MinWaitForStopStoringNotReached",
4841
4801
  "PendingStopStoringRequestAlreadyExists",
4842
- "OperationNotAllowedWithInsolventUser",
4843
- "UserNotInsolvent",
4844
- "NotSelectedMsp",
4845
- "MspAlreadyConfirmed",
4846
- "RequestWithoutMsp",
4847
- "MspAlreadyStoringBucket",
4848
- "MoveBucketRequestNotFound",
4849
- "BucketIsBeingMoved",
4850
- "BspAlreadyDataServer",
4851
- "BspDataServersExceeded",
4852
- "FileMetadataProcessingQueueFull",
4853
- "TooManyBatchResponses",
4854
- "TooManyStorageRequestResponses",
4855
- "InvalidBucketIdFileKeyPair",
4856
- "InconsistentStateKeyAlreadyExists",
4802
+ "ExpectedNonInclusionProof",
4803
+ "ExpectedInclusionProof",
4857
4804
  "FixedRatePaymentStreamNotFound",
4858
4805
  "DynamicRatePaymentStreamNotFound",
4806
+ "OperationNotAllowedWithInsolventUser",
4807
+ "UserNotInsolvent",
4808
+ "OperationNotAllowedForInsolventProvider",
4809
+ "InvalidSignature",
4810
+ "InvalidProviderID",
4811
+ "InvalidSignedOperation",
4812
+ "NoGlobalReputationWeightSet",
4813
+ "NoBspReputationWeightSet",
4859
4814
  "CannotHoldDeposit",
4815
+ "MaxTickNumberReached",
4816
+ "ThresholdArithmeticError",
4817
+ "RootNotUpdated",
4818
+ "ImpossibleFailedToGetValue",
4860
4819
  "FailedToQueryEarliestFileVolunteerTick",
4861
4820
  "FailedToGetOwnerAccount",
4862
4821
  "FailedToGetPaymentAccount",
4863
- "NoFileKeysToConfirm",
4864
- "RootNotUpdated",
4865
- "NoPrivacyChange",
4866
- "OperationNotAllowedForInsolventProvider",
4867
- "OperationNotAllowedWhileBucketIsNotStoredByMsp",
4868
4822
  "FailedToComputeFileKey",
4869
4823
  "FailedToCreateFileMetadata",
4870
- "InvalidSignature",
4871
- "ForestProofVerificationFailed",
4872
- "ProviderNotStoringFile",
4873
- "InvalidProviderID",
4874
- "InvalidSignedOperation",
4875
- "FileKeyMismatch",
4876
- "IncompleteStorageRequestNotFound",
4877
- "FileHasActiveStorageRequest",
4878
- "FileHasIncompleteStorageRequest"
4824
+ "FileMetadataProcessingQueueFull",
4825
+ "UserOperationPaused"
4879
4826
  ]
4880
4827
  },
4881
4828
  /**
4882
- * Lookup498: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4829
+ * Lookup497: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4883
4830
  **/
4884
4831
  PalletProofsDealerProofSubmissionRecord: {
4885
4832
  lastTickProven: "u32",
4886
4833
  nextTickToSubmitProofFor: "u32"
4887
4834
  },
4888
4835
  /**
4889
- * Lookup505: pallet_proofs_dealer::pallet::Error<T>
4836
+ * Lookup504: pallet_proofs_dealer::pallet::Error<T>
4890
4837
  **/
4891
4838
  PalletProofsDealerError: {
4892
4839
  _enum: [
@@ -4917,7 +4864,7 @@ export default {
4917
4864
  ]
4918
4865
  },
4919
4866
  /**
4920
- * Lookup508: pallet_payment_streams::types::FixedRatePaymentStream<T>
4867
+ * Lookup507: pallet_payment_streams::types::FixedRatePaymentStream<T>
4921
4868
  **/
4922
4869
  PalletPaymentStreamsFixedRatePaymentStream: {
4923
4870
  rate: "u128",
@@ -4926,7 +4873,7 @@ export default {
4926
4873
  outOfFundsTick: "Option<u32>"
4927
4874
  },
4928
4875
  /**
4929
- * Lookup509: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4876
+ * Lookup508: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4930
4877
  **/
4931
4878
  PalletPaymentStreamsDynamicRatePaymentStream: {
4932
4879
  amountProvided: "u64",
@@ -4935,14 +4882,14 @@ export default {
4935
4882
  outOfFundsTick: "Option<u32>"
4936
4883
  },
4937
4884
  /**
4938
- * Lookup510: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4885
+ * Lookup509: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4939
4886
  **/
4940
4887
  PalletPaymentStreamsProviderLastChargeableInfo: {
4941
4888
  lastChargeableTick: "u32",
4942
4889
  priceIndex: "u128"
4943
4890
  },
4944
4891
  /**
4945
- * Lookup511: pallet_payment_streams::pallet::Error<T>
4892
+ * Lookup510: pallet_payment_streams::pallet::Error<T>
4946
4893
  **/
4947
4894
  PalletPaymentStreamsError: {
4948
4895
  _enum: [
@@ -4967,7 +4914,7 @@ export default {
4967
4914
  ]
4968
4915
  },
4969
4916
  /**
4970
- * Lookup512: pallet_bucket_nfts::pallet::Error<T>
4917
+ * Lookup511: pallet_bucket_nfts::pallet::Error<T>
4971
4918
  **/
4972
4919
  PalletBucketNftsError: {
4973
4920
  _enum: [
@@ -4978,7 +4925,7 @@ export default {
4978
4925
  ]
4979
4926
  },
4980
4927
  /**
4981
- * Lookup513: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4928
+ * Lookup512: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4982
4929
  **/
4983
4930
  PalletNftsCollectionDetails: {
4984
4931
  owner: "AccountId32",
@@ -4989,13 +4936,13 @@ export default {
4989
4936
  attributes: "u32"
4990
4937
  },
4991
4938
  /**
4992
- * Lookup518: pallet_nfts::types::CollectionRole
4939
+ * Lookup517: pallet_nfts::types::CollectionRole
4993
4940
  **/
4994
4941
  PalletNftsCollectionRole: {
4995
4942
  _enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
4996
4943
  },
4997
4944
  /**
4998
- * Lookup519: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
4945
+ * Lookup518: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
4999
4946
  **/
5000
4947
  PalletNftsItemDetails: {
5001
4948
  owner: "AccountId32",
@@ -5003,42 +4950,42 @@ export default {
5003
4950
  deposit: "PalletNftsItemDeposit"
5004
4951
  },
5005
4952
  /**
5006
- * Lookup520: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
4953
+ * Lookup519: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
5007
4954
  **/
5008
4955
  PalletNftsItemDeposit: {
5009
4956
  account: "AccountId32",
5010
4957
  amount: "u128"
5011
4958
  },
5012
4959
  /**
5013
- * Lookup525: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
4960
+ * Lookup524: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
5014
4961
  **/
5015
4962
  PalletNftsCollectionMetadata: {
5016
4963
  deposit: "u128",
5017
4964
  data: "Bytes"
5018
4965
  },
5019
4966
  /**
5020
- * Lookup526: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
4967
+ * Lookup525: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
5021
4968
  **/
5022
4969
  PalletNftsItemMetadata: {
5023
4970
  deposit: "PalletNftsItemMetadataDeposit",
5024
4971
  data: "Bytes"
5025
4972
  },
5026
4973
  /**
5027
- * Lookup527: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
4974
+ * Lookup526: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
5028
4975
  **/
5029
4976
  PalletNftsItemMetadataDeposit: {
5030
4977
  account: "Option<AccountId32>",
5031
4978
  amount: "u128"
5032
4979
  },
5033
4980
  /**
5034
- * Lookup530: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
4981
+ * Lookup529: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
5035
4982
  **/
5036
4983
  PalletNftsAttributeDeposit: {
5037
4984
  account: "Option<AccountId32>",
5038
4985
  amount: "u128"
5039
4986
  },
5040
4987
  /**
5041
- * Lookup534: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
4988
+ * Lookup533: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
5042
4989
  **/
5043
4990
  PalletNftsPendingSwap: {
5044
4991
  desiredCollection: "u32",
@@ -5047,7 +4994,7 @@ export default {
5047
4994
  deadline: "u32"
5048
4995
  },
5049
4996
  /**
5050
- * Lookup536: pallet_nfts::types::PalletFeature
4997
+ * Lookup535: pallet_nfts::types::PalletFeature
5051
4998
  **/
5052
4999
  PalletNftsPalletFeature: {
5053
5000
  _enum: [
@@ -5063,7 +5010,7 @@ export default {
5063
5010
  ]
5064
5011
  },
5065
5012
  /**
5066
- * Lookup537: pallet_nfts::pallet::Error<T, I>
5013
+ * Lookup536: pallet_nfts::pallet::Error<T, I>
5067
5014
  **/
5068
5015
  PalletNftsError: {
5069
5016
  _enum: [
@@ -5115,51 +5062,51 @@ export default {
5115
5062
  ]
5116
5063
  },
5117
5064
  /**
5118
- * Lookup540: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
5065
+ * Lookup539: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
5119
5066
  **/
5120
5067
  FrameSystemExtensionsCheckNonZeroSender: "Null",
5121
5068
  /**
5122
- * Lookup541: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
5069
+ * Lookup540: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
5123
5070
  **/
5124
5071
  FrameSystemExtensionsCheckSpecVersion: "Null",
5125
5072
  /**
5126
- * Lookup542: frame_system::extensions::check_tx_version::CheckTxVersion<T>
5073
+ * Lookup541: frame_system::extensions::check_tx_version::CheckTxVersion<T>
5127
5074
  **/
5128
5075
  FrameSystemExtensionsCheckTxVersion: "Null",
5129
5076
  /**
5130
- * Lookup543: frame_system::extensions::check_genesis::CheckGenesis<T>
5077
+ * Lookup542: frame_system::extensions::check_genesis::CheckGenesis<T>
5131
5078
  **/
5132
5079
  FrameSystemExtensionsCheckGenesis: "Null",
5133
5080
  /**
5134
- * Lookup546: frame_system::extensions::check_nonce::CheckNonce<T>
5081
+ * Lookup545: frame_system::extensions::check_nonce::CheckNonce<T>
5135
5082
  **/
5136
5083
  FrameSystemExtensionsCheckNonce: "Compact<u32>",
5137
5084
  /**
5138
- * Lookup547: frame_system::extensions::check_weight::CheckWeight<T>
5085
+ * Lookup546: frame_system::extensions::check_weight::CheckWeight<T>
5139
5086
  **/
5140
5087
  FrameSystemExtensionsCheckWeight: "Null",
5141
5088
  /**
5142
- * Lookup548: pallet_transaction_payment::ChargeTransactionPayment<T>
5089
+ * Lookup547: pallet_transaction_payment::ChargeTransactionPayment<T>
5143
5090
  **/
5144
5091
  PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
5145
5092
  /**
5146
- * Lookup549: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
5093
+ * Lookup548: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
5147
5094
  **/
5148
5095
  CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: "Null",
5149
5096
  /**
5150
- * Lookup550: frame_metadata_hash_extension::CheckMetadataHash<T>
5097
+ * Lookup549: frame_metadata_hash_extension::CheckMetadataHash<T>
5151
5098
  **/
5152
5099
  FrameMetadataHashExtensionCheckMetadataHash: {
5153
5100
  mode: "FrameMetadataHashExtensionMode"
5154
5101
  },
5155
5102
  /**
5156
- * Lookup551: frame_metadata_hash_extension::Mode
5103
+ * Lookup550: frame_metadata_hash_extension::Mode
5157
5104
  **/
5158
5105
  FrameMetadataHashExtensionMode: {
5159
5106
  _enum: ["Disabled", "Enabled"]
5160
5107
  },
5161
5108
  /**
5162
- * Lookup552: sh_parachain_runtime::Runtime
5109
+ * Lookup551: sh_parachain_runtime::Runtime
5163
5110
  **/
5164
5111
  ShParachainRuntimeRuntime: "Null"
5165
5112
  };