@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
|
@@ -2030,13 +2030,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
2030
2030
|
readonly bucketId: H256;
|
|
2031
2031
|
readonly maybeCollectionId: Option<u32>;
|
|
2032
2032
|
} & Struct;
|
|
2033
|
-
readonly isMoveBucketRequested: boolean;
|
|
2034
|
-
readonly asMoveBucketRequested: {
|
|
2035
|
-
readonly who: AccountId32;
|
|
2036
|
-
readonly bucketId: H256;
|
|
2037
|
-
readonly newMspId: H256;
|
|
2038
|
-
readonly newValuePropId: H256;
|
|
2039
|
-
} & Struct;
|
|
2040
2033
|
readonly isBucketPrivacyUpdated: boolean;
|
|
2041
2034
|
readonly asBucketPrivacyUpdated: {
|
|
2042
2035
|
readonly who: AccountId32;
|
|
@@ -2050,6 +2043,30 @@ declare module "@polkadot/types/lookup" {
|
|
|
2050
2043
|
readonly bucketId: H256;
|
|
2051
2044
|
readonly collectionId: u32;
|
|
2052
2045
|
} & Struct;
|
|
2046
|
+
readonly isMoveBucketRequested: boolean;
|
|
2047
|
+
readonly asMoveBucketRequested: {
|
|
2048
|
+
readonly who: AccountId32;
|
|
2049
|
+
readonly bucketId: H256;
|
|
2050
|
+
readonly newMspId: H256;
|
|
2051
|
+
readonly newValuePropId: H256;
|
|
2052
|
+
} & Struct;
|
|
2053
|
+
readonly isMoveBucketRequestExpired: boolean;
|
|
2054
|
+
readonly asMoveBucketRequestExpired: {
|
|
2055
|
+
readonly bucketId: H256;
|
|
2056
|
+
} & Struct;
|
|
2057
|
+
readonly isMoveBucketAccepted: boolean;
|
|
2058
|
+
readonly asMoveBucketAccepted: {
|
|
2059
|
+
readonly bucketId: H256;
|
|
2060
|
+
readonly oldMspId: Option<H256>;
|
|
2061
|
+
readonly newMspId: H256;
|
|
2062
|
+
readonly valuePropId: H256;
|
|
2063
|
+
} & Struct;
|
|
2064
|
+
readonly isMoveBucketRejected: boolean;
|
|
2065
|
+
readonly asMoveBucketRejected: {
|
|
2066
|
+
readonly bucketId: H256;
|
|
2067
|
+
readonly oldMspId: Option<H256>;
|
|
2068
|
+
readonly newMspId: H256;
|
|
2069
|
+
} & Struct;
|
|
2053
2070
|
readonly isNewStorageRequest: boolean;
|
|
2054
2071
|
readonly asNewStorageRequest: {
|
|
2055
2072
|
readonly who: AccountId32;
|
|
@@ -2066,24 +2083,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
2066
2083
|
readonly fileKey: H256;
|
|
2067
2084
|
readonly fileMetadata: ShpFileMetadataFileMetadata;
|
|
2068
2085
|
} & Struct;
|
|
2069
|
-
readonly isAcceptedBspVolunteer: boolean;
|
|
2070
|
-
readonly asAcceptedBspVolunteer: {
|
|
2071
|
-
readonly bspId: H256;
|
|
2072
|
-
readonly bucketId: H256;
|
|
2073
|
-
readonly location: Bytes;
|
|
2074
|
-
readonly fingerprint: H256;
|
|
2075
|
-
readonly multiaddresses: Vec<Bytes>;
|
|
2076
|
-
readonly owner: AccountId32;
|
|
2077
|
-
readonly size_: u64;
|
|
2078
|
-
} & Struct;
|
|
2079
|
-
readonly isBspConfirmedStoring: boolean;
|
|
2080
|
-
readonly asBspConfirmedStoring: {
|
|
2081
|
-
readonly who: AccountId32;
|
|
2082
|
-
readonly bspId: H256;
|
|
2083
|
-
readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
|
|
2084
|
-
readonly skippedFileKeys: Vec<H256>;
|
|
2085
|
-
readonly newRoot: H256;
|
|
2086
|
-
} & Struct;
|
|
2087
2086
|
readonly isStorageRequestFulfilled: boolean;
|
|
2088
2087
|
readonly asStorageRequestFulfilled: {
|
|
2089
2088
|
readonly fileKey: H256;
|
|
@@ -2103,6 +2102,37 @@ declare module "@polkadot/types/lookup" {
|
|
|
2103
2102
|
readonly bucketId: H256;
|
|
2104
2103
|
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
2105
2104
|
} & Struct;
|
|
2105
|
+
readonly isIncompleteStorageRequest: boolean;
|
|
2106
|
+
readonly asIncompleteStorageRequest: {
|
|
2107
|
+
readonly fileKey: H256;
|
|
2108
|
+
} & Struct;
|
|
2109
|
+
readonly isIncompleteStorageRequestCleanedUp: boolean;
|
|
2110
|
+
readonly asIncompleteStorageRequestCleanedUp: {
|
|
2111
|
+
readonly fileKey: H256;
|
|
2112
|
+
} & Struct;
|
|
2113
|
+
readonly isAcceptedBspVolunteer: boolean;
|
|
2114
|
+
readonly asAcceptedBspVolunteer: {
|
|
2115
|
+
readonly bspId: H256;
|
|
2116
|
+
readonly bucketId: H256;
|
|
2117
|
+
readonly location: Bytes;
|
|
2118
|
+
readonly fingerprint: H256;
|
|
2119
|
+
readonly multiaddresses: Vec<Bytes>;
|
|
2120
|
+
readonly owner: AccountId32;
|
|
2121
|
+
readonly size_: u64;
|
|
2122
|
+
} & Struct;
|
|
2123
|
+
readonly isBspConfirmedStoring: boolean;
|
|
2124
|
+
readonly asBspConfirmedStoring: {
|
|
2125
|
+
readonly who: AccountId32;
|
|
2126
|
+
readonly bspId: H256;
|
|
2127
|
+
readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
|
|
2128
|
+
readonly skippedFileKeys: Vec<H256>;
|
|
2129
|
+
readonly newRoot: H256;
|
|
2130
|
+
} & Struct;
|
|
2131
|
+
readonly isBspChallengeCycleInitialised: boolean;
|
|
2132
|
+
readonly asBspChallengeCycleInitialised: {
|
|
2133
|
+
readonly who: AccountId32;
|
|
2134
|
+
readonly bspId: H256;
|
|
2135
|
+
} & Struct;
|
|
2106
2136
|
readonly isBspRequestedToStopStoring: boolean;
|
|
2107
2137
|
readonly asBspRequestedToStopStoring: {
|
|
2108
2138
|
readonly bspId: H256;
|
|
@@ -2116,10 +2146,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
2116
2146
|
readonly fileKey: H256;
|
|
2117
2147
|
readonly newRoot: H256;
|
|
2118
2148
|
} & Struct;
|
|
2119
|
-
readonly
|
|
2120
|
-
readonly
|
|
2121
|
-
readonly
|
|
2122
|
-
readonly
|
|
2149
|
+
readonly isMspStoppedStoringBucket: boolean;
|
|
2150
|
+
readonly asMspStoppedStoringBucket: {
|
|
2151
|
+
readonly mspId: H256;
|
|
2152
|
+
readonly owner: AccountId32;
|
|
2153
|
+
readonly bucketId: H256;
|
|
2123
2154
|
} & Struct;
|
|
2124
2155
|
readonly isSpStopStoringInsolventUser: boolean;
|
|
2125
2156
|
readonly asSpStopStoringInsolventUser: {
|
|
@@ -2135,89 +2166,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
2135
2166
|
readonly owner: AccountId32;
|
|
2136
2167
|
readonly bucketId: H256;
|
|
2137
2168
|
} & Struct;
|
|
2138
|
-
readonly isFailedToQueuePriorityChallenge: boolean;
|
|
2139
|
-
readonly asFailedToQueuePriorityChallenge: {
|
|
2140
|
-
readonly fileKey: H256;
|
|
2141
|
-
readonly error: SpRuntimeDispatchError;
|
|
2142
|
-
} & Struct;
|
|
2143
|
-
readonly isFileDeletionRequest: boolean;
|
|
2144
|
-
readonly asFileDeletionRequest: {
|
|
2145
|
-
readonly user: AccountId32;
|
|
2146
|
-
readonly fileKey: H256;
|
|
2147
|
-
readonly fileSize: u64;
|
|
2148
|
-
readonly bucketId: H256;
|
|
2149
|
-
readonly mspId: H256;
|
|
2150
|
-
readonly proofOfInclusion: bool;
|
|
2151
|
-
} & Struct;
|
|
2152
|
-
readonly isProofSubmittedForPendingFileDeletionRequest: boolean;
|
|
2153
|
-
readonly asProofSubmittedForPendingFileDeletionRequest: {
|
|
2154
|
-
readonly user: AccountId32;
|
|
2155
|
-
readonly fileKey: H256;
|
|
2156
|
-
readonly fileSize: u64;
|
|
2157
|
-
readonly bucketId: H256;
|
|
2158
|
-
readonly mspId: H256;
|
|
2159
|
-
readonly proofOfInclusion: bool;
|
|
2160
|
-
} & Struct;
|
|
2161
|
-
readonly isBspChallengeCycleInitialised: boolean;
|
|
2162
|
-
readonly asBspChallengeCycleInitialised: {
|
|
2163
|
-
readonly who: AccountId32;
|
|
2164
|
-
readonly bspId: H256;
|
|
2165
|
-
} & Struct;
|
|
2166
|
-
readonly isMoveBucketRequestExpired: boolean;
|
|
2167
|
-
readonly asMoveBucketRequestExpired: {
|
|
2168
|
-
readonly bucketId: H256;
|
|
2169
|
-
} & Struct;
|
|
2170
|
-
readonly isMoveBucketAccepted: boolean;
|
|
2171
|
-
readonly asMoveBucketAccepted: {
|
|
2172
|
-
readonly bucketId: H256;
|
|
2173
|
-
readonly oldMspId: Option<H256>;
|
|
2174
|
-
readonly newMspId: H256;
|
|
2175
|
-
readonly valuePropId: H256;
|
|
2176
|
-
} & Struct;
|
|
2177
|
-
readonly isMoveBucketRejected: boolean;
|
|
2178
|
-
readonly asMoveBucketRejected: {
|
|
2179
|
-
readonly bucketId: H256;
|
|
2180
|
-
readonly oldMspId: Option<H256>;
|
|
2181
|
-
readonly newMspId: H256;
|
|
2182
|
-
} & Struct;
|
|
2183
|
-
readonly isMspStoppedStoringBucket: boolean;
|
|
2184
|
-
readonly asMspStoppedStoringBucket: {
|
|
2185
|
-
readonly mspId: H256;
|
|
2186
|
-
readonly owner: AccountId32;
|
|
2187
|
-
readonly bucketId: H256;
|
|
2188
|
-
} & Struct;
|
|
2189
|
-
readonly isFailedToGetMspOfBucket: boolean;
|
|
2190
|
-
readonly asFailedToGetMspOfBucket: {
|
|
2191
|
-
readonly bucketId: H256;
|
|
2192
|
-
readonly error: SpRuntimeDispatchError;
|
|
2193
|
-
} & Struct;
|
|
2194
|
-
readonly isFailedToDecreaseMspUsedCapacity: boolean;
|
|
2195
|
-
readonly asFailedToDecreaseMspUsedCapacity: {
|
|
2196
|
-
readonly user: AccountId32;
|
|
2197
|
-
readonly mspId: H256;
|
|
2198
|
-
readonly fileKey: H256;
|
|
2199
|
-
readonly fileSize: u64;
|
|
2200
|
-
readonly error: SpRuntimeDispatchError;
|
|
2201
|
-
} & Struct;
|
|
2202
|
-
readonly isUsedCapacityShouldBeZero: boolean;
|
|
2203
|
-
readonly asUsedCapacityShouldBeZero: {
|
|
2204
|
-
readonly actualUsedCapacity: u64;
|
|
2205
|
-
} & Struct;
|
|
2206
|
-
readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
|
|
2207
|
-
readonly asFailedToReleaseStorageRequestCreationDeposit: {
|
|
2208
|
-
readonly fileKey: H256;
|
|
2209
|
-
readonly owner: AccountId32;
|
|
2210
|
-
readonly amountToReturn: u128;
|
|
2211
|
-
readonly error: SpRuntimeDispatchError;
|
|
2212
|
-
} & Struct;
|
|
2213
|
-
readonly isFailedToTransferDepositFundsToBsp: boolean;
|
|
2214
|
-
readonly asFailedToTransferDepositFundsToBsp: {
|
|
2215
|
-
readonly fileKey: H256;
|
|
2216
|
-
readonly owner: AccountId32;
|
|
2217
|
-
readonly bspId: H256;
|
|
2218
|
-
readonly amountToTransfer: u128;
|
|
2219
|
-
readonly error: SpRuntimeDispatchError;
|
|
2220
|
-
} & Struct;
|
|
2221
2169
|
readonly isFileDeletionRequested: boolean;
|
|
2222
2170
|
readonly asFileDeletionRequested: {
|
|
2223
2171
|
readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
|
|
@@ -2240,49 +2188,56 @@ declare module "@polkadot/types/lookup" {
|
|
|
2240
2188
|
readonly oldRoot: H256;
|
|
2241
2189
|
readonly newRoot: H256;
|
|
2242
2190
|
} & Struct;
|
|
2243
|
-
readonly
|
|
2244
|
-
readonly
|
|
2191
|
+
readonly isUsedCapacityShouldBeZero: boolean;
|
|
2192
|
+
readonly asUsedCapacityShouldBeZero: {
|
|
2193
|
+
readonly actualUsedCapacity: u64;
|
|
2194
|
+
} & Struct;
|
|
2195
|
+
readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
|
|
2196
|
+
readonly asFailedToReleaseStorageRequestCreationDeposit: {
|
|
2245
2197
|
readonly fileKey: H256;
|
|
2198
|
+
readonly owner: AccountId32;
|
|
2199
|
+
readonly amountToReturn: u128;
|
|
2200
|
+
readonly error: SpRuntimeDispatchError;
|
|
2201
|
+
} & Struct;
|
|
2202
|
+
readonly isUserOperationPauseFlagsUpdated: boolean;
|
|
2203
|
+
readonly asUserOperationPauseFlagsUpdated: {
|
|
2204
|
+
readonly old: u32;
|
|
2205
|
+
readonly new_: u32;
|
|
2246
2206
|
} & Struct;
|
|
2247
2207
|
readonly type:
|
|
2248
2208
|
| "NewBucket"
|
|
2249
2209
|
| "BucketDeleted"
|
|
2250
|
-
| "MoveBucketRequested"
|
|
2251
2210
|
| "BucketPrivacyUpdated"
|
|
2252
2211
|
| "NewCollectionAndAssociation"
|
|
2212
|
+
| "MoveBucketRequested"
|
|
2213
|
+
| "MoveBucketRequestExpired"
|
|
2214
|
+
| "MoveBucketAccepted"
|
|
2215
|
+
| "MoveBucketRejected"
|
|
2253
2216
|
| "NewStorageRequest"
|
|
2254
2217
|
| "MspAcceptedStorageRequest"
|
|
2255
|
-
| "AcceptedBspVolunteer"
|
|
2256
|
-
| "BspConfirmedStoring"
|
|
2257
2218
|
| "StorageRequestFulfilled"
|
|
2258
2219
|
| "StorageRequestExpired"
|
|
2259
2220
|
| "StorageRequestRevoked"
|
|
2260
2221
|
| "StorageRequestRejected"
|
|
2222
|
+
| "IncompleteStorageRequest"
|
|
2223
|
+
| "IncompleteStorageRequestCleanedUp"
|
|
2224
|
+
| "AcceptedBspVolunteer"
|
|
2225
|
+
| "BspConfirmedStoring"
|
|
2226
|
+
| "BspChallengeCycleInitialised"
|
|
2261
2227
|
| "BspRequestedToStopStoring"
|
|
2262
2228
|
| "BspConfirmStoppedStoring"
|
|
2263
|
-
| "
|
|
2229
|
+
| "MspStoppedStoringBucket"
|
|
2264
2230
|
| "SpStopStoringInsolventUser"
|
|
2265
2231
|
| "MspStopStoringBucketInsolventUser"
|
|
2266
|
-
| "FailedToQueuePriorityChallenge"
|
|
2267
|
-
| "FileDeletionRequest"
|
|
2268
|
-
| "ProofSubmittedForPendingFileDeletionRequest"
|
|
2269
|
-
| "BspChallengeCycleInitialised"
|
|
2270
|
-
| "MoveBucketRequestExpired"
|
|
2271
|
-
| "MoveBucketAccepted"
|
|
2272
|
-
| "MoveBucketRejected"
|
|
2273
|
-
| "MspStoppedStoringBucket"
|
|
2274
|
-
| "FailedToGetMspOfBucket"
|
|
2275
|
-
| "FailedToDecreaseMspUsedCapacity"
|
|
2276
|
-
| "UsedCapacityShouldBeZero"
|
|
2277
|
-
| "FailedToReleaseStorageRequestCreationDeposit"
|
|
2278
|
-
| "FailedToTransferDepositFundsToBsp"
|
|
2279
2232
|
| "FileDeletionRequested"
|
|
2280
2233
|
| "BucketFileDeletionsCompleted"
|
|
2281
2234
|
| "BspFileDeletionsCompleted"
|
|
2282
|
-
| "
|
|
2235
|
+
| "UsedCapacityShouldBeZero"
|
|
2236
|
+
| "FailedToReleaseStorageRequestCreationDeposit"
|
|
2237
|
+
| "UserOperationPauseFlagsUpdated";
|
|
2283
2238
|
}
|
|
2284
2239
|
|
|
2285
|
-
/** @name ShpFileMetadataFileMetadata (
|
|
2240
|
+
/** @name ShpFileMetadataFileMetadata (154) */
|
|
2286
2241
|
interface ShpFileMetadataFileMetadata extends Struct {
|
|
2287
2242
|
readonly owner: Bytes;
|
|
2288
2243
|
readonly bucketId: Bytes;
|
|
@@ -2291,10 +2246,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
2291
2246
|
readonly fingerprint: ShpFileMetadataFingerprint;
|
|
2292
2247
|
}
|
|
2293
2248
|
|
|
2294
|
-
/** @name ShpFileMetadataFingerprint (
|
|
2249
|
+
/** @name ShpFileMetadataFingerprint (155) */
|
|
2295
2250
|
interface ShpFileMetadataFingerprint extends U8aFixed {}
|
|
2296
2251
|
|
|
2297
|
-
/** @name PalletFileSystemRejectedStorageRequestReason (
|
|
2252
|
+
/** @name PalletFileSystemRejectedStorageRequestReason (156) */
|
|
2298
2253
|
interface PalletFileSystemRejectedStorageRequestReason extends Enum {
|
|
2299
2254
|
readonly isReachedMaximumCapacity: boolean;
|
|
2300
2255
|
readonly isReceivedInvalidProof: boolean;
|
|
@@ -2309,28 +2264,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
2309
2264
|
| "InternalError";
|
|
2310
2265
|
}
|
|
2311
2266
|
|
|
2312
|
-
/** @name
|
|
2313
|
-
interface PalletFileSystemEitherAccountIdOrMspId extends Enum {
|
|
2314
|
-
readonly isAccountId: boolean;
|
|
2315
|
-
readonly asAccountId: AccountId32;
|
|
2316
|
-
readonly isMspId: boolean;
|
|
2317
|
-
readonly asMspId: H256;
|
|
2318
|
-
readonly type: "AccountId" | "MspId";
|
|
2319
|
-
}
|
|
2320
|
-
|
|
2321
|
-
/** @name PalletFileSystemFileOperationIntention (162) */
|
|
2267
|
+
/** @name PalletFileSystemFileOperationIntention (161) */
|
|
2322
2268
|
interface PalletFileSystemFileOperationIntention extends Struct {
|
|
2323
2269
|
readonly fileKey: H256;
|
|
2324
2270
|
readonly operation: PalletFileSystemFileOperation;
|
|
2325
2271
|
}
|
|
2326
2272
|
|
|
2327
|
-
/** @name PalletFileSystemFileOperation (
|
|
2273
|
+
/** @name PalletFileSystemFileOperation (162) */
|
|
2328
2274
|
interface PalletFileSystemFileOperation extends Enum {
|
|
2329
2275
|
readonly isDelete: boolean;
|
|
2330
2276
|
readonly type: "Delete";
|
|
2331
2277
|
}
|
|
2332
2278
|
|
|
2333
|
-
/** @name SpRuntimeMultiSignature (
|
|
2279
|
+
/** @name SpRuntimeMultiSignature (163) */
|
|
2334
2280
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2335
2281
|
readonly isEd25519: boolean;
|
|
2336
2282
|
readonly asEd25519: U8aFixed;
|
|
@@ -3115,9 +3061,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
3115
3061
|
readonly isMinPrice: boolean;
|
|
3116
3062
|
readonly asMinPrice: u128;
|
|
3117
3063
|
readonly isUpperExponentFactor: boolean;
|
|
3118
|
-
readonly asUpperExponentFactor:
|
|
3064
|
+
readonly asUpperExponentFactor: u128;
|
|
3119
3065
|
readonly isLowerExponentFactor: boolean;
|
|
3120
|
-
readonly asLowerExponentFactor:
|
|
3066
|
+
readonly asLowerExponentFactor: u128;
|
|
3121
3067
|
readonly isZeroSizeBucketFixedRate: boolean;
|
|
3122
3068
|
readonly asZeroSizeBucketFixedRate: u128;
|
|
3123
3069
|
readonly isIdealUtilisationRate: boolean;
|
|
@@ -4861,6 +4807,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
4861
4807
|
readonly bspId: Option<H256>;
|
|
4862
4808
|
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
4863
4809
|
} & Struct;
|
|
4810
|
+
readonly isSetUserOperationPauseFlags: boolean;
|
|
4811
|
+
readonly asSetUserOperationPauseFlags: {
|
|
4812
|
+
readonly newFlags: u32;
|
|
4813
|
+
} & Struct;
|
|
4864
4814
|
readonly type:
|
|
4865
4815
|
| "CreateBucket"
|
|
4866
4816
|
| "RequestMoveBucket"
|
|
@@ -4880,7 +4830,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
4880
4830
|
| "MspStopStoringBucketForInsolventUser"
|
|
4881
4831
|
| "RequestDeleteFile"
|
|
4882
4832
|
| "DeleteFiles"
|
|
4883
|
-
| "DeleteFilesForIncompleteStorageRequest"
|
|
4833
|
+
| "DeleteFilesForIncompleteStorageRequest"
|
|
4834
|
+
| "SetUserOperationPauseFlags";
|
|
4884
4835
|
}
|
|
4885
4836
|
|
|
4886
4837
|
/** @name PalletFileSystemBucketMoveRequestResponse (379) */
|
|
@@ -5514,14 +5465,14 @@ declare module "@polkadot/types/lookup" {
|
|
|
5514
5465
|
readonly asUpperExponentFactor: ITuple<
|
|
5515
5466
|
[
|
|
5516
5467
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,
|
|
5517
|
-
Option<
|
|
5468
|
+
Option<u128>
|
|
5518
5469
|
]
|
|
5519
5470
|
>;
|
|
5520
5471
|
readonly isLowerExponentFactor: boolean;
|
|
5521
5472
|
readonly asLowerExponentFactor: ITuple<
|
|
5522
5473
|
[
|
|
5523
5474
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,
|
|
5524
|
-
Option<
|
|
5475
|
+
Option<u128>
|
|
5525
5476
|
]
|
|
5526
5477
|
>;
|
|
5527
5478
|
readonly isZeroSizeBucketFixedRate: boolean;
|
|
@@ -6124,7 +6075,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6124
6075
|
readonly location: Bytes;
|
|
6125
6076
|
readonly fingerprint: H256;
|
|
6126
6077
|
readonly size_: u64;
|
|
6127
|
-
readonly
|
|
6078
|
+
readonly mspStatus: PalletFileSystemMspStorageRequestStatus;
|
|
6128
6079
|
readonly userPeerIds: Vec<Bytes>;
|
|
6129
6080
|
readonly bspsRequired: u32;
|
|
6130
6081
|
readonly bspsConfirmed: u32;
|
|
@@ -6132,12 +6083,24 @@ declare module "@polkadot/types/lookup" {
|
|
|
6132
6083
|
readonly depositPaid: u128;
|
|
6133
6084
|
}
|
|
6134
6085
|
|
|
6135
|
-
/** @name
|
|
6086
|
+
/** @name PalletFileSystemMspStorageRequestStatus (486) */
|
|
6087
|
+
interface PalletFileSystemMspStorageRequestStatus extends Enum {
|
|
6088
|
+
readonly isNone: boolean;
|
|
6089
|
+
readonly isPending: boolean;
|
|
6090
|
+
readonly asPending: H256;
|
|
6091
|
+
readonly isAcceptedNewFile: boolean;
|
|
6092
|
+
readonly asAcceptedNewFile: H256;
|
|
6093
|
+
readonly isAcceptedExistingFile: boolean;
|
|
6094
|
+
readonly asAcceptedExistingFile: H256;
|
|
6095
|
+
readonly type: "None" | "Pending" | "AcceptedNewFile" | "AcceptedExistingFile";
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
/** @name PalletFileSystemStorageRequestBspsMetadata (487) */
|
|
6136
6099
|
interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
|
|
6137
6100
|
readonly confirmed: bool;
|
|
6138
6101
|
}
|
|
6139
6102
|
|
|
6140
|
-
/** @name PalletFileSystemPendingFileDeletionRequest (
|
|
6103
|
+
/** @name PalletFileSystemPendingFileDeletionRequest (489) */
|
|
6141
6104
|
interface PalletFileSystemPendingFileDeletionRequest extends Struct {
|
|
6142
6105
|
readonly user: AccountId32;
|
|
6143
6106
|
readonly fileKey: H256;
|
|
@@ -6147,21 +6110,21 @@ declare module "@polkadot/types/lookup" {
|
|
|
6147
6110
|
readonly queuePriorityChallenge: bool;
|
|
6148
6111
|
}
|
|
6149
6112
|
|
|
6150
|
-
/** @name PalletFileSystemPendingStopStoringRequest (
|
|
6113
|
+
/** @name PalletFileSystemPendingStopStoringRequest (491) */
|
|
6151
6114
|
interface PalletFileSystemPendingStopStoringRequest extends Struct {
|
|
6152
6115
|
readonly tickWhenRequested: u32;
|
|
6153
6116
|
readonly fileOwner: AccountId32;
|
|
6154
6117
|
readonly fileSize: u64;
|
|
6155
6118
|
}
|
|
6156
6119
|
|
|
6157
|
-
/** @name PalletFileSystemMoveBucketRequestMetadata (
|
|
6120
|
+
/** @name PalletFileSystemMoveBucketRequestMetadata (492) */
|
|
6158
6121
|
interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
|
|
6159
6122
|
readonly requester: AccountId32;
|
|
6160
6123
|
readonly newMspId: H256;
|
|
6161
6124
|
readonly newValuePropId: H256;
|
|
6162
6125
|
}
|
|
6163
6126
|
|
|
6164
|
-
/** @name PalletFileSystemIncompleteStorageRequestMetadata (
|
|
6127
|
+
/** @name PalletFileSystemIncompleteStorageRequestMetadata (493) */
|
|
6165
6128
|
interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
|
|
6166
6129
|
readonly owner: AccountId32;
|
|
6167
6130
|
readonly bucketId: H256;
|
|
@@ -6172,210 +6135,158 @@ declare module "@polkadot/types/lookup" {
|
|
|
6172
6135
|
readonly pendingBucketRemoval: bool;
|
|
6173
6136
|
}
|
|
6174
6137
|
|
|
6175
|
-
/** @name PalletFileSystemError (
|
|
6138
|
+
/** @name PalletFileSystemError (495) */
|
|
6176
6139
|
interface PalletFileSystemError extends Enum {
|
|
6140
|
+
readonly isNotABsp: boolean;
|
|
6141
|
+
readonly isNotAMsp: boolean;
|
|
6142
|
+
readonly isNotASp: boolean;
|
|
6177
6143
|
readonly isStorageRequestAlreadyRegistered: boolean;
|
|
6178
6144
|
readonly isStorageRequestNotFound: boolean;
|
|
6179
|
-
readonly isStorageRequestNotRevoked: boolean;
|
|
6180
6145
|
readonly isStorageRequestExists: boolean;
|
|
6146
|
+
readonly isStorageRequestNotAuthorized: boolean;
|
|
6147
|
+
readonly isStorageRequestBspsRequiredFulfilled: boolean;
|
|
6148
|
+
readonly isTooManyStorageRequestResponses: boolean;
|
|
6149
|
+
readonly isIncompleteStorageRequestNotFound: boolean;
|
|
6181
6150
|
readonly isReplicationTargetCannotBeZero: boolean;
|
|
6182
6151
|
readonly isReplicationTargetExceedsMaximum: boolean;
|
|
6183
|
-
readonly isMaxReplicationTargetSmallerThanDefault: boolean;
|
|
6184
|
-
readonly isNotABsp: boolean;
|
|
6185
|
-
readonly isNotAMsp: boolean;
|
|
6186
|
-
readonly isNotASp: boolean;
|
|
6187
6152
|
readonly isBspNotVolunteered: boolean;
|
|
6188
6153
|
readonly isBspNotConfirmed: boolean;
|
|
6189
6154
|
readonly isBspAlreadyConfirmed: boolean;
|
|
6190
|
-
readonly isStorageRequestBspsRequiredFulfilled: boolean;
|
|
6191
6155
|
readonly isBspAlreadyVolunteered: boolean;
|
|
6192
|
-
readonly isInsufficientAvailableCapacity: boolean;
|
|
6193
|
-
readonly isUnexpectedNumberOfRemovedVolunteeredBsps: boolean;
|
|
6194
6156
|
readonly isBspNotEligibleToVolunteer: boolean;
|
|
6195
|
-
readonly
|
|
6196
|
-
readonly
|
|
6197
|
-
readonly
|
|
6198
|
-
readonly
|
|
6199
|
-
readonly
|
|
6200
|
-
readonly
|
|
6201
|
-
readonly
|
|
6202
|
-
readonly isThresholdArithmeticError: boolean;
|
|
6203
|
-
readonly isFailedTypeConversion: boolean;
|
|
6204
|
-
readonly isDividedByZero: boolean;
|
|
6205
|
-
readonly isImpossibleFailedToGetValue: boolean;
|
|
6206
|
-
readonly isBucketIsNotPrivate: boolean;
|
|
6157
|
+
readonly isInsufficientAvailableCapacity: boolean;
|
|
6158
|
+
readonly isNoFileKeysToConfirm: boolean;
|
|
6159
|
+
readonly isMspNotStoringBucket: boolean;
|
|
6160
|
+
readonly isNotSelectedMsp: boolean;
|
|
6161
|
+
readonly isMspAlreadyConfirmed: boolean;
|
|
6162
|
+
readonly isRequestWithoutMsp: boolean;
|
|
6163
|
+
readonly isMspAlreadyStoringBucket: boolean;
|
|
6207
6164
|
readonly isBucketNotFound: boolean;
|
|
6208
6165
|
readonly isBucketNotEmpty: boolean;
|
|
6209
6166
|
readonly isNotBucketOwner: boolean;
|
|
6167
|
+
readonly isBucketIsBeingMoved: boolean;
|
|
6168
|
+
readonly isInvalidBucketIdFileKeyPair: boolean;
|
|
6210
6169
|
readonly isValuePropositionNotAvailable: boolean;
|
|
6211
6170
|
readonly isCollectionNotFound: boolean;
|
|
6212
|
-
readonly
|
|
6213
|
-
readonly isExpectedNonInclusionProof: boolean;
|
|
6214
|
-
readonly isExpectedInclusionProof: boolean;
|
|
6171
|
+
readonly isMoveBucketRequestNotFound: boolean;
|
|
6215
6172
|
readonly isInvalidFileKeyMetadata: boolean;
|
|
6216
|
-
readonly
|
|
6217
|
-
readonly
|
|
6218
|
-
readonly
|
|
6173
|
+
readonly isFileSizeCannotBeZero: boolean;
|
|
6174
|
+
readonly isProviderNotStoringFile: boolean;
|
|
6175
|
+
readonly isFileHasActiveStorageRequest: boolean;
|
|
6176
|
+
readonly isFileHasIncompleteStorageRequest: boolean;
|
|
6219
6177
|
readonly isBatchFileDeletionMustContainSingleBucket: boolean;
|
|
6220
6178
|
readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
|
|
6221
6179
|
readonly isNoFileKeysToDelete: boolean;
|
|
6222
6180
|
readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
|
|
6223
6181
|
readonly isFailedToPushUserToBspDeletionVector: boolean;
|
|
6224
6182
|
readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
|
|
6225
|
-
readonly isMaxUserPendingDeletionRequestsReached: boolean;
|
|
6226
|
-
readonly isMspNotStoringBucket: boolean;
|
|
6227
|
-
readonly isFileKeyNotPendingDeletion: boolean;
|
|
6228
|
-
readonly isFileSizeCannotBeZero: boolean;
|
|
6229
|
-
readonly isNoGlobalReputationWeightSet: boolean;
|
|
6230
|
-
readonly isNoBspReputationWeightSet: boolean;
|
|
6231
|
-
readonly isMaximumThresholdCannotBeZero: boolean;
|
|
6232
|
-
readonly isTickRangeToMaximumThresholdCannotBeZero: boolean;
|
|
6233
6183
|
readonly isPendingStopStoringRequestNotFound: boolean;
|
|
6234
6184
|
readonly isMinWaitForStopStoringNotReached: boolean;
|
|
6235
6185
|
readonly isPendingStopStoringRequestAlreadyExists: boolean;
|
|
6236
|
-
readonly
|
|
6237
|
-
readonly
|
|
6238
|
-
readonly isNotSelectedMsp: boolean;
|
|
6239
|
-
readonly isMspAlreadyConfirmed: boolean;
|
|
6240
|
-
readonly isRequestWithoutMsp: boolean;
|
|
6241
|
-
readonly isMspAlreadyStoringBucket: boolean;
|
|
6242
|
-
readonly isMoveBucketRequestNotFound: boolean;
|
|
6243
|
-
readonly isBucketIsBeingMoved: boolean;
|
|
6244
|
-
readonly isBspAlreadyDataServer: boolean;
|
|
6245
|
-
readonly isBspDataServersExceeded: boolean;
|
|
6246
|
-
readonly isFileMetadataProcessingQueueFull: boolean;
|
|
6247
|
-
readonly isTooManyBatchResponses: boolean;
|
|
6248
|
-
readonly isTooManyStorageRequestResponses: boolean;
|
|
6249
|
-
readonly isInvalidBucketIdFileKeyPair: boolean;
|
|
6250
|
-
readonly isInconsistentStateKeyAlreadyExists: boolean;
|
|
6186
|
+
readonly isExpectedNonInclusionProof: boolean;
|
|
6187
|
+
readonly isExpectedInclusionProof: boolean;
|
|
6251
6188
|
readonly isFixedRatePaymentStreamNotFound: boolean;
|
|
6252
6189
|
readonly isDynamicRatePaymentStreamNotFound: boolean;
|
|
6190
|
+
readonly isOperationNotAllowedWithInsolventUser: boolean;
|
|
6191
|
+
readonly isUserNotInsolvent: boolean;
|
|
6192
|
+
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
6193
|
+
readonly isInvalidSignature: boolean;
|
|
6194
|
+
readonly isInvalidProviderID: boolean;
|
|
6195
|
+
readonly isInvalidSignedOperation: boolean;
|
|
6196
|
+
readonly isNoGlobalReputationWeightSet: boolean;
|
|
6197
|
+
readonly isNoBspReputationWeightSet: boolean;
|
|
6253
6198
|
readonly isCannotHoldDeposit: boolean;
|
|
6199
|
+
readonly isMaxTickNumberReached: boolean;
|
|
6200
|
+
readonly isThresholdArithmeticError: boolean;
|
|
6201
|
+
readonly isRootNotUpdated: boolean;
|
|
6202
|
+
readonly isImpossibleFailedToGetValue: boolean;
|
|
6254
6203
|
readonly isFailedToQueryEarliestFileVolunteerTick: boolean;
|
|
6255
6204
|
readonly isFailedToGetOwnerAccount: boolean;
|
|
6256
6205
|
readonly isFailedToGetPaymentAccount: boolean;
|
|
6257
|
-
readonly isNoFileKeysToConfirm: boolean;
|
|
6258
|
-
readonly isRootNotUpdated: boolean;
|
|
6259
|
-
readonly isNoPrivacyChange: boolean;
|
|
6260
|
-
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
6261
|
-
readonly isOperationNotAllowedWhileBucketIsNotStoredByMsp: boolean;
|
|
6262
6206
|
readonly isFailedToComputeFileKey: boolean;
|
|
6263
6207
|
readonly isFailedToCreateFileMetadata: boolean;
|
|
6264
|
-
readonly
|
|
6265
|
-
readonly
|
|
6266
|
-
readonly isProviderNotStoringFile: boolean;
|
|
6267
|
-
readonly isInvalidProviderID: boolean;
|
|
6268
|
-
readonly isInvalidSignedOperation: boolean;
|
|
6269
|
-
readonly isFileKeyMismatch: boolean;
|
|
6270
|
-
readonly isIncompleteStorageRequestNotFound: boolean;
|
|
6271
|
-
readonly isFileHasActiveStorageRequest: boolean;
|
|
6272
|
-
readonly isFileHasIncompleteStorageRequest: boolean;
|
|
6208
|
+
readonly isFileMetadataProcessingQueueFull: boolean;
|
|
6209
|
+
readonly isUserOperationPaused: boolean;
|
|
6273
6210
|
readonly type:
|
|
6211
|
+
| "NotABsp"
|
|
6212
|
+
| "NotAMsp"
|
|
6213
|
+
| "NotASp"
|
|
6274
6214
|
| "StorageRequestAlreadyRegistered"
|
|
6275
6215
|
| "StorageRequestNotFound"
|
|
6276
|
-
| "StorageRequestNotRevoked"
|
|
6277
6216
|
| "StorageRequestExists"
|
|
6217
|
+
| "StorageRequestNotAuthorized"
|
|
6218
|
+
| "StorageRequestBspsRequiredFulfilled"
|
|
6219
|
+
| "TooManyStorageRequestResponses"
|
|
6220
|
+
| "IncompleteStorageRequestNotFound"
|
|
6278
6221
|
| "ReplicationTargetCannotBeZero"
|
|
6279
6222
|
| "ReplicationTargetExceedsMaximum"
|
|
6280
|
-
| "MaxReplicationTargetSmallerThanDefault"
|
|
6281
|
-
| "NotABsp"
|
|
6282
|
-
| "NotAMsp"
|
|
6283
|
-
| "NotASp"
|
|
6284
6223
|
| "BspNotVolunteered"
|
|
6285
6224
|
| "BspNotConfirmed"
|
|
6286
6225
|
| "BspAlreadyConfirmed"
|
|
6287
|
-
| "StorageRequestBspsRequiredFulfilled"
|
|
6288
6226
|
| "BspAlreadyVolunteered"
|
|
6289
|
-
| "InsufficientAvailableCapacity"
|
|
6290
|
-
| "UnexpectedNumberOfRemovedVolunteeredBsps"
|
|
6291
6227
|
| "BspNotEligibleToVolunteer"
|
|
6292
|
-
| "
|
|
6293
|
-
| "
|
|
6294
|
-
| "
|
|
6295
|
-
| "
|
|
6296
|
-
| "
|
|
6297
|
-
| "
|
|
6298
|
-
| "
|
|
6299
|
-
| "ThresholdArithmeticError"
|
|
6300
|
-
| "FailedTypeConversion"
|
|
6301
|
-
| "DividedByZero"
|
|
6302
|
-
| "ImpossibleFailedToGetValue"
|
|
6303
|
-
| "BucketIsNotPrivate"
|
|
6228
|
+
| "InsufficientAvailableCapacity"
|
|
6229
|
+
| "NoFileKeysToConfirm"
|
|
6230
|
+
| "MspNotStoringBucket"
|
|
6231
|
+
| "NotSelectedMsp"
|
|
6232
|
+
| "MspAlreadyConfirmed"
|
|
6233
|
+
| "RequestWithoutMsp"
|
|
6234
|
+
| "MspAlreadyStoringBucket"
|
|
6304
6235
|
| "BucketNotFound"
|
|
6305
6236
|
| "BucketNotEmpty"
|
|
6306
6237
|
| "NotBucketOwner"
|
|
6238
|
+
| "BucketIsBeingMoved"
|
|
6239
|
+
| "InvalidBucketIdFileKeyPair"
|
|
6307
6240
|
| "ValuePropositionNotAvailable"
|
|
6308
6241
|
| "CollectionNotFound"
|
|
6309
|
-
| "
|
|
6310
|
-
| "ExpectedNonInclusionProof"
|
|
6311
|
-
| "ExpectedInclusionProof"
|
|
6242
|
+
| "MoveBucketRequestNotFound"
|
|
6312
6243
|
| "InvalidFileKeyMetadata"
|
|
6313
|
-
| "
|
|
6314
|
-
| "
|
|
6315
|
-
| "
|
|
6244
|
+
| "FileSizeCannotBeZero"
|
|
6245
|
+
| "ProviderNotStoringFile"
|
|
6246
|
+
| "FileHasActiveStorageRequest"
|
|
6247
|
+
| "FileHasIncompleteStorageRequest"
|
|
6316
6248
|
| "BatchFileDeletionMustContainSingleBucket"
|
|
6317
6249
|
| "DuplicateFileKeyInBatchFileDeletion"
|
|
6318
6250
|
| "NoFileKeysToDelete"
|
|
6319
6251
|
| "FailedToPushFileKeyToBucketDeletionVector"
|
|
6320
6252
|
| "FailedToPushUserToBspDeletionVector"
|
|
6321
6253
|
| "FailedToPushFileKeyToBspDeletionVector"
|
|
6322
|
-
| "MaxUserPendingDeletionRequestsReached"
|
|
6323
|
-
| "MspNotStoringBucket"
|
|
6324
|
-
| "FileKeyNotPendingDeletion"
|
|
6325
|
-
| "FileSizeCannotBeZero"
|
|
6326
|
-
| "NoGlobalReputationWeightSet"
|
|
6327
|
-
| "NoBspReputationWeightSet"
|
|
6328
|
-
| "MaximumThresholdCannotBeZero"
|
|
6329
|
-
| "TickRangeToMaximumThresholdCannotBeZero"
|
|
6330
6254
|
| "PendingStopStoringRequestNotFound"
|
|
6331
6255
|
| "MinWaitForStopStoringNotReached"
|
|
6332
6256
|
| "PendingStopStoringRequestAlreadyExists"
|
|
6333
|
-
| "
|
|
6334
|
-
| "
|
|
6335
|
-
| "NotSelectedMsp"
|
|
6336
|
-
| "MspAlreadyConfirmed"
|
|
6337
|
-
| "RequestWithoutMsp"
|
|
6338
|
-
| "MspAlreadyStoringBucket"
|
|
6339
|
-
| "MoveBucketRequestNotFound"
|
|
6340
|
-
| "BucketIsBeingMoved"
|
|
6341
|
-
| "BspAlreadyDataServer"
|
|
6342
|
-
| "BspDataServersExceeded"
|
|
6343
|
-
| "FileMetadataProcessingQueueFull"
|
|
6344
|
-
| "TooManyBatchResponses"
|
|
6345
|
-
| "TooManyStorageRequestResponses"
|
|
6346
|
-
| "InvalidBucketIdFileKeyPair"
|
|
6347
|
-
| "InconsistentStateKeyAlreadyExists"
|
|
6257
|
+
| "ExpectedNonInclusionProof"
|
|
6258
|
+
| "ExpectedInclusionProof"
|
|
6348
6259
|
| "FixedRatePaymentStreamNotFound"
|
|
6349
6260
|
| "DynamicRatePaymentStreamNotFound"
|
|
6261
|
+
| "OperationNotAllowedWithInsolventUser"
|
|
6262
|
+
| "UserNotInsolvent"
|
|
6263
|
+
| "OperationNotAllowedForInsolventProvider"
|
|
6264
|
+
| "InvalidSignature"
|
|
6265
|
+
| "InvalidProviderID"
|
|
6266
|
+
| "InvalidSignedOperation"
|
|
6267
|
+
| "NoGlobalReputationWeightSet"
|
|
6268
|
+
| "NoBspReputationWeightSet"
|
|
6350
6269
|
| "CannotHoldDeposit"
|
|
6270
|
+
| "MaxTickNumberReached"
|
|
6271
|
+
| "ThresholdArithmeticError"
|
|
6272
|
+
| "RootNotUpdated"
|
|
6273
|
+
| "ImpossibleFailedToGetValue"
|
|
6351
6274
|
| "FailedToQueryEarliestFileVolunteerTick"
|
|
6352
6275
|
| "FailedToGetOwnerAccount"
|
|
6353
6276
|
| "FailedToGetPaymentAccount"
|
|
6354
|
-
| "NoFileKeysToConfirm"
|
|
6355
|
-
| "RootNotUpdated"
|
|
6356
|
-
| "NoPrivacyChange"
|
|
6357
|
-
| "OperationNotAllowedForInsolventProvider"
|
|
6358
|
-
| "OperationNotAllowedWhileBucketIsNotStoredByMsp"
|
|
6359
6277
|
| "FailedToComputeFileKey"
|
|
6360
6278
|
| "FailedToCreateFileMetadata"
|
|
6361
|
-
| "
|
|
6362
|
-
| "
|
|
6363
|
-
| "ProviderNotStoringFile"
|
|
6364
|
-
| "InvalidProviderID"
|
|
6365
|
-
| "InvalidSignedOperation"
|
|
6366
|
-
| "FileKeyMismatch"
|
|
6367
|
-
| "IncompleteStorageRequestNotFound"
|
|
6368
|
-
| "FileHasActiveStorageRequest"
|
|
6369
|
-
| "FileHasIncompleteStorageRequest";
|
|
6279
|
+
| "FileMetadataProcessingQueueFull"
|
|
6280
|
+
| "UserOperationPaused";
|
|
6370
6281
|
}
|
|
6371
6282
|
|
|
6372
|
-
/** @name PalletProofsDealerProofSubmissionRecord (
|
|
6283
|
+
/** @name PalletProofsDealerProofSubmissionRecord (497) */
|
|
6373
6284
|
interface PalletProofsDealerProofSubmissionRecord extends Struct {
|
|
6374
6285
|
readonly lastTickProven: u32;
|
|
6375
6286
|
readonly nextTickToSubmitProofFor: u32;
|
|
6376
6287
|
}
|
|
6377
6288
|
|
|
6378
|
-
/** @name PalletProofsDealerError (
|
|
6289
|
+
/** @name PalletProofsDealerError (504) */
|
|
6379
6290
|
interface PalletProofsDealerError extends Enum {
|
|
6380
6291
|
readonly isNotProvider: boolean;
|
|
6381
6292
|
readonly isChallengesQueueOverflow: boolean;
|
|
@@ -6428,7 +6339,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6428
6339
|
| "TooManyValidProofSubmitters";
|
|
6429
6340
|
}
|
|
6430
6341
|
|
|
6431
|
-
/** @name PalletPaymentStreamsFixedRatePaymentStream (
|
|
6342
|
+
/** @name PalletPaymentStreamsFixedRatePaymentStream (507) */
|
|
6432
6343
|
interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
|
|
6433
6344
|
readonly rate: u128;
|
|
6434
6345
|
readonly lastChargedTick: u32;
|
|
@@ -6436,7 +6347,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6436
6347
|
readonly outOfFundsTick: Option<u32>;
|
|
6437
6348
|
}
|
|
6438
6349
|
|
|
6439
|
-
/** @name PalletPaymentStreamsDynamicRatePaymentStream (
|
|
6350
|
+
/** @name PalletPaymentStreamsDynamicRatePaymentStream (508) */
|
|
6440
6351
|
interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
|
|
6441
6352
|
readonly amountProvided: u64;
|
|
6442
6353
|
readonly priceIndexWhenLastCharged: u128;
|
|
@@ -6444,13 +6355,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
6444
6355
|
readonly outOfFundsTick: Option<u32>;
|
|
6445
6356
|
}
|
|
6446
6357
|
|
|
6447
|
-
/** @name PalletPaymentStreamsProviderLastChargeableInfo (
|
|
6358
|
+
/** @name PalletPaymentStreamsProviderLastChargeableInfo (509) */
|
|
6448
6359
|
interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
|
|
6449
6360
|
readonly lastChargeableTick: u32;
|
|
6450
6361
|
readonly priceIndex: u128;
|
|
6451
6362
|
}
|
|
6452
6363
|
|
|
6453
|
-
/** @name PalletPaymentStreamsError (
|
|
6364
|
+
/** @name PalletPaymentStreamsError (510) */
|
|
6454
6365
|
interface PalletPaymentStreamsError extends Enum {
|
|
6455
6366
|
readonly isPaymentStreamAlreadyExists: boolean;
|
|
6456
6367
|
readonly isPaymentStreamNotFound: boolean;
|
|
@@ -6491,7 +6402,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6491
6402
|
| "ProviderInsolvent";
|
|
6492
6403
|
}
|
|
6493
6404
|
|
|
6494
|
-
/** @name PalletBucketNftsError (
|
|
6405
|
+
/** @name PalletBucketNftsError (511) */
|
|
6495
6406
|
interface PalletBucketNftsError extends Enum {
|
|
6496
6407
|
readonly isBucketIsNotPrivate: boolean;
|
|
6497
6408
|
readonly isNotBucketOwner: boolean;
|
|
@@ -6504,7 +6415,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6504
6415
|
| "ConvertBytesToBoundedVec";
|
|
6505
6416
|
}
|
|
6506
6417
|
|
|
6507
|
-
/** @name PalletNftsCollectionDetails (
|
|
6418
|
+
/** @name PalletNftsCollectionDetails (512) */
|
|
6508
6419
|
interface PalletNftsCollectionDetails extends Struct {
|
|
6509
6420
|
readonly owner: AccountId32;
|
|
6510
6421
|
readonly ownerDeposit: u128;
|
|
@@ -6514,7 +6425,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6514
6425
|
readonly attributes: u32;
|
|
6515
6426
|
}
|
|
6516
6427
|
|
|
6517
|
-
/** @name PalletNftsCollectionRole (
|
|
6428
|
+
/** @name PalletNftsCollectionRole (517) */
|
|
6518
6429
|
interface PalletNftsCollectionRole extends Enum {
|
|
6519
6430
|
readonly isIssuer: boolean;
|
|
6520
6431
|
readonly isFreezer: boolean;
|
|
@@ -6522,44 +6433,44 @@ declare module "@polkadot/types/lookup" {
|
|
|
6522
6433
|
readonly type: "Issuer" | "Freezer" | "Admin";
|
|
6523
6434
|
}
|
|
6524
6435
|
|
|
6525
|
-
/** @name PalletNftsItemDetails (
|
|
6436
|
+
/** @name PalletNftsItemDetails (518) */
|
|
6526
6437
|
interface PalletNftsItemDetails extends Struct {
|
|
6527
6438
|
readonly owner: AccountId32;
|
|
6528
6439
|
readonly approvals: BTreeMap<AccountId32, Option<u32>>;
|
|
6529
6440
|
readonly deposit: PalletNftsItemDeposit;
|
|
6530
6441
|
}
|
|
6531
6442
|
|
|
6532
|
-
/** @name PalletNftsItemDeposit (
|
|
6443
|
+
/** @name PalletNftsItemDeposit (519) */
|
|
6533
6444
|
interface PalletNftsItemDeposit extends Struct {
|
|
6534
6445
|
readonly account: AccountId32;
|
|
6535
6446
|
readonly amount: u128;
|
|
6536
6447
|
}
|
|
6537
6448
|
|
|
6538
|
-
/** @name PalletNftsCollectionMetadata (
|
|
6449
|
+
/** @name PalletNftsCollectionMetadata (524) */
|
|
6539
6450
|
interface PalletNftsCollectionMetadata extends Struct {
|
|
6540
6451
|
readonly deposit: u128;
|
|
6541
6452
|
readonly data: Bytes;
|
|
6542
6453
|
}
|
|
6543
6454
|
|
|
6544
|
-
/** @name PalletNftsItemMetadata (
|
|
6455
|
+
/** @name PalletNftsItemMetadata (525) */
|
|
6545
6456
|
interface PalletNftsItemMetadata extends Struct {
|
|
6546
6457
|
readonly deposit: PalletNftsItemMetadataDeposit;
|
|
6547
6458
|
readonly data: Bytes;
|
|
6548
6459
|
}
|
|
6549
6460
|
|
|
6550
|
-
/** @name PalletNftsItemMetadataDeposit (
|
|
6461
|
+
/** @name PalletNftsItemMetadataDeposit (526) */
|
|
6551
6462
|
interface PalletNftsItemMetadataDeposit extends Struct {
|
|
6552
6463
|
readonly account: Option<AccountId32>;
|
|
6553
6464
|
readonly amount: u128;
|
|
6554
6465
|
}
|
|
6555
6466
|
|
|
6556
|
-
/** @name PalletNftsAttributeDeposit (
|
|
6467
|
+
/** @name PalletNftsAttributeDeposit (529) */
|
|
6557
6468
|
interface PalletNftsAttributeDeposit extends Struct {
|
|
6558
6469
|
readonly account: Option<AccountId32>;
|
|
6559
6470
|
readonly amount: u128;
|
|
6560
6471
|
}
|
|
6561
6472
|
|
|
6562
|
-
/** @name PalletNftsPendingSwap (
|
|
6473
|
+
/** @name PalletNftsPendingSwap (533) */
|
|
6563
6474
|
interface PalletNftsPendingSwap extends Struct {
|
|
6564
6475
|
readonly desiredCollection: u32;
|
|
6565
6476
|
readonly desiredItem: Option<u32>;
|
|
@@ -6567,7 +6478,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6567
6478
|
readonly deadline: u32;
|
|
6568
6479
|
}
|
|
6569
6480
|
|
|
6570
|
-
/** @name PalletNftsPalletFeature (
|
|
6481
|
+
/** @name PalletNftsPalletFeature (535) */
|
|
6571
6482
|
interface PalletNftsPalletFeature extends Enum {
|
|
6572
6483
|
readonly isTrading: boolean;
|
|
6573
6484
|
readonly isAttributes: boolean;
|
|
@@ -6576,7 +6487,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
6576
6487
|
readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
|
|
6577
6488
|
}
|
|
6578
6489
|
|
|
6579
|
-
/** @name PalletNftsError (
|
|
6490
|
+
/** @name PalletNftsError (536) */
|
|
6580
6491
|
interface PalletNftsError extends Enum {
|
|
6581
6492
|
readonly isNoPermission: boolean;
|
|
6582
6493
|
readonly isUnknownCollection: boolean;
|
|
@@ -6671,42 +6582,42 @@ declare module "@polkadot/types/lookup" {
|
|
|
6671
6582
|
| "WitnessRequired";
|
|
6672
6583
|
}
|
|
6673
6584
|
|
|
6674
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
6585
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (539) */
|
|
6675
6586
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
6676
6587
|
|
|
6677
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
6588
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (540) */
|
|
6678
6589
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
6679
6590
|
|
|
6680
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
6591
|
+
/** @name FrameSystemExtensionsCheckTxVersion (541) */
|
|
6681
6592
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
6682
6593
|
|
|
6683
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
6594
|
+
/** @name FrameSystemExtensionsCheckGenesis (542) */
|
|
6684
6595
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
6685
6596
|
|
|
6686
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
6597
|
+
/** @name FrameSystemExtensionsCheckNonce (545) */
|
|
6687
6598
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
6688
6599
|
|
|
6689
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
6600
|
+
/** @name FrameSystemExtensionsCheckWeight (546) */
|
|
6690
6601
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
6691
6602
|
|
|
6692
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
6603
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (547) */
|
|
6693
6604
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
6694
6605
|
|
|
6695
|
-
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (
|
|
6606
|
+
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (548) */
|
|
6696
6607
|
type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = Null;
|
|
6697
6608
|
|
|
6698
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
6609
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (549) */
|
|
6699
6610
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
6700
6611
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
6701
6612
|
}
|
|
6702
6613
|
|
|
6703
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
6614
|
+
/** @name FrameMetadataHashExtensionMode (550) */
|
|
6704
6615
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
6705
6616
|
readonly isDisabled: boolean;
|
|
6706
6617
|
readonly isEnabled: boolean;
|
|
6707
6618
|
readonly type: "Disabled" | "Enabled";
|
|
6708
6619
|
}
|
|
6709
6620
|
|
|
6710
|
-
/** @name ShParachainRuntimeRuntime (
|
|
6621
|
+
/** @name ShParachainRuntimeRuntime (551) */
|
|
6711
6622
|
type ShParachainRuntimeRuntime = Null;
|
|
6712
6623
|
} // declare module
|