@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.
- package/dist/parachain/interfaces/lookup.js +160 -213
- package/dist/parachain/interfaces/lookup.js.map +1 -1
- package/dist/parachain/interfaces/storagehubclient/runtime.js +5 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -1
- package/dist/solochain-evm/interfaces/lookup.js +290 -343
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
- package/dist/types/parachain/interfaces/augment-api-errors.d.ts +4 -108
- package/dist/types/parachain/interfaces/augment-api-events.d.ts +25 -103
- package/dist/types/parachain/interfaces/augment-api-query.d.ts +11 -0
- package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +8 -0
- package/dist/types/parachain/interfaces/augment-api-tx.d.ts +75 -10
- package/dist/types/parachain/interfaces/augment-types.d.ts +2 -1
- package/dist/types/parachain/interfaces/lookup.d.ts +118 -145
- package/dist/types/parachain/interfaces/registry.d.ts +2 -2
- package/dist/types/parachain/interfaces/storagehubclient/types.d.ts +14 -4
- package/dist/types/parachain/interfaces/types-lookup.d.ts +175 -234
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +4 -108
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +25 -103
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +11 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +8 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +75 -10
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +2 -1
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +248 -275
- package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -2
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +14 -4
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +305 -364
- package/metadata-sh-parachain.json +1 -1
- package/metadata-sh-solochain-evm.json +1 -1
- package/package.json +2 -2
- package/src/parachain/interfaces/augment-api-errors.ts +4 -108
- package/src/parachain/interfaces/augment-api-events.ts +22 -113
- package/src/parachain/interfaces/augment-api-query.ts +12 -0
- package/src/parachain/interfaces/augment-api-runtime.ts +14 -0
- package/src/parachain/interfaces/augment-api-tx.ts +76 -10
- package/src/parachain/interfaces/augment-types.ts +2 -0
- package/src/parachain/interfaces/lookup.ts +160 -213
- package/src/parachain/interfaces/registry.ts +2 -2
- package/src/parachain/interfaces/storagehubclient/runtime.ts +5 -0
- package/src/parachain/interfaces/storagehubclient/types.ts +14 -4
- package/src/parachain/interfaces/types-lookup.ts +225 -314
- package/src/solochain-evm/interfaces/augment-api-errors.ts +4 -108
- package/src/solochain-evm/interfaces/augment-api-events.ts +22 -113
- package/src/solochain-evm/interfaces/augment-api-query.ts +12 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +14 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +76 -10
- package/src/solochain-evm/interfaces/augment-types.ts +2 -0
- package/src/solochain-evm/interfaces/lookup.ts +290 -343
- package/src/solochain-evm/interfaces/registry.ts +2 -2
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +14 -4
- package/src/solochain-evm/interfaces/types-lookup.ts +355 -444
|
@@ -1620,13 +1620,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
1620
1620
|
readonly bucketId: H256;
|
|
1621
1621
|
readonly maybeCollectionId: Option<u32>;
|
|
1622
1622
|
} & Struct;
|
|
1623
|
-
readonly isMoveBucketRequested: boolean;
|
|
1624
|
-
readonly asMoveBucketRequested: {
|
|
1625
|
-
readonly who: AccountId32;
|
|
1626
|
-
readonly bucketId: H256;
|
|
1627
|
-
readonly newMspId: H256;
|
|
1628
|
-
readonly newValuePropId: H256;
|
|
1629
|
-
} & Struct;
|
|
1630
1623
|
readonly isBucketPrivacyUpdated: boolean;
|
|
1631
1624
|
readonly asBucketPrivacyUpdated: {
|
|
1632
1625
|
readonly who: AccountId32;
|
|
@@ -1640,6 +1633,30 @@ declare module "@polkadot/types/lookup" {
|
|
|
1640
1633
|
readonly bucketId: H256;
|
|
1641
1634
|
readonly collectionId: u32;
|
|
1642
1635
|
} & Struct;
|
|
1636
|
+
readonly isMoveBucketRequested: boolean;
|
|
1637
|
+
readonly asMoveBucketRequested: {
|
|
1638
|
+
readonly who: AccountId32;
|
|
1639
|
+
readonly bucketId: H256;
|
|
1640
|
+
readonly newMspId: H256;
|
|
1641
|
+
readonly newValuePropId: H256;
|
|
1642
|
+
} & Struct;
|
|
1643
|
+
readonly isMoveBucketRequestExpired: boolean;
|
|
1644
|
+
readonly asMoveBucketRequestExpired: {
|
|
1645
|
+
readonly bucketId: H256;
|
|
1646
|
+
} & Struct;
|
|
1647
|
+
readonly isMoveBucketAccepted: boolean;
|
|
1648
|
+
readonly asMoveBucketAccepted: {
|
|
1649
|
+
readonly bucketId: H256;
|
|
1650
|
+
readonly oldMspId: Option<H256>;
|
|
1651
|
+
readonly newMspId: H256;
|
|
1652
|
+
readonly valuePropId: H256;
|
|
1653
|
+
} & Struct;
|
|
1654
|
+
readonly isMoveBucketRejected: boolean;
|
|
1655
|
+
readonly asMoveBucketRejected: {
|
|
1656
|
+
readonly bucketId: H256;
|
|
1657
|
+
readonly oldMspId: Option<H256>;
|
|
1658
|
+
readonly newMspId: H256;
|
|
1659
|
+
} & Struct;
|
|
1643
1660
|
readonly isNewStorageRequest: boolean;
|
|
1644
1661
|
readonly asNewStorageRequest: {
|
|
1645
1662
|
readonly who: AccountId32;
|
|
@@ -1656,24 +1673,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
1656
1673
|
readonly fileKey: H256;
|
|
1657
1674
|
readonly fileMetadata: ShpFileMetadataFileMetadata;
|
|
1658
1675
|
} & Struct;
|
|
1659
|
-
readonly isAcceptedBspVolunteer: boolean;
|
|
1660
|
-
readonly asAcceptedBspVolunteer: {
|
|
1661
|
-
readonly bspId: H256;
|
|
1662
|
-
readonly bucketId: H256;
|
|
1663
|
-
readonly location: Bytes;
|
|
1664
|
-
readonly fingerprint: H256;
|
|
1665
|
-
readonly multiaddresses: Vec<Bytes>;
|
|
1666
|
-
readonly owner: AccountId32;
|
|
1667
|
-
readonly size_: u64;
|
|
1668
|
-
} & Struct;
|
|
1669
|
-
readonly isBspConfirmedStoring: boolean;
|
|
1670
|
-
readonly asBspConfirmedStoring: {
|
|
1671
|
-
readonly who: AccountId32;
|
|
1672
|
-
readonly bspId: H256;
|
|
1673
|
-
readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
|
|
1674
|
-
readonly skippedFileKeys: Vec<H256>;
|
|
1675
|
-
readonly newRoot: H256;
|
|
1676
|
-
} & Struct;
|
|
1677
1676
|
readonly isStorageRequestFulfilled: boolean;
|
|
1678
1677
|
readonly asStorageRequestFulfilled: {
|
|
1679
1678
|
readonly fileKey: H256;
|
|
@@ -1693,6 +1692,37 @@ declare module "@polkadot/types/lookup" {
|
|
|
1693
1692
|
readonly bucketId: H256;
|
|
1694
1693
|
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
1695
1694
|
} & Struct;
|
|
1695
|
+
readonly isIncompleteStorageRequest: boolean;
|
|
1696
|
+
readonly asIncompleteStorageRequest: {
|
|
1697
|
+
readonly fileKey: H256;
|
|
1698
|
+
} & Struct;
|
|
1699
|
+
readonly isIncompleteStorageRequestCleanedUp: boolean;
|
|
1700
|
+
readonly asIncompleteStorageRequestCleanedUp: {
|
|
1701
|
+
readonly fileKey: H256;
|
|
1702
|
+
} & Struct;
|
|
1703
|
+
readonly isAcceptedBspVolunteer: boolean;
|
|
1704
|
+
readonly asAcceptedBspVolunteer: {
|
|
1705
|
+
readonly bspId: H256;
|
|
1706
|
+
readonly bucketId: H256;
|
|
1707
|
+
readonly location: Bytes;
|
|
1708
|
+
readonly fingerprint: H256;
|
|
1709
|
+
readonly multiaddresses: Vec<Bytes>;
|
|
1710
|
+
readonly owner: AccountId32;
|
|
1711
|
+
readonly size_: u64;
|
|
1712
|
+
} & Struct;
|
|
1713
|
+
readonly isBspConfirmedStoring: boolean;
|
|
1714
|
+
readonly asBspConfirmedStoring: {
|
|
1715
|
+
readonly who: AccountId32;
|
|
1716
|
+
readonly bspId: H256;
|
|
1717
|
+
readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
|
|
1718
|
+
readonly skippedFileKeys: Vec<H256>;
|
|
1719
|
+
readonly newRoot: H256;
|
|
1720
|
+
} & Struct;
|
|
1721
|
+
readonly isBspChallengeCycleInitialised: boolean;
|
|
1722
|
+
readonly asBspChallengeCycleInitialised: {
|
|
1723
|
+
readonly who: AccountId32;
|
|
1724
|
+
readonly bspId: H256;
|
|
1725
|
+
} & Struct;
|
|
1696
1726
|
readonly isBspRequestedToStopStoring: boolean;
|
|
1697
1727
|
readonly asBspRequestedToStopStoring: {
|
|
1698
1728
|
readonly bspId: H256;
|
|
@@ -1706,10 +1736,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
1706
1736
|
readonly fileKey: H256;
|
|
1707
1737
|
readonly newRoot: H256;
|
|
1708
1738
|
} & Struct;
|
|
1709
|
-
readonly
|
|
1710
|
-
readonly
|
|
1711
|
-
readonly
|
|
1712
|
-
readonly
|
|
1739
|
+
readonly isMspStoppedStoringBucket: boolean;
|
|
1740
|
+
readonly asMspStoppedStoringBucket: {
|
|
1741
|
+
readonly mspId: H256;
|
|
1742
|
+
readonly owner: AccountId32;
|
|
1743
|
+
readonly bucketId: H256;
|
|
1713
1744
|
} & Struct;
|
|
1714
1745
|
readonly isSpStopStoringInsolventUser: boolean;
|
|
1715
1746
|
readonly asSpStopStoringInsolventUser: {
|
|
@@ -1725,89 +1756,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
1725
1756
|
readonly owner: AccountId32;
|
|
1726
1757
|
readonly bucketId: H256;
|
|
1727
1758
|
} & Struct;
|
|
1728
|
-
readonly isFailedToQueuePriorityChallenge: boolean;
|
|
1729
|
-
readonly asFailedToQueuePriorityChallenge: {
|
|
1730
|
-
readonly fileKey: H256;
|
|
1731
|
-
readonly error: SpRuntimeDispatchError;
|
|
1732
|
-
} & Struct;
|
|
1733
|
-
readonly isFileDeletionRequest: boolean;
|
|
1734
|
-
readonly asFileDeletionRequest: {
|
|
1735
|
-
readonly user: AccountId32;
|
|
1736
|
-
readonly fileKey: H256;
|
|
1737
|
-
readonly fileSize: u64;
|
|
1738
|
-
readonly bucketId: H256;
|
|
1739
|
-
readonly mspId: H256;
|
|
1740
|
-
readonly proofOfInclusion: bool;
|
|
1741
|
-
} & Struct;
|
|
1742
|
-
readonly isProofSubmittedForPendingFileDeletionRequest: boolean;
|
|
1743
|
-
readonly asProofSubmittedForPendingFileDeletionRequest: {
|
|
1744
|
-
readonly user: AccountId32;
|
|
1745
|
-
readonly fileKey: H256;
|
|
1746
|
-
readonly fileSize: u64;
|
|
1747
|
-
readonly bucketId: H256;
|
|
1748
|
-
readonly mspId: H256;
|
|
1749
|
-
readonly proofOfInclusion: bool;
|
|
1750
|
-
} & Struct;
|
|
1751
|
-
readonly isBspChallengeCycleInitialised: boolean;
|
|
1752
|
-
readonly asBspChallengeCycleInitialised: {
|
|
1753
|
-
readonly who: AccountId32;
|
|
1754
|
-
readonly bspId: H256;
|
|
1755
|
-
} & Struct;
|
|
1756
|
-
readonly isMoveBucketRequestExpired: boolean;
|
|
1757
|
-
readonly asMoveBucketRequestExpired: {
|
|
1758
|
-
readonly bucketId: H256;
|
|
1759
|
-
} & Struct;
|
|
1760
|
-
readonly isMoveBucketAccepted: boolean;
|
|
1761
|
-
readonly asMoveBucketAccepted: {
|
|
1762
|
-
readonly bucketId: H256;
|
|
1763
|
-
readonly oldMspId: Option<H256>;
|
|
1764
|
-
readonly newMspId: H256;
|
|
1765
|
-
readonly valuePropId: H256;
|
|
1766
|
-
} & Struct;
|
|
1767
|
-
readonly isMoveBucketRejected: boolean;
|
|
1768
|
-
readonly asMoveBucketRejected: {
|
|
1769
|
-
readonly bucketId: H256;
|
|
1770
|
-
readonly oldMspId: Option<H256>;
|
|
1771
|
-
readonly newMspId: H256;
|
|
1772
|
-
} & Struct;
|
|
1773
|
-
readonly isMspStoppedStoringBucket: boolean;
|
|
1774
|
-
readonly asMspStoppedStoringBucket: {
|
|
1775
|
-
readonly mspId: H256;
|
|
1776
|
-
readonly owner: AccountId32;
|
|
1777
|
-
readonly bucketId: H256;
|
|
1778
|
-
} & Struct;
|
|
1779
|
-
readonly isFailedToGetMspOfBucket: boolean;
|
|
1780
|
-
readonly asFailedToGetMspOfBucket: {
|
|
1781
|
-
readonly bucketId: H256;
|
|
1782
|
-
readonly error: SpRuntimeDispatchError;
|
|
1783
|
-
} & Struct;
|
|
1784
|
-
readonly isFailedToDecreaseMspUsedCapacity: boolean;
|
|
1785
|
-
readonly asFailedToDecreaseMspUsedCapacity: {
|
|
1786
|
-
readonly user: AccountId32;
|
|
1787
|
-
readonly mspId: H256;
|
|
1788
|
-
readonly fileKey: H256;
|
|
1789
|
-
readonly fileSize: u64;
|
|
1790
|
-
readonly error: SpRuntimeDispatchError;
|
|
1791
|
-
} & Struct;
|
|
1792
|
-
readonly isUsedCapacityShouldBeZero: boolean;
|
|
1793
|
-
readonly asUsedCapacityShouldBeZero: {
|
|
1794
|
-
readonly actualUsedCapacity: u64;
|
|
1795
|
-
} & Struct;
|
|
1796
|
-
readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
|
|
1797
|
-
readonly asFailedToReleaseStorageRequestCreationDeposit: {
|
|
1798
|
-
readonly fileKey: H256;
|
|
1799
|
-
readonly owner: AccountId32;
|
|
1800
|
-
readonly amountToReturn: u128;
|
|
1801
|
-
readonly error: SpRuntimeDispatchError;
|
|
1802
|
-
} & Struct;
|
|
1803
|
-
readonly isFailedToTransferDepositFundsToBsp: boolean;
|
|
1804
|
-
readonly asFailedToTransferDepositFundsToBsp: {
|
|
1805
|
-
readonly fileKey: H256;
|
|
1806
|
-
readonly owner: AccountId32;
|
|
1807
|
-
readonly bspId: H256;
|
|
1808
|
-
readonly amountToTransfer: u128;
|
|
1809
|
-
readonly error: SpRuntimeDispatchError;
|
|
1810
|
-
} & Struct;
|
|
1811
1759
|
readonly isFileDeletionRequested: boolean;
|
|
1812
1760
|
readonly asFileDeletionRequested: {
|
|
1813
1761
|
readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
|
|
@@ -1830,13 +1778,25 @@ declare module "@polkadot/types/lookup" {
|
|
|
1830
1778
|
readonly oldRoot: H256;
|
|
1831
1779
|
readonly newRoot: H256;
|
|
1832
1780
|
} & Struct;
|
|
1833
|
-
readonly
|
|
1834
|
-
readonly
|
|
1781
|
+
readonly isUsedCapacityShouldBeZero: boolean;
|
|
1782
|
+
readonly asUsedCapacityShouldBeZero: {
|
|
1783
|
+
readonly actualUsedCapacity: u64;
|
|
1784
|
+
} & Struct;
|
|
1785
|
+
readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
|
|
1786
|
+
readonly asFailedToReleaseStorageRequestCreationDeposit: {
|
|
1835
1787
|
readonly fileKey: H256;
|
|
1788
|
+
readonly owner: AccountId32;
|
|
1789
|
+
readonly amountToReturn: u128;
|
|
1790
|
+
readonly error: SpRuntimeDispatchError;
|
|
1836
1791
|
} & Struct;
|
|
1837
|
-
readonly
|
|
1792
|
+
readonly isUserOperationPauseFlagsUpdated: boolean;
|
|
1793
|
+
readonly asUserOperationPauseFlagsUpdated: {
|
|
1794
|
+
readonly old: u32;
|
|
1795
|
+
readonly new_: u32;
|
|
1796
|
+
} & Struct;
|
|
1797
|
+
readonly type: "NewBucket" | "BucketDeleted" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "MoveBucketRequested" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "IncompleteStorageRequest" | "IncompleteStorageRequestCleanedUp" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "BspChallengeCycleInitialised" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "MspStoppedStoringBucket" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FileDeletionRequested" | "BucketFileDeletionsCompleted" | "BspFileDeletionsCompleted" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "UserOperationPauseFlagsUpdated";
|
|
1838
1798
|
}
|
|
1839
|
-
/** @name ShpFileMetadataFileMetadata (
|
|
1799
|
+
/** @name ShpFileMetadataFileMetadata (154) */
|
|
1840
1800
|
interface ShpFileMetadataFileMetadata extends Struct {
|
|
1841
1801
|
readonly owner: Bytes;
|
|
1842
1802
|
readonly bucketId: Bytes;
|
|
@@ -1844,10 +1804,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
1844
1804
|
readonly fileSize: Compact<u64>;
|
|
1845
1805
|
readonly fingerprint: ShpFileMetadataFingerprint;
|
|
1846
1806
|
}
|
|
1847
|
-
/** @name ShpFileMetadataFingerprint (
|
|
1807
|
+
/** @name ShpFileMetadataFingerprint (155) */
|
|
1848
1808
|
interface ShpFileMetadataFingerprint extends U8aFixed {
|
|
1849
1809
|
}
|
|
1850
|
-
/** @name PalletFileSystemRejectedStorageRequestReason (
|
|
1810
|
+
/** @name PalletFileSystemRejectedStorageRequestReason (156) */
|
|
1851
1811
|
interface PalletFileSystemRejectedStorageRequestReason extends Enum {
|
|
1852
1812
|
readonly isReachedMaximumCapacity: boolean;
|
|
1853
1813
|
readonly isReceivedInvalidProof: boolean;
|
|
@@ -1856,25 +1816,17 @@ declare module "@polkadot/types/lookup" {
|
|
|
1856
1816
|
readonly isInternalError: boolean;
|
|
1857
1817
|
readonly type: "ReachedMaximumCapacity" | "ReceivedInvalidProof" | "FileKeyAlreadyStored" | "RequestExpired" | "InternalError";
|
|
1858
1818
|
}
|
|
1859
|
-
/** @name
|
|
1860
|
-
interface PalletFileSystemEitherAccountIdOrMspId extends Enum {
|
|
1861
|
-
readonly isAccountId: boolean;
|
|
1862
|
-
readonly asAccountId: AccountId32;
|
|
1863
|
-
readonly isMspId: boolean;
|
|
1864
|
-
readonly asMspId: H256;
|
|
1865
|
-
readonly type: "AccountId" | "MspId";
|
|
1866
|
-
}
|
|
1867
|
-
/** @name PalletFileSystemFileOperationIntention (162) */
|
|
1819
|
+
/** @name PalletFileSystemFileOperationIntention (161) */
|
|
1868
1820
|
interface PalletFileSystemFileOperationIntention extends Struct {
|
|
1869
1821
|
readonly fileKey: H256;
|
|
1870
1822
|
readonly operation: PalletFileSystemFileOperation;
|
|
1871
1823
|
}
|
|
1872
|
-
/** @name PalletFileSystemFileOperation (
|
|
1824
|
+
/** @name PalletFileSystemFileOperation (162) */
|
|
1873
1825
|
interface PalletFileSystemFileOperation extends Enum {
|
|
1874
1826
|
readonly isDelete: boolean;
|
|
1875
1827
|
readonly type: "Delete";
|
|
1876
1828
|
}
|
|
1877
|
-
/** @name SpRuntimeMultiSignature (
|
|
1829
|
+
/** @name SpRuntimeMultiSignature (163) */
|
|
1878
1830
|
interface SpRuntimeMultiSignature extends Enum {
|
|
1879
1831
|
readonly isEd25519: boolean;
|
|
1880
1832
|
readonly asEd25519: U8aFixed;
|
|
@@ -2499,9 +2451,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
2499
2451
|
readonly isMinPrice: boolean;
|
|
2500
2452
|
readonly asMinPrice: u128;
|
|
2501
2453
|
readonly isUpperExponentFactor: boolean;
|
|
2502
|
-
readonly asUpperExponentFactor:
|
|
2454
|
+
readonly asUpperExponentFactor: u128;
|
|
2503
2455
|
readonly isLowerExponentFactor: boolean;
|
|
2504
|
-
readonly asLowerExponentFactor:
|
|
2456
|
+
readonly asLowerExponentFactor: u128;
|
|
2505
2457
|
readonly isZeroSizeBucketFixedRate: boolean;
|
|
2506
2458
|
readonly asZeroSizeBucketFixedRate: u128;
|
|
2507
2459
|
readonly isIdealUtilisationRate: boolean;
|
|
@@ -3896,7 +3848,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
3896
3848
|
readonly bspId: Option<H256>;
|
|
3897
3849
|
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
3898
3850
|
} & Struct;
|
|
3899
|
-
readonly
|
|
3851
|
+
readonly isSetUserOperationPauseFlags: boolean;
|
|
3852
|
+
readonly asSetUserOperationPauseFlags: {
|
|
3853
|
+
readonly newFlags: u32;
|
|
3854
|
+
} & Struct;
|
|
3855
|
+
readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFiles" | "DeleteFilesForIncompleteStorageRequest" | "SetUserOperationPauseFlags";
|
|
3900
3856
|
}
|
|
3901
3857
|
/** @name PalletFileSystemBucketMoveRequestResponse (379) */
|
|
3902
3858
|
interface PalletFileSystemBucketMoveRequestResponse extends Enum {
|
|
@@ -4424,12 +4380,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
4424
4380
|
readonly isUpperExponentFactor: boolean;
|
|
4425
4381
|
readonly asUpperExponentFactor: ITuple<[
|
|
4426
4382
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,
|
|
4427
|
-
Option<
|
|
4383
|
+
Option<u128>
|
|
4428
4384
|
]>;
|
|
4429
4385
|
readonly isLowerExponentFactor: boolean;
|
|
4430
4386
|
readonly asLowerExponentFactor: ITuple<[
|
|
4431
4387
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,
|
|
4432
|
-
Option<
|
|
4388
|
+
Option<u128>
|
|
4433
4389
|
]>;
|
|
4434
4390
|
readonly isZeroSizeBucketFixedRate: boolean;
|
|
4435
4391
|
readonly asZeroSizeBucketFixedRate: ITuple<[
|
|
@@ -4828,18 +4784,29 @@ declare module "@polkadot/types/lookup" {
|
|
|
4828
4784
|
readonly location: Bytes;
|
|
4829
4785
|
readonly fingerprint: H256;
|
|
4830
4786
|
readonly size_: u64;
|
|
4831
|
-
readonly
|
|
4787
|
+
readonly mspStatus: PalletFileSystemMspStorageRequestStatus;
|
|
4832
4788
|
readonly userPeerIds: Vec<Bytes>;
|
|
4833
4789
|
readonly bspsRequired: u32;
|
|
4834
4790
|
readonly bspsConfirmed: u32;
|
|
4835
4791
|
readonly bspsVolunteered: u32;
|
|
4836
4792
|
readonly depositPaid: u128;
|
|
4837
4793
|
}
|
|
4838
|
-
/** @name
|
|
4794
|
+
/** @name PalletFileSystemMspStorageRequestStatus (486) */
|
|
4795
|
+
interface PalletFileSystemMspStorageRequestStatus extends Enum {
|
|
4796
|
+
readonly isNone: boolean;
|
|
4797
|
+
readonly isPending: boolean;
|
|
4798
|
+
readonly asPending: H256;
|
|
4799
|
+
readonly isAcceptedNewFile: boolean;
|
|
4800
|
+
readonly asAcceptedNewFile: H256;
|
|
4801
|
+
readonly isAcceptedExistingFile: boolean;
|
|
4802
|
+
readonly asAcceptedExistingFile: H256;
|
|
4803
|
+
readonly type: "None" | "Pending" | "AcceptedNewFile" | "AcceptedExistingFile";
|
|
4804
|
+
}
|
|
4805
|
+
/** @name PalletFileSystemStorageRequestBspsMetadata (487) */
|
|
4839
4806
|
interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
|
|
4840
4807
|
readonly confirmed: bool;
|
|
4841
4808
|
}
|
|
4842
|
-
/** @name PalletFileSystemPendingFileDeletionRequest (
|
|
4809
|
+
/** @name PalletFileSystemPendingFileDeletionRequest (489) */
|
|
4843
4810
|
interface PalletFileSystemPendingFileDeletionRequest extends Struct {
|
|
4844
4811
|
readonly user: AccountId32;
|
|
4845
4812
|
readonly fileKey: H256;
|
|
@@ -4848,19 +4815,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
4848
4815
|
readonly depositPaidForCreation: u128;
|
|
4849
4816
|
readonly queuePriorityChallenge: bool;
|
|
4850
4817
|
}
|
|
4851
|
-
/** @name PalletFileSystemPendingStopStoringRequest (
|
|
4818
|
+
/** @name PalletFileSystemPendingStopStoringRequest (491) */
|
|
4852
4819
|
interface PalletFileSystemPendingStopStoringRequest extends Struct {
|
|
4853
4820
|
readonly tickWhenRequested: u32;
|
|
4854
4821
|
readonly fileOwner: AccountId32;
|
|
4855
4822
|
readonly fileSize: u64;
|
|
4856
4823
|
}
|
|
4857
|
-
/** @name PalletFileSystemMoveBucketRequestMetadata (
|
|
4824
|
+
/** @name PalletFileSystemMoveBucketRequestMetadata (492) */
|
|
4858
4825
|
interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
|
|
4859
4826
|
readonly requester: AccountId32;
|
|
4860
4827
|
readonly newMspId: H256;
|
|
4861
4828
|
readonly newValuePropId: H256;
|
|
4862
4829
|
}
|
|
4863
|
-
/** @name PalletFileSystemIncompleteStorageRequestMetadata (
|
|
4830
|
+
/** @name PalletFileSystemIncompleteStorageRequestMetadata (493) */
|
|
4864
4831
|
interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
|
|
4865
4832
|
readonly owner: AccountId32;
|
|
4866
4833
|
readonly bucketId: H256;
|
|
@@ -4870,112 +4837,86 @@ declare module "@polkadot/types/lookup" {
|
|
|
4870
4837
|
readonly pendingBspRemovals: Vec<H256>;
|
|
4871
4838
|
readonly pendingBucketRemoval: bool;
|
|
4872
4839
|
}
|
|
4873
|
-
/** @name PalletFileSystemError (
|
|
4840
|
+
/** @name PalletFileSystemError (495) */
|
|
4874
4841
|
interface PalletFileSystemError extends Enum {
|
|
4842
|
+
readonly isNotABsp: boolean;
|
|
4843
|
+
readonly isNotAMsp: boolean;
|
|
4844
|
+
readonly isNotASp: boolean;
|
|
4875
4845
|
readonly isStorageRequestAlreadyRegistered: boolean;
|
|
4876
4846
|
readonly isStorageRequestNotFound: boolean;
|
|
4877
|
-
readonly isStorageRequestNotRevoked: boolean;
|
|
4878
4847
|
readonly isStorageRequestExists: boolean;
|
|
4848
|
+
readonly isStorageRequestNotAuthorized: boolean;
|
|
4849
|
+
readonly isStorageRequestBspsRequiredFulfilled: boolean;
|
|
4850
|
+
readonly isTooManyStorageRequestResponses: boolean;
|
|
4851
|
+
readonly isIncompleteStorageRequestNotFound: boolean;
|
|
4879
4852
|
readonly isReplicationTargetCannotBeZero: boolean;
|
|
4880
4853
|
readonly isReplicationTargetExceedsMaximum: boolean;
|
|
4881
|
-
readonly isMaxReplicationTargetSmallerThanDefault: boolean;
|
|
4882
|
-
readonly isNotABsp: boolean;
|
|
4883
|
-
readonly isNotAMsp: boolean;
|
|
4884
|
-
readonly isNotASp: boolean;
|
|
4885
4854
|
readonly isBspNotVolunteered: boolean;
|
|
4886
4855
|
readonly isBspNotConfirmed: boolean;
|
|
4887
4856
|
readonly isBspAlreadyConfirmed: boolean;
|
|
4888
|
-
readonly isStorageRequestBspsRequiredFulfilled: boolean;
|
|
4889
4857
|
readonly isBspAlreadyVolunteered: boolean;
|
|
4890
|
-
readonly isInsufficientAvailableCapacity: boolean;
|
|
4891
|
-
readonly isUnexpectedNumberOfRemovedVolunteeredBsps: boolean;
|
|
4892
4858
|
readonly isBspNotEligibleToVolunteer: boolean;
|
|
4893
|
-
readonly
|
|
4894
|
-
readonly
|
|
4895
|
-
readonly
|
|
4896
|
-
readonly
|
|
4897
|
-
readonly
|
|
4898
|
-
readonly
|
|
4899
|
-
readonly
|
|
4900
|
-
readonly isThresholdArithmeticError: boolean;
|
|
4901
|
-
readonly isFailedTypeConversion: boolean;
|
|
4902
|
-
readonly isDividedByZero: boolean;
|
|
4903
|
-
readonly isImpossibleFailedToGetValue: boolean;
|
|
4904
|
-
readonly isBucketIsNotPrivate: boolean;
|
|
4859
|
+
readonly isInsufficientAvailableCapacity: boolean;
|
|
4860
|
+
readonly isNoFileKeysToConfirm: boolean;
|
|
4861
|
+
readonly isMspNotStoringBucket: boolean;
|
|
4862
|
+
readonly isNotSelectedMsp: boolean;
|
|
4863
|
+
readonly isMspAlreadyConfirmed: boolean;
|
|
4864
|
+
readonly isRequestWithoutMsp: boolean;
|
|
4865
|
+
readonly isMspAlreadyStoringBucket: boolean;
|
|
4905
4866
|
readonly isBucketNotFound: boolean;
|
|
4906
4867
|
readonly isBucketNotEmpty: boolean;
|
|
4907
4868
|
readonly isNotBucketOwner: boolean;
|
|
4869
|
+
readonly isBucketIsBeingMoved: boolean;
|
|
4870
|
+
readonly isInvalidBucketIdFileKeyPair: boolean;
|
|
4908
4871
|
readonly isValuePropositionNotAvailable: boolean;
|
|
4909
4872
|
readonly isCollectionNotFound: boolean;
|
|
4910
|
-
readonly
|
|
4911
|
-
readonly isExpectedNonInclusionProof: boolean;
|
|
4912
|
-
readonly isExpectedInclusionProof: boolean;
|
|
4873
|
+
readonly isMoveBucketRequestNotFound: boolean;
|
|
4913
4874
|
readonly isInvalidFileKeyMetadata: boolean;
|
|
4914
|
-
readonly
|
|
4915
|
-
readonly
|
|
4916
|
-
readonly
|
|
4875
|
+
readonly isFileSizeCannotBeZero: boolean;
|
|
4876
|
+
readonly isProviderNotStoringFile: boolean;
|
|
4877
|
+
readonly isFileHasActiveStorageRequest: boolean;
|
|
4878
|
+
readonly isFileHasIncompleteStorageRequest: boolean;
|
|
4917
4879
|
readonly isBatchFileDeletionMustContainSingleBucket: boolean;
|
|
4918
4880
|
readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
|
|
4919
4881
|
readonly isNoFileKeysToDelete: boolean;
|
|
4920
4882
|
readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
|
|
4921
4883
|
readonly isFailedToPushUserToBspDeletionVector: boolean;
|
|
4922
4884
|
readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
|
|
4923
|
-
readonly isMaxUserPendingDeletionRequestsReached: boolean;
|
|
4924
|
-
readonly isMspNotStoringBucket: boolean;
|
|
4925
|
-
readonly isFileKeyNotPendingDeletion: boolean;
|
|
4926
|
-
readonly isFileSizeCannotBeZero: boolean;
|
|
4927
|
-
readonly isNoGlobalReputationWeightSet: boolean;
|
|
4928
|
-
readonly isNoBspReputationWeightSet: boolean;
|
|
4929
|
-
readonly isMaximumThresholdCannotBeZero: boolean;
|
|
4930
|
-
readonly isTickRangeToMaximumThresholdCannotBeZero: boolean;
|
|
4931
4885
|
readonly isPendingStopStoringRequestNotFound: boolean;
|
|
4932
4886
|
readonly isMinWaitForStopStoringNotReached: boolean;
|
|
4933
4887
|
readonly isPendingStopStoringRequestAlreadyExists: boolean;
|
|
4934
|
-
readonly
|
|
4935
|
-
readonly
|
|
4936
|
-
readonly isNotSelectedMsp: boolean;
|
|
4937
|
-
readonly isMspAlreadyConfirmed: boolean;
|
|
4938
|
-
readonly isRequestWithoutMsp: boolean;
|
|
4939
|
-
readonly isMspAlreadyStoringBucket: boolean;
|
|
4940
|
-
readonly isMoveBucketRequestNotFound: boolean;
|
|
4941
|
-
readonly isBucketIsBeingMoved: boolean;
|
|
4942
|
-
readonly isBspAlreadyDataServer: boolean;
|
|
4943
|
-
readonly isBspDataServersExceeded: boolean;
|
|
4944
|
-
readonly isFileMetadataProcessingQueueFull: boolean;
|
|
4945
|
-
readonly isTooManyBatchResponses: boolean;
|
|
4946
|
-
readonly isTooManyStorageRequestResponses: boolean;
|
|
4947
|
-
readonly isInvalidBucketIdFileKeyPair: boolean;
|
|
4948
|
-
readonly isInconsistentStateKeyAlreadyExists: boolean;
|
|
4888
|
+
readonly isExpectedNonInclusionProof: boolean;
|
|
4889
|
+
readonly isExpectedInclusionProof: boolean;
|
|
4949
4890
|
readonly isFixedRatePaymentStreamNotFound: boolean;
|
|
4950
4891
|
readonly isDynamicRatePaymentStreamNotFound: boolean;
|
|
4892
|
+
readonly isOperationNotAllowedWithInsolventUser: boolean;
|
|
4893
|
+
readonly isUserNotInsolvent: boolean;
|
|
4894
|
+
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
4895
|
+
readonly isInvalidSignature: boolean;
|
|
4896
|
+
readonly isInvalidProviderID: boolean;
|
|
4897
|
+
readonly isInvalidSignedOperation: boolean;
|
|
4898
|
+
readonly isNoGlobalReputationWeightSet: boolean;
|
|
4899
|
+
readonly isNoBspReputationWeightSet: boolean;
|
|
4951
4900
|
readonly isCannotHoldDeposit: boolean;
|
|
4901
|
+
readonly isMaxTickNumberReached: boolean;
|
|
4902
|
+
readonly isThresholdArithmeticError: boolean;
|
|
4903
|
+
readonly isRootNotUpdated: boolean;
|
|
4904
|
+
readonly isImpossibleFailedToGetValue: boolean;
|
|
4952
4905
|
readonly isFailedToQueryEarliestFileVolunteerTick: boolean;
|
|
4953
4906
|
readonly isFailedToGetOwnerAccount: boolean;
|
|
4954
4907
|
readonly isFailedToGetPaymentAccount: boolean;
|
|
4955
|
-
readonly isNoFileKeysToConfirm: boolean;
|
|
4956
|
-
readonly isRootNotUpdated: boolean;
|
|
4957
|
-
readonly isNoPrivacyChange: boolean;
|
|
4958
|
-
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
4959
|
-
readonly isOperationNotAllowedWhileBucketIsNotStoredByMsp: boolean;
|
|
4960
4908
|
readonly isFailedToComputeFileKey: boolean;
|
|
4961
4909
|
readonly isFailedToCreateFileMetadata: boolean;
|
|
4962
|
-
readonly
|
|
4963
|
-
readonly
|
|
4964
|
-
readonly
|
|
4965
|
-
readonly isInvalidProviderID: boolean;
|
|
4966
|
-
readonly isInvalidSignedOperation: boolean;
|
|
4967
|
-
readonly isFileKeyMismatch: boolean;
|
|
4968
|
-
readonly isIncompleteStorageRequestNotFound: boolean;
|
|
4969
|
-
readonly isFileHasActiveStorageRequest: boolean;
|
|
4970
|
-
readonly isFileHasIncompleteStorageRequest: boolean;
|
|
4971
|
-
readonly type: "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestNotRevoked" | "StorageRequestExists" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "MaxReplicationTargetSmallerThanDefault" | "NotABsp" | "NotAMsp" | "NotASp" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "StorageRequestBspsRequiredFulfilled" | "BspAlreadyVolunteered" | "InsufficientAvailableCapacity" | "UnexpectedNumberOfRemovedVolunteeredBsps" | "BspNotEligibleToVolunteer" | "StorageRequestExpiredNoSlotAvailable" | "StorageRequestNotAuthorized" | "MaxTickNumberReached" | "FailedToEncodeBsp" | "FailedToEncodeFingerprint" | "FailedToDecodeThreshold" | "AboveThreshold" | "ThresholdArithmeticError" | "FailedTypeConversion" | "DividedByZero" | "ImpossibleFailedToGetValue" | "BucketIsNotPrivate" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "ProviderRootNotFound" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "InvalidFileKeyMetadata" | "ThresholdBelowAsymptote" | "NotFileOwner" | "FileKeyAlreadyPendingDeletion" | "BatchFileDeletionMustContainSingleBucket" | "DuplicateFileKeyInBatchFileDeletion" | "NoFileKeysToDelete" | "FailedToPushFileKeyToBucketDeletionVector" | "FailedToPushUserToBspDeletionVector" | "FailedToPushFileKeyToBspDeletionVector" | "MaxUserPendingDeletionRequestsReached" | "MspNotStoringBucket" | "FileKeyNotPendingDeletion" | "FileSizeCannotBeZero" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "MaximumThresholdCannotBeZero" | "TickRangeToMaximumThresholdCannotBeZero" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "MoveBucketRequestNotFound" | "BucketIsBeingMoved" | "BspAlreadyDataServer" | "BspDataServersExceeded" | "FileMetadataProcessingQueueFull" | "TooManyBatchResponses" | "TooManyStorageRequestResponses" | "InvalidBucketIdFileKeyPair" | "InconsistentStateKeyAlreadyExists" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "CannotHoldDeposit" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "NoFileKeysToConfirm" | "RootNotUpdated" | "NoPrivacyChange" | "OperationNotAllowedForInsolventProvider" | "OperationNotAllowedWhileBucketIsNotStoredByMsp" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "InvalidSignature" | "ForestProofVerificationFailed" | "ProviderNotStoringFile" | "InvalidProviderID" | "InvalidSignedOperation" | "FileKeyMismatch" | "IncompleteStorageRequestNotFound" | "FileHasActiveStorageRequest" | "FileHasIncompleteStorageRequest";
|
|
4910
|
+
readonly isFileMetadataProcessingQueueFull: boolean;
|
|
4911
|
+
readonly isUserOperationPaused: boolean;
|
|
4912
|
+
readonly type: "NotABsp" | "NotAMsp" | "NotASp" | "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestExists" | "StorageRequestNotAuthorized" | "StorageRequestBspsRequiredFulfilled" | "TooManyStorageRequestResponses" | "IncompleteStorageRequestNotFound" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "BspAlreadyVolunteered" | "BspNotEligibleToVolunteer" | "InsufficientAvailableCapacity" | "NoFileKeysToConfirm" | "MspNotStoringBucket" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "BucketIsBeingMoved" | "InvalidBucketIdFileKeyPair" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "MoveBucketRequestNotFound" | "InvalidFileKeyMetadata" | "FileSizeCannotBeZero" | "ProviderNotStoringFile" | "FileHasActiveStorageRequest" | "FileHasIncompleteStorageRequest" | "BatchFileDeletionMustContainSingleBucket" | "DuplicateFileKeyInBatchFileDeletion" | "NoFileKeysToDelete" | "FailedToPushFileKeyToBucketDeletionVector" | "FailedToPushUserToBspDeletionVector" | "FailedToPushFileKeyToBspDeletionVector" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "OperationNotAllowedForInsolventProvider" | "InvalidSignature" | "InvalidProviderID" | "InvalidSignedOperation" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "CannotHoldDeposit" | "MaxTickNumberReached" | "ThresholdArithmeticError" | "RootNotUpdated" | "ImpossibleFailedToGetValue" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "FileMetadataProcessingQueueFull" | "UserOperationPaused";
|
|
4972
4913
|
}
|
|
4973
|
-
/** @name PalletProofsDealerProofSubmissionRecord (
|
|
4914
|
+
/** @name PalletProofsDealerProofSubmissionRecord (497) */
|
|
4974
4915
|
interface PalletProofsDealerProofSubmissionRecord extends Struct {
|
|
4975
4916
|
readonly lastTickProven: u32;
|
|
4976
4917
|
readonly nextTickToSubmitProofFor: u32;
|
|
4977
4918
|
}
|
|
4978
|
-
/** @name PalletProofsDealerError (
|
|
4919
|
+
/** @name PalletProofsDealerError (504) */
|
|
4979
4920
|
interface PalletProofsDealerError extends Enum {
|
|
4980
4921
|
readonly isNotProvider: boolean;
|
|
4981
4922
|
readonly isChallengesQueueOverflow: boolean;
|
|
@@ -5003,26 +4944,26 @@ declare module "@polkadot/types/lookup" {
|
|
|
5003
4944
|
readonly isTooManyValidProofSubmitters: boolean;
|
|
5004
4945
|
readonly type: "NotProvider" | "ChallengesQueueOverflow" | "PriorityChallengesQueueOverflow" | "FeeChargeFailed" | "EmptyKeyProofs" | "ProviderRootNotFound" | "ZeroRoot" | "NoRecordOfLastSubmittedProof" | "ProviderStakeNotFound" | "ZeroStake" | "StakeCouldNotBeConverted" | "ChallengesTickNotReached" | "ChallengesTickTooOld" | "ChallengesTickTooLate" | "SeedNotFound" | "CheckpointChallengesNotFound" | "ForestProofVerificationFailed" | "IncorrectNumberOfKeyProofs" | "KeyProofNotFound" | "KeyProofVerificationFailed" | "FailedToApplyDelta" | "UnexpectedNumberOfRemoveMutations" | "FailedToUpdateProviderAfterKeyRemoval" | "TooManyValidProofSubmitters";
|
|
5005
4946
|
}
|
|
5006
|
-
/** @name PalletPaymentStreamsFixedRatePaymentStream (
|
|
4947
|
+
/** @name PalletPaymentStreamsFixedRatePaymentStream (507) */
|
|
5007
4948
|
interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
|
|
5008
4949
|
readonly rate: u128;
|
|
5009
4950
|
readonly lastChargedTick: u32;
|
|
5010
4951
|
readonly userDeposit: u128;
|
|
5011
4952
|
readonly outOfFundsTick: Option<u32>;
|
|
5012
4953
|
}
|
|
5013
|
-
/** @name PalletPaymentStreamsDynamicRatePaymentStream (
|
|
4954
|
+
/** @name PalletPaymentStreamsDynamicRatePaymentStream (508) */
|
|
5014
4955
|
interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
|
|
5015
4956
|
readonly amountProvided: u64;
|
|
5016
4957
|
readonly priceIndexWhenLastCharged: u128;
|
|
5017
4958
|
readonly userDeposit: u128;
|
|
5018
4959
|
readonly outOfFundsTick: Option<u32>;
|
|
5019
4960
|
}
|
|
5020
|
-
/** @name PalletPaymentStreamsProviderLastChargeableInfo (
|
|
4961
|
+
/** @name PalletPaymentStreamsProviderLastChargeableInfo (509) */
|
|
5021
4962
|
interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
|
|
5022
4963
|
readonly lastChargeableTick: u32;
|
|
5023
4964
|
readonly priceIndex: u128;
|
|
5024
4965
|
}
|
|
5025
|
-
/** @name PalletPaymentStreamsError (
|
|
4966
|
+
/** @name PalletPaymentStreamsError (510) */
|
|
5026
4967
|
interface PalletPaymentStreamsError extends Enum {
|
|
5027
4968
|
readonly isPaymentStreamAlreadyExists: boolean;
|
|
5028
4969
|
readonly isPaymentStreamNotFound: boolean;
|
|
@@ -5044,7 +4985,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
5044
4985
|
readonly isProviderInsolvent: boolean;
|
|
5045
4986
|
readonly type: "PaymentStreamAlreadyExists" | "PaymentStreamNotFound" | "NotAProvider" | "ProviderInconsistencyError" | "CannotHoldDeposit" | "UpdateRateToSameRate" | "UpdateAmountToSameAmount" | "RateCantBeZero" | "AmountProvidedCantBeZero" | "LastChargedGreaterThanLastChargeable" | "InvalidLastChargeableBlockNumber" | "InvalidLastChargeablePriceIndex" | "ChargeOverflow" | "UserWithoutFunds" | "UserNotFlaggedAsWithoutFunds" | "CooldownPeriodNotPassed" | "UserHasRemainingDebt" | "ProviderInsolvent";
|
|
5046
4987
|
}
|
|
5047
|
-
/** @name PalletBucketNftsError (
|
|
4988
|
+
/** @name PalletBucketNftsError (511) */
|
|
5048
4989
|
interface PalletBucketNftsError extends Enum {
|
|
5049
4990
|
readonly isBucketIsNotPrivate: boolean;
|
|
5050
4991
|
readonly isNotBucketOwner: boolean;
|
|
@@ -5052,7 +4993,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
5052
4993
|
readonly isConvertBytesToBoundedVec: boolean;
|
|
5053
4994
|
readonly type: "BucketIsNotPrivate" | "NotBucketOwner" | "NoCorrespondingCollection" | "ConvertBytesToBoundedVec";
|
|
5054
4995
|
}
|
|
5055
|
-
/** @name PalletNftsCollectionDetails (
|
|
4996
|
+
/** @name PalletNftsCollectionDetails (512) */
|
|
5056
4997
|
interface PalletNftsCollectionDetails extends Struct {
|
|
5057
4998
|
readonly owner: AccountId32;
|
|
5058
4999
|
readonly ownerDeposit: u128;
|
|
@@ -5061,52 +5002,52 @@ declare module "@polkadot/types/lookup" {
|
|
|
5061
5002
|
readonly itemConfigs: u32;
|
|
5062
5003
|
readonly attributes: u32;
|
|
5063
5004
|
}
|
|
5064
|
-
/** @name PalletNftsCollectionRole (
|
|
5005
|
+
/** @name PalletNftsCollectionRole (517) */
|
|
5065
5006
|
interface PalletNftsCollectionRole extends Enum {
|
|
5066
5007
|
readonly isIssuer: boolean;
|
|
5067
5008
|
readonly isFreezer: boolean;
|
|
5068
5009
|
readonly isAdmin: boolean;
|
|
5069
5010
|
readonly type: "Issuer" | "Freezer" | "Admin";
|
|
5070
5011
|
}
|
|
5071
|
-
/** @name PalletNftsItemDetails (
|
|
5012
|
+
/** @name PalletNftsItemDetails (518) */
|
|
5072
5013
|
interface PalletNftsItemDetails extends Struct {
|
|
5073
5014
|
readonly owner: AccountId32;
|
|
5074
5015
|
readonly approvals: BTreeMap<AccountId32, Option<u32>>;
|
|
5075
5016
|
readonly deposit: PalletNftsItemDeposit;
|
|
5076
5017
|
}
|
|
5077
|
-
/** @name PalletNftsItemDeposit (
|
|
5018
|
+
/** @name PalletNftsItemDeposit (519) */
|
|
5078
5019
|
interface PalletNftsItemDeposit extends Struct {
|
|
5079
5020
|
readonly account: AccountId32;
|
|
5080
5021
|
readonly amount: u128;
|
|
5081
5022
|
}
|
|
5082
|
-
/** @name PalletNftsCollectionMetadata (
|
|
5023
|
+
/** @name PalletNftsCollectionMetadata (524) */
|
|
5083
5024
|
interface PalletNftsCollectionMetadata extends Struct {
|
|
5084
5025
|
readonly deposit: u128;
|
|
5085
5026
|
readonly data: Bytes;
|
|
5086
5027
|
}
|
|
5087
|
-
/** @name PalletNftsItemMetadata (
|
|
5028
|
+
/** @name PalletNftsItemMetadata (525) */
|
|
5088
5029
|
interface PalletNftsItemMetadata extends Struct {
|
|
5089
5030
|
readonly deposit: PalletNftsItemMetadataDeposit;
|
|
5090
5031
|
readonly data: Bytes;
|
|
5091
5032
|
}
|
|
5092
|
-
/** @name PalletNftsItemMetadataDeposit (
|
|
5033
|
+
/** @name PalletNftsItemMetadataDeposit (526) */
|
|
5093
5034
|
interface PalletNftsItemMetadataDeposit extends Struct {
|
|
5094
5035
|
readonly account: Option<AccountId32>;
|
|
5095
5036
|
readonly amount: u128;
|
|
5096
5037
|
}
|
|
5097
|
-
/** @name PalletNftsAttributeDeposit (
|
|
5038
|
+
/** @name PalletNftsAttributeDeposit (529) */
|
|
5098
5039
|
interface PalletNftsAttributeDeposit extends Struct {
|
|
5099
5040
|
readonly account: Option<AccountId32>;
|
|
5100
5041
|
readonly amount: u128;
|
|
5101
5042
|
}
|
|
5102
|
-
/** @name PalletNftsPendingSwap (
|
|
5043
|
+
/** @name PalletNftsPendingSwap (533) */
|
|
5103
5044
|
interface PalletNftsPendingSwap extends Struct {
|
|
5104
5045
|
readonly desiredCollection: u32;
|
|
5105
5046
|
readonly desiredItem: Option<u32>;
|
|
5106
5047
|
readonly price: Option<PalletNftsPriceWithDirection>;
|
|
5107
5048
|
readonly deadline: u32;
|
|
5108
5049
|
}
|
|
5109
|
-
/** @name PalletNftsPalletFeature (
|
|
5050
|
+
/** @name PalletNftsPalletFeature (535) */
|
|
5110
5051
|
interface PalletNftsPalletFeature extends Enum {
|
|
5111
5052
|
readonly isTrading: boolean;
|
|
5112
5053
|
readonly isAttributes: boolean;
|
|
@@ -5114,7 +5055,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
5114
5055
|
readonly isSwaps: boolean;
|
|
5115
5056
|
readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
|
|
5116
5057
|
}
|
|
5117
|
-
/** @name PalletNftsError (
|
|
5058
|
+
/** @name PalletNftsError (536) */
|
|
5118
5059
|
interface PalletNftsError extends Enum {
|
|
5119
5060
|
readonly isNoPermission: boolean;
|
|
5120
5061
|
readonly isUnknownCollection: boolean;
|
|
@@ -5163,34 +5104,34 @@ declare module "@polkadot/types/lookup" {
|
|
|
5163
5104
|
readonly isWitnessRequired: boolean;
|
|
5164
5105
|
readonly type: "NoPermission" | "UnknownCollection" | "AlreadyExists" | "ApprovalExpired" | "WrongOwner" | "BadWitness" | "CollectionIdInUse" | "ItemsNonTransferable" | "NotDelegate" | "WrongDelegate" | "Unapproved" | "Unaccepted" | "ItemLocked" | "LockedItemAttributes" | "LockedCollectionAttributes" | "LockedItemMetadata" | "LockedCollectionMetadata" | "MaxSupplyReached" | "MaxSupplyLocked" | "MaxSupplyTooSmall" | "UnknownItem" | "UnknownSwap" | "MetadataNotFound" | "AttributeNotFound" | "NotForSale" | "BidTooLow" | "ReachedApprovalLimit" | "DeadlineExpired" | "WrongDuration" | "MethodDisabled" | "WrongSetting" | "InconsistentItemConfig" | "NoConfig" | "RolesNotCleared" | "MintNotStarted" | "MintEnded" | "AlreadyClaimed" | "IncorrectData" | "WrongOrigin" | "WrongSignature" | "IncorrectMetadata" | "MaxAttributesLimitReached" | "WrongNamespace" | "CollectionNotEmpty" | "WitnessRequired";
|
|
5165
5106
|
}
|
|
5166
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5107
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (539) */
|
|
5167
5108
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5168
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5109
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (540) */
|
|
5169
5110
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5170
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5111
|
+
/** @name FrameSystemExtensionsCheckTxVersion (541) */
|
|
5171
5112
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5172
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5113
|
+
/** @name FrameSystemExtensionsCheckGenesis (542) */
|
|
5173
5114
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5174
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5115
|
+
/** @name FrameSystemExtensionsCheckNonce (545) */
|
|
5175
5116
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
5176
5117
|
}
|
|
5177
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5118
|
+
/** @name FrameSystemExtensionsCheckWeight (546) */
|
|
5178
5119
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5179
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5120
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (547) */
|
|
5180
5121
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
5181
5122
|
}
|
|
5182
|
-
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (
|
|
5123
|
+
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (548) */
|
|
5183
5124
|
type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = Null;
|
|
5184
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5125
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (549) */
|
|
5185
5126
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5186
5127
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5187
5128
|
}
|
|
5188
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5129
|
+
/** @name FrameMetadataHashExtensionMode (550) */
|
|
5189
5130
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5190
5131
|
readonly isDisabled: boolean;
|
|
5191
5132
|
readonly isEnabled: boolean;
|
|
5192
5133
|
readonly type: "Disabled" | "Enabled";
|
|
5193
5134
|
}
|
|
5194
|
-
/** @name ShParachainRuntimeRuntime (
|
|
5135
|
+
/** @name ShParachainRuntimeRuntime (551) */
|
|
5195
5136
|
type ShParachainRuntimeRuntime = Null;
|
|
5196
5137
|
}
|