@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
@@ -1532,12 +1532,6 @@ export default {
1532
1532
  bucketId: "H256",
1533
1533
  maybeCollectionId: "Option<u32>"
1534
1534
  },
1535
- MoveBucketRequested: {
1536
- who: "AccountId32",
1537
- bucketId: "H256",
1538
- newMspId: "H256",
1539
- newValuePropId: "H256"
1540
- },
1541
1535
  BucketPrivacyUpdated: {
1542
1536
  who: "AccountId32",
1543
1537
  bucketId: "H256",
@@ -1549,6 +1543,26 @@ export default {
1549
1543
  bucketId: "H256",
1550
1544
  collectionId: "u32"
1551
1545
  },
1546
+ MoveBucketRequested: {
1547
+ who: "AccountId32",
1548
+ bucketId: "H256",
1549
+ newMspId: "H256",
1550
+ newValuePropId: "H256"
1551
+ },
1552
+ MoveBucketRequestExpired: {
1553
+ bucketId: "H256"
1554
+ },
1555
+ MoveBucketAccepted: {
1556
+ bucketId: "H256",
1557
+ oldMspId: "Option<H256>",
1558
+ newMspId: "H256",
1559
+ valuePropId: "H256"
1560
+ },
1561
+ MoveBucketRejected: {
1562
+ bucketId: "H256",
1563
+ oldMspId: "Option<H256>",
1564
+ newMspId: "H256"
1565
+ },
1552
1566
  NewStorageRequest: {
1553
1567
  _alias: {
1554
1568
  size_: "size"
@@ -1566,6 +1580,27 @@ export default {
1566
1580
  fileKey: "H256",
1567
1581
  fileMetadata: "ShpFileMetadataFileMetadata"
1568
1582
  },
1583
+ StorageRequestFulfilled: {
1584
+ fileKey: "H256"
1585
+ },
1586
+ StorageRequestExpired: {
1587
+ fileKey: "H256"
1588
+ },
1589
+ StorageRequestRevoked: {
1590
+ fileKey: "H256"
1591
+ },
1592
+ StorageRequestRejected: {
1593
+ fileKey: "H256",
1594
+ mspId: "H256",
1595
+ bucketId: "H256",
1596
+ reason: "PalletFileSystemRejectedStorageRequestReason"
1597
+ },
1598
+ IncompleteStorageRequest: {
1599
+ fileKey: "H256"
1600
+ },
1601
+ IncompleteStorageRequestCleanedUp: {
1602
+ fileKey: "H256"
1603
+ },
1569
1604
  AcceptedBspVolunteer: {
1570
1605
  _alias: {
1571
1606
  size_: "size"
@@ -1585,20 +1620,9 @@ export default {
1585
1620
  skippedFileKeys: "Vec<H256>",
1586
1621
  newRoot: "H256"
1587
1622
  },
1588
- StorageRequestFulfilled: {
1589
- fileKey: "H256"
1590
- },
1591
- StorageRequestExpired: {
1592
- fileKey: "H256"
1593
- },
1594
- StorageRequestRevoked: {
1595
- fileKey: "H256"
1596
- },
1597
- StorageRequestRejected: {
1598
- fileKey: "H256",
1599
- mspId: "H256",
1600
- bucketId: "H256",
1601
- reason: "PalletFileSystemRejectedStorageRequestReason"
1623
+ BspChallengeCycleInitialised: {
1624
+ who: "AccountId32",
1625
+ bspId: "H256"
1602
1626
  },
1603
1627
  BspRequestedToStopStoring: {
1604
1628
  bspId: "H256",
@@ -1611,9 +1635,10 @@ export default {
1611
1635
  fileKey: "H256",
1612
1636
  newRoot: "H256"
1613
1637
  },
1614
- PriorityChallengeForFileDeletionQueued: {
1615
- issuer: "PalletFileSystemEitherAccountIdOrMspId",
1616
- fileKey: "H256"
1638
+ MspStoppedStoringBucket: {
1639
+ mspId: "H256",
1640
+ owner: "AccountId32",
1641
+ bucketId: "H256"
1617
1642
  },
1618
1643
  SpStopStoringInsolventUser: {
1619
1644
  spId: "H256",
@@ -1627,76 +1652,6 @@ export default {
1627
1652
  owner: "AccountId32",
1628
1653
  bucketId: "H256"
1629
1654
  },
1630
- FailedToQueuePriorityChallenge: {
1631
- fileKey: "H256",
1632
- error: "SpRuntimeDispatchError"
1633
- },
1634
- FileDeletionRequest: {
1635
- user: "AccountId32",
1636
- fileKey: "H256",
1637
- fileSize: "u64",
1638
- bucketId: "H256",
1639
- mspId: "H256",
1640
- proofOfInclusion: "bool"
1641
- },
1642
- ProofSubmittedForPendingFileDeletionRequest: {
1643
- user: "AccountId32",
1644
- fileKey: "H256",
1645
- fileSize: "u64",
1646
- bucketId: "H256",
1647
- mspId: "H256",
1648
- proofOfInclusion: "bool"
1649
- },
1650
- BspChallengeCycleInitialised: {
1651
- who: "AccountId32",
1652
- bspId: "H256"
1653
- },
1654
- MoveBucketRequestExpired: {
1655
- bucketId: "H256"
1656
- },
1657
- MoveBucketAccepted: {
1658
- bucketId: "H256",
1659
- oldMspId: "Option<H256>",
1660
- newMspId: "H256",
1661
- valuePropId: "H256"
1662
- },
1663
- MoveBucketRejected: {
1664
- bucketId: "H256",
1665
- oldMspId: "Option<H256>",
1666
- newMspId: "H256"
1667
- },
1668
- MspStoppedStoringBucket: {
1669
- mspId: "H256",
1670
- owner: "AccountId32",
1671
- bucketId: "H256"
1672
- },
1673
- FailedToGetMspOfBucket: {
1674
- bucketId: "H256",
1675
- error: "SpRuntimeDispatchError"
1676
- },
1677
- FailedToDecreaseMspUsedCapacity: {
1678
- user: "AccountId32",
1679
- mspId: "H256",
1680
- fileKey: "H256",
1681
- fileSize: "u64",
1682
- error: "SpRuntimeDispatchError"
1683
- },
1684
- UsedCapacityShouldBeZero: {
1685
- actualUsedCapacity: "u64"
1686
- },
1687
- FailedToReleaseStorageRequestCreationDeposit: {
1688
- fileKey: "H256",
1689
- owner: "AccountId32",
1690
- amountToReturn: "u128",
1691
- error: "SpRuntimeDispatchError"
1692
- },
1693
- FailedToTransferDepositFundsToBsp: {
1694
- fileKey: "H256",
1695
- owner: "AccountId32",
1696
- bspId: "H256",
1697
- amountToTransfer: "u128",
1698
- error: "SpRuntimeDispatchError"
1699
- },
1700
1655
  FileDeletionRequested: {
1701
1656
  signedDeleteIntention: "PalletFileSystemFileOperationIntention",
1702
1657
  signature: "SpRuntimeMultiSignature"
@@ -1716,13 +1671,26 @@ export default {
1716
1671
  oldRoot: "H256",
1717
1672
  newRoot: "H256"
1718
1673
  },
1719
- IncompleteStorageRequest: {
1720
- fileKey: "H256"
1674
+ UsedCapacityShouldBeZero: {
1675
+ actualUsedCapacity: "u64"
1676
+ },
1677
+ FailedToReleaseStorageRequestCreationDeposit: {
1678
+ fileKey: "H256",
1679
+ owner: "AccountId32",
1680
+ amountToReturn: "u128",
1681
+ error: "SpRuntimeDispatchError"
1682
+ },
1683
+ UserOperationPauseFlagsUpdated: {
1684
+ _alias: {
1685
+ new_: "new"
1686
+ },
1687
+ old: "u32",
1688
+ new_: "u32"
1721
1689
  }
1722
1690
  }
1723
1691
  },
1724
1692
  /**
1725
- * Lookup153: shp_file_metadata::FileMetadata
1693
+ * Lookup154: shp_file_metadata::FileMetadata
1726
1694
  **/
1727
1695
  ShpFileMetadataFileMetadata: {
1728
1696
  owner: "Bytes",
@@ -1732,11 +1700,11 @@ export default {
1732
1700
  fingerprint: "ShpFileMetadataFingerprint"
1733
1701
  },
1734
1702
  /**
1735
- * Lookup154: shp_file_metadata::Fingerprint
1703
+ * Lookup155: shp_file_metadata::Fingerprint
1736
1704
  **/
1737
1705
  ShpFileMetadataFingerprint: "[u8;32]",
1738
1706
  /**
1739
- * Lookup159: pallet_file_system::types::RejectedStorageRequestReason
1707
+ * Lookup156: pallet_file_system::types::RejectedStorageRequestReason
1740
1708
  **/
1741
1709
  PalletFileSystemRejectedStorageRequestReason: {
1742
1710
  _enum: [
@@ -1748,29 +1716,20 @@ export default {
1748
1716
  ]
1749
1717
  },
1750
1718
  /**
1751
- * Lookup160: pallet_file_system::types::EitherAccountIdOrMspId<T>
1752
- **/
1753
- PalletFileSystemEitherAccountIdOrMspId: {
1754
- _enum: {
1755
- AccountId: "AccountId32",
1756
- MspId: "H256"
1757
- }
1758
- },
1759
- /**
1760
- * Lookup162: pallet_file_system::types::FileOperationIntention<T>
1719
+ * Lookup161: pallet_file_system::types::FileOperationIntention<T>
1761
1720
  **/
1762
1721
  PalletFileSystemFileOperationIntention: {
1763
1722
  fileKey: "H256",
1764
1723
  operation: "PalletFileSystemFileOperation"
1765
1724
  },
1766
1725
  /**
1767
- * Lookup163: pallet_file_system::types::FileOperation
1726
+ * Lookup162: pallet_file_system::types::FileOperation
1768
1727
  **/
1769
1728
  PalletFileSystemFileOperation: {
1770
1729
  _enum: ["Delete"]
1771
1730
  },
1772
1731
  /**
1773
- * Lookup164: sp_runtime::MultiSignature
1732
+ * Lookup163: sp_runtime::MultiSignature
1774
1733
  **/
1775
1734
  SpRuntimeMultiSignature: {
1776
1735
  _enum: {
@@ -2432,8 +2391,8 @@ export default {
2432
2391
  MostlyStablePrice: "u128",
2433
2392
  MaxPrice: "u128",
2434
2393
  MinPrice: "u128",
2435
- UpperExponentFactor: "u32",
2436
- LowerExponentFactor: "u32",
2394
+ UpperExponentFactor: "u128",
2395
+ LowerExponentFactor: "u128",
2437
2396
  ZeroSizeBucketFixedRate: "u128",
2438
2397
  IdealUtilisationRate: "Perbill",
2439
2398
  DecayRate: "Perbill",
@@ -3850,6 +3809,9 @@ export default {
3850
3809
  fileKeys: "Vec<H256>",
3851
3810
  bspId: "Option<H256>",
3852
3811
  forestProof: "SpTrieStorageProofCompactProof"
3812
+ },
3813
+ set_user_operation_pause_flags: {
3814
+ newFlags: "u32"
3853
3815
  }
3854
3816
  }
3855
3817
  },
@@ -4364,9 +4326,9 @@ export default {
4364
4326
  MinPrice:
4365
4327
  "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,Option<u128>)",
4366
4328
  UpperExponentFactor:
4367
- "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u32>)",
4329
+ "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u128>)",
4368
4330
  LowerExponentFactor:
4369
- "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u32>)",
4331
+ "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u128>)",
4370
4332
  ZeroSizeBucketFixedRate:
4371
4333
  "(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,Option<u128>)",
4372
4334
  IdealUtilisationRate:
@@ -4763,7 +4725,7 @@ export default {
4763
4725
  location: "Bytes",
4764
4726
  fingerprint: "H256",
4765
4727
  size_: "u64",
4766
- msp: "Option<(H256,bool)>",
4728
+ mspStatus: "PalletFileSystemMspStorageRequestStatus",
4767
4729
  userPeerIds: "Vec<Bytes>",
4768
4730
  bspsRequired: "u32",
4769
4731
  bspsConfirmed: "u32",
@@ -4771,13 +4733,24 @@ export default {
4771
4733
  depositPaid: "u128"
4772
4734
  },
4773
4735
  /**
4774
- * Lookup488: pallet_file_system::types::StorageRequestBspsMetadata<T>
4736
+ * Lookup486: pallet_file_system::types::MspStorageRequestStatus<T>
4737
+ **/
4738
+ PalletFileSystemMspStorageRequestStatus: {
4739
+ _enum: {
4740
+ None: "Null",
4741
+ Pending: "H256",
4742
+ AcceptedNewFile: "H256",
4743
+ AcceptedExistingFile: "H256"
4744
+ }
4745
+ },
4746
+ /**
4747
+ * Lookup487: pallet_file_system::types::StorageRequestBspsMetadata<T>
4775
4748
  **/
4776
4749
  PalletFileSystemStorageRequestBspsMetadata: {
4777
4750
  confirmed: "bool"
4778
4751
  },
4779
4752
  /**
4780
- * Lookup490: pallet_file_system::types::PendingFileDeletionRequest<T>
4753
+ * Lookup489: pallet_file_system::types::PendingFileDeletionRequest<T>
4781
4754
  **/
4782
4755
  PalletFileSystemPendingFileDeletionRequest: {
4783
4756
  user: "AccountId32",
@@ -4788,7 +4761,7 @@ export default {
4788
4761
  queuePriorityChallenge: "bool"
4789
4762
  },
4790
4763
  /**
4791
- * Lookup492: pallet_file_system::types::PendingStopStoringRequest<T>
4764
+ * Lookup491: pallet_file_system::types::PendingStopStoringRequest<T>
4792
4765
  **/
4793
4766
  PalletFileSystemPendingStopStoringRequest: {
4794
4767
  tickWhenRequested: "u32",
@@ -4796,7 +4769,7 @@ export default {
4796
4769
  fileSize: "u64"
4797
4770
  },
4798
4771
  /**
4799
- * Lookup493: pallet_file_system::types::MoveBucketRequestMetadata<T>
4772
+ * Lookup492: pallet_file_system::types::MoveBucketRequestMetadata<T>
4800
4773
  **/
4801
4774
  PalletFileSystemMoveBucketRequestMetadata: {
4802
4775
  requester: "AccountId32",
@@ -4804,7 +4777,7 @@ export default {
4804
4777
  newValuePropId: "H256"
4805
4778
  },
4806
4779
  /**
4807
- * Lookup494: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4780
+ * Lookup493: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4808
4781
  **/
4809
4782
  PalletFileSystemIncompleteStorageRequestMetadata: {
4810
4783
  owner: "AccountId32",
@@ -4816,117 +4789,91 @@ export default {
4816
4789
  pendingBucketRemoval: "bool"
4817
4790
  },
4818
4791
  /**
4819
- * Lookup496: pallet_file_system::pallet::Error<T>
4792
+ * Lookup495: pallet_file_system::pallet::Error<T>
4820
4793
  **/
4821
4794
  PalletFileSystemError: {
4822
4795
  _enum: [
4796
+ "NotABsp",
4797
+ "NotAMsp",
4798
+ "NotASp",
4823
4799
  "StorageRequestAlreadyRegistered",
4824
4800
  "StorageRequestNotFound",
4825
- "StorageRequestNotRevoked",
4826
4801
  "StorageRequestExists",
4802
+ "StorageRequestNotAuthorized",
4803
+ "StorageRequestBspsRequiredFulfilled",
4804
+ "TooManyStorageRequestResponses",
4805
+ "IncompleteStorageRequestNotFound",
4827
4806
  "ReplicationTargetCannotBeZero",
4828
4807
  "ReplicationTargetExceedsMaximum",
4829
- "MaxReplicationTargetSmallerThanDefault",
4830
- "NotABsp",
4831
- "NotAMsp",
4832
- "NotASp",
4833
4808
  "BspNotVolunteered",
4834
4809
  "BspNotConfirmed",
4835
4810
  "BspAlreadyConfirmed",
4836
- "StorageRequestBspsRequiredFulfilled",
4837
4811
  "BspAlreadyVolunteered",
4838
- "InsufficientAvailableCapacity",
4839
- "UnexpectedNumberOfRemovedVolunteeredBsps",
4840
4812
  "BspNotEligibleToVolunteer",
4841
- "StorageRequestExpiredNoSlotAvailable",
4842
- "StorageRequestNotAuthorized",
4843
- "MaxTickNumberReached",
4844
- "FailedToEncodeBsp",
4845
- "FailedToEncodeFingerprint",
4846
- "FailedToDecodeThreshold",
4847
- "AboveThreshold",
4848
- "ThresholdArithmeticError",
4849
- "FailedTypeConversion",
4850
- "DividedByZero",
4851
- "ImpossibleFailedToGetValue",
4852
- "BucketIsNotPrivate",
4813
+ "InsufficientAvailableCapacity",
4814
+ "NoFileKeysToConfirm",
4815
+ "MspNotStoringBucket",
4816
+ "NotSelectedMsp",
4817
+ "MspAlreadyConfirmed",
4818
+ "RequestWithoutMsp",
4819
+ "MspAlreadyStoringBucket",
4853
4820
  "BucketNotFound",
4854
4821
  "BucketNotEmpty",
4855
4822
  "NotBucketOwner",
4823
+ "BucketIsBeingMoved",
4824
+ "InvalidBucketIdFileKeyPair",
4856
4825
  "ValuePropositionNotAvailable",
4857
4826
  "CollectionNotFound",
4858
- "ProviderRootNotFound",
4859
- "ExpectedNonInclusionProof",
4860
- "ExpectedInclusionProof",
4827
+ "MoveBucketRequestNotFound",
4861
4828
  "InvalidFileKeyMetadata",
4862
- "ThresholdBelowAsymptote",
4863
- "NotFileOwner",
4864
- "FileKeyAlreadyPendingDeletion",
4829
+ "FileSizeCannotBeZero",
4830
+ "ProviderNotStoringFile",
4831
+ "FileHasActiveStorageRequest",
4832
+ "FileHasIncompleteStorageRequest",
4865
4833
  "BatchFileDeletionMustContainSingleBucket",
4866
4834
  "DuplicateFileKeyInBatchFileDeletion",
4867
4835
  "NoFileKeysToDelete",
4868
4836
  "FailedToPushFileKeyToBucketDeletionVector",
4869
4837
  "FailedToPushUserToBspDeletionVector",
4870
4838
  "FailedToPushFileKeyToBspDeletionVector",
4871
- "MaxUserPendingDeletionRequestsReached",
4872
- "MspNotStoringBucket",
4873
- "FileKeyNotPendingDeletion",
4874
- "FileSizeCannotBeZero",
4875
- "NoGlobalReputationWeightSet",
4876
- "NoBspReputationWeightSet",
4877
- "MaximumThresholdCannotBeZero",
4878
- "TickRangeToMaximumThresholdCannotBeZero",
4879
4839
  "PendingStopStoringRequestNotFound",
4880
4840
  "MinWaitForStopStoringNotReached",
4881
4841
  "PendingStopStoringRequestAlreadyExists",
4882
- "OperationNotAllowedWithInsolventUser",
4883
- "UserNotInsolvent",
4884
- "NotSelectedMsp",
4885
- "MspAlreadyConfirmed",
4886
- "RequestWithoutMsp",
4887
- "MspAlreadyStoringBucket",
4888
- "MoveBucketRequestNotFound",
4889
- "BucketIsBeingMoved",
4890
- "BspAlreadyDataServer",
4891
- "BspDataServersExceeded",
4892
- "FileMetadataProcessingQueueFull",
4893
- "TooManyBatchResponses",
4894
- "TooManyStorageRequestResponses",
4895
- "InvalidBucketIdFileKeyPair",
4896
- "InconsistentStateKeyAlreadyExists",
4842
+ "ExpectedNonInclusionProof",
4843
+ "ExpectedInclusionProof",
4897
4844
  "FixedRatePaymentStreamNotFound",
4898
4845
  "DynamicRatePaymentStreamNotFound",
4846
+ "OperationNotAllowedWithInsolventUser",
4847
+ "UserNotInsolvent",
4848
+ "OperationNotAllowedForInsolventProvider",
4849
+ "InvalidSignature",
4850
+ "InvalidProviderID",
4851
+ "InvalidSignedOperation",
4852
+ "NoGlobalReputationWeightSet",
4853
+ "NoBspReputationWeightSet",
4899
4854
  "CannotHoldDeposit",
4855
+ "MaxTickNumberReached",
4856
+ "ThresholdArithmeticError",
4857
+ "RootNotUpdated",
4858
+ "ImpossibleFailedToGetValue",
4900
4859
  "FailedToQueryEarliestFileVolunteerTick",
4901
4860
  "FailedToGetOwnerAccount",
4902
4861
  "FailedToGetPaymentAccount",
4903
- "NoFileKeysToConfirm",
4904
- "RootNotUpdated",
4905
- "NoPrivacyChange",
4906
- "OperationNotAllowedForInsolventProvider",
4907
- "OperationNotAllowedWhileBucketIsNotStoredByMsp",
4908
4862
  "FailedToComputeFileKey",
4909
4863
  "FailedToCreateFileMetadata",
4910
- "InvalidSignature",
4911
- "ForestProofVerificationFailed",
4912
- "ProviderNotStoringFile",
4913
- "InvalidProviderID",
4914
- "InvalidSignedOperation",
4915
- "FileKeyMismatch",
4916
- "IncompleteStorageRequestNotFound",
4917
- "FileHasActiveStorageRequest",
4918
- "FileHasIncompleteStorageRequest"
4864
+ "FileMetadataProcessingQueueFull",
4865
+ "UserOperationPaused"
4919
4866
  ]
4920
4867
  },
4921
4868
  /**
4922
- * Lookup498: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4869
+ * Lookup497: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4923
4870
  **/
4924
4871
  PalletProofsDealerProofSubmissionRecord: {
4925
4872
  lastTickProven: "u32",
4926
4873
  nextTickToSubmitProofFor: "u32"
4927
4874
  },
4928
4875
  /**
4929
- * Lookup505: pallet_proofs_dealer::pallet::Error<T>
4876
+ * Lookup504: pallet_proofs_dealer::pallet::Error<T>
4930
4877
  **/
4931
4878
  PalletProofsDealerError: {
4932
4879
  _enum: [
@@ -4957,7 +4904,7 @@ export default {
4957
4904
  ]
4958
4905
  },
4959
4906
  /**
4960
- * Lookup508: pallet_payment_streams::types::FixedRatePaymentStream<T>
4907
+ * Lookup507: pallet_payment_streams::types::FixedRatePaymentStream<T>
4961
4908
  **/
4962
4909
  PalletPaymentStreamsFixedRatePaymentStream: {
4963
4910
  rate: "u128",
@@ -4966,7 +4913,7 @@ export default {
4966
4913
  outOfFundsTick: "Option<u32>"
4967
4914
  },
4968
4915
  /**
4969
- * Lookup509: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4916
+ * Lookup508: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4970
4917
  **/
4971
4918
  PalletPaymentStreamsDynamicRatePaymentStream: {
4972
4919
  amountProvided: "u64",
@@ -4975,14 +4922,14 @@ export default {
4975
4922
  outOfFundsTick: "Option<u32>"
4976
4923
  },
4977
4924
  /**
4978
- * Lookup510: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4925
+ * Lookup509: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4979
4926
  **/
4980
4927
  PalletPaymentStreamsProviderLastChargeableInfo: {
4981
4928
  lastChargeableTick: "u32",
4982
4929
  priceIndex: "u128"
4983
4930
  },
4984
4931
  /**
4985
- * Lookup511: pallet_payment_streams::pallet::Error<T>
4932
+ * Lookup510: pallet_payment_streams::pallet::Error<T>
4986
4933
  **/
4987
4934
  PalletPaymentStreamsError: {
4988
4935
  _enum: [
@@ -5007,7 +4954,7 @@ export default {
5007
4954
  ]
5008
4955
  },
5009
4956
  /**
5010
- * Lookup512: pallet_bucket_nfts::pallet::Error<T>
4957
+ * Lookup511: pallet_bucket_nfts::pallet::Error<T>
5011
4958
  **/
5012
4959
  PalletBucketNftsError: {
5013
4960
  _enum: [
@@ -5018,7 +4965,7 @@ export default {
5018
4965
  ]
5019
4966
  },
5020
4967
  /**
5021
- * Lookup513: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4968
+ * Lookup512: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
5022
4969
  **/
5023
4970
  PalletNftsCollectionDetails: {
5024
4971
  owner: "AccountId32",
@@ -5029,13 +4976,13 @@ export default {
5029
4976
  attributes: "u32"
5030
4977
  },
5031
4978
  /**
5032
- * Lookup518: pallet_nfts::types::CollectionRole
4979
+ * Lookup517: pallet_nfts::types::CollectionRole
5033
4980
  **/
5034
4981
  PalletNftsCollectionRole: {
5035
4982
  _enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
5036
4983
  },
5037
4984
  /**
5038
- * 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>>
4985
+ * 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>>
5039
4986
  **/
5040
4987
  PalletNftsItemDetails: {
5041
4988
  owner: "AccountId32",
@@ -5043,42 +4990,42 @@ export default {
5043
4990
  deposit: "PalletNftsItemDeposit"
5044
4991
  },
5045
4992
  /**
5046
- * Lookup520: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
4993
+ * Lookup519: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
5047
4994
  **/
5048
4995
  PalletNftsItemDeposit: {
5049
4996
  account: "AccountId32",
5050
4997
  amount: "u128"
5051
4998
  },
5052
4999
  /**
5053
- * Lookup525: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
5000
+ * Lookup524: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
5054
5001
  **/
5055
5002
  PalletNftsCollectionMetadata: {
5056
5003
  deposit: "u128",
5057
5004
  data: "Bytes"
5058
5005
  },
5059
5006
  /**
5060
- * Lookup526: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
5007
+ * Lookup525: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
5061
5008
  **/
5062
5009
  PalletNftsItemMetadata: {
5063
5010
  deposit: "PalletNftsItemMetadataDeposit",
5064
5011
  data: "Bytes"
5065
5012
  },
5066
5013
  /**
5067
- * Lookup527: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
5014
+ * Lookup526: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
5068
5015
  **/
5069
5016
  PalletNftsItemMetadataDeposit: {
5070
5017
  account: "Option<AccountId32>",
5071
5018
  amount: "u128"
5072
5019
  },
5073
5020
  /**
5074
- * Lookup530: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
5021
+ * Lookup529: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
5075
5022
  **/
5076
5023
  PalletNftsAttributeDeposit: {
5077
5024
  account: "Option<AccountId32>",
5078
5025
  amount: "u128"
5079
5026
  },
5080
5027
  /**
5081
- * Lookup534: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
5028
+ * Lookup533: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
5082
5029
  **/
5083
5030
  PalletNftsPendingSwap: {
5084
5031
  desiredCollection: "u32",
@@ -5087,7 +5034,7 @@ export default {
5087
5034
  deadline: "u32"
5088
5035
  },
5089
5036
  /**
5090
- * Lookup536: pallet_nfts::types::PalletFeature
5037
+ * Lookup535: pallet_nfts::types::PalletFeature
5091
5038
  **/
5092
5039
  PalletNftsPalletFeature: {
5093
5040
  _enum: [
@@ -5103,7 +5050,7 @@ export default {
5103
5050
  ]
5104
5051
  },
5105
5052
  /**
5106
- * Lookup537: pallet_nfts::pallet::Error<T, I>
5053
+ * Lookup536: pallet_nfts::pallet::Error<T, I>
5107
5054
  **/
5108
5055
  PalletNftsError: {
5109
5056
  _enum: [
@@ -5155,51 +5102,51 @@ export default {
5155
5102
  ]
5156
5103
  },
5157
5104
  /**
5158
- * Lookup540: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
5105
+ * Lookup539: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
5159
5106
  **/
5160
5107
  FrameSystemExtensionsCheckNonZeroSender: "Null",
5161
5108
  /**
5162
- * Lookup541: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
5109
+ * Lookup540: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
5163
5110
  **/
5164
5111
  FrameSystemExtensionsCheckSpecVersion: "Null",
5165
5112
  /**
5166
- * Lookup542: frame_system::extensions::check_tx_version::CheckTxVersion<T>
5113
+ * Lookup541: frame_system::extensions::check_tx_version::CheckTxVersion<T>
5167
5114
  **/
5168
5115
  FrameSystemExtensionsCheckTxVersion: "Null",
5169
5116
  /**
5170
- * Lookup543: frame_system::extensions::check_genesis::CheckGenesis<T>
5117
+ * Lookup542: frame_system::extensions::check_genesis::CheckGenesis<T>
5171
5118
  **/
5172
5119
  FrameSystemExtensionsCheckGenesis: "Null",
5173
5120
  /**
5174
- * Lookup546: frame_system::extensions::check_nonce::CheckNonce<T>
5121
+ * Lookup545: frame_system::extensions::check_nonce::CheckNonce<T>
5175
5122
  **/
5176
5123
  FrameSystemExtensionsCheckNonce: "Compact<u32>",
5177
5124
  /**
5178
- * Lookup547: frame_system::extensions::check_weight::CheckWeight<T>
5125
+ * Lookup546: frame_system::extensions::check_weight::CheckWeight<T>
5179
5126
  **/
5180
5127
  FrameSystemExtensionsCheckWeight: "Null",
5181
5128
  /**
5182
- * Lookup548: pallet_transaction_payment::ChargeTransactionPayment<T>
5129
+ * Lookup547: pallet_transaction_payment::ChargeTransactionPayment<T>
5183
5130
  **/
5184
5131
  PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
5185
5132
  /**
5186
- * Lookup549: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
5133
+ * Lookup548: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
5187
5134
  **/
5188
5135
  CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: "Null",
5189
5136
  /**
5190
- * Lookup550: frame_metadata_hash_extension::CheckMetadataHash<T>
5137
+ * Lookup549: frame_metadata_hash_extension::CheckMetadataHash<T>
5191
5138
  **/
5192
5139
  FrameMetadataHashExtensionCheckMetadataHash: {
5193
5140
  mode: "FrameMetadataHashExtensionMode"
5194
5141
  },
5195
5142
  /**
5196
- * Lookup551: frame_metadata_hash_extension::Mode
5143
+ * Lookup550: frame_metadata_hash_extension::Mode
5197
5144
  **/
5198
5145
  FrameMetadataHashExtensionMode: {
5199
5146
  _enum: ["Disabled", "Enabled"]
5200
5147
  },
5201
5148
  /**
5202
- * Lookup552: sh_parachain_runtime::Runtime
5149
+ * Lookup551: sh_parachain_runtime::Runtime
5203
5150
  **/
5204
5151
  ShParachainRuntimeRuntime: "Null"
5205
5152
  };