@storagehub/api-augment 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/parachain/interfaces/lookup.js +245 -239
- package/dist/parachain/interfaces/lookup.js.map +1 -1
- package/dist/solochain-evm/interfaces/lookup.js +195 -189
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
- package/dist/types/parachain/interfaces/augment-api-consts.d.ts +4 -0
- package/dist/types/parachain/interfaces/augment-api-errors.d.ts +24 -0
- package/dist/types/parachain/interfaces/augment-api-events.d.ts +10 -24
- package/dist/types/parachain/interfaces/augment-api-tx.d.ts +27 -29
- package/dist/types/parachain/interfaces/lookup.d.ts +239 -239
- package/dist/types/parachain/interfaces/registry.d.ts +2 -1
- package/dist/types/parachain/interfaces/types-lookup.d.ts +247 -244
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +4 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +24 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +10 -24
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +27 -23
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +189 -189
- package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -1
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +197 -194
- package/metadata-sh-parachain.json +1 -1
- package/metadata-sh-solochain-evm.json +1 -1
- package/package.json +1 -1
- package/src/parachain/interfaces/augment-api-consts.ts +4 -0
- package/src/parachain/interfaces/augment-api-errors.ts +24 -0
- package/src/parachain/interfaces/augment-api-events.ts +8 -32
- package/src/parachain/interfaces/augment-api-tx.ts +36 -41
- package/src/parachain/interfaces/lookup.ts +245 -239
- package/src/parachain/interfaces/registry.ts +2 -0
- package/src/parachain/interfaces/types-lookup.ts +255 -246
- package/src/solochain-evm/interfaces/augment-api-consts.ts +4 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +24 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +8 -32
- package/src/solochain-evm/interfaces/augment-api-tx.ts +36 -35
- package/src/solochain-evm/interfaces/lookup.ts +195 -189
- package/src/solochain-evm/interfaces/registry.ts +2 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +205 -196
|
@@ -1668,27 +1668,21 @@ declare const _default: {
|
|
|
1668
1668
|
signedDeleteIntention: string;
|
|
1669
1669
|
signature: string;
|
|
1670
1670
|
};
|
|
1671
|
-
|
|
1671
|
+
BucketFileDeletionsCompleted: {
|
|
1672
1672
|
user: string;
|
|
1673
|
-
|
|
1674
|
-
fileSize: string;
|
|
1673
|
+
fileKeys: string;
|
|
1675
1674
|
bucketId: string;
|
|
1676
1675
|
mspId: string;
|
|
1677
1676
|
oldRoot: string;
|
|
1678
1677
|
newRoot: string;
|
|
1679
1678
|
};
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
fileSize: string;
|
|
1679
|
+
BspFileDeletionsCompleted: {
|
|
1680
|
+
users: string;
|
|
1681
|
+
fileKeys: string;
|
|
1684
1682
|
bspId: string;
|
|
1685
1683
|
oldRoot: string;
|
|
1686
1684
|
newRoot: string;
|
|
1687
1685
|
};
|
|
1688
|
-
FileDeletedFromIncompleteStorageRequest: {
|
|
1689
|
-
fileKey: string;
|
|
1690
|
-
bspId: string;
|
|
1691
|
-
};
|
|
1692
1686
|
IncompleteStorageRequest: {
|
|
1693
1687
|
fileKey: string;
|
|
1694
1688
|
};
|
|
@@ -1747,7 +1741,7 @@ declare const _default: {
|
|
|
1747
1741
|
};
|
|
1748
1742
|
};
|
|
1749
1743
|
/**
|
|
1750
|
-
*
|
|
1744
|
+
* Lookup169: pallet_proofs_dealer::pallet::Event<T>
|
|
1751
1745
|
**/
|
|
1752
1746
|
PalletProofsDealerEvent: {
|
|
1753
1747
|
_enum: {
|
|
@@ -1804,41 +1798,41 @@ declare const _default: {
|
|
|
1804
1798
|
};
|
|
1805
1799
|
};
|
|
1806
1800
|
/**
|
|
1807
|
-
*
|
|
1801
|
+
* Lookup170: pallet_proofs_dealer::types::Proof<T>
|
|
1808
1802
|
**/
|
|
1809
1803
|
PalletProofsDealerProof: {
|
|
1810
1804
|
forestProof: string;
|
|
1811
1805
|
keyProofs: string;
|
|
1812
1806
|
};
|
|
1813
1807
|
/**
|
|
1814
|
-
*
|
|
1808
|
+
* Lookup171: sp_trie::storage_proof::CompactProof
|
|
1815
1809
|
**/
|
|
1816
1810
|
SpTrieStorageProofCompactProof: {
|
|
1817
1811
|
encodedNodes: string;
|
|
1818
1812
|
};
|
|
1819
1813
|
/**
|
|
1820
|
-
*
|
|
1814
|
+
* Lookup174: pallet_proofs_dealer::types::KeyProof<T>
|
|
1821
1815
|
**/
|
|
1822
1816
|
PalletProofsDealerKeyProof: {
|
|
1823
1817
|
proof: string;
|
|
1824
1818
|
challengeCount: string;
|
|
1825
1819
|
};
|
|
1826
1820
|
/**
|
|
1827
|
-
*
|
|
1821
|
+
* Lookup175: shp_file_key_verifier::types::FileKeyProof
|
|
1828
1822
|
**/
|
|
1829
1823
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1830
1824
|
fileMetadata: string;
|
|
1831
1825
|
proof: string;
|
|
1832
1826
|
};
|
|
1833
1827
|
/**
|
|
1834
|
-
*
|
|
1828
|
+
* Lookup179: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1835
1829
|
**/
|
|
1836
1830
|
PalletProofsDealerCustomChallenge: {
|
|
1837
1831
|
key: string;
|
|
1838
1832
|
shouldRemoveKey: string;
|
|
1839
1833
|
};
|
|
1840
1834
|
/**
|
|
1841
|
-
*
|
|
1835
|
+
* Lookup183: shp_traits::TrieMutation
|
|
1842
1836
|
**/
|
|
1843
1837
|
ShpTraitsTrieMutation: {
|
|
1844
1838
|
_enum: {
|
|
@@ -1847,19 +1841,19 @@ declare const _default: {
|
|
|
1847
1841
|
};
|
|
1848
1842
|
};
|
|
1849
1843
|
/**
|
|
1850
|
-
*
|
|
1844
|
+
* Lookup184: shp_traits::TrieAddMutation
|
|
1851
1845
|
**/
|
|
1852
1846
|
ShpTraitsTrieAddMutation: {
|
|
1853
1847
|
value: string;
|
|
1854
1848
|
};
|
|
1855
1849
|
/**
|
|
1856
|
-
*
|
|
1850
|
+
* Lookup185: shp_traits::TrieRemoveMutation
|
|
1857
1851
|
**/
|
|
1858
1852
|
ShpTraitsTrieRemoveMutation: {
|
|
1859
1853
|
maybeValue: string;
|
|
1860
1854
|
};
|
|
1861
1855
|
/**
|
|
1862
|
-
*
|
|
1856
|
+
* Lookup187: pallet_randomness::pallet::Event<T>
|
|
1863
1857
|
**/
|
|
1864
1858
|
PalletRandomnessEvent: {
|
|
1865
1859
|
_enum: {
|
|
@@ -1871,7 +1865,7 @@ declare const _default: {
|
|
|
1871
1865
|
};
|
|
1872
1866
|
};
|
|
1873
1867
|
/**
|
|
1874
|
-
*
|
|
1868
|
+
* Lookup188: pallet_payment_streams::pallet::Event<T>
|
|
1875
1869
|
**/
|
|
1876
1870
|
PalletPaymentStreamsEvent: {
|
|
1877
1871
|
_enum: {
|
|
@@ -1939,7 +1933,7 @@ declare const _default: {
|
|
|
1939
1933
|
};
|
|
1940
1934
|
};
|
|
1941
1935
|
/**
|
|
1942
|
-
*
|
|
1936
|
+
* Lookup190: pallet_bucket_nfts::pallet::Event<T>
|
|
1943
1937
|
**/
|
|
1944
1938
|
PalletBucketNftsEvent: {
|
|
1945
1939
|
_enum: {
|
|
@@ -1960,7 +1954,7 @@ declare const _default: {
|
|
|
1960
1954
|
};
|
|
1961
1955
|
};
|
|
1962
1956
|
/**
|
|
1963
|
-
*
|
|
1957
|
+
* Lookup191: pallet_nfts::pallet::Event<T, I>
|
|
1964
1958
|
**/
|
|
1965
1959
|
PalletNftsEvent: {
|
|
1966
1960
|
_enum: {
|
|
@@ -2161,7 +2155,7 @@ declare const _default: {
|
|
|
2161
2155
|
};
|
|
2162
2156
|
};
|
|
2163
2157
|
/**
|
|
2164
|
-
*
|
|
2158
|
+
* Lookup195: pallet_nfts::types::AttributeNamespace<sp_core::crypto::AccountId32>
|
|
2165
2159
|
**/
|
|
2166
2160
|
PalletNftsAttributeNamespace: {
|
|
2167
2161
|
_enum: {
|
|
@@ -2172,20 +2166,20 @@ declare const _default: {
|
|
|
2172
2166
|
};
|
|
2173
2167
|
};
|
|
2174
2168
|
/**
|
|
2175
|
-
*
|
|
2169
|
+
* Lookup197: pallet_nfts::types::PriceWithDirection<Amount>
|
|
2176
2170
|
**/
|
|
2177
2171
|
PalletNftsPriceWithDirection: {
|
|
2178
2172
|
amount: string;
|
|
2179
2173
|
direction: string;
|
|
2180
2174
|
};
|
|
2181
2175
|
/**
|
|
2182
|
-
*
|
|
2176
|
+
* Lookup198: pallet_nfts::types::PriceDirection
|
|
2183
2177
|
**/
|
|
2184
2178
|
PalletNftsPriceDirection: {
|
|
2185
2179
|
_enum: string[];
|
|
2186
2180
|
};
|
|
2187
2181
|
/**
|
|
2188
|
-
*
|
|
2182
|
+
* Lookup199: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
2189
2183
|
**/
|
|
2190
2184
|
PalletNftsPalletAttributes: {
|
|
2191
2185
|
_enum: {
|
|
@@ -2194,7 +2188,7 @@ declare const _default: {
|
|
|
2194
2188
|
};
|
|
2195
2189
|
};
|
|
2196
2190
|
/**
|
|
2197
|
-
*
|
|
2191
|
+
* Lookup200: pallet_parameters::pallet::Event<T>
|
|
2198
2192
|
**/
|
|
2199
2193
|
PalletParametersEvent: {
|
|
2200
2194
|
_enum: {
|
|
@@ -2206,7 +2200,7 @@ declare const _default: {
|
|
|
2206
2200
|
};
|
|
2207
2201
|
};
|
|
2208
2202
|
/**
|
|
2209
|
-
*
|
|
2203
|
+
* Lookup201: sh_parachain_runtime::configs::runtime_params::RuntimeParametersKey
|
|
2210
2204
|
**/
|
|
2211
2205
|
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey: {
|
|
2212
2206
|
_enum: {
|
|
@@ -2214,133 +2208,133 @@ declare const _default: {
|
|
|
2214
2208
|
};
|
|
2215
2209
|
};
|
|
2216
2210
|
/**
|
|
2217
|
-
*
|
|
2211
|
+
* Lookup202: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersKey
|
|
2218
2212
|
**/
|
|
2219
2213
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: {
|
|
2220
2214
|
_enum: string[];
|
|
2221
2215
|
};
|
|
2222
2216
|
/**
|
|
2223
|
-
*
|
|
2217
|
+
* Lookup203: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SlashAmountPerMaxFileSize
|
|
2224
2218
|
**/
|
|
2225
2219
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: string;
|
|
2226
2220
|
/**
|
|
2227
|
-
*
|
|
2221
|
+
* Lookup204: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToChallengePeriod
|
|
2228
2222
|
**/
|
|
2229
2223
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: string;
|
|
2230
2224
|
/**
|
|
2231
|
-
*
|
|
2225
|
+
* Lookup205: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::CheckpointChallengePeriod
|
|
2232
2226
|
**/
|
|
2233
2227
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: string;
|
|
2234
2228
|
/**
|
|
2235
|
-
*
|
|
2229
|
+
* Lookup206: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinChallengePeriod
|
|
2236
2230
|
**/
|
|
2237
2231
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: string;
|
|
2238
2232
|
/**
|
|
2239
|
-
*
|
|
2233
|
+
* Lookup207: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationLowerThresholdPercentage
|
|
2240
2234
|
**/
|
|
2241
2235
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage: string;
|
|
2242
2236
|
/**
|
|
2243
|
-
*
|
|
2237
|
+
* Lookup208: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationUpperThresholdPercentage
|
|
2244
2238
|
**/
|
|
2245
2239
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage: string;
|
|
2246
2240
|
/**
|
|
2247
|
-
*
|
|
2241
|
+
* Lookup209: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MostlyStablePrice
|
|
2248
2242
|
**/
|
|
2249
2243
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice: string;
|
|
2250
2244
|
/**
|
|
2251
|
-
*
|
|
2245
|
+
* Lookup210: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxPrice
|
|
2252
2246
|
**/
|
|
2253
2247
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice: string;
|
|
2254
2248
|
/**
|
|
2255
|
-
*
|
|
2249
|
+
* Lookup211: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinPrice
|
|
2256
2250
|
**/
|
|
2257
2251
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice: string;
|
|
2258
2252
|
/**
|
|
2259
|
-
*
|
|
2253
|
+
* Lookup212: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpperExponentFactor
|
|
2260
2254
|
**/
|
|
2261
2255
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor: string;
|
|
2262
2256
|
/**
|
|
2263
|
-
*
|
|
2257
|
+
* Lookup213: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::LowerExponentFactor
|
|
2264
2258
|
**/
|
|
2265
2259
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor: string;
|
|
2266
2260
|
/**
|
|
2267
|
-
*
|
|
2261
|
+
* Lookup214: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ZeroSizeBucketFixedRate
|
|
2268
2262
|
**/
|
|
2269
2263
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate: string;
|
|
2270
2264
|
/**
|
|
2271
|
-
*
|
|
2265
|
+
* Lookup215: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::IdealUtilisationRate
|
|
2272
2266
|
**/
|
|
2273
2267
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate: string;
|
|
2274
2268
|
/**
|
|
2275
|
-
*
|
|
2269
|
+
* Lookup216: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::DecayRate
|
|
2276
2270
|
**/
|
|
2277
2271
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate: string;
|
|
2278
2272
|
/**
|
|
2279
|
-
*
|
|
2273
|
+
* Lookup217: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinimumTreasuryCut
|
|
2280
2274
|
**/
|
|
2281
2275
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut: string;
|
|
2282
2276
|
/**
|
|
2283
|
-
*
|
|
2277
|
+
* Lookup218: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaximumTreasuryCut
|
|
2284
2278
|
**/
|
|
2285
2279
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut: string;
|
|
2286
2280
|
/**
|
|
2287
|
-
*
|
|
2281
|
+
* Lookup219: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BspStopStoringFilePenalty
|
|
2288
2282
|
**/
|
|
2289
2283
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty: string;
|
|
2290
2284
|
/**
|
|
2291
|
-
*
|
|
2285
|
+
* Lookup220: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ProviderTopUpTtl
|
|
2292
2286
|
**/
|
|
2293
2287
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl: string;
|
|
2294
2288
|
/**
|
|
2295
|
-
*
|
|
2289
|
+
* Lookup221: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BasicReplicationTarget
|
|
2296
2290
|
**/
|
|
2297
2291
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget: string;
|
|
2298
2292
|
/**
|
|
2299
|
-
*
|
|
2293
|
+
* Lookup222: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StandardReplicationTarget
|
|
2300
2294
|
**/
|
|
2301
2295
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget: string;
|
|
2302
2296
|
/**
|
|
2303
|
-
*
|
|
2297
|
+
* Lookup223: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::HighSecurityReplicationTarget
|
|
2304
2298
|
**/
|
|
2305
2299
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget: string;
|
|
2306
2300
|
/**
|
|
2307
|
-
*
|
|
2301
|
+
* Lookup224: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SuperHighSecurityReplicationTarget
|
|
2308
2302
|
**/
|
|
2309
2303
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget: string;
|
|
2310
2304
|
/**
|
|
2311
|
-
*
|
|
2305
|
+
* Lookup225: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UltraHighSecurityReplicationTarget
|
|
2312
2306
|
**/
|
|
2313
2307
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget: string;
|
|
2314
2308
|
/**
|
|
2315
|
-
*
|
|
2309
|
+
* Lookup226: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxReplicationTarget
|
|
2316
2310
|
**/
|
|
2317
2311
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget: string;
|
|
2318
2312
|
/**
|
|
2319
|
-
*
|
|
2313
|
+
* Lookup227: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::TickRangeToMaximumThreshold
|
|
2320
2314
|
**/
|
|
2321
2315
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold: string;
|
|
2322
2316
|
/**
|
|
2323
|
-
*
|
|
2317
|
+
* Lookup228: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StorageRequestTtl
|
|
2324
2318
|
**/
|
|
2325
2319
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl: string;
|
|
2326
2320
|
/**
|
|
2327
|
-
*
|
|
2321
|
+
* Lookup229: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinWaitForStopStoring
|
|
2328
2322
|
**/
|
|
2329
2323
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring: string;
|
|
2330
2324
|
/**
|
|
2331
|
-
*
|
|
2325
|
+
* Lookup230: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinSeedPeriod
|
|
2332
2326
|
**/
|
|
2333
2327
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod: string;
|
|
2334
2328
|
/**
|
|
2335
|
-
*
|
|
2329
|
+
* Lookup231: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToSeedPeriod
|
|
2336
2330
|
**/
|
|
2337
2331
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod: string;
|
|
2338
2332
|
/**
|
|
2339
|
-
*
|
|
2333
|
+
* Lookup232: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpfrontTicksToPay
|
|
2340
2334
|
**/
|
|
2341
2335
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay: string;
|
|
2342
2336
|
/**
|
|
2343
|
-
*
|
|
2337
|
+
* Lookup234: sh_parachain_runtime::configs::runtime_params::RuntimeParametersValue
|
|
2344
2338
|
**/
|
|
2345
2339
|
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue: {
|
|
2346
2340
|
_enum: {
|
|
@@ -2348,7 +2342,7 @@ declare const _default: {
|
|
|
2348
2342
|
};
|
|
2349
2343
|
};
|
|
2350
2344
|
/**
|
|
2351
|
-
*
|
|
2345
|
+
* Lookup235: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersValue
|
|
2352
2346
|
**/
|
|
2353
2347
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: {
|
|
2354
2348
|
_enum: {
|
|
@@ -2385,7 +2379,7 @@ declare const _default: {
|
|
|
2385
2379
|
};
|
|
2386
2380
|
};
|
|
2387
2381
|
/**
|
|
2388
|
-
*
|
|
2382
|
+
* Lookup237: frame_system::Phase
|
|
2389
2383
|
**/
|
|
2390
2384
|
FrameSystemPhase: {
|
|
2391
2385
|
_enum: {
|
|
@@ -2395,21 +2389,21 @@ declare const _default: {
|
|
|
2395
2389
|
};
|
|
2396
2390
|
};
|
|
2397
2391
|
/**
|
|
2398
|
-
*
|
|
2392
|
+
* Lookup240: frame_system::LastRuntimeUpgradeInfo
|
|
2399
2393
|
**/
|
|
2400
2394
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
2401
2395
|
specVersion: string;
|
|
2402
2396
|
specName: string;
|
|
2403
2397
|
};
|
|
2404
2398
|
/**
|
|
2405
|
-
*
|
|
2399
|
+
* Lookup243: frame_system::CodeUpgradeAuthorization<T>
|
|
2406
2400
|
**/
|
|
2407
2401
|
FrameSystemCodeUpgradeAuthorization: {
|
|
2408
2402
|
codeHash: string;
|
|
2409
2403
|
checkVersion: string;
|
|
2410
2404
|
};
|
|
2411
2405
|
/**
|
|
2412
|
-
*
|
|
2406
|
+
* Lookup244: frame_system::pallet::Call<T>
|
|
2413
2407
|
**/
|
|
2414
2408
|
FrameSystemCall: {
|
|
2415
2409
|
_enum: {
|
|
@@ -2454,7 +2448,7 @@ declare const _default: {
|
|
|
2454
2448
|
};
|
|
2455
2449
|
};
|
|
2456
2450
|
/**
|
|
2457
|
-
*
|
|
2451
|
+
* Lookup247: frame_system::limits::BlockWeights
|
|
2458
2452
|
**/
|
|
2459
2453
|
FrameSystemLimitsBlockWeights: {
|
|
2460
2454
|
baseBlock: string;
|
|
@@ -2462,7 +2456,7 @@ declare const _default: {
|
|
|
2462
2456
|
perClass: string;
|
|
2463
2457
|
};
|
|
2464
2458
|
/**
|
|
2465
|
-
*
|
|
2459
|
+
* Lookup248: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
2466
2460
|
**/
|
|
2467
2461
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
2468
2462
|
normal: string;
|
|
@@ -2470,7 +2464,7 @@ declare const _default: {
|
|
|
2470
2464
|
mandatory: string;
|
|
2471
2465
|
};
|
|
2472
2466
|
/**
|
|
2473
|
-
*
|
|
2467
|
+
* Lookup249: frame_system::limits::WeightsPerClass
|
|
2474
2468
|
**/
|
|
2475
2469
|
FrameSystemLimitsWeightsPerClass: {
|
|
2476
2470
|
baseExtrinsic: string;
|
|
@@ -2479,13 +2473,13 @@ declare const _default: {
|
|
|
2479
2473
|
reserved: string;
|
|
2480
2474
|
};
|
|
2481
2475
|
/**
|
|
2482
|
-
*
|
|
2476
|
+
* Lookup250: frame_system::limits::BlockLength
|
|
2483
2477
|
**/
|
|
2484
2478
|
FrameSystemLimitsBlockLength: {
|
|
2485
2479
|
max: string;
|
|
2486
2480
|
};
|
|
2487
2481
|
/**
|
|
2488
|
-
*
|
|
2482
|
+
* Lookup251: frame_support::dispatch::PerDispatchClass<T>
|
|
2489
2483
|
**/
|
|
2490
2484
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
2491
2485
|
normal: string;
|
|
@@ -2493,14 +2487,14 @@ declare const _default: {
|
|
|
2493
2487
|
mandatory: string;
|
|
2494
2488
|
};
|
|
2495
2489
|
/**
|
|
2496
|
-
*
|
|
2490
|
+
* Lookup252: sp_weights::RuntimeDbWeight
|
|
2497
2491
|
**/
|
|
2498
2492
|
SpWeightsRuntimeDbWeight: {
|
|
2499
2493
|
read: string;
|
|
2500
2494
|
write: string;
|
|
2501
2495
|
};
|
|
2502
2496
|
/**
|
|
2503
|
-
*
|
|
2497
|
+
* Lookup253: sp_version::RuntimeVersion
|
|
2504
2498
|
**/
|
|
2505
2499
|
SpVersionRuntimeVersion: {
|
|
2506
2500
|
specName: string;
|
|
@@ -2513,13 +2507,13 @@ declare const _default: {
|
|
|
2513
2507
|
systemVersion: string;
|
|
2514
2508
|
};
|
|
2515
2509
|
/**
|
|
2516
|
-
*
|
|
2510
|
+
* Lookup258: frame_system::pallet::Error<T>
|
|
2517
2511
|
**/
|
|
2518
2512
|
FrameSystemError: {
|
|
2519
2513
|
_enum: string[];
|
|
2520
2514
|
};
|
|
2521
2515
|
/**
|
|
2522
|
-
*
|
|
2516
|
+
* Lookup260: cumulus_pallet_parachain_system::unincluded_segment::Ancestor<primitive_types::H256>
|
|
2523
2517
|
**/
|
|
2524
2518
|
CumulusPalletParachainSystemUnincludedSegmentAncestor: {
|
|
2525
2519
|
usedBandwidth: string;
|
|
@@ -2527,7 +2521,7 @@ declare const _default: {
|
|
|
2527
2521
|
consumedGoAheadSignal: string;
|
|
2528
2522
|
};
|
|
2529
2523
|
/**
|
|
2530
|
-
*
|
|
2524
|
+
* Lookup261: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth
|
|
2531
2525
|
**/
|
|
2532
2526
|
CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: {
|
|
2533
2527
|
umpMsgCount: string;
|
|
@@ -2535,20 +2529,20 @@ declare const _default: {
|
|
|
2535
2529
|
hrmpOutgoing: string;
|
|
2536
2530
|
};
|
|
2537
2531
|
/**
|
|
2538
|
-
*
|
|
2532
|
+
* Lookup263: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate
|
|
2539
2533
|
**/
|
|
2540
2534
|
CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: {
|
|
2541
2535
|
msgCount: string;
|
|
2542
2536
|
totalBytes: string;
|
|
2543
2537
|
};
|
|
2544
2538
|
/**
|
|
2545
|
-
*
|
|
2539
|
+
* Lookup267: polkadot_primitives::v8::UpgradeGoAhead
|
|
2546
2540
|
**/
|
|
2547
2541
|
PolkadotPrimitivesV8UpgradeGoAhead: {
|
|
2548
2542
|
_enum: string[];
|
|
2549
2543
|
};
|
|
2550
2544
|
/**
|
|
2551
|
-
*
|
|
2545
|
+
* Lookup268: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker<primitive_types::H256>
|
|
2552
2546
|
**/
|
|
2553
2547
|
CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: {
|
|
2554
2548
|
usedBandwidth: string;
|
|
@@ -2556,7 +2550,7 @@ declare const _default: {
|
|
|
2556
2550
|
consumedGoAheadSignal: string;
|
|
2557
2551
|
};
|
|
2558
2552
|
/**
|
|
2559
|
-
*
|
|
2553
|
+
* Lookup269: polkadot_primitives::v8::PersistedValidationData<primitive_types::H256, N>
|
|
2560
2554
|
**/
|
|
2561
2555
|
PolkadotPrimitivesV8PersistedValidationData: {
|
|
2562
2556
|
parentHead: string;
|
|
@@ -2565,19 +2559,19 @@ declare const _default: {
|
|
|
2565
2559
|
maxPovSize: string;
|
|
2566
2560
|
};
|
|
2567
2561
|
/**
|
|
2568
|
-
*
|
|
2562
|
+
* Lookup272: polkadot_primitives::v8::UpgradeRestriction
|
|
2569
2563
|
**/
|
|
2570
2564
|
PolkadotPrimitivesV8UpgradeRestriction: {
|
|
2571
2565
|
_enum: string[];
|
|
2572
2566
|
};
|
|
2573
2567
|
/**
|
|
2574
|
-
*
|
|
2568
|
+
* Lookup273: sp_trie::storage_proof::StorageProof
|
|
2575
2569
|
**/
|
|
2576
2570
|
SpTrieStorageProof: {
|
|
2577
2571
|
trieNodes: string;
|
|
2578
2572
|
};
|
|
2579
2573
|
/**
|
|
2580
|
-
*
|
|
2574
|
+
* Lookup275: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
|
|
2581
2575
|
**/
|
|
2582
2576
|
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
|
|
2583
2577
|
dmqMqcHead: string;
|
|
@@ -2586,14 +2580,14 @@ declare const _default: {
|
|
|
2586
2580
|
egressChannels: string;
|
|
2587
2581
|
};
|
|
2588
2582
|
/**
|
|
2589
|
-
*
|
|
2583
|
+
* Lookup276: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity
|
|
2590
2584
|
**/
|
|
2591
2585
|
CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: {
|
|
2592
2586
|
remainingCount: string;
|
|
2593
2587
|
remainingSize: string;
|
|
2594
2588
|
};
|
|
2595
2589
|
/**
|
|
2596
|
-
*
|
|
2590
|
+
* Lookup279: polkadot_primitives::v8::AbridgedHrmpChannel
|
|
2597
2591
|
**/
|
|
2598
2592
|
PolkadotPrimitivesV8AbridgedHrmpChannel: {
|
|
2599
2593
|
maxCapacity: string;
|
|
@@ -2604,7 +2598,7 @@ declare const _default: {
|
|
|
2604
2598
|
mqcHead: string;
|
|
2605
2599
|
};
|
|
2606
2600
|
/**
|
|
2607
|
-
*
|
|
2601
|
+
* Lookup280: polkadot_primitives::v8::AbridgedHostConfiguration
|
|
2608
2602
|
**/
|
|
2609
2603
|
PolkadotPrimitivesV8AbridgedHostConfiguration: {
|
|
2610
2604
|
maxCodeSize: string;
|
|
@@ -2619,21 +2613,21 @@ declare const _default: {
|
|
|
2619
2613
|
asyncBackingParams: string;
|
|
2620
2614
|
};
|
|
2621
2615
|
/**
|
|
2622
|
-
*
|
|
2616
|
+
* Lookup281: polkadot_primitives::v8::async_backing::AsyncBackingParams
|
|
2623
2617
|
**/
|
|
2624
2618
|
PolkadotPrimitivesV8AsyncBackingAsyncBackingParams: {
|
|
2625
2619
|
maxCandidateDepth: string;
|
|
2626
2620
|
allowedAncestryLen: string;
|
|
2627
2621
|
};
|
|
2628
2622
|
/**
|
|
2629
|
-
*
|
|
2623
|
+
* Lookup287: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain_primitives::primitives::Id>
|
|
2630
2624
|
**/
|
|
2631
2625
|
PolkadotCorePrimitivesOutboundHrmpMessage: {
|
|
2632
2626
|
recipient: string;
|
|
2633
2627
|
data: string;
|
|
2634
2628
|
};
|
|
2635
2629
|
/**
|
|
2636
|
-
*
|
|
2630
|
+
* Lookup289: cumulus_pallet_parachain_system::pallet::Call<T>
|
|
2637
2631
|
**/
|
|
2638
2632
|
CumulusPalletParachainSystemCall: {
|
|
2639
2633
|
_enum: {
|
|
@@ -2646,7 +2640,7 @@ declare const _default: {
|
|
|
2646
2640
|
};
|
|
2647
2641
|
};
|
|
2648
2642
|
/**
|
|
2649
|
-
*
|
|
2643
|
+
* Lookup290: cumulus_primitives_parachain_inherent::ParachainInherentData
|
|
2650
2644
|
**/
|
|
2651
2645
|
CumulusPrimitivesParachainInherentParachainInherentData: {
|
|
2652
2646
|
validationData: string;
|
|
@@ -2655,27 +2649,27 @@ declare const _default: {
|
|
|
2655
2649
|
horizontalMessages: string;
|
|
2656
2650
|
};
|
|
2657
2651
|
/**
|
|
2658
|
-
*
|
|
2652
|
+
* Lookup292: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
|
|
2659
2653
|
**/
|
|
2660
2654
|
PolkadotCorePrimitivesInboundDownwardMessage: {
|
|
2661
2655
|
sentAt: string;
|
|
2662
2656
|
msg: string;
|
|
2663
2657
|
};
|
|
2664
2658
|
/**
|
|
2665
|
-
*
|
|
2659
|
+
* Lookup295: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
|
|
2666
2660
|
**/
|
|
2667
2661
|
PolkadotCorePrimitivesInboundHrmpMessage: {
|
|
2668
2662
|
sentAt: string;
|
|
2669
2663
|
data: string;
|
|
2670
2664
|
};
|
|
2671
2665
|
/**
|
|
2672
|
-
*
|
|
2666
|
+
* Lookup298: cumulus_pallet_parachain_system::pallet::Error<T>
|
|
2673
2667
|
**/
|
|
2674
2668
|
CumulusPalletParachainSystemError: {
|
|
2675
2669
|
_enum: string[];
|
|
2676
2670
|
};
|
|
2677
2671
|
/**
|
|
2678
|
-
*
|
|
2672
|
+
* Lookup299: pallet_timestamp::pallet::Call<T>
|
|
2679
2673
|
**/
|
|
2680
2674
|
PalletTimestampCall: {
|
|
2681
2675
|
_enum: {
|
|
@@ -2685,11 +2679,11 @@ declare const _default: {
|
|
|
2685
2679
|
};
|
|
2686
2680
|
};
|
|
2687
2681
|
/**
|
|
2688
|
-
*
|
|
2682
|
+
* Lookup300: staging_parachain_info::pallet::Call<T>
|
|
2689
2683
|
**/
|
|
2690
2684
|
StagingParachainInfoCall: string;
|
|
2691
2685
|
/**
|
|
2692
|
-
*
|
|
2686
|
+
* Lookup302: pallet_balances::types::BalanceLock<Balance>
|
|
2693
2687
|
**/
|
|
2694
2688
|
PalletBalancesBalanceLock: {
|
|
2695
2689
|
id: string;
|
|
@@ -2697,20 +2691,20 @@ declare const _default: {
|
|
|
2697
2691
|
reasons: string;
|
|
2698
2692
|
};
|
|
2699
2693
|
/**
|
|
2700
|
-
*
|
|
2694
|
+
* Lookup303: pallet_balances::types::Reasons
|
|
2701
2695
|
**/
|
|
2702
2696
|
PalletBalancesReasons: {
|
|
2703
2697
|
_enum: string[];
|
|
2704
2698
|
};
|
|
2705
2699
|
/**
|
|
2706
|
-
*
|
|
2700
|
+
* Lookup306: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2707
2701
|
**/
|
|
2708
2702
|
PalletBalancesReserveData: {
|
|
2709
2703
|
id: string;
|
|
2710
2704
|
amount: string;
|
|
2711
2705
|
};
|
|
2712
2706
|
/**
|
|
2713
|
-
*
|
|
2707
|
+
* Lookup310: sh_parachain_runtime::RuntimeHoldReason
|
|
2714
2708
|
**/
|
|
2715
2709
|
ShParachainRuntimeRuntimeHoldReason: {
|
|
2716
2710
|
_enum: {
|
|
@@ -2762,32 +2756,32 @@ declare const _default: {
|
|
|
2762
2756
|
};
|
|
2763
2757
|
};
|
|
2764
2758
|
/**
|
|
2765
|
-
*
|
|
2759
|
+
* Lookup311: pallet_storage_providers::pallet::HoldReason
|
|
2766
2760
|
**/
|
|
2767
2761
|
PalletStorageProvidersHoldReason: {
|
|
2768
2762
|
_enum: string[];
|
|
2769
2763
|
};
|
|
2770
2764
|
/**
|
|
2771
|
-
*
|
|
2765
|
+
* Lookup312: pallet_file_system::pallet::HoldReason
|
|
2772
2766
|
**/
|
|
2773
2767
|
PalletFileSystemHoldReason: {
|
|
2774
2768
|
_enum: string[];
|
|
2775
2769
|
};
|
|
2776
2770
|
/**
|
|
2777
|
-
*
|
|
2771
|
+
* Lookup313: pallet_payment_streams::pallet::HoldReason
|
|
2778
2772
|
**/
|
|
2779
2773
|
PalletPaymentStreamsHoldReason: {
|
|
2780
2774
|
_enum: string[];
|
|
2781
2775
|
};
|
|
2782
2776
|
/**
|
|
2783
|
-
*
|
|
2777
|
+
* Lookup316: frame_support::traits::tokens::misc::IdAmount<Id, Balance>
|
|
2784
2778
|
**/
|
|
2785
2779
|
FrameSupportTokensMiscIdAmount: {
|
|
2786
2780
|
id: string;
|
|
2787
2781
|
amount: string;
|
|
2788
2782
|
};
|
|
2789
2783
|
/**
|
|
2790
|
-
*
|
|
2784
|
+
* Lookup318: pallet_balances::pallet::Call<T, I>
|
|
2791
2785
|
**/
|
|
2792
2786
|
PalletBalancesCall: {
|
|
2793
2787
|
_enum: {
|
|
@@ -2832,25 +2826,25 @@ declare const _default: {
|
|
|
2832
2826
|
};
|
|
2833
2827
|
};
|
|
2834
2828
|
/**
|
|
2835
|
-
*
|
|
2829
|
+
* Lookup321: pallet_balances::types::AdjustmentDirection
|
|
2836
2830
|
**/
|
|
2837
2831
|
PalletBalancesAdjustmentDirection: {
|
|
2838
2832
|
_enum: string[];
|
|
2839
2833
|
};
|
|
2840
2834
|
/**
|
|
2841
|
-
*
|
|
2835
|
+
* Lookup322: pallet_balances::pallet::Error<T, I>
|
|
2842
2836
|
**/
|
|
2843
2837
|
PalletBalancesError: {
|
|
2844
2838
|
_enum: string[];
|
|
2845
2839
|
};
|
|
2846
2840
|
/**
|
|
2847
|
-
*
|
|
2841
|
+
* Lookup323: pallet_transaction_payment::Releases
|
|
2848
2842
|
**/
|
|
2849
2843
|
PalletTransactionPaymentReleases: {
|
|
2850
2844
|
_enum: string[];
|
|
2851
2845
|
};
|
|
2852
2846
|
/**
|
|
2853
|
-
*
|
|
2847
|
+
* Lookup324: pallet_sudo::pallet::Call<T>
|
|
2854
2848
|
**/
|
|
2855
2849
|
PalletSudoCall: {
|
|
2856
2850
|
_enum: {
|
|
@@ -2875,7 +2869,7 @@ declare const _default: {
|
|
|
2875
2869
|
};
|
|
2876
2870
|
};
|
|
2877
2871
|
/**
|
|
2878
|
-
*
|
|
2872
|
+
* Lookup326: pallet_collator_selection::pallet::Call<T>
|
|
2879
2873
|
**/
|
|
2880
2874
|
PalletCollatorSelectionCall: {
|
|
2881
2875
|
_enum: {
|
|
@@ -2909,7 +2903,7 @@ declare const _default: {
|
|
|
2909
2903
|
};
|
|
2910
2904
|
};
|
|
2911
2905
|
/**
|
|
2912
|
-
*
|
|
2906
|
+
* Lookup327: pallet_session::pallet::Call<T>
|
|
2913
2907
|
**/
|
|
2914
2908
|
PalletSessionCall: {
|
|
2915
2909
|
_enum: {
|
|
@@ -2924,17 +2918,17 @@ declare const _default: {
|
|
|
2924
2918
|
};
|
|
2925
2919
|
};
|
|
2926
2920
|
/**
|
|
2927
|
-
*
|
|
2921
|
+
* Lookup328: sh_parachain_runtime::SessionKeys
|
|
2928
2922
|
**/
|
|
2929
2923
|
ShParachainRuntimeSessionKeys: {
|
|
2930
2924
|
aura: string;
|
|
2931
2925
|
};
|
|
2932
2926
|
/**
|
|
2933
|
-
*
|
|
2927
|
+
* Lookup329: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
2934
2928
|
**/
|
|
2935
2929
|
SpConsensusAuraSr25519AppSr25519Public: string;
|
|
2936
2930
|
/**
|
|
2937
|
-
*
|
|
2931
|
+
* Lookup330: cumulus_pallet_xcmp_queue::pallet::Call<T>
|
|
2938
2932
|
**/
|
|
2939
2933
|
CumulusPalletXcmpQueueCall: {
|
|
2940
2934
|
_enum: {
|
|
@@ -2962,7 +2956,7 @@ declare const _default: {
|
|
|
2962
2956
|
};
|
|
2963
2957
|
};
|
|
2964
2958
|
/**
|
|
2965
|
-
*
|
|
2959
|
+
* Lookup331: pallet_xcm::pallet::Call<T>
|
|
2966
2960
|
**/
|
|
2967
2961
|
PalletXcmCall: {
|
|
2968
2962
|
_enum: {
|
|
@@ -3039,7 +3033,7 @@ declare const _default: {
|
|
|
3039
3033
|
};
|
|
3040
3034
|
};
|
|
3041
3035
|
/**
|
|
3042
|
-
*
|
|
3036
|
+
* Lookup332: xcm::VersionedXcm<RuntimeCall>
|
|
3043
3037
|
**/
|
|
3044
3038
|
XcmVersionedXcm: {
|
|
3045
3039
|
_enum: {
|
|
@@ -3052,11 +3046,11 @@ declare const _default: {
|
|
|
3052
3046
|
};
|
|
3053
3047
|
};
|
|
3054
3048
|
/**
|
|
3055
|
-
*
|
|
3049
|
+
* Lookup333: xcm::v3::Xcm<Call>
|
|
3056
3050
|
**/
|
|
3057
3051
|
XcmV3Xcm: string;
|
|
3058
3052
|
/**
|
|
3059
|
-
*
|
|
3053
|
+
* Lookup335: xcm::v3::Instruction<Call>
|
|
3060
3054
|
**/
|
|
3061
3055
|
XcmV3Instruction: {
|
|
3062
3056
|
_enum: {
|
|
@@ -3198,7 +3192,7 @@ declare const _default: {
|
|
|
3198
3192
|
};
|
|
3199
3193
|
};
|
|
3200
3194
|
/**
|
|
3201
|
-
*
|
|
3195
|
+
* Lookup336: xcm::v3::Response
|
|
3202
3196
|
**/
|
|
3203
3197
|
XcmV3Response: {
|
|
3204
3198
|
_enum: {
|
|
@@ -3211,7 +3205,7 @@ declare const _default: {
|
|
|
3211
3205
|
};
|
|
3212
3206
|
};
|
|
3213
3207
|
/**
|
|
3214
|
-
*
|
|
3208
|
+
* Lookup339: xcm::v3::traits::Error
|
|
3215
3209
|
**/
|
|
3216
3210
|
XcmV3TraitsError: {
|
|
3217
3211
|
_enum: {
|
|
@@ -3258,7 +3252,7 @@ declare const _default: {
|
|
|
3258
3252
|
};
|
|
3259
3253
|
};
|
|
3260
3254
|
/**
|
|
3261
|
-
*
|
|
3255
|
+
* Lookup341: xcm::v3::PalletInfo
|
|
3262
3256
|
**/
|
|
3263
3257
|
XcmV3PalletInfo: {
|
|
3264
3258
|
index: string;
|
|
@@ -3269,7 +3263,7 @@ declare const _default: {
|
|
|
3269
3263
|
patch: string;
|
|
3270
3264
|
};
|
|
3271
3265
|
/**
|
|
3272
|
-
*
|
|
3266
|
+
* Lookup345: xcm::v3::QueryResponseInfo
|
|
3273
3267
|
**/
|
|
3274
3268
|
XcmV3QueryResponseInfo: {
|
|
3275
3269
|
destination: string;
|
|
@@ -3277,7 +3271,7 @@ declare const _default: {
|
|
|
3277
3271
|
maxWeight: string;
|
|
3278
3272
|
};
|
|
3279
3273
|
/**
|
|
3280
|
-
*
|
|
3274
|
+
* Lookup346: xcm::v3::multiasset::MultiAssetFilter
|
|
3281
3275
|
**/
|
|
3282
3276
|
XcmV3MultiassetMultiAssetFilter: {
|
|
3283
3277
|
_enum: {
|
|
@@ -3286,7 +3280,7 @@ declare const _default: {
|
|
|
3286
3280
|
};
|
|
3287
3281
|
};
|
|
3288
3282
|
/**
|
|
3289
|
-
*
|
|
3283
|
+
* Lookup347: xcm::v3::multiasset::WildMultiAsset
|
|
3290
3284
|
**/
|
|
3291
3285
|
XcmV3MultiassetWildMultiAsset: {
|
|
3292
3286
|
_enum: {
|
|
@@ -3304,17 +3298,17 @@ declare const _default: {
|
|
|
3304
3298
|
};
|
|
3305
3299
|
};
|
|
3306
3300
|
/**
|
|
3307
|
-
*
|
|
3301
|
+
* Lookup348: xcm::v3::multiasset::WildFungibility
|
|
3308
3302
|
**/
|
|
3309
3303
|
XcmV3MultiassetWildFungibility: {
|
|
3310
3304
|
_enum: string[];
|
|
3311
3305
|
};
|
|
3312
3306
|
/**
|
|
3313
|
-
*
|
|
3307
|
+
* Lookup349: staging_xcm::v4::Xcm<Call>
|
|
3314
3308
|
**/
|
|
3315
3309
|
StagingXcmV4Xcm: string;
|
|
3316
3310
|
/**
|
|
3317
|
-
*
|
|
3311
|
+
* Lookup351: staging_xcm::v4::Instruction<Call>
|
|
3318
3312
|
**/
|
|
3319
3313
|
StagingXcmV4Instruction: {
|
|
3320
3314
|
_enum: {
|
|
@@ -3456,7 +3450,7 @@ declare const _default: {
|
|
|
3456
3450
|
};
|
|
3457
3451
|
};
|
|
3458
3452
|
/**
|
|
3459
|
-
*
|
|
3453
|
+
* Lookup352: staging_xcm::v4::Response
|
|
3460
3454
|
**/
|
|
3461
3455
|
StagingXcmV4Response: {
|
|
3462
3456
|
_enum: {
|
|
@@ -3469,7 +3463,7 @@ declare const _default: {
|
|
|
3469
3463
|
};
|
|
3470
3464
|
};
|
|
3471
3465
|
/**
|
|
3472
|
-
*
|
|
3466
|
+
* Lookup354: staging_xcm::v4::PalletInfo
|
|
3473
3467
|
**/
|
|
3474
3468
|
StagingXcmV4PalletInfo: {
|
|
3475
3469
|
index: string;
|
|
@@ -3480,7 +3474,7 @@ declare const _default: {
|
|
|
3480
3474
|
patch: string;
|
|
3481
3475
|
};
|
|
3482
3476
|
/**
|
|
3483
|
-
*
|
|
3477
|
+
* Lookup358: staging_xcm::v4::QueryResponseInfo
|
|
3484
3478
|
**/
|
|
3485
3479
|
StagingXcmV4QueryResponseInfo: {
|
|
3486
3480
|
destination: string;
|
|
@@ -3488,7 +3482,7 @@ declare const _default: {
|
|
|
3488
3482
|
maxWeight: string;
|
|
3489
3483
|
};
|
|
3490
3484
|
/**
|
|
3491
|
-
*
|
|
3485
|
+
* Lookup359: staging_xcm::v4::asset::AssetFilter
|
|
3492
3486
|
**/
|
|
3493
3487
|
StagingXcmV4AssetAssetFilter: {
|
|
3494
3488
|
_enum: {
|
|
@@ -3497,7 +3491,7 @@ declare const _default: {
|
|
|
3497
3491
|
};
|
|
3498
3492
|
};
|
|
3499
3493
|
/**
|
|
3500
|
-
*
|
|
3494
|
+
* Lookup360: staging_xcm::v4::asset::WildAsset
|
|
3501
3495
|
**/
|
|
3502
3496
|
StagingXcmV4AssetWildAsset: {
|
|
3503
3497
|
_enum: {
|
|
@@ -3515,13 +3509,13 @@ declare const _default: {
|
|
|
3515
3509
|
};
|
|
3516
3510
|
};
|
|
3517
3511
|
/**
|
|
3518
|
-
*
|
|
3512
|
+
* Lookup361: staging_xcm::v4::asset::WildFungibility
|
|
3519
3513
|
**/
|
|
3520
3514
|
StagingXcmV4AssetWildFungibility: {
|
|
3521
3515
|
_enum: string[];
|
|
3522
3516
|
};
|
|
3523
3517
|
/**
|
|
3524
|
-
*
|
|
3518
|
+
* Lookup373: staging_xcm_executor::traits::asset_transfer::TransferType
|
|
3525
3519
|
**/
|
|
3526
3520
|
StagingXcmExecutorAssetTransferTransferType: {
|
|
3527
3521
|
_enum: {
|
|
@@ -3532,7 +3526,7 @@ declare const _default: {
|
|
|
3532
3526
|
};
|
|
3533
3527
|
};
|
|
3534
3528
|
/**
|
|
3535
|
-
*
|
|
3529
|
+
* Lookup374: xcm::VersionedAssetId
|
|
3536
3530
|
**/
|
|
3537
3531
|
XcmVersionedAssetId: {
|
|
3538
3532
|
_enum: {
|
|
@@ -3545,11 +3539,11 @@ declare const _default: {
|
|
|
3545
3539
|
};
|
|
3546
3540
|
};
|
|
3547
3541
|
/**
|
|
3548
|
-
*
|
|
3542
|
+
* Lookup375: cumulus_pallet_xcm::pallet::Call<T>
|
|
3549
3543
|
**/
|
|
3550
3544
|
CumulusPalletXcmCall: string;
|
|
3551
3545
|
/**
|
|
3552
|
-
*
|
|
3546
|
+
* Lookup376: pallet_message_queue::pallet::Call<T>
|
|
3553
3547
|
**/
|
|
3554
3548
|
PalletMessageQueueCall: {
|
|
3555
3549
|
_enum: {
|
|
@@ -3566,7 +3560,7 @@ declare const _default: {
|
|
|
3566
3560
|
};
|
|
3567
3561
|
};
|
|
3568
3562
|
/**
|
|
3569
|
-
*
|
|
3563
|
+
* Lookup377: pallet_storage_providers::pallet::Call<T>
|
|
3570
3564
|
**/
|
|
3571
3565
|
PalletStorageProvidersCall: {
|
|
3572
3566
|
_enum: {
|
|
@@ -3637,7 +3631,7 @@ declare const _default: {
|
|
|
3637
3631
|
};
|
|
3638
3632
|
};
|
|
3639
3633
|
/**
|
|
3640
|
-
*
|
|
3634
|
+
* Lookup378: pallet_file_system::pallet::Call<T>
|
|
3641
3635
|
**/
|
|
3642
3636
|
PalletFileSystemCall: {
|
|
3643
3637
|
_enum: {
|
|
@@ -3737,35 +3731,26 @@ declare const _default: {
|
|
|
3737
3731
|
size_: string;
|
|
3738
3732
|
fingerprint: string;
|
|
3739
3733
|
};
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
size_: string;
|
|
3743
|
-
};
|
|
3744
|
-
fileOwner: string;
|
|
3745
|
-
signedIntention: string;
|
|
3746
|
-
signature: string;
|
|
3747
|
-
bucketId: string;
|
|
3748
|
-
location: string;
|
|
3749
|
-
size_: string;
|
|
3750
|
-
fingerprint: string;
|
|
3734
|
+
delete_files: {
|
|
3735
|
+
fileDeletions: string;
|
|
3751
3736
|
bspId: string;
|
|
3752
3737
|
forestProof: string;
|
|
3753
3738
|
};
|
|
3754
|
-
|
|
3755
|
-
|
|
3739
|
+
delete_files_for_incomplete_storage_request: {
|
|
3740
|
+
fileKeys: string;
|
|
3756
3741
|
bspId: string;
|
|
3757
3742
|
forestProof: string;
|
|
3758
3743
|
};
|
|
3759
3744
|
};
|
|
3760
3745
|
};
|
|
3761
3746
|
/**
|
|
3762
|
-
*
|
|
3747
|
+
* Lookup379: pallet_file_system::types::BucketMoveRequestResponse
|
|
3763
3748
|
**/
|
|
3764
3749
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
3765
3750
|
_enum: string[];
|
|
3766
3751
|
};
|
|
3767
3752
|
/**
|
|
3768
|
-
*
|
|
3753
|
+
* Lookup380: pallet_file_system::types::ReplicationTarget<T>
|
|
3769
3754
|
**/
|
|
3770
3755
|
PalletFileSystemReplicationTarget: {
|
|
3771
3756
|
_enum: {
|
|
@@ -3778,7 +3763,7 @@ declare const _default: {
|
|
|
3778
3763
|
};
|
|
3779
3764
|
};
|
|
3780
3765
|
/**
|
|
3781
|
-
*
|
|
3766
|
+
* Lookup382: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
3782
3767
|
**/
|
|
3783
3768
|
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
3784
3769
|
bucketId: string;
|
|
@@ -3786,28 +3771,43 @@ declare const _default: {
|
|
|
3786
3771
|
reject: string;
|
|
3787
3772
|
};
|
|
3788
3773
|
/**
|
|
3789
|
-
*
|
|
3774
|
+
* Lookup384: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
3790
3775
|
**/
|
|
3791
3776
|
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
3792
3777
|
fileKeysAndProofs: string;
|
|
3793
3778
|
forestProof: string;
|
|
3794
3779
|
};
|
|
3795
3780
|
/**
|
|
3796
|
-
*
|
|
3781
|
+
* Lookup386: pallet_file_system::types::FileKeyWithProof<T>
|
|
3797
3782
|
**/
|
|
3798
3783
|
PalletFileSystemFileKeyWithProof: {
|
|
3799
3784
|
fileKey: string;
|
|
3800
3785
|
proof: string;
|
|
3801
3786
|
};
|
|
3802
3787
|
/**
|
|
3803
|
-
*
|
|
3788
|
+
* Lookup388: pallet_file_system::types::RejectedStorageRequest<T>
|
|
3804
3789
|
**/
|
|
3805
3790
|
PalletFileSystemRejectedStorageRequest: {
|
|
3806
3791
|
fileKey: string;
|
|
3807
3792
|
reason: string;
|
|
3808
3793
|
};
|
|
3809
3794
|
/**
|
|
3810
|
-
*
|
|
3795
|
+
* Lookup391: pallet_file_system::types::FileDeletionRequest<T>
|
|
3796
|
+
**/
|
|
3797
|
+
PalletFileSystemFileDeletionRequest: {
|
|
3798
|
+
_alias: {
|
|
3799
|
+
size_: string;
|
|
3800
|
+
};
|
|
3801
|
+
fileOwner: string;
|
|
3802
|
+
signedIntention: string;
|
|
3803
|
+
signature: string;
|
|
3804
|
+
bucketId: string;
|
|
3805
|
+
location: string;
|
|
3806
|
+
size_: string;
|
|
3807
|
+
fingerprint: string;
|
|
3808
|
+
};
|
|
3809
|
+
/**
|
|
3810
|
+
* Lookup393: pallet_proofs_dealer::pallet::Call<T>
|
|
3811
3811
|
**/
|
|
3812
3812
|
PalletProofsDealerCall: {
|
|
3813
3813
|
_enum: {
|
|
@@ -3831,13 +3831,13 @@ declare const _default: {
|
|
|
3831
3831
|
};
|
|
3832
3832
|
};
|
|
3833
3833
|
/**
|
|
3834
|
-
*
|
|
3834
|
+
* Lookup394: pallet_randomness::pallet::Call<T>
|
|
3835
3835
|
**/
|
|
3836
3836
|
PalletRandomnessCall: {
|
|
3837
3837
|
_enum: string[];
|
|
3838
3838
|
};
|
|
3839
3839
|
/**
|
|
3840
|
-
*
|
|
3840
|
+
* Lookup395: pallet_payment_streams::pallet::Call<T>
|
|
3841
3841
|
**/
|
|
3842
3842
|
PalletPaymentStreamsCall: {
|
|
3843
3843
|
_enum: {
|
|
@@ -3882,7 +3882,7 @@ declare const _default: {
|
|
|
3882
3882
|
};
|
|
3883
3883
|
};
|
|
3884
3884
|
/**
|
|
3885
|
-
*
|
|
3885
|
+
* Lookup396: pallet_bucket_nfts::pallet::Call<T>
|
|
3886
3886
|
**/
|
|
3887
3887
|
PalletBucketNftsCall: {
|
|
3888
3888
|
_enum: {
|
|
@@ -3900,7 +3900,7 @@ declare const _default: {
|
|
|
3900
3900
|
};
|
|
3901
3901
|
};
|
|
3902
3902
|
/**
|
|
3903
|
-
*
|
|
3903
|
+
* Lookup398: pallet_nfts::pallet::Call<T, I>
|
|
3904
3904
|
**/
|
|
3905
3905
|
PalletNftsCall: {
|
|
3906
3906
|
_enum: {
|
|
@@ -4097,7 +4097,7 @@ declare const _default: {
|
|
|
4097
4097
|
};
|
|
4098
4098
|
};
|
|
4099
4099
|
/**
|
|
4100
|
-
*
|
|
4100
|
+
* Lookup399: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
4101
4101
|
**/
|
|
4102
4102
|
PalletNftsCollectionConfig: {
|
|
4103
4103
|
settings: string;
|
|
@@ -4105,13 +4105,13 @@ declare const _default: {
|
|
|
4105
4105
|
mintSettings: string;
|
|
4106
4106
|
};
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* Lookup401: pallet_nfts::types::CollectionSetting
|
|
4109
4109
|
**/
|
|
4110
4110
|
PalletNftsCollectionSetting: {
|
|
4111
4111
|
_enum: string[];
|
|
4112
4112
|
};
|
|
4113
4113
|
/**
|
|
4114
|
-
*
|
|
4114
|
+
* Lookup402: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
4115
4115
|
**/
|
|
4116
4116
|
PalletNftsMintSettings: {
|
|
4117
4117
|
mintType: string;
|
|
@@ -4121,7 +4121,7 @@ declare const _default: {
|
|
|
4121
4121
|
defaultItemSettings: string;
|
|
4122
4122
|
};
|
|
4123
4123
|
/**
|
|
4124
|
-
*
|
|
4124
|
+
* Lookup403: pallet_nfts::types::MintType<CollectionId>
|
|
4125
4125
|
**/
|
|
4126
4126
|
PalletNftsMintType: {
|
|
4127
4127
|
_enum: {
|
|
@@ -4131,13 +4131,13 @@ declare const _default: {
|
|
|
4131
4131
|
};
|
|
4132
4132
|
};
|
|
4133
4133
|
/**
|
|
4134
|
-
*
|
|
4134
|
+
* Lookup406: pallet_nfts::types::ItemSetting
|
|
4135
4135
|
**/
|
|
4136
4136
|
PalletNftsItemSetting: {
|
|
4137
4137
|
_enum: string[];
|
|
4138
4138
|
};
|
|
4139
4139
|
/**
|
|
4140
|
-
*
|
|
4140
|
+
* Lookup407: pallet_nfts::types::DestroyWitness
|
|
4141
4141
|
**/
|
|
4142
4142
|
PalletNftsDestroyWitness: {
|
|
4143
4143
|
itemMetadatas: string;
|
|
@@ -4145,26 +4145,26 @@ declare const _default: {
|
|
|
4145
4145
|
attributes: string;
|
|
4146
4146
|
};
|
|
4147
4147
|
/**
|
|
4148
|
-
*
|
|
4148
|
+
* Lookup409: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
4149
4149
|
**/
|
|
4150
4150
|
PalletNftsMintWitness: {
|
|
4151
4151
|
ownedItem: string;
|
|
4152
4152
|
mintPrice: string;
|
|
4153
4153
|
};
|
|
4154
4154
|
/**
|
|
4155
|
-
*
|
|
4155
|
+
* Lookup410: pallet_nfts::types::ItemConfig
|
|
4156
4156
|
**/
|
|
4157
4157
|
PalletNftsItemConfig: {
|
|
4158
4158
|
settings: string;
|
|
4159
4159
|
};
|
|
4160
4160
|
/**
|
|
4161
|
-
*
|
|
4161
|
+
* Lookup412: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
4162
4162
|
**/
|
|
4163
4163
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
4164
4164
|
accountAttributes: string;
|
|
4165
4165
|
};
|
|
4166
4166
|
/**
|
|
4167
|
-
*
|
|
4167
|
+
* Lookup414: pallet_nfts::types::ItemTip<CollectionId, ItemId, sp_core::crypto::AccountId32, Amount>
|
|
4168
4168
|
**/
|
|
4169
4169
|
PalletNftsItemTip: {
|
|
4170
4170
|
collection: string;
|
|
@@ -4173,7 +4173,7 @@ declare const _default: {
|
|
|
4173
4173
|
amount: string;
|
|
4174
4174
|
};
|
|
4175
4175
|
/**
|
|
4176
|
-
*
|
|
4176
|
+
* Lookup416: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline, Balance>
|
|
4177
4177
|
**/
|
|
4178
4178
|
PalletNftsPreSignedMint: {
|
|
4179
4179
|
collection: string;
|
|
@@ -4185,7 +4185,7 @@ declare const _default: {
|
|
|
4185
4185
|
mintPrice: string;
|
|
4186
4186
|
};
|
|
4187
4187
|
/**
|
|
4188
|
-
*
|
|
4188
|
+
* Lookup417: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline>
|
|
4189
4189
|
**/
|
|
4190
4190
|
PalletNftsPreSignedAttributes: {
|
|
4191
4191
|
collection: string;
|
|
@@ -4195,7 +4195,7 @@ declare const _default: {
|
|
|
4195
4195
|
deadline: string;
|
|
4196
4196
|
};
|
|
4197
4197
|
/**
|
|
4198
|
-
*
|
|
4198
|
+
* Lookup418: pallet_parameters::pallet::Call<T>
|
|
4199
4199
|
**/
|
|
4200
4200
|
PalletParametersCall: {
|
|
4201
4201
|
_enum: {
|
|
@@ -4205,7 +4205,7 @@ declare const _default: {
|
|
|
4205
4205
|
};
|
|
4206
4206
|
};
|
|
4207
4207
|
/**
|
|
4208
|
-
*
|
|
4208
|
+
* Lookup419: sh_parachain_runtime::configs::runtime_params::RuntimeParameters
|
|
4209
4209
|
**/
|
|
4210
4210
|
ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
4211
4211
|
_enum: {
|
|
@@ -4213,7 +4213,7 @@ declare const _default: {
|
|
|
4213
4213
|
};
|
|
4214
4214
|
};
|
|
4215
4215
|
/**
|
|
4216
|
-
*
|
|
4216
|
+
* Lookup420: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
4217
4217
|
**/
|
|
4218
4218
|
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
4219
4219
|
_enum: {
|
|
@@ -4250,36 +4250,36 @@ declare const _default: {
|
|
|
4250
4250
|
};
|
|
4251
4251
|
};
|
|
4252
4252
|
/**
|
|
4253
|
-
*
|
|
4253
|
+
* Lookup422: pallet_sudo::pallet::Error<T>
|
|
4254
4254
|
**/
|
|
4255
4255
|
PalletSudoError: {
|
|
4256
4256
|
_enum: string[];
|
|
4257
4257
|
};
|
|
4258
4258
|
/**
|
|
4259
|
-
*
|
|
4259
|
+
* Lookup425: pallet_collator_selection::pallet::CandidateInfo<sp_core::crypto::AccountId32, Balance>
|
|
4260
4260
|
**/
|
|
4261
4261
|
PalletCollatorSelectionCandidateInfo: {
|
|
4262
4262
|
who: string;
|
|
4263
4263
|
deposit: string;
|
|
4264
4264
|
};
|
|
4265
4265
|
/**
|
|
4266
|
-
*
|
|
4266
|
+
* Lookup427: pallet_collator_selection::pallet::Error<T>
|
|
4267
4267
|
**/
|
|
4268
4268
|
PalletCollatorSelectionError: {
|
|
4269
4269
|
_enum: string[];
|
|
4270
4270
|
};
|
|
4271
4271
|
/**
|
|
4272
|
-
*
|
|
4272
|
+
* Lookup431: sp_core::crypto::KeyTypeId
|
|
4273
4273
|
**/
|
|
4274
4274
|
SpCoreCryptoKeyTypeId: string;
|
|
4275
4275
|
/**
|
|
4276
|
-
*
|
|
4276
|
+
* Lookup432: pallet_session::pallet::Error<T>
|
|
4277
4277
|
**/
|
|
4278
4278
|
PalletSessionError: {
|
|
4279
4279
|
_enum: string[];
|
|
4280
4280
|
};
|
|
4281
4281
|
/**
|
|
4282
|
-
*
|
|
4282
|
+
* Lookup441: cumulus_pallet_xcmp_queue::OutboundChannelDetails
|
|
4283
4283
|
**/
|
|
4284
4284
|
CumulusPalletXcmpQueueOutboundChannelDetails: {
|
|
4285
4285
|
recipient: string;
|
|
@@ -4289,13 +4289,13 @@ declare const _default: {
|
|
|
4289
4289
|
lastIndex: string;
|
|
4290
4290
|
};
|
|
4291
4291
|
/**
|
|
4292
|
-
*
|
|
4292
|
+
* Lookup442: cumulus_pallet_xcmp_queue::OutboundState
|
|
4293
4293
|
**/
|
|
4294
4294
|
CumulusPalletXcmpQueueOutboundState: {
|
|
4295
4295
|
_enum: string[];
|
|
4296
4296
|
};
|
|
4297
4297
|
/**
|
|
4298
|
-
*
|
|
4298
|
+
* Lookup446: cumulus_pallet_xcmp_queue::QueueConfigData
|
|
4299
4299
|
**/
|
|
4300
4300
|
CumulusPalletXcmpQueueQueueConfigData: {
|
|
4301
4301
|
suspendThreshold: string;
|
|
@@ -4303,13 +4303,13 @@ declare const _default: {
|
|
|
4303
4303
|
resumeThreshold: string;
|
|
4304
4304
|
};
|
|
4305
4305
|
/**
|
|
4306
|
-
*
|
|
4306
|
+
* Lookup447: cumulus_pallet_xcmp_queue::pallet::Error<T>
|
|
4307
4307
|
**/
|
|
4308
4308
|
CumulusPalletXcmpQueueError: {
|
|
4309
4309
|
_enum: string[];
|
|
4310
4310
|
};
|
|
4311
4311
|
/**
|
|
4312
|
-
*
|
|
4312
|
+
* Lookup448: pallet_xcm::pallet::QueryStatus<BlockNumber>
|
|
4313
4313
|
**/
|
|
4314
4314
|
PalletXcmQueryStatus: {
|
|
4315
4315
|
_enum: {
|
|
@@ -4330,7 +4330,7 @@ declare const _default: {
|
|
|
4330
4330
|
};
|
|
4331
4331
|
};
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* Lookup452: xcm::VersionedResponse
|
|
4334
4334
|
**/
|
|
4335
4335
|
XcmVersionedResponse: {
|
|
4336
4336
|
_enum: {
|
|
@@ -4343,7 +4343,7 @@ declare const _default: {
|
|
|
4343
4343
|
};
|
|
4344
4344
|
};
|
|
4345
4345
|
/**
|
|
4346
|
-
*
|
|
4346
|
+
* Lookup458: pallet_xcm::pallet::VersionMigrationStage
|
|
4347
4347
|
**/
|
|
4348
4348
|
PalletXcmVersionMigrationStage: {
|
|
4349
4349
|
_enum: {
|
|
@@ -4354,7 +4354,7 @@ declare const _default: {
|
|
|
4354
4354
|
};
|
|
4355
4355
|
};
|
|
4356
4356
|
/**
|
|
4357
|
-
*
|
|
4357
|
+
* Lookup460: pallet_xcm::pallet::RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>
|
|
4358
4358
|
**/
|
|
4359
4359
|
PalletXcmRemoteLockedFungibleRecord: {
|
|
4360
4360
|
amount: string;
|
|
@@ -4363,13 +4363,13 @@ declare const _default: {
|
|
|
4363
4363
|
consumers: string;
|
|
4364
4364
|
};
|
|
4365
4365
|
/**
|
|
4366
|
-
*
|
|
4366
|
+
* Lookup467: pallet_xcm::pallet::Error<T>
|
|
4367
4367
|
**/
|
|
4368
4368
|
PalletXcmError: {
|
|
4369
4369
|
_enum: string[];
|
|
4370
4370
|
};
|
|
4371
4371
|
/**
|
|
4372
|
-
*
|
|
4372
|
+
* Lookup468: pallet_message_queue::BookState<cumulus_primitives_core::AggregateMessageOrigin>
|
|
4373
4373
|
**/
|
|
4374
4374
|
PalletMessageQueueBookState: {
|
|
4375
4375
|
_alias: {
|
|
@@ -4383,14 +4383,14 @@ declare const _default: {
|
|
|
4383
4383
|
size_: string;
|
|
4384
4384
|
};
|
|
4385
4385
|
/**
|
|
4386
|
-
*
|
|
4386
|
+
* Lookup470: pallet_message_queue::Neighbours<cumulus_primitives_core::AggregateMessageOrigin>
|
|
4387
4387
|
**/
|
|
4388
4388
|
PalletMessageQueueNeighbours: {
|
|
4389
4389
|
prev: string;
|
|
4390
4390
|
next: string;
|
|
4391
4391
|
};
|
|
4392
4392
|
/**
|
|
4393
|
-
*
|
|
4393
|
+
* Lookup472: pallet_message_queue::Page<Size, HeapSize>
|
|
4394
4394
|
**/
|
|
4395
4395
|
PalletMessageQueuePage: {
|
|
4396
4396
|
remaining: string;
|
|
@@ -4401,20 +4401,20 @@ declare const _default: {
|
|
|
4401
4401
|
heap: string;
|
|
4402
4402
|
};
|
|
4403
4403
|
/**
|
|
4404
|
-
*
|
|
4404
|
+
* Lookup474: pallet_message_queue::pallet::Error<T>
|
|
4405
4405
|
**/
|
|
4406
4406
|
PalletMessageQueueError: {
|
|
4407
4407
|
_enum: string[];
|
|
4408
4408
|
};
|
|
4409
4409
|
/**
|
|
4410
|
-
*
|
|
4410
|
+
* Lookup475: pallet_storage_providers::types::SignUpRequest<T>
|
|
4411
4411
|
**/
|
|
4412
4412
|
PalletStorageProvidersSignUpRequest: {
|
|
4413
4413
|
spSignUpRequest: string;
|
|
4414
4414
|
at: string;
|
|
4415
4415
|
};
|
|
4416
4416
|
/**
|
|
4417
|
-
*
|
|
4417
|
+
* Lookup476: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
4418
4418
|
**/
|
|
4419
4419
|
PalletStorageProvidersSignUpRequestSpParams: {
|
|
4420
4420
|
_enum: {
|
|
@@ -4423,7 +4423,7 @@ declare const _default: {
|
|
|
4423
4423
|
};
|
|
4424
4424
|
};
|
|
4425
4425
|
/**
|
|
4426
|
-
*
|
|
4426
|
+
* Lookup477: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
4427
4427
|
**/
|
|
4428
4428
|
PalletStorageProvidersBackupStorageProvider: {
|
|
4429
4429
|
capacity: string;
|
|
@@ -4437,14 +4437,14 @@ declare const _default: {
|
|
|
4437
4437
|
signUpBlock: string;
|
|
4438
4438
|
};
|
|
4439
4439
|
/**
|
|
4440
|
-
*
|
|
4440
|
+
* Lookup478: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
4441
4441
|
**/
|
|
4442
4442
|
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
4443
4443
|
mspInfo: string;
|
|
4444
4444
|
valueProp: string;
|
|
4445
4445
|
};
|
|
4446
4446
|
/**
|
|
4447
|
-
*
|
|
4447
|
+
* Lookup479: pallet_storage_providers::types::MainStorageProvider<T>
|
|
4448
4448
|
**/
|
|
4449
4449
|
PalletStorageProvidersMainStorageProvider: {
|
|
4450
4450
|
capacity: string;
|
|
@@ -4458,7 +4458,7 @@ declare const _default: {
|
|
|
4458
4458
|
signUpBlock: string;
|
|
4459
4459
|
};
|
|
4460
4460
|
/**
|
|
4461
|
-
*
|
|
4461
|
+
* Lookup480: pallet_storage_providers::types::Bucket<T>
|
|
4462
4462
|
**/
|
|
4463
4463
|
PalletStorageProvidersBucket: {
|
|
4464
4464
|
_alias: {
|
|
@@ -4473,13 +4473,13 @@ declare const _default: {
|
|
|
4473
4473
|
valuePropId: string;
|
|
4474
4474
|
};
|
|
4475
4475
|
/**
|
|
4476
|
-
*
|
|
4476
|
+
* Lookup484: pallet_storage_providers::pallet::Error<T>
|
|
4477
4477
|
**/
|
|
4478
4478
|
PalletStorageProvidersError: {
|
|
4479
4479
|
_enum: string[];
|
|
4480
4480
|
};
|
|
4481
4481
|
/**
|
|
4482
|
-
*
|
|
4482
|
+
* Lookup485: pallet_file_system::types::StorageRequestMetadata<T>
|
|
4483
4483
|
**/
|
|
4484
4484
|
PalletFileSystemStorageRequestMetadata: {
|
|
4485
4485
|
_alias: {
|
|
@@ -4500,13 +4500,13 @@ declare const _default: {
|
|
|
4500
4500
|
depositPaid: string;
|
|
4501
4501
|
};
|
|
4502
4502
|
/**
|
|
4503
|
-
*
|
|
4503
|
+
* Lookup488: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
4504
4504
|
**/
|
|
4505
4505
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
4506
4506
|
confirmed: string;
|
|
4507
4507
|
};
|
|
4508
4508
|
/**
|
|
4509
|
-
*
|
|
4509
|
+
* Lookup490: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
4510
4510
|
**/
|
|
4511
4511
|
PalletFileSystemPendingFileDeletionRequest: {
|
|
4512
4512
|
user: string;
|
|
@@ -4517,7 +4517,7 @@ declare const _default: {
|
|
|
4517
4517
|
queuePriorityChallenge: string;
|
|
4518
4518
|
};
|
|
4519
4519
|
/**
|
|
4520
|
-
*
|
|
4520
|
+
* Lookup492: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
4521
4521
|
**/
|
|
4522
4522
|
PalletFileSystemPendingStopStoringRequest: {
|
|
4523
4523
|
tickWhenRequested: string;
|
|
@@ -4525,7 +4525,7 @@ declare const _default: {
|
|
|
4525
4525
|
fileSize: string;
|
|
4526
4526
|
};
|
|
4527
4527
|
/**
|
|
4528
|
-
*
|
|
4528
|
+
* Lookup493: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
4529
4529
|
**/
|
|
4530
4530
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
4531
4531
|
requester: string;
|
|
@@ -4533,7 +4533,7 @@ declare const _default: {
|
|
|
4533
4533
|
newValuePropId: string;
|
|
4534
4534
|
};
|
|
4535
4535
|
/**
|
|
4536
|
-
*
|
|
4536
|
+
* Lookup494: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
4537
4537
|
**/
|
|
4538
4538
|
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
4539
4539
|
owner: string;
|
|
@@ -4545,26 +4545,26 @@ declare const _default: {
|
|
|
4545
4545
|
pendingBucketRemoval: string;
|
|
4546
4546
|
};
|
|
4547
4547
|
/**
|
|
4548
|
-
*
|
|
4548
|
+
* Lookup496: pallet_file_system::pallet::Error<T>
|
|
4549
4549
|
**/
|
|
4550
4550
|
PalletFileSystemError: {
|
|
4551
4551
|
_enum: string[];
|
|
4552
4552
|
};
|
|
4553
4553
|
/**
|
|
4554
|
-
*
|
|
4554
|
+
* Lookup498: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
4555
4555
|
**/
|
|
4556
4556
|
PalletProofsDealerProofSubmissionRecord: {
|
|
4557
4557
|
lastTickProven: string;
|
|
4558
4558
|
nextTickToSubmitProofFor: string;
|
|
4559
4559
|
};
|
|
4560
4560
|
/**
|
|
4561
|
-
*
|
|
4561
|
+
* Lookup505: pallet_proofs_dealer::pallet::Error<T>
|
|
4562
4562
|
**/
|
|
4563
4563
|
PalletProofsDealerError: {
|
|
4564
4564
|
_enum: string[];
|
|
4565
4565
|
};
|
|
4566
4566
|
/**
|
|
4567
|
-
*
|
|
4567
|
+
* Lookup508: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
4568
4568
|
**/
|
|
4569
4569
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
4570
4570
|
rate: string;
|
|
@@ -4573,7 +4573,7 @@ declare const _default: {
|
|
|
4573
4573
|
outOfFundsTick: string;
|
|
4574
4574
|
};
|
|
4575
4575
|
/**
|
|
4576
|
-
*
|
|
4576
|
+
* Lookup509: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
4577
4577
|
**/
|
|
4578
4578
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
4579
4579
|
amountProvided: string;
|
|
@@ -4582,26 +4582,26 @@ declare const _default: {
|
|
|
4582
4582
|
outOfFundsTick: string;
|
|
4583
4583
|
};
|
|
4584
4584
|
/**
|
|
4585
|
-
*
|
|
4585
|
+
* Lookup510: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
4586
4586
|
**/
|
|
4587
4587
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
4588
4588
|
lastChargeableTick: string;
|
|
4589
4589
|
priceIndex: string;
|
|
4590
4590
|
};
|
|
4591
4591
|
/**
|
|
4592
|
-
*
|
|
4592
|
+
* Lookup511: pallet_payment_streams::pallet::Error<T>
|
|
4593
4593
|
**/
|
|
4594
4594
|
PalletPaymentStreamsError: {
|
|
4595
4595
|
_enum: string[];
|
|
4596
4596
|
};
|
|
4597
4597
|
/**
|
|
4598
|
-
*
|
|
4598
|
+
* Lookup512: pallet_bucket_nfts::pallet::Error<T>
|
|
4599
4599
|
**/
|
|
4600
4600
|
PalletBucketNftsError: {
|
|
4601
4601
|
_enum: string[];
|
|
4602
4602
|
};
|
|
4603
4603
|
/**
|
|
4604
|
-
*
|
|
4604
|
+
* Lookup513: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
|
|
4605
4605
|
**/
|
|
4606
4606
|
PalletNftsCollectionDetails: {
|
|
4607
4607
|
owner: string;
|
|
@@ -4612,13 +4612,13 @@ declare const _default: {
|
|
|
4612
4612
|
attributes: string;
|
|
4613
4613
|
};
|
|
4614
4614
|
/**
|
|
4615
|
-
*
|
|
4615
|
+
* Lookup518: pallet_nfts::types::CollectionRole
|
|
4616
4616
|
**/
|
|
4617
4617
|
PalletNftsCollectionRole: {
|
|
4618
4618
|
_enum: string[];
|
|
4619
4619
|
};
|
|
4620
4620
|
/**
|
|
4621
|
-
*
|
|
4621
|
+
* Lookup519: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
|
|
4622
4622
|
**/
|
|
4623
4623
|
PalletNftsItemDetails: {
|
|
4624
4624
|
owner: string;
|
|
@@ -4626,42 +4626,42 @@ declare const _default: {
|
|
|
4626
4626
|
deposit: string;
|
|
4627
4627
|
};
|
|
4628
4628
|
/**
|
|
4629
|
-
*
|
|
4629
|
+
* Lookup520: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4630
4630
|
**/
|
|
4631
4631
|
PalletNftsItemDeposit: {
|
|
4632
4632
|
account: string;
|
|
4633
4633
|
amount: string;
|
|
4634
4634
|
};
|
|
4635
4635
|
/**
|
|
4636
|
-
*
|
|
4636
|
+
* Lookup525: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
4637
4637
|
**/
|
|
4638
4638
|
PalletNftsCollectionMetadata: {
|
|
4639
4639
|
deposit: string;
|
|
4640
4640
|
data: string;
|
|
4641
4641
|
};
|
|
4642
4642
|
/**
|
|
4643
|
-
*
|
|
4643
|
+
* Lookup526: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
|
|
4644
4644
|
**/
|
|
4645
4645
|
PalletNftsItemMetadata: {
|
|
4646
4646
|
deposit: string;
|
|
4647
4647
|
data: string;
|
|
4648
4648
|
};
|
|
4649
4649
|
/**
|
|
4650
|
-
*
|
|
4650
|
+
* Lookup527: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4651
4651
|
**/
|
|
4652
4652
|
PalletNftsItemMetadataDeposit: {
|
|
4653
4653
|
account: string;
|
|
4654
4654
|
amount: string;
|
|
4655
4655
|
};
|
|
4656
4656
|
/**
|
|
4657
|
-
*
|
|
4657
|
+
* Lookup530: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4658
4658
|
**/
|
|
4659
4659
|
PalletNftsAttributeDeposit: {
|
|
4660
4660
|
account: string;
|
|
4661
4661
|
amount: string;
|
|
4662
4662
|
};
|
|
4663
4663
|
/**
|
|
4664
|
-
*
|
|
4664
|
+
* Lookup534: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
4665
4665
|
**/
|
|
4666
4666
|
PalletNftsPendingSwap: {
|
|
4667
4667
|
desiredCollection: string;
|
|
@@ -4670,63 +4670,63 @@ declare const _default: {
|
|
|
4670
4670
|
deadline: string;
|
|
4671
4671
|
};
|
|
4672
4672
|
/**
|
|
4673
|
-
*
|
|
4673
|
+
* Lookup536: pallet_nfts::types::PalletFeature
|
|
4674
4674
|
**/
|
|
4675
4675
|
PalletNftsPalletFeature: {
|
|
4676
4676
|
_enum: string[];
|
|
4677
4677
|
};
|
|
4678
4678
|
/**
|
|
4679
|
-
*
|
|
4679
|
+
* Lookup537: pallet_nfts::pallet::Error<T, I>
|
|
4680
4680
|
**/
|
|
4681
4681
|
PalletNftsError: {
|
|
4682
4682
|
_enum: string[];
|
|
4683
4683
|
};
|
|
4684
4684
|
/**
|
|
4685
|
-
*
|
|
4685
|
+
* Lookup540: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4686
4686
|
**/
|
|
4687
4687
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
4688
4688
|
/**
|
|
4689
|
-
*
|
|
4689
|
+
* Lookup541: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4690
4690
|
**/
|
|
4691
4691
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Lookup542: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4694
4694
|
**/
|
|
4695
4695
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
4696
4696
|
/**
|
|
4697
|
-
*
|
|
4697
|
+
* Lookup543: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4698
4698
|
**/
|
|
4699
4699
|
FrameSystemExtensionsCheckGenesis: string;
|
|
4700
4700
|
/**
|
|
4701
|
-
*
|
|
4701
|
+
* Lookup546: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4702
4702
|
**/
|
|
4703
4703
|
FrameSystemExtensionsCheckNonce: string;
|
|
4704
4704
|
/**
|
|
4705
|
-
*
|
|
4705
|
+
* Lookup547: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4706
4706
|
**/
|
|
4707
4707
|
FrameSystemExtensionsCheckWeight: string;
|
|
4708
4708
|
/**
|
|
4709
|
-
*
|
|
4709
|
+
* Lookup548: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4710
4710
|
**/
|
|
4711
4711
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
4712
4712
|
/**
|
|
4713
|
-
*
|
|
4713
|
+
* Lookup549: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
|
|
4714
4714
|
**/
|
|
4715
4715
|
CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: string;
|
|
4716
4716
|
/**
|
|
4717
|
-
*
|
|
4717
|
+
* Lookup550: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4718
4718
|
**/
|
|
4719
4719
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4720
4720
|
mode: string;
|
|
4721
4721
|
};
|
|
4722
4722
|
/**
|
|
4723
|
-
*
|
|
4723
|
+
* Lookup551: frame_metadata_hash_extension::Mode
|
|
4724
4724
|
**/
|
|
4725
4725
|
FrameMetadataHashExtensionMode: {
|
|
4726
4726
|
_enum: string[];
|
|
4727
4727
|
};
|
|
4728
4728
|
/**
|
|
4729
|
-
*
|
|
4729
|
+
* Lookup552: sh_parachain_runtime::Runtime
|
|
4730
4730
|
**/
|
|
4731
4731
|
ShParachainRuntimeRuntime: string;
|
|
4732
4732
|
};
|