@storagehub/api-augment 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/README.md +54 -0
  2. package/biome.json +10 -0
  3. package/dist/index.js +4 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/interfaces/augment-api-consts.js +6 -0
  6. package/dist/interfaces/augment-api-consts.js.map +1 -0
  7. package/dist/interfaces/augment-api-errors.js +6 -0
  8. package/dist/interfaces/augment-api-errors.js.map +1 -0
  9. package/dist/interfaces/augment-api-events.js +6 -0
  10. package/dist/interfaces/augment-api-events.js.map +1 -0
  11. package/dist/interfaces/augment-api-query.js +6 -0
  12. package/dist/interfaces/augment-api-query.js.map +1 -0
  13. package/dist/interfaces/augment-api-rpc.js +6 -0
  14. package/dist/interfaces/augment-api-rpc.js.map +1 -0
  15. package/dist/interfaces/augment-api-runtime.js +6 -0
  16. package/dist/interfaces/augment-api-runtime.js.map +1 -0
  17. package/dist/interfaces/augment-api-tx.js +6 -0
  18. package/dist/interfaces/augment-api-tx.js.map +1 -0
  19. package/dist/interfaces/augment-api.js +10 -0
  20. package/dist/interfaces/augment-api.js.map +1 -0
  21. package/dist/interfaces/augment-types.js +6 -0
  22. package/dist/interfaces/augment-types.js.map +1 -0
  23. package/dist/interfaces/definitions.js +2 -0
  24. package/dist/interfaces/definitions.js.map +1 -0
  25. package/dist/interfaces/index.js +4 -0
  26. package/dist/interfaces/index.js.map +1 -0
  27. package/dist/interfaces/lookup.js +4504 -0
  28. package/dist/interfaces/lookup.js.map +1 -0
  29. package/dist/interfaces/registry.js +6 -0
  30. package/dist/interfaces/registry.js.map +1 -0
  31. package/dist/interfaces/storagehubclient/definitions.js +7 -0
  32. package/dist/interfaces/storagehubclient/definitions.js.map +1 -0
  33. package/dist/interfaces/storagehubclient/index.js +4 -0
  34. package/dist/interfaces/storagehubclient/index.js.map +1 -0
  35. package/dist/interfaces/storagehubclient/runtime.js +152 -0
  36. package/dist/interfaces/storagehubclient/runtime.js.map +1 -0
  37. package/dist/interfaces/storagehubclient/types.js +4 -0
  38. package/dist/interfaces/storagehubclient/types.js.map +1 -0
  39. package/dist/interfaces/types-lookup.js +6 -0
  40. package/dist/interfaces/types-lookup.js.map +1 -0
  41. package/dist/interfaces/types.js +4 -0
  42. package/dist/interfaces/types.js.map +1 -0
  43. package/dist/types/index.d.ts +3 -0
  44. package/dist/types/interfaces/augment-api-consts.d.ts +556 -0
  45. package/dist/types/interfaces/augment-api-errors.d.ts +1195 -0
  46. package/dist/types/interfaces/augment-api-events.d.ts +2070 -0
  47. package/dist/types/interfaces/augment-api-query.d.ts +1439 -0
  48. package/dist/types/interfaces/augment-api-rpc.d.ts +718 -0
  49. package/dist/types/interfaces/augment-api-runtime.d.ts +441 -0
  50. package/dist/types/interfaces/augment-api-tx.d.ts +3039 -0
  51. package/dist/types/interfaces/augment-api.d.ts +7 -0
  52. package/dist/types/interfaces/augment-types.d.ts +1285 -0
  53. package/dist/types/interfaces/definitions.d.ts +1 -0
  54. package/dist/types/interfaces/index.d.ts +1 -0
  55. package/dist/types/interfaces/lookup.d.ts +4179 -0
  56. package/dist/types/interfaces/registry.d.ts +272 -0
  57. package/dist/types/interfaces/storagehubclient/definitions.d.ts +6 -0
  58. package/dist/types/interfaces/storagehubclient/index.d.ts +1 -0
  59. package/dist/types/interfaces/storagehubclient/runtime.d.ts +2 -0
  60. package/dist/types/interfaces/storagehubclient/types.d.ts +198 -0
  61. package/dist/types/interfaces/types-lookup.d.ts +4457 -0
  62. package/dist/types/interfaces/types.d.ts +1 -0
  63. package/package.json +38 -0
  64. package/scripts/scrapeMetadata.ts +77 -0
  65. package/src/index.ts +3 -0
  66. package/src/interfaces/augment-api-consts.ts +570 -0
  67. package/src/interfaces/augment-api-errors.ts +1203 -0
  68. package/src/interfaces/augment-api-events.ts +1836 -0
  69. package/src/interfaces/augment-api-query.ts +1975 -0
  70. package/src/interfaces/augment-api-rpc.ts +1201 -0
  71. package/src/interfaces/augment-api-runtime.ts +707 -0
  72. package/src/interfaces/augment-api-tx.ts +3418 -0
  73. package/src/interfaces/augment-api.ts +10 -0
  74. package/src/interfaces/augment-types.ts +2508 -0
  75. package/src/interfaces/definitions.ts +1 -0
  76. package/src/interfaces/index.ts +4 -0
  77. package/src/interfaces/lookup.ts +4511 -0
  78. package/src/interfaces/registry.ts +546 -0
  79. package/src/interfaces/storagehubclient/definitions.ts +7 -0
  80. package/src/interfaces/storagehubclient/index.ts +4 -0
  81. package/src/interfaces/storagehubclient/runtime.ts +156 -0
  82. package/src/interfaces/storagehubclient/types.ts +241 -0
  83. package/src/interfaces/types-lookup.ts +5623 -0
  84. package/src/interfaces/types.ts +4 -0
  85. package/storagehub.json +1 -0
  86. package/tsconfig.json +22 -0
@@ -0,0 +1,546 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ // import type lookup before we augment - in some environments
5
+ // this is required to allow for ambient/previous definitions
6
+ import "@polkadot/types/types/registry";
7
+
8
+ import type {
9
+ CumulusPalletParachainSystemCall,
10
+ CumulusPalletParachainSystemError,
11
+ CumulusPalletParachainSystemEvent,
12
+ CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot,
13
+ CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity,
14
+ CumulusPalletParachainSystemUnincludedSegmentAncestor,
15
+ CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate,
16
+ CumulusPalletParachainSystemUnincludedSegmentSegmentTracker,
17
+ CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth,
18
+ CumulusPalletXcmCall,
19
+ CumulusPalletXcmEvent,
20
+ CumulusPalletXcmpQueueCall,
21
+ CumulusPalletXcmpQueueError,
22
+ CumulusPalletXcmpQueueEvent,
23
+ CumulusPalletXcmpQueueOutboundChannelDetails,
24
+ CumulusPalletXcmpQueueOutboundState,
25
+ CumulusPalletXcmpQueueQueueConfigData,
26
+ CumulusPrimitivesCoreAggregateMessageOrigin,
27
+ CumulusPrimitivesParachainInherentParachainInherentData,
28
+ CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim,
29
+ FrameMetadataHashExtensionCheckMetadataHash,
30
+ FrameMetadataHashExtensionMode,
31
+ FrameSupportDispatchDispatchClass,
32
+ FrameSupportDispatchDispatchInfo,
33
+ FrameSupportDispatchPays,
34
+ FrameSupportDispatchPerDispatchClassU32,
35
+ FrameSupportDispatchPerDispatchClassWeight,
36
+ FrameSupportDispatchPerDispatchClassWeightsPerClass,
37
+ FrameSupportMessagesProcessMessageError,
38
+ FrameSupportTokensMiscBalanceStatus,
39
+ FrameSupportTokensMiscIdAmount,
40
+ FrameSystemAccountInfo,
41
+ FrameSystemCall,
42
+ FrameSystemCodeUpgradeAuthorization,
43
+ FrameSystemError,
44
+ FrameSystemEvent,
45
+ FrameSystemEventRecord,
46
+ FrameSystemExtensionsCheckGenesis,
47
+ FrameSystemExtensionsCheckNonZeroSender,
48
+ FrameSystemExtensionsCheckNonce,
49
+ FrameSystemExtensionsCheckSpecVersion,
50
+ FrameSystemExtensionsCheckTxVersion,
51
+ FrameSystemExtensionsCheckWeight,
52
+ FrameSystemLastRuntimeUpgradeInfo,
53
+ FrameSystemLimitsBlockLength,
54
+ FrameSystemLimitsBlockWeights,
55
+ FrameSystemLimitsWeightsPerClass,
56
+ FrameSystemPhase,
57
+ PalletBalancesAccountData,
58
+ PalletBalancesAdjustmentDirection,
59
+ PalletBalancesBalanceLock,
60
+ PalletBalancesCall,
61
+ PalletBalancesError,
62
+ PalletBalancesEvent,
63
+ PalletBalancesReasons,
64
+ PalletBalancesReserveData,
65
+ PalletBucketNftsCall,
66
+ PalletBucketNftsError,
67
+ PalletBucketNftsEvent,
68
+ PalletCollatorSelectionCall,
69
+ PalletCollatorSelectionCandidateInfo,
70
+ PalletCollatorSelectionError,
71
+ PalletCollatorSelectionEvent,
72
+ PalletFileSystemAcceptedStorageRequestParameters,
73
+ PalletFileSystemBatchResponses,
74
+ PalletFileSystemBucketMoveRequestResponse,
75
+ PalletFileSystemCall,
76
+ PalletFileSystemEitherAccountIdOrMspId,
77
+ PalletFileSystemError,
78
+ PalletFileSystemEvent,
79
+ PalletFileSystemMoveBucketRequestMetadata,
80
+ PalletFileSystemMspAcceptedBatchStorageRequests,
81
+ PalletFileSystemMspFailedBatchStorageRequests,
82
+ PalletFileSystemMspRejectedBatchStorageRequests,
83
+ PalletFileSystemMspRespondStorageRequestsResult,
84
+ PalletFileSystemMspStorageRequestResponse,
85
+ PalletFileSystemRejectedStorageRequestReason,
86
+ PalletFileSystemStorageRequestBspsMetadata,
87
+ PalletFileSystemStorageRequestMetadata,
88
+ PalletMessageQueueBookState,
89
+ PalletMessageQueueCall,
90
+ PalletMessageQueueError,
91
+ PalletMessageQueueEvent,
92
+ PalletMessageQueueNeighbours,
93
+ PalletMessageQueuePage,
94
+ PalletNftsAttributeDeposit,
95
+ PalletNftsAttributeNamespace,
96
+ PalletNftsCall,
97
+ PalletNftsCancelAttributesApprovalWitness,
98
+ PalletNftsCollectionConfig,
99
+ PalletNftsCollectionDetails,
100
+ PalletNftsCollectionMetadata,
101
+ PalletNftsCollectionRole,
102
+ PalletNftsCollectionSetting,
103
+ PalletNftsDestroyWitness,
104
+ PalletNftsError,
105
+ PalletNftsEvent,
106
+ PalletNftsItemConfig,
107
+ PalletNftsItemDeposit,
108
+ PalletNftsItemDetails,
109
+ PalletNftsItemMetadata,
110
+ PalletNftsItemMetadataDeposit,
111
+ PalletNftsItemSetting,
112
+ PalletNftsItemTip,
113
+ PalletNftsMintSettings,
114
+ PalletNftsMintType,
115
+ PalletNftsMintWitness,
116
+ PalletNftsPalletAttributes,
117
+ PalletNftsPalletFeature,
118
+ PalletNftsPendingSwap,
119
+ PalletNftsPreSignedAttributes,
120
+ PalletNftsPreSignedMint,
121
+ PalletNftsPriceDirection,
122
+ PalletNftsPriceWithDirection,
123
+ PalletParametersCall,
124
+ PalletParametersEvent,
125
+ PalletPaymentStreamsCall,
126
+ PalletPaymentStreamsDynamicRatePaymentStream,
127
+ PalletPaymentStreamsError,
128
+ PalletPaymentStreamsEvent,
129
+ PalletPaymentStreamsFixedRatePaymentStream,
130
+ PalletPaymentStreamsHoldReason,
131
+ PalletPaymentStreamsProviderLastChargeableInfo,
132
+ PalletProofsDealerCall,
133
+ PalletProofsDealerError,
134
+ PalletProofsDealerEvent,
135
+ PalletProofsDealerKeyProof,
136
+ PalletProofsDealerProof,
137
+ PalletRandomnessCall,
138
+ PalletRandomnessEvent,
139
+ PalletSessionCall,
140
+ PalletSessionError,
141
+ PalletSessionEvent,
142
+ PalletStorageProvidersBackupStorageProvider,
143
+ PalletStorageProvidersBucket,
144
+ PalletStorageProvidersCall,
145
+ PalletStorageProvidersError,
146
+ PalletStorageProvidersEvent,
147
+ PalletStorageProvidersHoldReason,
148
+ PalletStorageProvidersMainStorageProvider,
149
+ PalletStorageProvidersStorageProvider,
150
+ PalletStorageProvidersStorageProviderId,
151
+ PalletStorageProvidersValueProposition,
152
+ PalletSudoCall,
153
+ PalletSudoError,
154
+ PalletSudoEvent,
155
+ PalletTimestampCall,
156
+ PalletTransactionPaymentChargeTransactionPayment,
157
+ PalletTransactionPaymentEvent,
158
+ PalletTransactionPaymentReleases,
159
+ PalletXcmCall,
160
+ PalletXcmError,
161
+ PalletXcmEvent,
162
+ PalletXcmQueryStatus,
163
+ PalletXcmRemoteLockedFungibleRecord,
164
+ PalletXcmVersionMigrationStage,
165
+ PolkadotCorePrimitivesInboundDownwardMessage,
166
+ PolkadotCorePrimitivesInboundHrmpMessage,
167
+ PolkadotCorePrimitivesOutboundHrmpMessage,
168
+ PolkadotPrimitivesV7AbridgedHostConfiguration,
169
+ PolkadotPrimitivesV7AbridgedHrmpChannel,
170
+ PolkadotPrimitivesV7AsyncBackingAsyncBackingParams,
171
+ PolkadotPrimitivesV7PersistedValidationData,
172
+ PolkadotPrimitivesV7UpgradeGoAhead,
173
+ PolkadotPrimitivesV7UpgradeRestriction,
174
+ ShpFileKeyVerifierFileKeyProof,
175
+ ShpFileMetadataFileMetadata,
176
+ ShpFileMetadataFingerprint,
177
+ ShpTraitsTrieRemoveMutation,
178
+ SpArithmeticArithmeticError,
179
+ SpConsensusAuraSr25519AppSr25519Public,
180
+ SpCoreCryptoKeyTypeId,
181
+ SpRuntimeDigest,
182
+ SpRuntimeDigestDigestItem,
183
+ SpRuntimeDispatchError,
184
+ SpRuntimeModuleError,
185
+ SpRuntimeMultiSignature,
186
+ SpRuntimeTokenError,
187
+ SpRuntimeTransactionalError,
188
+ SpTrieStorageProof,
189
+ SpTrieStorageProofCompactProof,
190
+ SpVersionRuntimeVersion,
191
+ SpWeightsRuntimeDbWeight,
192
+ SpWeightsWeightV2Weight,
193
+ StagingParachainInfoCall,
194
+ StagingXcmExecutorAssetTransferTransferType,
195
+ StagingXcmV3MultiLocation,
196
+ StagingXcmV4Asset,
197
+ StagingXcmV4AssetAssetFilter,
198
+ StagingXcmV4AssetAssetId,
199
+ StagingXcmV4AssetAssetInstance,
200
+ StagingXcmV4AssetAssets,
201
+ StagingXcmV4AssetFungibility,
202
+ StagingXcmV4AssetWildAsset,
203
+ StagingXcmV4AssetWildFungibility,
204
+ StagingXcmV4Instruction,
205
+ StagingXcmV4Junction,
206
+ StagingXcmV4JunctionNetworkId,
207
+ StagingXcmV4Junctions,
208
+ StagingXcmV4Location,
209
+ StagingXcmV4PalletInfo,
210
+ StagingXcmV4QueryResponseInfo,
211
+ StagingXcmV4Response,
212
+ StagingXcmV4TraitsOutcome,
213
+ StagingXcmV4Xcm,
214
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod,
215
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod,
216
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters,
217
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey,
218
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue,
219
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize,
220
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod,
221
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParameters,
222
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersKey,
223
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersValue,
224
+ StorageHubRuntimeRuntime,
225
+ StorageHubRuntimeRuntimeHoldReason,
226
+ StorageHubRuntimeSessionKeys,
227
+ XcmDoubleEncoded,
228
+ XcmV2BodyId,
229
+ XcmV2BodyPart,
230
+ XcmV2Instruction,
231
+ XcmV2Junction,
232
+ XcmV2MultiAsset,
233
+ XcmV2MultiLocation,
234
+ XcmV2MultiassetAssetId,
235
+ XcmV2MultiassetAssetInstance,
236
+ XcmV2MultiassetFungibility,
237
+ XcmV2MultiassetMultiAssetFilter,
238
+ XcmV2MultiassetMultiAssets,
239
+ XcmV2MultiassetWildFungibility,
240
+ XcmV2MultiassetWildMultiAsset,
241
+ XcmV2MultilocationJunctions,
242
+ XcmV2NetworkId,
243
+ XcmV2OriginKind,
244
+ XcmV2Response,
245
+ XcmV2TraitsError,
246
+ XcmV2WeightLimit,
247
+ XcmV2Xcm,
248
+ XcmV3Instruction,
249
+ XcmV3Junction,
250
+ XcmV3JunctionBodyId,
251
+ XcmV3JunctionBodyPart,
252
+ XcmV3JunctionNetworkId,
253
+ XcmV3Junctions,
254
+ XcmV3MaybeErrorCode,
255
+ XcmV3MultiAsset,
256
+ XcmV3MultiassetAssetId,
257
+ XcmV3MultiassetAssetInstance,
258
+ XcmV3MultiassetFungibility,
259
+ XcmV3MultiassetMultiAssetFilter,
260
+ XcmV3MultiassetMultiAssets,
261
+ XcmV3MultiassetWildFungibility,
262
+ XcmV3MultiassetWildMultiAsset,
263
+ XcmV3OriginKind,
264
+ XcmV3PalletInfo,
265
+ XcmV3QueryResponseInfo,
266
+ XcmV3Response,
267
+ XcmV3TraitsError,
268
+ XcmV3WeightLimit,
269
+ XcmV3Xcm,
270
+ XcmVersionedAssetId,
271
+ XcmVersionedAssets,
272
+ XcmVersionedLocation,
273
+ XcmVersionedResponse,
274
+ XcmVersionedXcm
275
+ } from "@polkadot/types/lookup";
276
+
277
+ declare module "@polkadot/types/types/registry" {
278
+ interface InterfaceTypes {
279
+ CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
280
+ CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
281
+ CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
282
+ CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
283
+ CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
284
+ CumulusPalletParachainSystemUnincludedSegmentAncestor: CumulusPalletParachainSystemUnincludedSegmentAncestor;
285
+ CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate;
286
+ CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: CumulusPalletParachainSystemUnincludedSegmentSegmentTracker;
287
+ CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
288
+ CumulusPalletXcmCall: CumulusPalletXcmCall;
289
+ CumulusPalletXcmEvent: CumulusPalletXcmEvent;
290
+ CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
291
+ CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
292
+ CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
293
+ CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;
294
+ CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;
295
+ CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;
296
+ CumulusPrimitivesCoreAggregateMessageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin;
297
+ CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;
298
+ CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim;
299
+ FrameMetadataHashExtensionCheckMetadataHash: FrameMetadataHashExtensionCheckMetadataHash;
300
+ FrameMetadataHashExtensionMode: FrameMetadataHashExtensionMode;
301
+ FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
302
+ FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
303
+ FrameSupportDispatchPays: FrameSupportDispatchPays;
304
+ FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
305
+ FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
306
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
307
+ FrameSupportMessagesProcessMessageError: FrameSupportMessagesProcessMessageError;
308
+ FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
309
+ FrameSupportTokensMiscIdAmount: FrameSupportTokensMiscIdAmount;
310
+ FrameSystemAccountInfo: FrameSystemAccountInfo;
311
+ FrameSystemCall: FrameSystemCall;
312
+ FrameSystemCodeUpgradeAuthorization: FrameSystemCodeUpgradeAuthorization;
313
+ FrameSystemError: FrameSystemError;
314
+ FrameSystemEvent: FrameSystemEvent;
315
+ FrameSystemEventRecord: FrameSystemEventRecord;
316
+ FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;
317
+ FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender;
318
+ FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;
319
+ FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;
320
+ FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;
321
+ FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;
322
+ FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;
323
+ FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;
324
+ FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
325
+ FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
326
+ FrameSystemPhase: FrameSystemPhase;
327
+ PalletBalancesAccountData: PalletBalancesAccountData;
328
+ PalletBalancesAdjustmentDirection: PalletBalancesAdjustmentDirection;
329
+ PalletBalancesBalanceLock: PalletBalancesBalanceLock;
330
+ PalletBalancesCall: PalletBalancesCall;
331
+ PalletBalancesError: PalletBalancesError;
332
+ PalletBalancesEvent: PalletBalancesEvent;
333
+ PalletBalancesReasons: PalletBalancesReasons;
334
+ PalletBalancesReserveData: PalletBalancesReserveData;
335
+ PalletBucketNftsCall: PalletBucketNftsCall;
336
+ PalletBucketNftsError: PalletBucketNftsError;
337
+ PalletBucketNftsEvent: PalletBucketNftsEvent;
338
+ PalletCollatorSelectionCall: PalletCollatorSelectionCall;
339
+ PalletCollatorSelectionCandidateInfo: PalletCollatorSelectionCandidateInfo;
340
+ PalletCollatorSelectionError: PalletCollatorSelectionError;
341
+ PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
342
+ PalletFileSystemAcceptedStorageRequestParameters: PalletFileSystemAcceptedStorageRequestParameters;
343
+ PalletFileSystemBatchResponses: PalletFileSystemBatchResponses;
344
+ PalletFileSystemBucketMoveRequestResponse: PalletFileSystemBucketMoveRequestResponse;
345
+ PalletFileSystemCall: PalletFileSystemCall;
346
+ PalletFileSystemEitherAccountIdOrMspId: PalletFileSystemEitherAccountIdOrMspId;
347
+ PalletFileSystemError: PalletFileSystemError;
348
+ PalletFileSystemEvent: PalletFileSystemEvent;
349
+ PalletFileSystemMoveBucketRequestMetadata: PalletFileSystemMoveBucketRequestMetadata;
350
+ PalletFileSystemMspAcceptedBatchStorageRequests: PalletFileSystemMspAcceptedBatchStorageRequests;
351
+ PalletFileSystemMspFailedBatchStorageRequests: PalletFileSystemMspFailedBatchStorageRequests;
352
+ PalletFileSystemMspRejectedBatchStorageRequests: PalletFileSystemMspRejectedBatchStorageRequests;
353
+ PalletFileSystemMspRespondStorageRequestsResult: PalletFileSystemMspRespondStorageRequestsResult;
354
+ PalletFileSystemMspStorageRequestResponse: PalletFileSystemMspStorageRequestResponse;
355
+ PalletFileSystemRejectedStorageRequestReason: PalletFileSystemRejectedStorageRequestReason;
356
+ PalletFileSystemStorageRequestBspsMetadata: PalletFileSystemStorageRequestBspsMetadata;
357
+ PalletFileSystemStorageRequestMetadata: PalletFileSystemStorageRequestMetadata;
358
+ PalletMessageQueueBookState: PalletMessageQueueBookState;
359
+ PalletMessageQueueCall: PalletMessageQueueCall;
360
+ PalletMessageQueueError: PalletMessageQueueError;
361
+ PalletMessageQueueEvent: PalletMessageQueueEvent;
362
+ PalletMessageQueueNeighbours: PalletMessageQueueNeighbours;
363
+ PalletMessageQueuePage: PalletMessageQueuePage;
364
+ PalletNftsAttributeDeposit: PalletNftsAttributeDeposit;
365
+ PalletNftsAttributeNamespace: PalletNftsAttributeNamespace;
366
+ PalletNftsCall: PalletNftsCall;
367
+ PalletNftsCancelAttributesApprovalWitness: PalletNftsCancelAttributesApprovalWitness;
368
+ PalletNftsCollectionConfig: PalletNftsCollectionConfig;
369
+ PalletNftsCollectionDetails: PalletNftsCollectionDetails;
370
+ PalletNftsCollectionMetadata: PalletNftsCollectionMetadata;
371
+ PalletNftsCollectionRole: PalletNftsCollectionRole;
372
+ PalletNftsCollectionSetting: PalletNftsCollectionSetting;
373
+ PalletNftsDestroyWitness: PalletNftsDestroyWitness;
374
+ PalletNftsError: PalletNftsError;
375
+ PalletNftsEvent: PalletNftsEvent;
376
+ PalletNftsItemConfig: PalletNftsItemConfig;
377
+ PalletNftsItemDeposit: PalletNftsItemDeposit;
378
+ PalletNftsItemDetails: PalletNftsItemDetails;
379
+ PalletNftsItemMetadata: PalletNftsItemMetadata;
380
+ PalletNftsItemMetadataDeposit: PalletNftsItemMetadataDeposit;
381
+ PalletNftsItemSetting: PalletNftsItemSetting;
382
+ PalletNftsItemTip: PalletNftsItemTip;
383
+ PalletNftsMintSettings: PalletNftsMintSettings;
384
+ PalletNftsMintType: PalletNftsMintType;
385
+ PalletNftsMintWitness: PalletNftsMintWitness;
386
+ PalletNftsPalletAttributes: PalletNftsPalletAttributes;
387
+ PalletNftsPalletFeature: PalletNftsPalletFeature;
388
+ PalletNftsPendingSwap: PalletNftsPendingSwap;
389
+ PalletNftsPreSignedAttributes: PalletNftsPreSignedAttributes;
390
+ PalletNftsPreSignedMint: PalletNftsPreSignedMint;
391
+ PalletNftsPriceDirection: PalletNftsPriceDirection;
392
+ PalletNftsPriceWithDirection: PalletNftsPriceWithDirection;
393
+ PalletParametersCall: PalletParametersCall;
394
+ PalletParametersEvent: PalletParametersEvent;
395
+ PalletPaymentStreamsCall: PalletPaymentStreamsCall;
396
+ PalletPaymentStreamsDynamicRatePaymentStream: PalletPaymentStreamsDynamicRatePaymentStream;
397
+ PalletPaymentStreamsError: PalletPaymentStreamsError;
398
+ PalletPaymentStreamsEvent: PalletPaymentStreamsEvent;
399
+ PalletPaymentStreamsFixedRatePaymentStream: PalletPaymentStreamsFixedRatePaymentStream;
400
+ PalletPaymentStreamsHoldReason: PalletPaymentStreamsHoldReason;
401
+ PalletPaymentStreamsProviderLastChargeableInfo: PalletPaymentStreamsProviderLastChargeableInfo;
402
+ PalletProofsDealerCall: PalletProofsDealerCall;
403
+ PalletProofsDealerError: PalletProofsDealerError;
404
+ PalletProofsDealerEvent: PalletProofsDealerEvent;
405
+ PalletProofsDealerKeyProof: PalletProofsDealerKeyProof;
406
+ PalletProofsDealerProof: PalletProofsDealerProof;
407
+ PalletRandomnessCall: PalletRandomnessCall;
408
+ PalletRandomnessEvent: PalletRandomnessEvent;
409
+ PalletSessionCall: PalletSessionCall;
410
+ PalletSessionError: PalletSessionError;
411
+ PalletSessionEvent: PalletSessionEvent;
412
+ PalletStorageProvidersBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
413
+ PalletStorageProvidersBucket: PalletStorageProvidersBucket;
414
+ PalletStorageProvidersCall: PalletStorageProvidersCall;
415
+ PalletStorageProvidersError: PalletStorageProvidersError;
416
+ PalletStorageProvidersEvent: PalletStorageProvidersEvent;
417
+ PalletStorageProvidersHoldReason: PalletStorageProvidersHoldReason;
418
+ PalletStorageProvidersMainStorageProvider: PalletStorageProvidersMainStorageProvider;
419
+ PalletStorageProvidersStorageProvider: PalletStorageProvidersStorageProvider;
420
+ PalletStorageProvidersStorageProviderId: PalletStorageProvidersStorageProviderId;
421
+ PalletStorageProvidersValueProposition: PalletStorageProvidersValueProposition;
422
+ PalletSudoCall: PalletSudoCall;
423
+ PalletSudoError: PalletSudoError;
424
+ PalletSudoEvent: PalletSudoEvent;
425
+ PalletTimestampCall: PalletTimestampCall;
426
+ PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment;
427
+ PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
428
+ PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
429
+ PalletXcmCall: PalletXcmCall;
430
+ PalletXcmError: PalletXcmError;
431
+ PalletXcmEvent: PalletXcmEvent;
432
+ PalletXcmQueryStatus: PalletXcmQueryStatus;
433
+ PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;
434
+ PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;
435
+ PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
436
+ PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
437
+ PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
438
+ PolkadotPrimitivesV7AbridgedHostConfiguration: PolkadotPrimitivesV7AbridgedHostConfiguration;
439
+ PolkadotPrimitivesV7AbridgedHrmpChannel: PolkadotPrimitivesV7AbridgedHrmpChannel;
440
+ PolkadotPrimitivesV7AsyncBackingAsyncBackingParams: PolkadotPrimitivesV7AsyncBackingAsyncBackingParams;
441
+ PolkadotPrimitivesV7PersistedValidationData: PolkadotPrimitivesV7PersistedValidationData;
442
+ PolkadotPrimitivesV7UpgradeGoAhead: PolkadotPrimitivesV7UpgradeGoAhead;
443
+ PolkadotPrimitivesV7UpgradeRestriction: PolkadotPrimitivesV7UpgradeRestriction;
444
+ ShpFileKeyVerifierFileKeyProof: ShpFileKeyVerifierFileKeyProof;
445
+ ShpFileMetadataFileMetadata: ShpFileMetadataFileMetadata;
446
+ ShpFileMetadataFingerprint: ShpFileMetadataFingerprint;
447
+ ShpTraitsTrieRemoveMutation: ShpTraitsTrieRemoveMutation;
448
+ SpArithmeticArithmeticError: SpArithmeticArithmeticError;
449
+ SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
450
+ SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
451
+ SpRuntimeDigest: SpRuntimeDigest;
452
+ SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
453
+ SpRuntimeDispatchError: SpRuntimeDispatchError;
454
+ SpRuntimeModuleError: SpRuntimeModuleError;
455
+ SpRuntimeMultiSignature: SpRuntimeMultiSignature;
456
+ SpRuntimeTokenError: SpRuntimeTokenError;
457
+ SpRuntimeTransactionalError: SpRuntimeTransactionalError;
458
+ SpTrieStorageProof: SpTrieStorageProof;
459
+ SpTrieStorageProofCompactProof: SpTrieStorageProofCompactProof;
460
+ SpVersionRuntimeVersion: SpVersionRuntimeVersion;
461
+ SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
462
+ SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
463
+ StagingParachainInfoCall: StagingParachainInfoCall;
464
+ StagingXcmExecutorAssetTransferTransferType: StagingXcmExecutorAssetTransferTransferType;
465
+ StagingXcmV3MultiLocation: StagingXcmV3MultiLocation;
466
+ StagingXcmV4Asset: StagingXcmV4Asset;
467
+ StagingXcmV4AssetAssetFilter: StagingXcmV4AssetAssetFilter;
468
+ StagingXcmV4AssetAssetId: StagingXcmV4AssetAssetId;
469
+ StagingXcmV4AssetAssetInstance: StagingXcmV4AssetAssetInstance;
470
+ StagingXcmV4AssetAssets: StagingXcmV4AssetAssets;
471
+ StagingXcmV4AssetFungibility: StagingXcmV4AssetFungibility;
472
+ StagingXcmV4AssetWildAsset: StagingXcmV4AssetWildAsset;
473
+ StagingXcmV4AssetWildFungibility: StagingXcmV4AssetWildFungibility;
474
+ StagingXcmV4Instruction: StagingXcmV4Instruction;
475
+ StagingXcmV4Junction: StagingXcmV4Junction;
476
+ StagingXcmV4JunctionNetworkId: StagingXcmV4JunctionNetworkId;
477
+ StagingXcmV4Junctions: StagingXcmV4Junctions;
478
+ StagingXcmV4Location: StagingXcmV4Location;
479
+ StagingXcmV4PalletInfo: StagingXcmV4PalletInfo;
480
+ StagingXcmV4QueryResponseInfo: StagingXcmV4QueryResponseInfo;
481
+ StagingXcmV4Response: StagingXcmV4Response;
482
+ StagingXcmV4TraitsOutcome: StagingXcmV4TraitsOutcome;
483
+ StagingXcmV4Xcm: StagingXcmV4Xcm;
484
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod;
485
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod;
486
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
487
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey;
488
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue;
489
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize;
490
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod;
491
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParameters: StorageHubRuntimeConfigsRuntimeParamsRuntimeParameters;
492
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersKey: StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersKey;
493
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersValue: StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersValue;
494
+ StorageHubRuntimeRuntime: StorageHubRuntimeRuntime;
495
+ StorageHubRuntimeRuntimeHoldReason: StorageHubRuntimeRuntimeHoldReason;
496
+ StorageHubRuntimeSessionKeys: StorageHubRuntimeSessionKeys;
497
+ XcmDoubleEncoded: XcmDoubleEncoded;
498
+ XcmV2BodyId: XcmV2BodyId;
499
+ XcmV2BodyPart: XcmV2BodyPart;
500
+ XcmV2Instruction: XcmV2Instruction;
501
+ XcmV2Junction: XcmV2Junction;
502
+ XcmV2MultiAsset: XcmV2MultiAsset;
503
+ XcmV2MultiLocation: XcmV2MultiLocation;
504
+ XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;
505
+ XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;
506
+ XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;
507
+ XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;
508
+ XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;
509
+ XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;
510
+ XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;
511
+ XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;
512
+ XcmV2NetworkId: XcmV2NetworkId;
513
+ XcmV2OriginKind: XcmV2OriginKind;
514
+ XcmV2Response: XcmV2Response;
515
+ XcmV2TraitsError: XcmV2TraitsError;
516
+ XcmV2WeightLimit: XcmV2WeightLimit;
517
+ XcmV2Xcm: XcmV2Xcm;
518
+ XcmV3Instruction: XcmV3Instruction;
519
+ XcmV3Junction: XcmV3Junction;
520
+ XcmV3JunctionBodyId: XcmV3JunctionBodyId;
521
+ XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;
522
+ XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;
523
+ XcmV3Junctions: XcmV3Junctions;
524
+ XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;
525
+ XcmV3MultiAsset: XcmV3MultiAsset;
526
+ XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;
527
+ XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;
528
+ XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;
529
+ XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;
530
+ XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;
531
+ XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;
532
+ XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;
533
+ XcmV3OriginKind: XcmV3OriginKind;
534
+ XcmV3PalletInfo: XcmV3PalletInfo;
535
+ XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;
536
+ XcmV3Response: XcmV3Response;
537
+ XcmV3TraitsError: XcmV3TraitsError;
538
+ XcmV3WeightLimit: XcmV3WeightLimit;
539
+ XcmV3Xcm: XcmV3Xcm;
540
+ XcmVersionedAssetId: XcmVersionedAssetId;
541
+ XcmVersionedAssets: XcmVersionedAssets;
542
+ XcmVersionedLocation: XcmVersionedLocation;
543
+ XcmVersionedResponse: XcmVersionedResponse;
544
+ XcmVersionedXcm: XcmVersionedXcm;
545
+ } // InterfaceTypes
546
+ } // declare module
@@ -0,0 +1,7 @@
1
+ import { storageHubDefinitions } from "@storagehub/types-bundle";
2
+
3
+ export default {
4
+ types: storageHubDefinitions.types?.[0].types,
5
+ runtime: storageHubDefinitions.runtime,
6
+ rpc: storageHubDefinitions.rpc?.storagehubclient
7
+ };
@@ -0,0 +1,4 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ export * from "./types.js";