@storagehub/api-augment 0.1.0 → 0.2.1
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/LICENSE +674 -0
- package/biome.json +2 -9
- package/dist/parachain/index.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-consts.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-errors.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-events.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-query.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-tx.js.map +1 -0
- package/dist/parachain/interfaces/augment-api.js.map +1 -0
- package/dist/parachain/interfaces/augment-types.js.map +1 -0
- package/dist/parachain/interfaces/definitions.js.map +1 -0
- package/dist/parachain/interfaces/index.js.map +1 -0
- package/dist/{interfaces → parachain/interfaces}/lookup.js +1465 -813
- package/dist/parachain/interfaces/lookup.js.map +1 -0
- package/dist/parachain/interfaces/registry.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/parachain/interfaces/types-lookup.js.map +1 -0
- package/dist/parachain/interfaces/types.js.map +1 -0
- package/dist/solochain-evm/index.js +4 -0
- package/dist/solochain-evm/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api.js +10 -0
- package/dist/solochain-evm/interfaces/augment-api.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-types.js +6 -0
- package/dist/solochain-evm/interfaces/augment-types.js.map +1 -0
- package/dist/solochain-evm/interfaces/definitions.js +2 -0
- package/dist/solochain-evm/interfaces/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/index.js +4 -0
- package/dist/solochain-evm/interfaces/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/lookup.js +3744 -0
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/registry.js +6 -0
- package/dist/solochain-evm/interfaces/registry.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/solochain-evm/interfaces/types-lookup.js +6 -0
- package/dist/solochain-evm/interfaces/types-lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/types.js +4 -0
- package/dist/solochain-evm/interfaces/types.js.map +1 -0
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-consts.d.ts +147 -20
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-errors.d.ts +235 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-events.d.ts +542 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-query.d.ts +208 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-rpc.d.ts +61 -4
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-runtime.d.ts +97 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-tx.d.ts +356 -181
- package/dist/types/{interfaces → parachain/interfaces}/augment-types.d.ts +144 -11
- package/dist/types/{interfaces → parachain/interfaces}/lookup.d.ts +1067 -513
- package/dist/types/parachain/interfaces/registry.d.ts +311 -0
- package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/types.d.ts +129 -18
- package/dist/types/{interfaces → parachain/interfaces}/types-lookup.d.ts +1619 -887
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +641 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +1260 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +2058 -0
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +1317 -0
- package/dist/types/solochain-evm/interfaces/augment-api-rpc.d.ts +775 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +535 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +2381 -0
- package/dist/types/solochain-evm/interfaces/augment-api.d.ts +7 -0
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +1418 -0
- package/dist/types/solochain-evm/interfaces/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +3363 -0
- package/dist/types/solochain-evm/interfaces/registry.d.ts +252 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/definitions.d.ts +6 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +319 -0
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +3577 -0
- package/dist/types/solochain-evm/interfaces/types.d.ts +1 -0
- package/metadata-sh-parachain.json +5 -0
- package/metadata-sh-solochain-evm.json +5 -0
- package/package.json +41 -26
- package/scripts/scrapeMetadata.ts +41 -29
- package/src/parachain/index.ts +3 -0
- package/src/{interfaces → parachain/interfaces}/augment-api-consts.ts +147 -20
- package/src/{interfaces → parachain/interfaces}/augment-api-errors.ts +235 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-events.ts +527 -137
- package/src/{interfaces → parachain/interfaces}/augment-api-query.ts +272 -145
- package/src/{interfaces → parachain/interfaces}/augment-api-rpc.ts +123 -5
- package/src/{interfaces → parachain/interfaces}/augment-api-runtime.ts +183 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-tx.ts +374 -182
- package/src/{interfaces → parachain/interfaces}/augment-types.ts +278 -12
- package/src/parachain/interfaces/definitions.ts +1 -0
- package/src/{interfaces → parachain/interfaces}/lookup.ts +1497 -813
- package/src/{interfaces → parachain/interfaces}/registry.ts +176 -98
- package/src/parachain/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/{interfaces → parachain/interfaces}/storagehubclient/types.ts +158 -18
- package/src/{interfaces → parachain/interfaces}/types-lookup.ts +1970 -896
- package/src/solochain-evm/index.ts +3 -0
- package/src/solochain-evm/interfaces/augment-api-consts.ts +655 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +1268 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +1813 -0
- package/src/solochain-evm/interfaces/augment-api-query.ts +1838 -0
- package/src/solochain-evm/interfaces/augment-api-rpc.ts +1319 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +958 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +2818 -0
- package/src/solochain-evm/interfaces/augment-api.ts +10 -0
- package/src/solochain-evm/interfaces/augment-types.ts +2774 -0
- package/src/solochain-evm/interfaces/definitions.ts +1 -0
- package/src/solochain-evm/interfaces/index.ts +4 -0
- package/src/solochain-evm/interfaces/lookup.ts +3788 -0
- package/src/solochain-evm/interfaces/registry.ts +506 -0
- package/src/solochain-evm/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/solochain-evm/interfaces/storagehubclient/index.ts +4 -0
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +391 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +4616 -0
- package/src/solochain-evm/interfaces/types.ts +4 -0
- package/tsconfig.json +17 -20
- package/tsconfig.parachain.json +17 -0
- package/tsconfig.solochain-evm.json +17 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/dist/index.js.map +0 -1
- package/dist/interfaces/augment-api-consts.js.map +0 -1
- package/dist/interfaces/augment-api-errors.js.map +0 -1
- package/dist/interfaces/augment-api-events.js.map +0 -1
- package/dist/interfaces/augment-api-query.js.map +0 -1
- package/dist/interfaces/augment-api-rpc.js.map +0 -1
- package/dist/interfaces/augment-api-runtime.js.map +0 -1
- package/dist/interfaces/augment-api-tx.js.map +0 -1
- package/dist/interfaces/augment-api.js.map +0 -1
- package/dist/interfaces/augment-types.js.map +0 -1
- package/dist/interfaces/definitions.js.map +0 -1
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/lookup.js.map +0 -1
- package/dist/interfaces/registry.js.map +0 -1
- package/dist/interfaces/storagehubclient/definitions.js +0 -7
- package/dist/interfaces/storagehubclient/definitions.js.map +0 -1
- package/dist/interfaces/storagehubclient/index.js.map +0 -1
- package/dist/interfaces/storagehubclient/runtime.js.map +0 -1
- package/dist/interfaces/storagehubclient/types.js.map +0 -1
- package/dist/interfaces/types-lookup.js.map +0 -1
- package/dist/interfaces/types.js.map +0 -1
- package/dist/types/interfaces/registry.d.ts +0 -272
- package/src/interfaces/storagehubclient/definitions.ts +0 -7
- package/storagehub.json +0 -1
- /package/dist/{index.js → parachain/index.js} +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-consts.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-errors.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-events.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-query.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-rpc.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-tx.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/definitions.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/registry.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types-lookup.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types.js +0 -0
- /package/dist/types/{index.d.ts → parachain/index.d.ts} +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/augment-api.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/runtime.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/types.d.ts +0 -0
- /package/{src/index.ts → dist/types/solochain-evm/index.d.ts} +0 -0
- /package/{src/interfaces/definitions.ts → dist/types/solochain-evm/interfaces/definitions.d.ts} +0 -0
- /package/src/{interfaces → parachain/interfaces}/augment-api.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/runtime.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/types.ts +0 -0
|
@@ -61,7 +61,7 @@ export default {
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
/**
|
|
64
|
-
* Lookup20: frame_system::EventRecord<
|
|
64
|
+
* Lookup20: frame_system::EventRecord<sh_parachain_runtime::RuntimeEvent, primitive_types::H256>
|
|
65
65
|
**/
|
|
66
66
|
FrameSystemEventRecord: {
|
|
67
67
|
phase: "FrameSystemPhase",
|
|
@@ -74,11 +74,11 @@ export default {
|
|
|
74
74
|
FrameSystemEvent: {
|
|
75
75
|
_enum: {
|
|
76
76
|
ExtrinsicSuccess: {
|
|
77
|
-
dispatchInfo: "
|
|
77
|
+
dispatchInfo: "FrameSystemDispatchEventInfo"
|
|
78
78
|
},
|
|
79
79
|
ExtrinsicFailed: {
|
|
80
80
|
dispatchError: "SpRuntimeDispatchError",
|
|
81
|
-
dispatchInfo: "
|
|
81
|
+
dispatchInfo: "FrameSystemDispatchEventInfo"
|
|
82
82
|
},
|
|
83
83
|
CodeUpdated: "Null",
|
|
84
84
|
NewAccount: {
|
|
@@ -101,9 +101,9 @@ export default {
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
/**
|
|
104
|
-
* Lookup23:
|
|
104
|
+
* Lookup23: frame_system::DispatchEventInfo
|
|
105
105
|
**/
|
|
106
|
-
|
|
106
|
+
FrameSystemDispatchEventInfo: {
|
|
107
107
|
weight: "SpWeightsWeightV2Weight",
|
|
108
108
|
class: "FrameSupportDispatchDispatchClass",
|
|
109
109
|
paysFee: "FrameSupportDispatchPays"
|
|
@@ -138,7 +138,8 @@ export default {
|
|
|
138
138
|
Exhausted: "Null",
|
|
139
139
|
Corruption: "Null",
|
|
140
140
|
Unavailable: "Null",
|
|
141
|
-
RootNotAllowed: "Null"
|
|
141
|
+
RootNotAllowed: "Null",
|
|
142
|
+
Trie: "SpRuntimeProvingTrieTrieError"
|
|
142
143
|
}
|
|
143
144
|
},
|
|
144
145
|
/**
|
|
@@ -178,7 +179,28 @@ export default {
|
|
|
178
179
|
_enum: ["LimitReached", "NoLayer"]
|
|
179
180
|
},
|
|
180
181
|
/**
|
|
181
|
-
* Lookup31:
|
|
182
|
+
* Lookup31: sp_runtime::proving_trie::TrieError
|
|
183
|
+
**/
|
|
184
|
+
SpRuntimeProvingTrieTrieError: {
|
|
185
|
+
_enum: [
|
|
186
|
+
"InvalidStateRoot",
|
|
187
|
+
"IncompleteDatabase",
|
|
188
|
+
"ValueAtIncompleteKey",
|
|
189
|
+
"DecoderError",
|
|
190
|
+
"InvalidHash",
|
|
191
|
+
"DuplicateKey",
|
|
192
|
+
"ExtraneousNode",
|
|
193
|
+
"ExtraneousValue",
|
|
194
|
+
"ExtraneousHashReference",
|
|
195
|
+
"InvalidChildReference",
|
|
196
|
+
"ValueMismatch",
|
|
197
|
+
"IncompleteProof",
|
|
198
|
+
"RootMismatch",
|
|
199
|
+
"DecodeError"
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
/**
|
|
203
|
+
* Lookup32: cumulus_pallet_parachain_system::pallet::Event<T>
|
|
182
204
|
**/
|
|
183
205
|
CumulusPalletParachainSystemEvent: {
|
|
184
206
|
_enum: {
|
|
@@ -200,7 +222,7 @@ export default {
|
|
|
200
222
|
}
|
|
201
223
|
},
|
|
202
224
|
/**
|
|
203
|
-
*
|
|
225
|
+
* Lookup34: pallet_balances::pallet::Event<T, I>
|
|
204
226
|
**/
|
|
205
227
|
PalletBalancesEvent: {
|
|
206
228
|
_enum: {
|
|
@@ -298,13 +320,13 @@ export default {
|
|
|
298
320
|
}
|
|
299
321
|
},
|
|
300
322
|
/**
|
|
301
|
-
*
|
|
323
|
+
* Lookup35: frame_support::traits::tokens::misc::BalanceStatus
|
|
302
324
|
**/
|
|
303
325
|
FrameSupportTokensMiscBalanceStatus: {
|
|
304
326
|
_enum: ["Free", "Reserved"]
|
|
305
327
|
},
|
|
306
328
|
/**
|
|
307
|
-
*
|
|
329
|
+
* Lookup36: pallet_transaction_payment::pallet::Event<T>
|
|
308
330
|
**/
|
|
309
331
|
PalletTransactionPaymentEvent: {
|
|
310
332
|
_enum: {
|
|
@@ -316,7 +338,7 @@ export default {
|
|
|
316
338
|
}
|
|
317
339
|
},
|
|
318
340
|
/**
|
|
319
|
-
*
|
|
341
|
+
* Lookup37: pallet_sudo::pallet::Event<T>
|
|
320
342
|
**/
|
|
321
343
|
PalletSudoEvent: {
|
|
322
344
|
_enum: {
|
|
@@ -337,7 +359,7 @@ export default {
|
|
|
337
359
|
}
|
|
338
360
|
},
|
|
339
361
|
/**
|
|
340
|
-
*
|
|
362
|
+
* Lookup41: pallet_collator_selection::pallet::Event<T>
|
|
341
363
|
**/
|
|
342
364
|
PalletCollatorSelectionEvent: {
|
|
343
365
|
_enum: {
|
|
@@ -381,7 +403,7 @@ export default {
|
|
|
381
403
|
}
|
|
382
404
|
},
|
|
383
405
|
/**
|
|
384
|
-
*
|
|
406
|
+
* Lookup43: pallet_session::pallet::Event
|
|
385
407
|
**/
|
|
386
408
|
PalletSessionEvent: {
|
|
387
409
|
_enum: {
|
|
@@ -391,7 +413,7 @@ export default {
|
|
|
391
413
|
}
|
|
392
414
|
},
|
|
393
415
|
/**
|
|
394
|
-
*
|
|
416
|
+
* Lookup44: cumulus_pallet_xcmp_queue::pallet::Event<T>
|
|
395
417
|
**/
|
|
396
418
|
CumulusPalletXcmpQueueEvent: {
|
|
397
419
|
_enum: {
|
|
@@ -401,26 +423,26 @@ export default {
|
|
|
401
423
|
}
|
|
402
424
|
},
|
|
403
425
|
/**
|
|
404
|
-
*
|
|
426
|
+
* Lookup45: pallet_xcm::pallet::Event<T>
|
|
405
427
|
**/
|
|
406
428
|
PalletXcmEvent: {
|
|
407
429
|
_enum: {
|
|
408
430
|
Attempted: {
|
|
409
|
-
outcome: "
|
|
431
|
+
outcome: "StagingXcmV5TraitsOutcome"
|
|
410
432
|
},
|
|
411
433
|
Sent: {
|
|
412
|
-
origin: "
|
|
413
|
-
destination: "
|
|
414
|
-
message: "
|
|
434
|
+
origin: "StagingXcmV5Location",
|
|
435
|
+
destination: "StagingXcmV5Location",
|
|
436
|
+
message: "StagingXcmV5Xcm",
|
|
415
437
|
messageId: "[u8;32]"
|
|
416
438
|
},
|
|
417
439
|
UnexpectedResponse: {
|
|
418
|
-
origin: "
|
|
440
|
+
origin: "StagingXcmV5Location",
|
|
419
441
|
queryId: "u64"
|
|
420
442
|
},
|
|
421
443
|
ResponseReady: {
|
|
422
444
|
queryId: "u64",
|
|
423
|
-
response: "
|
|
445
|
+
response: "StagingXcmV5Response"
|
|
424
446
|
},
|
|
425
447
|
Notified: {
|
|
426
448
|
queryId: "u64",
|
|
@@ -445,12 +467,12 @@ export default {
|
|
|
445
467
|
callIndex: "u8"
|
|
446
468
|
},
|
|
447
469
|
InvalidResponder: {
|
|
448
|
-
origin: "
|
|
470
|
+
origin: "StagingXcmV5Location",
|
|
449
471
|
queryId: "u64",
|
|
450
|
-
expectedLocation: "Option<
|
|
472
|
+
expectedLocation: "Option<StagingXcmV5Location>"
|
|
451
473
|
},
|
|
452
474
|
InvalidResponderVersion: {
|
|
453
|
-
origin: "
|
|
475
|
+
origin: "StagingXcmV5Location",
|
|
454
476
|
queryId: "u64"
|
|
455
477
|
},
|
|
456
478
|
ResponseTaken: {
|
|
@@ -461,63 +483,63 @@ export default {
|
|
|
461
483
|
hash_: "hash"
|
|
462
484
|
},
|
|
463
485
|
hash_: "H256",
|
|
464
|
-
origin: "
|
|
486
|
+
origin: "StagingXcmV5Location",
|
|
465
487
|
assets: "XcmVersionedAssets"
|
|
466
488
|
},
|
|
467
489
|
VersionChangeNotified: {
|
|
468
|
-
destination: "
|
|
490
|
+
destination: "StagingXcmV5Location",
|
|
469
491
|
result: "u32",
|
|
470
|
-
cost: "
|
|
492
|
+
cost: "StagingXcmV5AssetAssets",
|
|
471
493
|
messageId: "[u8;32]"
|
|
472
494
|
},
|
|
473
495
|
SupportedVersionChanged: {
|
|
474
|
-
location: "
|
|
496
|
+
location: "StagingXcmV5Location",
|
|
475
497
|
version: "u32"
|
|
476
498
|
},
|
|
477
499
|
NotifyTargetSendFail: {
|
|
478
|
-
location: "
|
|
500
|
+
location: "StagingXcmV5Location",
|
|
479
501
|
queryId: "u64",
|
|
480
|
-
error: "
|
|
502
|
+
error: "XcmV5TraitsError"
|
|
481
503
|
},
|
|
482
504
|
NotifyTargetMigrationFail: {
|
|
483
505
|
location: "XcmVersionedLocation",
|
|
484
506
|
queryId: "u64"
|
|
485
507
|
},
|
|
486
508
|
InvalidQuerierVersion: {
|
|
487
|
-
origin: "
|
|
509
|
+
origin: "StagingXcmV5Location",
|
|
488
510
|
queryId: "u64"
|
|
489
511
|
},
|
|
490
512
|
InvalidQuerier: {
|
|
491
|
-
origin: "
|
|
513
|
+
origin: "StagingXcmV5Location",
|
|
492
514
|
queryId: "u64",
|
|
493
|
-
expectedQuerier: "
|
|
494
|
-
maybeActualQuerier: "Option<
|
|
515
|
+
expectedQuerier: "StagingXcmV5Location",
|
|
516
|
+
maybeActualQuerier: "Option<StagingXcmV5Location>"
|
|
495
517
|
},
|
|
496
518
|
VersionNotifyStarted: {
|
|
497
|
-
destination: "
|
|
498
|
-
cost: "
|
|
519
|
+
destination: "StagingXcmV5Location",
|
|
520
|
+
cost: "StagingXcmV5AssetAssets",
|
|
499
521
|
messageId: "[u8;32]"
|
|
500
522
|
},
|
|
501
523
|
VersionNotifyRequested: {
|
|
502
|
-
destination: "
|
|
503
|
-
cost: "
|
|
524
|
+
destination: "StagingXcmV5Location",
|
|
525
|
+
cost: "StagingXcmV5AssetAssets",
|
|
504
526
|
messageId: "[u8;32]"
|
|
505
527
|
},
|
|
506
528
|
VersionNotifyUnrequested: {
|
|
507
|
-
destination: "
|
|
508
|
-
cost: "
|
|
529
|
+
destination: "StagingXcmV5Location",
|
|
530
|
+
cost: "StagingXcmV5AssetAssets",
|
|
509
531
|
messageId: "[u8;32]"
|
|
510
532
|
},
|
|
511
533
|
FeesPaid: {
|
|
512
|
-
paying: "
|
|
513
|
-
fees: "
|
|
534
|
+
paying: "StagingXcmV5Location",
|
|
535
|
+
fees: "StagingXcmV5AssetAssets"
|
|
514
536
|
},
|
|
515
537
|
AssetsClaimed: {
|
|
516
538
|
_alias: {
|
|
517
539
|
hash_: "hash"
|
|
518
540
|
},
|
|
519
541
|
hash_: "H256",
|
|
520
|
-
origin: "
|
|
542
|
+
origin: "StagingXcmV5Location",
|
|
521
543
|
assets: "XcmVersionedAssets"
|
|
522
544
|
},
|
|
523
545
|
VersionMigrationFinished: {
|
|
@@ -526,26 +548,26 @@ export default {
|
|
|
526
548
|
}
|
|
527
549
|
},
|
|
528
550
|
/**
|
|
529
|
-
*
|
|
551
|
+
* Lookup46: staging_xcm::v5::traits::Outcome
|
|
530
552
|
**/
|
|
531
|
-
|
|
553
|
+
StagingXcmV5TraitsOutcome: {
|
|
532
554
|
_enum: {
|
|
533
555
|
Complete: {
|
|
534
556
|
used: "SpWeightsWeightV2Weight"
|
|
535
557
|
},
|
|
536
558
|
Incomplete: {
|
|
537
559
|
used: "SpWeightsWeightV2Weight",
|
|
538
|
-
error: "
|
|
560
|
+
error: "XcmV5TraitsError"
|
|
539
561
|
},
|
|
540
562
|
Error: {
|
|
541
|
-
error: "
|
|
563
|
+
error: "XcmV5TraitsError"
|
|
542
564
|
}
|
|
543
565
|
}
|
|
544
566
|
},
|
|
545
567
|
/**
|
|
546
|
-
*
|
|
568
|
+
* Lookup47: xcm::v5::traits::Error
|
|
547
569
|
**/
|
|
548
|
-
|
|
570
|
+
XcmV5TraitsError: {
|
|
549
571
|
_enum: {
|
|
550
572
|
Overflow: "Null",
|
|
551
573
|
Unimplemented: "Null",
|
|
@@ -582,6 +604,7 @@ export default {
|
|
|
582
604
|
NoPermission: "Null",
|
|
583
605
|
Unanchored: "Null",
|
|
584
606
|
NotDepositable: "Null",
|
|
607
|
+
TooManyAssets: "Null",
|
|
585
608
|
UnhandledXcmVersion: "Null",
|
|
586
609
|
WeightLimitReached: "SpWeightsWeightV2Weight",
|
|
587
610
|
Barrier: "Null",
|
|
@@ -590,44 +613,44 @@ export default {
|
|
|
590
613
|
}
|
|
591
614
|
},
|
|
592
615
|
/**
|
|
593
|
-
*
|
|
616
|
+
* Lookup48: staging_xcm::v5::location::Location
|
|
594
617
|
**/
|
|
595
|
-
|
|
618
|
+
StagingXcmV5Location: {
|
|
596
619
|
parents: "u8",
|
|
597
|
-
interior: "
|
|
620
|
+
interior: "StagingXcmV5Junctions"
|
|
598
621
|
},
|
|
599
622
|
/**
|
|
600
|
-
*
|
|
623
|
+
* Lookup49: staging_xcm::v5::junctions::Junctions
|
|
601
624
|
**/
|
|
602
|
-
|
|
625
|
+
StagingXcmV5Junctions: {
|
|
603
626
|
_enum: {
|
|
604
627
|
Here: "Null",
|
|
605
|
-
X1: "[
|
|
606
|
-
X2: "[
|
|
607
|
-
X3: "[
|
|
608
|
-
X4: "[
|
|
609
|
-
X5: "[
|
|
610
|
-
X6: "[
|
|
611
|
-
X7: "[
|
|
612
|
-
X8: "[
|
|
628
|
+
X1: "[Lookup51;1]",
|
|
629
|
+
X2: "[Lookup51;2]",
|
|
630
|
+
X3: "[Lookup51;3]",
|
|
631
|
+
X4: "[Lookup51;4]",
|
|
632
|
+
X5: "[Lookup51;5]",
|
|
633
|
+
X6: "[Lookup51;6]",
|
|
634
|
+
X7: "[Lookup51;7]",
|
|
635
|
+
X8: "[Lookup51;8]"
|
|
613
636
|
}
|
|
614
637
|
},
|
|
615
638
|
/**
|
|
616
|
-
*
|
|
639
|
+
* Lookup51: staging_xcm::v5::junction::Junction
|
|
617
640
|
**/
|
|
618
|
-
|
|
641
|
+
StagingXcmV5Junction: {
|
|
619
642
|
_enum: {
|
|
620
643
|
Parachain: "Compact<u32>",
|
|
621
644
|
AccountId32: {
|
|
622
|
-
network: "Option<
|
|
645
|
+
network: "Option<StagingXcmV5JunctionNetworkId>",
|
|
623
646
|
id: "[u8;32]"
|
|
624
647
|
},
|
|
625
648
|
AccountIndex64: {
|
|
626
|
-
network: "Option<
|
|
649
|
+
network: "Option<StagingXcmV5JunctionNetworkId>",
|
|
627
650
|
index: "Compact<u64>"
|
|
628
651
|
},
|
|
629
652
|
AccountKey20: {
|
|
630
|
-
network: "Option<
|
|
653
|
+
network: "Option<StagingXcmV5JunctionNetworkId>",
|
|
631
654
|
key: "[u8;20]"
|
|
632
655
|
},
|
|
633
656
|
PalletInstance: "u8",
|
|
@@ -641,13 +664,13 @@ export default {
|
|
|
641
664
|
id: "XcmV3JunctionBodyId",
|
|
642
665
|
part: "XcmV3JunctionBodyPart"
|
|
643
666
|
},
|
|
644
|
-
GlobalConsensus: "
|
|
667
|
+
GlobalConsensus: "StagingXcmV5JunctionNetworkId"
|
|
645
668
|
}
|
|
646
669
|
},
|
|
647
670
|
/**
|
|
648
|
-
*
|
|
671
|
+
* Lookup54: staging_xcm::v5::junction::NetworkId
|
|
649
672
|
**/
|
|
650
|
-
|
|
673
|
+
StagingXcmV5JunctionNetworkId: {
|
|
651
674
|
_enum: {
|
|
652
675
|
ByGenesis: "[u8;32]",
|
|
653
676
|
ByFork: {
|
|
@@ -656,9 +679,9 @@ export default {
|
|
|
656
679
|
},
|
|
657
680
|
Polkadot: "Null",
|
|
658
681
|
Kusama: "Null",
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
682
|
+
__Unused4: "Null",
|
|
683
|
+
__Unused5: "Null",
|
|
684
|
+
__Unused6: "Null",
|
|
662
685
|
Ethereum: {
|
|
663
686
|
chainId: "Compact<u64>"
|
|
664
687
|
},
|
|
@@ -668,7 +691,7 @@ export default {
|
|
|
668
691
|
}
|
|
669
692
|
},
|
|
670
693
|
/**
|
|
671
|
-
*
|
|
694
|
+
* Lookup57: xcm::v3::junction::BodyId
|
|
672
695
|
**/
|
|
673
696
|
XcmV3JunctionBodyId: {
|
|
674
697
|
_enum: {
|
|
@@ -685,7 +708,7 @@ export default {
|
|
|
685
708
|
}
|
|
686
709
|
},
|
|
687
710
|
/**
|
|
688
|
-
*
|
|
711
|
+
* Lookup58: xcm::v3::junction::BodyPart
|
|
689
712
|
**/
|
|
690
713
|
XcmV3JunctionBodyPart: {
|
|
691
714
|
_enum: {
|
|
@@ -708,35 +731,35 @@ export default {
|
|
|
708
731
|
}
|
|
709
732
|
},
|
|
710
733
|
/**
|
|
711
|
-
*
|
|
734
|
+
* Lookup66: staging_xcm::v5::Xcm<Call>
|
|
712
735
|
**/
|
|
713
|
-
|
|
736
|
+
StagingXcmV5Xcm: "Vec<StagingXcmV5Instruction>",
|
|
714
737
|
/**
|
|
715
|
-
*
|
|
738
|
+
* Lookup68: staging_xcm::v5::Instruction<Call>
|
|
716
739
|
**/
|
|
717
|
-
|
|
740
|
+
StagingXcmV5Instruction: {
|
|
718
741
|
_enum: {
|
|
719
|
-
WithdrawAsset: "
|
|
720
|
-
ReserveAssetDeposited: "
|
|
721
|
-
ReceiveTeleportedAsset: "
|
|
742
|
+
WithdrawAsset: "StagingXcmV5AssetAssets",
|
|
743
|
+
ReserveAssetDeposited: "StagingXcmV5AssetAssets",
|
|
744
|
+
ReceiveTeleportedAsset: "StagingXcmV5AssetAssets",
|
|
722
745
|
QueryResponse: {
|
|
723
746
|
queryId: "Compact<u64>",
|
|
724
|
-
response: "
|
|
747
|
+
response: "StagingXcmV5Response",
|
|
725
748
|
maxWeight: "SpWeightsWeightV2Weight",
|
|
726
|
-
querier: "Option<
|
|
749
|
+
querier: "Option<StagingXcmV5Location>"
|
|
727
750
|
},
|
|
728
751
|
TransferAsset: {
|
|
729
|
-
assets: "
|
|
730
|
-
beneficiary: "
|
|
752
|
+
assets: "StagingXcmV5AssetAssets",
|
|
753
|
+
beneficiary: "StagingXcmV5Location"
|
|
731
754
|
},
|
|
732
755
|
TransferReserveAsset: {
|
|
733
|
-
assets: "
|
|
734
|
-
dest: "
|
|
735
|
-
xcm: "
|
|
756
|
+
assets: "StagingXcmV5AssetAssets",
|
|
757
|
+
dest: "StagingXcmV5Location",
|
|
758
|
+
xcm: "StagingXcmV5Xcm"
|
|
736
759
|
},
|
|
737
760
|
Transact: {
|
|
738
761
|
originKind: "XcmV3OriginKind",
|
|
739
|
-
|
|
762
|
+
fallbackMaxWeight: "Option<SpWeightsWeightV2Weight>",
|
|
740
763
|
call: "XcmDoubleEncoded"
|
|
741
764
|
},
|
|
742
765
|
HrmpNewChannelOpenRequest: {
|
|
@@ -753,47 +776,47 @@ export default {
|
|
|
753
776
|
recipient: "Compact<u32>"
|
|
754
777
|
},
|
|
755
778
|
ClearOrigin: "Null",
|
|
756
|
-
DescendOrigin: "
|
|
757
|
-
ReportError: "
|
|
779
|
+
DescendOrigin: "StagingXcmV5Junctions",
|
|
780
|
+
ReportError: "StagingXcmV5QueryResponseInfo",
|
|
758
781
|
DepositAsset: {
|
|
759
|
-
assets: "
|
|
760
|
-
beneficiary: "
|
|
782
|
+
assets: "StagingXcmV5AssetAssetFilter",
|
|
783
|
+
beneficiary: "StagingXcmV5Location"
|
|
761
784
|
},
|
|
762
785
|
DepositReserveAsset: {
|
|
763
|
-
assets: "
|
|
764
|
-
dest: "
|
|
765
|
-
xcm: "
|
|
786
|
+
assets: "StagingXcmV5AssetAssetFilter",
|
|
787
|
+
dest: "StagingXcmV5Location",
|
|
788
|
+
xcm: "StagingXcmV5Xcm"
|
|
766
789
|
},
|
|
767
790
|
ExchangeAsset: {
|
|
768
|
-
give: "
|
|
769
|
-
want: "
|
|
791
|
+
give: "StagingXcmV5AssetAssetFilter",
|
|
792
|
+
want: "StagingXcmV5AssetAssets",
|
|
770
793
|
maximal: "bool"
|
|
771
794
|
},
|
|
772
795
|
InitiateReserveWithdraw: {
|
|
773
|
-
assets: "
|
|
774
|
-
reserve: "
|
|
775
|
-
xcm: "
|
|
796
|
+
assets: "StagingXcmV5AssetAssetFilter",
|
|
797
|
+
reserve: "StagingXcmV5Location",
|
|
798
|
+
xcm: "StagingXcmV5Xcm"
|
|
776
799
|
},
|
|
777
800
|
InitiateTeleport: {
|
|
778
|
-
assets: "
|
|
779
|
-
dest: "
|
|
780
|
-
xcm: "
|
|
801
|
+
assets: "StagingXcmV5AssetAssetFilter",
|
|
802
|
+
dest: "StagingXcmV5Location",
|
|
803
|
+
xcm: "StagingXcmV5Xcm"
|
|
781
804
|
},
|
|
782
805
|
ReportHolding: {
|
|
783
|
-
responseInfo: "
|
|
784
|
-
assets: "
|
|
806
|
+
responseInfo: "StagingXcmV5QueryResponseInfo",
|
|
807
|
+
assets: "StagingXcmV5AssetAssetFilter"
|
|
785
808
|
},
|
|
786
809
|
BuyExecution: {
|
|
787
|
-
fees: "
|
|
810
|
+
fees: "StagingXcmV5Asset",
|
|
788
811
|
weightLimit: "XcmV3WeightLimit"
|
|
789
812
|
},
|
|
790
813
|
RefundSurplus: "Null",
|
|
791
|
-
SetErrorHandler: "
|
|
792
|
-
SetAppendix: "
|
|
814
|
+
SetErrorHandler: "StagingXcmV5Xcm",
|
|
815
|
+
SetAppendix: "StagingXcmV5Xcm",
|
|
793
816
|
ClearError: "Null",
|
|
794
817
|
ClaimAsset: {
|
|
795
|
-
assets: "
|
|
796
|
-
ticket: "
|
|
818
|
+
assets: "StagingXcmV5AssetAssets",
|
|
819
|
+
ticket: "StagingXcmV5Location"
|
|
797
820
|
},
|
|
798
821
|
Trap: "Compact<u64>",
|
|
799
822
|
SubscribeVersion: {
|
|
@@ -801,14 +824,14 @@ export default {
|
|
|
801
824
|
maxResponseWeight: "SpWeightsWeightV2Weight"
|
|
802
825
|
},
|
|
803
826
|
UnsubscribeVersion: "Null",
|
|
804
|
-
BurnAsset: "
|
|
805
|
-
ExpectAsset: "
|
|
806
|
-
ExpectOrigin: "Option<
|
|
807
|
-
ExpectError: "Option<(u32,
|
|
827
|
+
BurnAsset: "StagingXcmV5AssetAssets",
|
|
828
|
+
ExpectAsset: "StagingXcmV5AssetAssets",
|
|
829
|
+
ExpectOrigin: "Option<StagingXcmV5Location>",
|
|
830
|
+
ExpectError: "Option<(u32,XcmV5TraitsError)>",
|
|
808
831
|
ExpectTransactStatus: "XcmV3MaybeErrorCode",
|
|
809
832
|
QueryPallet: {
|
|
810
833
|
moduleName: "Bytes",
|
|
811
|
-
responseInfo: "
|
|
834
|
+
responseInfo: "StagingXcmV5QueryResponseInfo"
|
|
812
835
|
},
|
|
813
836
|
ExpectPallet: {
|
|
814
837
|
index: "Compact<u32>",
|
|
@@ -817,70 +840,87 @@ export default {
|
|
|
817
840
|
crateMajor: "Compact<u32>",
|
|
818
841
|
minCrateMinor: "Compact<u32>"
|
|
819
842
|
},
|
|
820
|
-
ReportTransactStatus: "
|
|
843
|
+
ReportTransactStatus: "StagingXcmV5QueryResponseInfo",
|
|
821
844
|
ClearTransactStatus: "Null",
|
|
822
|
-
UniversalOrigin: "
|
|
845
|
+
UniversalOrigin: "StagingXcmV5Junction",
|
|
823
846
|
ExportMessage: {
|
|
824
|
-
network: "
|
|
825
|
-
destination: "
|
|
826
|
-
xcm: "
|
|
847
|
+
network: "StagingXcmV5JunctionNetworkId",
|
|
848
|
+
destination: "StagingXcmV5Junctions",
|
|
849
|
+
xcm: "StagingXcmV5Xcm"
|
|
827
850
|
},
|
|
828
851
|
LockAsset: {
|
|
829
|
-
asset: "
|
|
830
|
-
unlocker: "
|
|
852
|
+
asset: "StagingXcmV5Asset",
|
|
853
|
+
unlocker: "StagingXcmV5Location"
|
|
831
854
|
},
|
|
832
855
|
UnlockAsset: {
|
|
833
|
-
asset: "
|
|
834
|
-
target: "
|
|
856
|
+
asset: "StagingXcmV5Asset",
|
|
857
|
+
target: "StagingXcmV5Location"
|
|
835
858
|
},
|
|
836
859
|
NoteUnlockable: {
|
|
837
|
-
asset: "
|
|
838
|
-
owner: "
|
|
860
|
+
asset: "StagingXcmV5Asset",
|
|
861
|
+
owner: "StagingXcmV5Location"
|
|
839
862
|
},
|
|
840
863
|
RequestUnlock: {
|
|
841
|
-
asset: "
|
|
842
|
-
locker: "
|
|
864
|
+
asset: "StagingXcmV5Asset",
|
|
865
|
+
locker: "StagingXcmV5Location"
|
|
843
866
|
},
|
|
844
867
|
SetFeesMode: {
|
|
845
868
|
jitWithdraw: "bool"
|
|
846
869
|
},
|
|
847
870
|
SetTopic: "[u8;32]",
|
|
848
871
|
ClearTopic: "Null",
|
|
849
|
-
AliasOrigin: "
|
|
872
|
+
AliasOrigin: "StagingXcmV5Location",
|
|
850
873
|
UnpaidExecution: {
|
|
851
874
|
weightLimit: "XcmV3WeightLimit",
|
|
852
|
-
checkOrigin: "Option<
|
|
875
|
+
checkOrigin: "Option<StagingXcmV5Location>"
|
|
876
|
+
},
|
|
877
|
+
PayFees: {
|
|
878
|
+
asset: "StagingXcmV5Asset"
|
|
879
|
+
},
|
|
880
|
+
InitiateTransfer: {
|
|
881
|
+
destination: "StagingXcmV5Location",
|
|
882
|
+
remoteFees: "Option<StagingXcmV5AssetAssetTransferFilter>",
|
|
883
|
+
preserveOrigin: "bool",
|
|
884
|
+
assets: "Vec<StagingXcmV5AssetAssetTransferFilter>",
|
|
885
|
+
remoteXcm: "StagingXcmV5Xcm"
|
|
886
|
+
},
|
|
887
|
+
ExecuteWithOrigin: {
|
|
888
|
+
descendantOrigin: "Option<StagingXcmV5Junctions>",
|
|
889
|
+
xcm: "StagingXcmV5Xcm"
|
|
890
|
+
},
|
|
891
|
+
SetHints: {
|
|
892
|
+
hints: "Vec<StagingXcmV5Hint>"
|
|
853
893
|
}
|
|
854
894
|
}
|
|
855
895
|
},
|
|
856
896
|
/**
|
|
857
|
-
*
|
|
897
|
+
* Lookup69: staging_xcm::v5::asset::Assets
|
|
858
898
|
**/
|
|
859
|
-
|
|
899
|
+
StagingXcmV5AssetAssets: "Vec<StagingXcmV5Asset>",
|
|
860
900
|
/**
|
|
861
|
-
*
|
|
901
|
+
* Lookup71: staging_xcm::v5::asset::Asset
|
|
862
902
|
**/
|
|
863
|
-
|
|
864
|
-
id: "
|
|
865
|
-
fun: "
|
|
903
|
+
StagingXcmV5Asset: {
|
|
904
|
+
id: "StagingXcmV5AssetAssetId",
|
|
905
|
+
fun: "StagingXcmV5AssetFungibility"
|
|
866
906
|
},
|
|
867
907
|
/**
|
|
868
|
-
*
|
|
908
|
+
* Lookup72: staging_xcm::v5::asset::AssetId
|
|
869
909
|
**/
|
|
870
|
-
|
|
910
|
+
StagingXcmV5AssetAssetId: "StagingXcmV5Location",
|
|
871
911
|
/**
|
|
872
|
-
*
|
|
912
|
+
* Lookup73: staging_xcm::v5::asset::Fungibility
|
|
873
913
|
**/
|
|
874
|
-
|
|
914
|
+
StagingXcmV5AssetFungibility: {
|
|
875
915
|
_enum: {
|
|
876
916
|
Fungible: "Compact<u128>",
|
|
877
|
-
NonFungible: "
|
|
917
|
+
NonFungible: "StagingXcmV5AssetAssetInstance"
|
|
878
918
|
}
|
|
879
919
|
},
|
|
880
920
|
/**
|
|
881
|
-
*
|
|
921
|
+
* Lookup74: staging_xcm::v5::asset::AssetInstance
|
|
882
922
|
**/
|
|
883
|
-
|
|
923
|
+
StagingXcmV5AssetAssetInstance: {
|
|
884
924
|
_enum: {
|
|
885
925
|
Undefined: "Null",
|
|
886
926
|
Index: "Compact<u128>",
|
|
@@ -891,22 +931,22 @@ export default {
|
|
|
891
931
|
}
|
|
892
932
|
},
|
|
893
933
|
/**
|
|
894
|
-
*
|
|
934
|
+
* Lookup77: staging_xcm::v5::Response
|
|
895
935
|
**/
|
|
896
|
-
|
|
936
|
+
StagingXcmV5Response: {
|
|
897
937
|
_enum: {
|
|
898
938
|
Null: "Null",
|
|
899
|
-
Assets: "
|
|
900
|
-
ExecutionResult: "Option<(u32,
|
|
939
|
+
Assets: "StagingXcmV5AssetAssets",
|
|
940
|
+
ExecutionResult: "Option<(u32,XcmV5TraitsError)>",
|
|
901
941
|
Version: "u32",
|
|
902
|
-
PalletsInfo: "Vec<
|
|
942
|
+
PalletsInfo: "Vec<StagingXcmV5PalletInfo>",
|
|
903
943
|
DispatchResult: "XcmV3MaybeErrorCode"
|
|
904
944
|
}
|
|
905
945
|
},
|
|
906
946
|
/**
|
|
907
|
-
*
|
|
947
|
+
* Lookup81: staging_xcm::v5::PalletInfo
|
|
908
948
|
**/
|
|
909
|
-
|
|
949
|
+
StagingXcmV5PalletInfo: {
|
|
910
950
|
index: "Compact<u32>",
|
|
911
951
|
name: "Bytes",
|
|
912
952
|
moduleName: "Bytes",
|
|
@@ -915,7 +955,7 @@ export default {
|
|
|
915
955
|
patch: "Compact<u32>"
|
|
916
956
|
},
|
|
917
957
|
/**
|
|
918
|
-
*
|
|
958
|
+
* Lookup84: xcm::v3::MaybeErrorCode
|
|
919
959
|
**/
|
|
920
960
|
XcmV3MaybeErrorCode: {
|
|
921
961
|
_enum: {
|
|
@@ -925,60 +965,60 @@ export default {
|
|
|
925
965
|
}
|
|
926
966
|
},
|
|
927
967
|
/**
|
|
928
|
-
*
|
|
968
|
+
* Lookup87: xcm::v3::OriginKind
|
|
929
969
|
**/
|
|
930
970
|
XcmV3OriginKind: {
|
|
931
971
|
_enum: ["Native", "SovereignAccount", "Superuser", "Xcm"]
|
|
932
972
|
},
|
|
933
973
|
/**
|
|
934
|
-
*
|
|
974
|
+
* Lookup89: xcm::double_encoded::DoubleEncoded<T>
|
|
935
975
|
**/
|
|
936
976
|
XcmDoubleEncoded: {
|
|
937
977
|
encoded: "Bytes"
|
|
938
978
|
},
|
|
939
979
|
/**
|
|
940
|
-
*
|
|
980
|
+
* Lookup90: staging_xcm::v5::QueryResponseInfo
|
|
941
981
|
**/
|
|
942
|
-
|
|
943
|
-
destination: "
|
|
982
|
+
StagingXcmV5QueryResponseInfo: {
|
|
983
|
+
destination: "StagingXcmV5Location",
|
|
944
984
|
queryId: "Compact<u64>",
|
|
945
985
|
maxWeight: "SpWeightsWeightV2Weight"
|
|
946
986
|
},
|
|
947
987
|
/**
|
|
948
|
-
*
|
|
988
|
+
* Lookup91: staging_xcm::v5::asset::AssetFilter
|
|
949
989
|
**/
|
|
950
|
-
|
|
990
|
+
StagingXcmV5AssetAssetFilter: {
|
|
951
991
|
_enum: {
|
|
952
|
-
Definite: "
|
|
953
|
-
Wild: "
|
|
992
|
+
Definite: "StagingXcmV5AssetAssets",
|
|
993
|
+
Wild: "StagingXcmV5AssetWildAsset"
|
|
954
994
|
}
|
|
955
995
|
},
|
|
956
996
|
/**
|
|
957
|
-
*
|
|
997
|
+
* Lookup92: staging_xcm::v5::asset::WildAsset
|
|
958
998
|
**/
|
|
959
|
-
|
|
999
|
+
StagingXcmV5AssetWildAsset: {
|
|
960
1000
|
_enum: {
|
|
961
1001
|
All: "Null",
|
|
962
1002
|
AllOf: {
|
|
963
|
-
id: "
|
|
964
|
-
fun: "
|
|
1003
|
+
id: "StagingXcmV5AssetAssetId",
|
|
1004
|
+
fun: "StagingXcmV5AssetWildFungibility"
|
|
965
1005
|
},
|
|
966
1006
|
AllCounted: "Compact<u32>",
|
|
967
1007
|
AllOfCounted: {
|
|
968
|
-
id: "
|
|
969
|
-
fun: "
|
|
1008
|
+
id: "StagingXcmV5AssetAssetId",
|
|
1009
|
+
fun: "StagingXcmV5AssetWildFungibility",
|
|
970
1010
|
count: "Compact<u32>"
|
|
971
1011
|
}
|
|
972
1012
|
}
|
|
973
1013
|
},
|
|
974
1014
|
/**
|
|
975
|
-
*
|
|
1015
|
+
* Lookup93: staging_xcm::v5::asset::WildFungibility
|
|
976
1016
|
**/
|
|
977
|
-
|
|
1017
|
+
StagingXcmV5AssetWildFungibility: {
|
|
978
1018
|
_enum: ["Fungible", "NonFungible"]
|
|
979
1019
|
},
|
|
980
1020
|
/**
|
|
981
|
-
*
|
|
1021
|
+
* Lookup94: xcm::v3::WeightLimit
|
|
982
1022
|
**/
|
|
983
1023
|
XcmV3WeightLimit: {
|
|
984
1024
|
_enum: {
|
|
@@ -987,221 +1027,212 @@ export default {
|
|
|
987
1027
|
}
|
|
988
1028
|
},
|
|
989
1029
|
/**
|
|
990
|
-
*
|
|
1030
|
+
* Lookup96: staging_xcm::v5::asset::AssetTransferFilter
|
|
1031
|
+
**/
|
|
1032
|
+
StagingXcmV5AssetAssetTransferFilter: {
|
|
1033
|
+
_enum: {
|
|
1034
|
+
Teleport: "StagingXcmV5AssetAssetFilter",
|
|
1035
|
+
ReserveDeposit: "StagingXcmV5AssetAssetFilter",
|
|
1036
|
+
ReserveWithdraw: "StagingXcmV5AssetAssetFilter"
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
/**
|
|
1040
|
+
* Lookup101: staging_xcm::v5::Hint
|
|
1041
|
+
**/
|
|
1042
|
+
StagingXcmV5Hint: {
|
|
1043
|
+
_enum: {
|
|
1044
|
+
AssetClaimer: {
|
|
1045
|
+
location: "StagingXcmV5Location"
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
/**
|
|
1050
|
+
* Lookup103: xcm::VersionedAssets
|
|
991
1051
|
**/
|
|
992
1052
|
XcmVersionedAssets: {
|
|
993
1053
|
_enum: {
|
|
994
1054
|
__Unused0: "Null",
|
|
995
|
-
|
|
1055
|
+
__Unused1: "Null",
|
|
996
1056
|
__Unused2: "Null",
|
|
997
1057
|
V3: "XcmV3MultiassetMultiAssets",
|
|
998
|
-
V4: "StagingXcmV4AssetAssets"
|
|
1058
|
+
V4: "StagingXcmV4AssetAssets",
|
|
1059
|
+
V5: "StagingXcmV5AssetAssets"
|
|
999
1060
|
}
|
|
1000
1061
|
},
|
|
1001
1062
|
/**
|
|
1002
|
-
*
|
|
1063
|
+
* Lookup104: xcm::v3::multiasset::MultiAssets
|
|
1003
1064
|
**/
|
|
1004
|
-
|
|
1065
|
+
XcmV3MultiassetMultiAssets: "Vec<XcmV3MultiAsset>",
|
|
1005
1066
|
/**
|
|
1006
|
-
*
|
|
1067
|
+
* Lookup106: xcm::v3::multiasset::MultiAsset
|
|
1007
1068
|
**/
|
|
1008
|
-
|
|
1009
|
-
id: "
|
|
1010
|
-
fun: "
|
|
1069
|
+
XcmV3MultiAsset: {
|
|
1070
|
+
id: "XcmV3MultiassetAssetId",
|
|
1071
|
+
fun: "XcmV3MultiassetFungibility"
|
|
1011
1072
|
},
|
|
1012
1073
|
/**
|
|
1013
|
-
*
|
|
1074
|
+
* Lookup107: xcm::v3::multiasset::AssetId
|
|
1014
1075
|
**/
|
|
1015
|
-
|
|
1076
|
+
XcmV3MultiassetAssetId: {
|
|
1016
1077
|
_enum: {
|
|
1017
|
-
Concrete: "
|
|
1018
|
-
Abstract: "
|
|
1078
|
+
Concrete: "StagingXcmV3MultiLocation",
|
|
1079
|
+
Abstract: "[u8;32]"
|
|
1019
1080
|
}
|
|
1020
1081
|
},
|
|
1021
1082
|
/**
|
|
1022
|
-
*
|
|
1083
|
+
* Lookup108: staging_xcm::v3::multilocation::MultiLocation
|
|
1023
1084
|
**/
|
|
1024
|
-
|
|
1085
|
+
StagingXcmV3MultiLocation: {
|
|
1025
1086
|
parents: "u8",
|
|
1026
|
-
interior: "
|
|
1087
|
+
interior: "XcmV3Junctions"
|
|
1027
1088
|
},
|
|
1028
1089
|
/**
|
|
1029
|
-
*
|
|
1090
|
+
* Lookup109: xcm::v3::junctions::Junctions
|
|
1030
1091
|
**/
|
|
1031
|
-
|
|
1092
|
+
XcmV3Junctions: {
|
|
1032
1093
|
_enum: {
|
|
1033
1094
|
Here: "Null",
|
|
1034
|
-
X1: "
|
|
1035
|
-
X2: "(
|
|
1036
|
-
X3: "(
|
|
1037
|
-
X4: "(
|
|
1038
|
-
X5: "(
|
|
1039
|
-
X6: "(
|
|
1040
|
-
X7: "(
|
|
1041
|
-
X8: "(
|
|
1095
|
+
X1: "XcmV3Junction",
|
|
1096
|
+
X2: "(XcmV3Junction,XcmV3Junction)",
|
|
1097
|
+
X3: "(XcmV3Junction,XcmV3Junction,XcmV3Junction)",
|
|
1098
|
+
X4: "(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)",
|
|
1099
|
+
X5: "(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)",
|
|
1100
|
+
X6: "(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)",
|
|
1101
|
+
X7: "(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)",
|
|
1102
|
+
X8: "(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)"
|
|
1042
1103
|
}
|
|
1043
1104
|
},
|
|
1044
1105
|
/**
|
|
1045
|
-
*
|
|
1106
|
+
* Lookup110: xcm::v3::junction::Junction
|
|
1046
1107
|
**/
|
|
1047
|
-
|
|
1108
|
+
XcmV3Junction: {
|
|
1048
1109
|
_enum: {
|
|
1049
1110
|
Parachain: "Compact<u32>",
|
|
1050
1111
|
AccountId32: {
|
|
1051
|
-
network: "
|
|
1112
|
+
network: "Option<XcmV3JunctionNetworkId>",
|
|
1052
1113
|
id: "[u8;32]"
|
|
1053
1114
|
},
|
|
1054
1115
|
AccountIndex64: {
|
|
1055
|
-
network: "
|
|
1116
|
+
network: "Option<XcmV3JunctionNetworkId>",
|
|
1056
1117
|
index: "Compact<u64>"
|
|
1057
1118
|
},
|
|
1058
1119
|
AccountKey20: {
|
|
1059
|
-
network: "
|
|
1120
|
+
network: "Option<XcmV3JunctionNetworkId>",
|
|
1060
1121
|
key: "[u8;20]"
|
|
1061
1122
|
},
|
|
1062
1123
|
PalletInstance: "u8",
|
|
1063
1124
|
GeneralIndex: "Compact<u128>",
|
|
1064
|
-
GeneralKey:
|
|
1125
|
+
GeneralKey: {
|
|
1126
|
+
length: "u8",
|
|
1127
|
+
data: "[u8;32]"
|
|
1128
|
+
},
|
|
1065
1129
|
OnlyChild: "Null",
|
|
1066
1130
|
Plurality: {
|
|
1067
|
-
id: "
|
|
1068
|
-
part: "
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
},
|
|
1072
|
-
/**
|
|
1073
|
-
* Lookup101: xcm::v2::NetworkId
|
|
1074
|
-
**/
|
|
1075
|
-
XcmV2NetworkId: {
|
|
1076
|
-
_enum: {
|
|
1077
|
-
Any: "Null",
|
|
1078
|
-
Named: "Bytes",
|
|
1079
|
-
Polkadot: "Null",
|
|
1080
|
-
Kusama: "Null"
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
|
-
/**
|
|
1084
|
-
* Lookup103: xcm::v2::BodyId
|
|
1085
|
-
**/
|
|
1086
|
-
XcmV2BodyId: {
|
|
1087
|
-
_enum: {
|
|
1088
|
-
Unit: "Null",
|
|
1089
|
-
Named: "Bytes",
|
|
1090
|
-
Index: "Compact<u32>",
|
|
1091
|
-
Executive: "Null",
|
|
1092
|
-
Technical: "Null",
|
|
1093
|
-
Legislative: "Null",
|
|
1094
|
-
Judicial: "Null",
|
|
1095
|
-
Defense: "Null",
|
|
1096
|
-
Administration: "Null",
|
|
1097
|
-
Treasury: "Null"
|
|
1131
|
+
id: "XcmV3JunctionBodyId",
|
|
1132
|
+
part: "XcmV3JunctionBodyPart"
|
|
1133
|
+
},
|
|
1134
|
+
GlobalConsensus: "XcmV3JunctionNetworkId"
|
|
1098
1135
|
}
|
|
1099
1136
|
},
|
|
1100
1137
|
/**
|
|
1101
|
-
*
|
|
1138
|
+
* Lookup112: xcm::v3::junction::NetworkId
|
|
1102
1139
|
**/
|
|
1103
|
-
|
|
1140
|
+
XcmV3JunctionNetworkId: {
|
|
1104
1141
|
_enum: {
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
Fraction: {
|
|
1110
|
-
nom: "Compact<u32>",
|
|
1111
|
-
denom: "Compact<u32>"
|
|
1142
|
+
ByGenesis: "[u8;32]",
|
|
1143
|
+
ByFork: {
|
|
1144
|
+
blockNumber: "u64",
|
|
1145
|
+
blockHash: "[u8;32]"
|
|
1112
1146
|
},
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1147
|
+
Polkadot: "Null",
|
|
1148
|
+
Kusama: "Null",
|
|
1149
|
+
Westend: "Null",
|
|
1150
|
+
Rococo: "Null",
|
|
1151
|
+
Wococo: "Null",
|
|
1152
|
+
Ethereum: {
|
|
1153
|
+
chainId: "Compact<u64>"
|
|
1116
1154
|
},
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
}
|
|
1155
|
+
BitcoinCore: "Null",
|
|
1156
|
+
BitcoinCash: "Null",
|
|
1157
|
+
PolkadotBulletin: "Null"
|
|
1121
1158
|
}
|
|
1122
1159
|
},
|
|
1123
1160
|
/**
|
|
1124
|
-
*
|
|
1161
|
+
* Lookup113: xcm::v3::multiasset::Fungibility
|
|
1125
1162
|
**/
|
|
1126
|
-
|
|
1163
|
+
XcmV3MultiassetFungibility: {
|
|
1127
1164
|
_enum: {
|
|
1128
1165
|
Fungible: "Compact<u128>",
|
|
1129
|
-
NonFungible: "
|
|
1166
|
+
NonFungible: "XcmV3MultiassetAssetInstance"
|
|
1130
1167
|
}
|
|
1131
1168
|
},
|
|
1132
1169
|
/**
|
|
1133
|
-
*
|
|
1170
|
+
* Lookup114: xcm::v3::multiasset::AssetInstance
|
|
1134
1171
|
**/
|
|
1135
|
-
|
|
1172
|
+
XcmV3MultiassetAssetInstance: {
|
|
1136
1173
|
_enum: {
|
|
1137
1174
|
Undefined: "Null",
|
|
1138
1175
|
Index: "Compact<u128>",
|
|
1139
1176
|
Array4: "[u8;4]",
|
|
1140
1177
|
Array8: "[u8;8]",
|
|
1141
1178
|
Array16: "[u8;16]",
|
|
1142
|
-
Array32: "[u8;32]"
|
|
1143
|
-
Blob: "Bytes"
|
|
1179
|
+
Array32: "[u8;32]"
|
|
1144
1180
|
}
|
|
1145
1181
|
},
|
|
1146
1182
|
/**
|
|
1147
|
-
*
|
|
1183
|
+
* Lookup115: staging_xcm::v4::asset::Assets
|
|
1148
1184
|
**/
|
|
1149
|
-
|
|
1185
|
+
StagingXcmV4AssetAssets: "Vec<StagingXcmV4Asset>",
|
|
1150
1186
|
/**
|
|
1151
|
-
*
|
|
1187
|
+
* Lookup117: staging_xcm::v4::asset::Asset
|
|
1152
1188
|
**/
|
|
1153
|
-
|
|
1154
|
-
id: "
|
|
1155
|
-
fun: "
|
|
1189
|
+
StagingXcmV4Asset: {
|
|
1190
|
+
id: "StagingXcmV4AssetAssetId",
|
|
1191
|
+
fun: "StagingXcmV4AssetFungibility"
|
|
1156
1192
|
},
|
|
1157
1193
|
/**
|
|
1158
|
-
*
|
|
1194
|
+
* Lookup118: staging_xcm::v4::asset::AssetId
|
|
1159
1195
|
**/
|
|
1160
|
-
|
|
1161
|
-
_enum: {
|
|
1162
|
-
Concrete: "StagingXcmV3MultiLocation",
|
|
1163
|
-
Abstract: "[u8;32]"
|
|
1164
|
-
}
|
|
1165
|
-
},
|
|
1196
|
+
StagingXcmV4AssetAssetId: "StagingXcmV4Location",
|
|
1166
1197
|
/**
|
|
1167
|
-
*
|
|
1198
|
+
* Lookup119: staging_xcm::v4::location::Location
|
|
1168
1199
|
**/
|
|
1169
|
-
|
|
1200
|
+
StagingXcmV4Location: {
|
|
1170
1201
|
parents: "u8",
|
|
1171
|
-
interior: "
|
|
1202
|
+
interior: "StagingXcmV4Junctions"
|
|
1172
1203
|
},
|
|
1173
1204
|
/**
|
|
1174
|
-
*
|
|
1205
|
+
* Lookup120: staging_xcm::v4::junctions::Junctions
|
|
1175
1206
|
**/
|
|
1176
|
-
|
|
1207
|
+
StagingXcmV4Junctions: {
|
|
1177
1208
|
_enum: {
|
|
1178
1209
|
Here: "Null",
|
|
1179
|
-
X1: "
|
|
1180
|
-
X2: "
|
|
1181
|
-
X3: "
|
|
1182
|
-
X4: "
|
|
1183
|
-
X5: "
|
|
1184
|
-
X6: "
|
|
1185
|
-
X7: "
|
|
1186
|
-
X8: "
|
|
1210
|
+
X1: "[Lookup122;1]",
|
|
1211
|
+
X2: "[Lookup122;2]",
|
|
1212
|
+
X3: "[Lookup122;3]",
|
|
1213
|
+
X4: "[Lookup122;4]",
|
|
1214
|
+
X5: "[Lookup122;5]",
|
|
1215
|
+
X6: "[Lookup122;6]",
|
|
1216
|
+
X7: "[Lookup122;7]",
|
|
1217
|
+
X8: "[Lookup122;8]"
|
|
1187
1218
|
}
|
|
1188
1219
|
},
|
|
1189
1220
|
/**
|
|
1190
|
-
*
|
|
1221
|
+
* Lookup122: staging_xcm::v4::junction::Junction
|
|
1191
1222
|
**/
|
|
1192
|
-
|
|
1223
|
+
StagingXcmV4Junction: {
|
|
1193
1224
|
_enum: {
|
|
1194
1225
|
Parachain: "Compact<u32>",
|
|
1195
1226
|
AccountId32: {
|
|
1196
|
-
network: "Option<
|
|
1227
|
+
network: "Option<StagingXcmV4JunctionNetworkId>",
|
|
1197
1228
|
id: "[u8;32]"
|
|
1198
1229
|
},
|
|
1199
1230
|
AccountIndex64: {
|
|
1200
|
-
network: "Option<
|
|
1231
|
+
network: "Option<StagingXcmV4JunctionNetworkId>",
|
|
1201
1232
|
index: "Compact<u64>"
|
|
1202
1233
|
},
|
|
1203
1234
|
AccountKey20: {
|
|
1204
|
-
network: "Option<
|
|
1235
|
+
network: "Option<StagingXcmV4JunctionNetworkId>",
|
|
1205
1236
|
key: "[u8;20]"
|
|
1206
1237
|
},
|
|
1207
1238
|
PalletInstance: "u8",
|
|
@@ -1215,13 +1246,13 @@ export default {
|
|
|
1215
1246
|
id: "XcmV3JunctionBodyId",
|
|
1216
1247
|
part: "XcmV3JunctionBodyPart"
|
|
1217
1248
|
},
|
|
1218
|
-
GlobalConsensus: "
|
|
1249
|
+
GlobalConsensus: "StagingXcmV4JunctionNetworkId"
|
|
1219
1250
|
}
|
|
1220
1251
|
},
|
|
1221
1252
|
/**
|
|
1222
|
-
*
|
|
1253
|
+
* Lookup124: staging_xcm::v4::junction::NetworkId
|
|
1223
1254
|
**/
|
|
1224
|
-
|
|
1255
|
+
StagingXcmV4JunctionNetworkId: {
|
|
1225
1256
|
_enum: {
|
|
1226
1257
|
ByGenesis: "[u8;32]",
|
|
1227
1258
|
ByFork: {
|
|
@@ -1242,18 +1273,18 @@ export default {
|
|
|
1242
1273
|
}
|
|
1243
1274
|
},
|
|
1244
1275
|
/**
|
|
1245
|
-
*
|
|
1276
|
+
* Lookup132: staging_xcm::v4::asset::Fungibility
|
|
1246
1277
|
**/
|
|
1247
|
-
|
|
1278
|
+
StagingXcmV4AssetFungibility: {
|
|
1248
1279
|
_enum: {
|
|
1249
1280
|
Fungible: "Compact<u128>",
|
|
1250
|
-
NonFungible: "
|
|
1281
|
+
NonFungible: "StagingXcmV4AssetAssetInstance"
|
|
1251
1282
|
}
|
|
1252
1283
|
},
|
|
1253
1284
|
/**
|
|
1254
|
-
*
|
|
1285
|
+
* Lookup133: staging_xcm::v4::asset::AssetInstance
|
|
1255
1286
|
**/
|
|
1256
|
-
|
|
1287
|
+
StagingXcmV4AssetAssetInstance: {
|
|
1257
1288
|
_enum: {
|
|
1258
1289
|
Undefined: "Null",
|
|
1259
1290
|
Index: "Compact<u128>",
|
|
@@ -1264,29 +1295,30 @@ export default {
|
|
|
1264
1295
|
}
|
|
1265
1296
|
},
|
|
1266
1297
|
/**
|
|
1267
|
-
*
|
|
1298
|
+
* Lookup134: xcm::VersionedLocation
|
|
1268
1299
|
**/
|
|
1269
1300
|
XcmVersionedLocation: {
|
|
1270
1301
|
_enum: {
|
|
1271
1302
|
__Unused0: "Null",
|
|
1272
|
-
|
|
1303
|
+
__Unused1: "Null",
|
|
1273
1304
|
__Unused2: "Null",
|
|
1274
1305
|
V3: "StagingXcmV3MultiLocation",
|
|
1275
|
-
V4: "StagingXcmV4Location"
|
|
1306
|
+
V4: "StagingXcmV4Location",
|
|
1307
|
+
V5: "StagingXcmV5Location"
|
|
1276
1308
|
}
|
|
1277
1309
|
},
|
|
1278
1310
|
/**
|
|
1279
|
-
*
|
|
1311
|
+
* Lookup135: cumulus_pallet_xcm::pallet::Event<T>
|
|
1280
1312
|
**/
|
|
1281
1313
|
CumulusPalletXcmEvent: {
|
|
1282
1314
|
_enum: {
|
|
1283
1315
|
InvalidFormat: "[u8;32]",
|
|
1284
1316
|
UnsupportedVersion: "[u8;32]",
|
|
1285
|
-
ExecutedDownward: "([u8;32],
|
|
1317
|
+
ExecutedDownward: "([u8;32],StagingXcmV5TraitsOutcome)"
|
|
1286
1318
|
}
|
|
1287
1319
|
},
|
|
1288
1320
|
/**
|
|
1289
|
-
*
|
|
1321
|
+
* Lookup136: pallet_message_queue::pallet::Event<T>
|
|
1290
1322
|
**/
|
|
1291
1323
|
PalletMessageQueueEvent: {
|
|
1292
1324
|
_enum: {
|
|
@@ -1314,7 +1346,7 @@ export default {
|
|
|
1314
1346
|
}
|
|
1315
1347
|
},
|
|
1316
1348
|
/**
|
|
1317
|
-
*
|
|
1349
|
+
* Lookup137: cumulus_primitives_core::AggregateMessageOrigin
|
|
1318
1350
|
**/
|
|
1319
1351
|
CumulusPrimitivesCoreAggregateMessageOrigin: {
|
|
1320
1352
|
_enum: {
|
|
@@ -1324,7 +1356,7 @@ export default {
|
|
|
1324
1356
|
}
|
|
1325
1357
|
},
|
|
1326
1358
|
/**
|
|
1327
|
-
*
|
|
1359
|
+
* Lookup139: frame_support::traits::messages::ProcessMessageError
|
|
1328
1360
|
**/
|
|
1329
1361
|
FrameSupportMessagesProcessMessageError: {
|
|
1330
1362
|
_enum: {
|
|
@@ -1337,22 +1369,21 @@ export default {
|
|
|
1337
1369
|
}
|
|
1338
1370
|
},
|
|
1339
1371
|
/**
|
|
1340
|
-
*
|
|
1372
|
+
* Lookup140: pallet_storage_providers::pallet::Event<T>
|
|
1341
1373
|
**/
|
|
1342
1374
|
PalletStorageProvidersEvent: {
|
|
1343
1375
|
_enum: {
|
|
1344
1376
|
MspRequestSignUpSuccess: {
|
|
1345
1377
|
who: "AccountId32",
|
|
1346
1378
|
multiaddresses: "Vec<Bytes>",
|
|
1347
|
-
capacity: "u64"
|
|
1348
|
-
valueProp: "PalletStorageProvidersValueProposition"
|
|
1379
|
+
capacity: "u64"
|
|
1349
1380
|
},
|
|
1350
1381
|
MspSignUpSuccess: {
|
|
1351
1382
|
who: "AccountId32",
|
|
1352
1383
|
mspId: "H256",
|
|
1353
1384
|
multiaddresses: "Vec<Bytes>",
|
|
1354
1385
|
capacity: "u64",
|
|
1355
|
-
valueProp: "
|
|
1386
|
+
valueProp: "PalletStorageProvidersValuePropositionWithId"
|
|
1356
1387
|
},
|
|
1357
1388
|
BspRequestSignUpSuccess: {
|
|
1358
1389
|
who: "AccountId32",
|
|
@@ -1362,6 +1393,7 @@ export default {
|
|
|
1362
1393
|
BspSignUpSuccess: {
|
|
1363
1394
|
who: "AccountId32",
|
|
1364
1395
|
bspId: "H256",
|
|
1396
|
+
root: "H256",
|
|
1365
1397
|
multiaddresses: "Vec<Bytes>",
|
|
1366
1398
|
capacity: "u64"
|
|
1367
1399
|
},
|
|
@@ -1385,20 +1417,87 @@ export default {
|
|
|
1385
1417
|
},
|
|
1386
1418
|
Slashed: {
|
|
1387
1419
|
providerId: "H256",
|
|
1388
|
-
|
|
1420
|
+
amount: "u128"
|
|
1421
|
+
},
|
|
1422
|
+
AwaitingTopUp: {
|
|
1423
|
+
providerId: "H256",
|
|
1424
|
+
topUpMetadata: "PalletStorageProvidersTopUpMetadata"
|
|
1425
|
+
},
|
|
1426
|
+
TopUpFulfilled: {
|
|
1427
|
+
providerId: "H256",
|
|
1428
|
+
amount: "u128"
|
|
1429
|
+
},
|
|
1430
|
+
FailedToGetOwnerAccountOfInsolventProvider: {
|
|
1431
|
+
providerId: "H256"
|
|
1432
|
+
},
|
|
1433
|
+
FailedToSlashInsolventProvider: {
|
|
1434
|
+
providerId: "H256",
|
|
1435
|
+
amountToSlash: "u128",
|
|
1436
|
+
error: "SpRuntimeDispatchError"
|
|
1437
|
+
},
|
|
1438
|
+
FailedToStopAllCyclesForInsolventBsp: {
|
|
1439
|
+
providerId: "H256",
|
|
1440
|
+
error: "SpRuntimeDispatchError"
|
|
1441
|
+
},
|
|
1442
|
+
FailedToInsertProviderTopUpExpiration: {
|
|
1443
|
+
providerId: "H256",
|
|
1444
|
+
expirationTick: "u32"
|
|
1445
|
+
},
|
|
1446
|
+
ProviderInsolvent: {
|
|
1447
|
+
providerId: "H256"
|
|
1448
|
+
},
|
|
1449
|
+
BucketsOfInsolventMsp: {
|
|
1450
|
+
mspId: "H256",
|
|
1451
|
+
buckets: "Vec<H256>"
|
|
1452
|
+
},
|
|
1453
|
+
BucketRootChanged: {
|
|
1454
|
+
bucketId: "H256",
|
|
1455
|
+
oldRoot: "H256",
|
|
1456
|
+
newRoot: "H256"
|
|
1457
|
+
},
|
|
1458
|
+
MultiAddressAdded: {
|
|
1459
|
+
providerId: "H256",
|
|
1460
|
+
newMultiaddress: "Bytes"
|
|
1461
|
+
},
|
|
1462
|
+
MultiAddressRemoved: {
|
|
1463
|
+
providerId: "H256",
|
|
1464
|
+
removedMultiaddress: "Bytes"
|
|
1465
|
+
},
|
|
1466
|
+
ValuePropAdded: {
|
|
1467
|
+
mspId: "H256",
|
|
1468
|
+
valuePropId: "H256",
|
|
1469
|
+
valueProp: "PalletStorageProvidersValueProposition"
|
|
1470
|
+
},
|
|
1471
|
+
ValuePropUnavailable: {
|
|
1472
|
+
mspId: "H256",
|
|
1473
|
+
valuePropId: "H256"
|
|
1474
|
+
},
|
|
1475
|
+
MspDeleted: {
|
|
1476
|
+
providerId: "H256"
|
|
1477
|
+
},
|
|
1478
|
+
BspDeleted: {
|
|
1479
|
+
providerId: "H256"
|
|
1389
1480
|
}
|
|
1390
1481
|
}
|
|
1391
1482
|
},
|
|
1392
1483
|
/**
|
|
1393
|
-
*
|
|
1484
|
+
* Lookup144: pallet_storage_providers::types::ValuePropositionWithId<T>
|
|
1485
|
+
**/
|
|
1486
|
+
PalletStorageProvidersValuePropositionWithId: {
|
|
1487
|
+
id: "H256",
|
|
1488
|
+
valueProp: "PalletStorageProvidersValueProposition"
|
|
1489
|
+
},
|
|
1490
|
+
/**
|
|
1491
|
+
* Lookup145: pallet_storage_providers::types::ValueProposition<T>
|
|
1394
1492
|
**/
|
|
1395
1493
|
PalletStorageProvidersValueProposition: {
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1494
|
+
pricePerGigaUnitOfDataPerBlock: "u128",
|
|
1495
|
+
commitment: "Bytes",
|
|
1496
|
+
bucketDataLimit: "u64",
|
|
1497
|
+
available: "bool"
|
|
1399
1498
|
},
|
|
1400
1499
|
/**
|
|
1401
|
-
*
|
|
1500
|
+
* Lookup147: pallet_storage_providers::types::StorageProviderId<T>
|
|
1402
1501
|
**/
|
|
1403
1502
|
PalletStorageProvidersStorageProviderId: {
|
|
1404
1503
|
_enum: {
|
|
@@ -1407,7 +1506,14 @@ export default {
|
|
|
1407
1506
|
}
|
|
1408
1507
|
},
|
|
1409
1508
|
/**
|
|
1410
|
-
*
|
|
1509
|
+
* Lookup148: pallet_storage_providers::types::TopUpMetadata<T>
|
|
1510
|
+
**/
|
|
1511
|
+
PalletStorageProvidersTopUpMetadata: {
|
|
1512
|
+
startedAt: "u32",
|
|
1513
|
+
endTickGracePeriod: "u32"
|
|
1514
|
+
},
|
|
1515
|
+
/**
|
|
1516
|
+
* Lookup150: pallet_file_system::pallet::Event<T>
|
|
1411
1517
|
**/
|
|
1412
1518
|
PalletFileSystemEvent: {
|
|
1413
1519
|
_enum: {
|
|
@@ -1416,13 +1522,21 @@ export default {
|
|
|
1416
1522
|
mspId: "H256",
|
|
1417
1523
|
bucketId: "H256",
|
|
1418
1524
|
name: "Bytes",
|
|
1525
|
+
root: "H256",
|
|
1419
1526
|
collectionId: "Option<u32>",
|
|
1420
|
-
private: "bool"
|
|
1527
|
+
private: "bool",
|
|
1528
|
+
valuePropId: "H256"
|
|
1529
|
+
},
|
|
1530
|
+
BucketDeleted: {
|
|
1531
|
+
who: "AccountId32",
|
|
1532
|
+
bucketId: "H256",
|
|
1533
|
+
maybeCollectionId: "Option<u32>"
|
|
1421
1534
|
},
|
|
1422
1535
|
MoveBucketRequested: {
|
|
1423
1536
|
who: "AccountId32",
|
|
1424
1537
|
bucketId: "H256",
|
|
1425
|
-
newMspId: "H256"
|
|
1538
|
+
newMspId: "H256",
|
|
1539
|
+
newValuePropId: "H256"
|
|
1426
1540
|
},
|
|
1427
1541
|
BucketPrivacyUpdated: {
|
|
1428
1542
|
who: "AccountId32",
|
|
@@ -1445,10 +1559,12 @@ export default {
|
|
|
1445
1559
|
location: "Bytes",
|
|
1446
1560
|
fingerprint: "H256",
|
|
1447
1561
|
size_: "u64",
|
|
1448
|
-
peerIds: "Vec<Bytes>"
|
|
1562
|
+
peerIds: "Vec<Bytes>",
|
|
1563
|
+
expiresAt: "u32"
|
|
1449
1564
|
},
|
|
1450
|
-
|
|
1451
|
-
|
|
1565
|
+
MspAcceptedStorageRequest: {
|
|
1566
|
+
fileKey: "H256",
|
|
1567
|
+
fileMetadata: "ShpFileMetadataFileMetadata"
|
|
1452
1568
|
},
|
|
1453
1569
|
AcceptedBspVolunteer: {
|
|
1454
1570
|
_alias: {
|
|
@@ -1465,7 +1581,8 @@ export default {
|
|
|
1465
1581
|
BspConfirmedStoring: {
|
|
1466
1582
|
who: "AccountId32",
|
|
1467
1583
|
bspId: "H256",
|
|
1468
|
-
|
|
1584
|
+
confirmedFileKeys: "Vec<(H256,ShpFileMetadataFileMetadata)>",
|
|
1585
|
+
skippedFileKeys: "Vec<H256>",
|
|
1469
1586
|
newRoot: "H256"
|
|
1470
1587
|
},
|
|
1471
1588
|
StorageRequestFulfilled: {
|
|
@@ -1477,6 +1594,10 @@ export default {
|
|
|
1477
1594
|
StorageRequestRevoked: {
|
|
1478
1595
|
fileKey: "H256"
|
|
1479
1596
|
},
|
|
1597
|
+
StorageRequestRejected: {
|
|
1598
|
+
fileKey: "H256",
|
|
1599
|
+
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
1600
|
+
},
|
|
1480
1601
|
BspRequestedToStopStoring: {
|
|
1481
1602
|
bspId: "H256",
|
|
1482
1603
|
fileKey: "H256",
|
|
@@ -1499,22 +1620,29 @@ export default {
|
|
|
1499
1620
|
location: "Bytes",
|
|
1500
1621
|
newRoot: "H256"
|
|
1501
1622
|
},
|
|
1623
|
+
MspStopStoringBucketInsolventUser: {
|
|
1624
|
+
mspId: "H256",
|
|
1625
|
+
owner: "AccountId32",
|
|
1626
|
+
bucketId: "H256"
|
|
1627
|
+
},
|
|
1502
1628
|
FailedToQueuePriorityChallenge: {
|
|
1503
|
-
|
|
1504
|
-
|
|
1629
|
+
fileKey: "H256",
|
|
1630
|
+
error: "SpRuntimeDispatchError"
|
|
1505
1631
|
},
|
|
1506
1632
|
FileDeletionRequest: {
|
|
1507
1633
|
user: "AccountId32",
|
|
1508
1634
|
fileKey: "H256",
|
|
1635
|
+
fileSize: "u64",
|
|
1509
1636
|
bucketId: "H256",
|
|
1510
1637
|
mspId: "H256",
|
|
1511
1638
|
proofOfInclusion: "bool"
|
|
1512
1639
|
},
|
|
1513
1640
|
ProofSubmittedForPendingFileDeletionRequest: {
|
|
1514
|
-
mspId: "H256",
|
|
1515
1641
|
user: "AccountId32",
|
|
1516
1642
|
fileKey: "H256",
|
|
1643
|
+
fileSize: "u64",
|
|
1517
1644
|
bucketId: "H256",
|
|
1645
|
+
mspId: "H256",
|
|
1518
1646
|
proofOfInclusion: "bool"
|
|
1519
1647
|
},
|
|
1520
1648
|
BspChallengeCycleInitialised: {
|
|
@@ -1522,78 +1650,109 @@ export default {
|
|
|
1522
1650
|
bspId: "H256"
|
|
1523
1651
|
},
|
|
1524
1652
|
MoveBucketRequestExpired: {
|
|
1525
|
-
mspId: "H256",
|
|
1526
1653
|
bucketId: "H256"
|
|
1527
1654
|
},
|
|
1528
1655
|
MoveBucketAccepted: {
|
|
1529
1656
|
bucketId: "H256",
|
|
1530
|
-
|
|
1657
|
+
oldMspId: "Option<H256>",
|
|
1658
|
+
newMspId: "H256",
|
|
1659
|
+
valuePropId: "H256"
|
|
1531
1660
|
},
|
|
1532
1661
|
MoveBucketRejected: {
|
|
1533
1662
|
bucketId: "H256",
|
|
1534
|
-
|
|
1663
|
+
oldMspId: "Option<H256>",
|
|
1664
|
+
newMspId: "H256"
|
|
1665
|
+
},
|
|
1666
|
+
MspStoppedStoringBucket: {
|
|
1667
|
+
mspId: "H256",
|
|
1668
|
+
owner: "AccountId32",
|
|
1669
|
+
bucketId: "H256"
|
|
1670
|
+
},
|
|
1671
|
+
FailedToGetMspOfBucket: {
|
|
1672
|
+
bucketId: "H256",
|
|
1673
|
+
error: "SpRuntimeDispatchError"
|
|
1674
|
+
},
|
|
1675
|
+
FailedToDecreaseMspUsedCapacity: {
|
|
1676
|
+
user: "AccountId32",
|
|
1677
|
+
mspId: "H256",
|
|
1678
|
+
fileKey: "H256",
|
|
1679
|
+
fileSize: "u64",
|
|
1680
|
+
error: "SpRuntimeDispatchError"
|
|
1681
|
+
},
|
|
1682
|
+
UsedCapacityShouldBeZero: {
|
|
1683
|
+
actualUsedCapacity: "u64"
|
|
1684
|
+
},
|
|
1685
|
+
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1686
|
+
fileKey: "H256",
|
|
1687
|
+
owner: "AccountId32",
|
|
1688
|
+
amountToReturn: "u128",
|
|
1689
|
+
error: "SpRuntimeDispatchError"
|
|
1690
|
+
},
|
|
1691
|
+
FailedToTransferDepositFundsToBsp: {
|
|
1692
|
+
fileKey: "H256",
|
|
1693
|
+
owner: "AccountId32",
|
|
1694
|
+
bspId: "H256",
|
|
1695
|
+
amountToTransfer: "u128",
|
|
1696
|
+
error: "SpRuntimeDispatchError"
|
|
1697
|
+
},
|
|
1698
|
+
FileDeletionRequested: {
|
|
1699
|
+
signedDeleteIntention: "PalletFileSystemFileOperationIntention",
|
|
1700
|
+
signature: "SpRuntimeMultiSignature"
|
|
1701
|
+
},
|
|
1702
|
+
BucketFileDeletionCompleted: {
|
|
1703
|
+
user: "AccountId32",
|
|
1704
|
+
fileKey: "H256",
|
|
1705
|
+
fileSize: "u64",
|
|
1706
|
+
bucketId: "H256",
|
|
1707
|
+
mspId: "Option<H256>",
|
|
1708
|
+
oldRoot: "H256",
|
|
1709
|
+
newRoot: "H256"
|
|
1710
|
+
},
|
|
1711
|
+
BspFileDeletionCompleted: {
|
|
1712
|
+
user: "AccountId32",
|
|
1713
|
+
fileKey: "H256",
|
|
1714
|
+
fileSize: "u64",
|
|
1715
|
+
bspId: "H256",
|
|
1716
|
+
oldRoot: "H256",
|
|
1717
|
+
newRoot: "H256"
|
|
1718
|
+
},
|
|
1719
|
+
FileDeletedFromIncompleteStorageRequest: {
|
|
1720
|
+
fileKey: "H256",
|
|
1721
|
+
bspId: "Option<H256>"
|
|
1535
1722
|
},
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
bucketId: "H256"
|
|
1723
|
+
IncompleteStorageRequest: {
|
|
1724
|
+
fileKey: "H256"
|
|
1539
1725
|
}
|
|
1540
1726
|
}
|
|
1541
1727
|
},
|
|
1542
1728
|
/**
|
|
1543
|
-
*
|
|
1544
|
-
**/
|
|
1545
|
-
PalletFileSystemMspRespondStorageRequestsResult: {
|
|
1546
|
-
mspId: "H256",
|
|
1547
|
-
responses: "Vec<PalletFileSystemBatchResponses>"
|
|
1548
|
-
},
|
|
1549
|
-
/**
|
|
1550
|
-
* Lookup136: pallet_file_system::types::BatchResponses<T>
|
|
1551
|
-
**/
|
|
1552
|
-
PalletFileSystemBatchResponses: {
|
|
1553
|
-
_enum: {
|
|
1554
|
-
Accepted: "PalletFileSystemMspAcceptedBatchStorageRequests",
|
|
1555
|
-
Rejected: "PalletFileSystemMspRejectedBatchStorageRequests",
|
|
1556
|
-
Failed: "PalletFileSystemMspFailedBatchStorageRequests"
|
|
1557
|
-
}
|
|
1558
|
-
},
|
|
1559
|
-
/**
|
|
1560
|
-
* Lookup137: pallet_file_system::types::MspAcceptedBatchStorageRequests<T>
|
|
1729
|
+
* Lookup153: shp_file_metadata::FileMetadata
|
|
1561
1730
|
**/
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
bucketId: "
|
|
1565
|
-
|
|
1566
|
-
|
|
1731
|
+
ShpFileMetadataFileMetadata: {
|
|
1732
|
+
owner: "Bytes",
|
|
1733
|
+
bucketId: "Bytes",
|
|
1734
|
+
location: "Bytes",
|
|
1735
|
+
fileSize: "Compact<u64>",
|
|
1736
|
+
fingerprint: "ShpFileMetadataFingerprint"
|
|
1567
1737
|
},
|
|
1568
1738
|
/**
|
|
1569
|
-
*
|
|
1739
|
+
* Lookup154: shp_file_metadata::Fingerprint
|
|
1570
1740
|
**/
|
|
1571
|
-
|
|
1572
|
-
fileKeys: "Vec<(H256,PalletFileSystemRejectedStorageRequestReason)>",
|
|
1573
|
-
bucketId: "H256",
|
|
1574
|
-
owner: "AccountId32"
|
|
1575
|
-
},
|
|
1741
|
+
ShpFileMetadataFingerprint: "[u8;32]",
|
|
1576
1742
|
/**
|
|
1577
|
-
*
|
|
1743
|
+
* Lookup159: pallet_file_system::types::RejectedStorageRequestReason
|
|
1578
1744
|
**/
|
|
1579
1745
|
PalletFileSystemRejectedStorageRequestReason: {
|
|
1580
1746
|
_enum: [
|
|
1581
1747
|
"ReachedMaximumCapacity",
|
|
1582
1748
|
"ReceivedInvalidProof",
|
|
1583
1749
|
"FileKeyAlreadyStored",
|
|
1750
|
+
"RequestExpired",
|
|
1584
1751
|
"InternalError"
|
|
1585
1752
|
]
|
|
1586
1753
|
},
|
|
1587
1754
|
/**
|
|
1588
|
-
*
|
|
1589
|
-
**/
|
|
1590
|
-
PalletFileSystemMspFailedBatchStorageRequests: {
|
|
1591
|
-
fileKeys: "Vec<(H256,SpRuntimeDispatchError)>",
|
|
1592
|
-
bucketId: "H256",
|
|
1593
|
-
owner: "AccountId32"
|
|
1594
|
-
},
|
|
1595
|
-
/**
|
|
1596
|
-
* Lookup150: pallet_file_system::types::EitherAccountIdOrMspId<T>
|
|
1755
|
+
* Lookup160: pallet_file_system::types::EitherAccountIdOrMspId<T>
|
|
1597
1756
|
**/
|
|
1598
1757
|
PalletFileSystemEitherAccountIdOrMspId: {
|
|
1599
1758
|
_enum: {
|
|
@@ -1602,17 +1761,46 @@ export default {
|
|
|
1602
1761
|
}
|
|
1603
1762
|
},
|
|
1604
1763
|
/**
|
|
1605
|
-
*
|
|
1764
|
+
* Lookup162: pallet_file_system::types::FileOperationIntention<T>
|
|
1765
|
+
**/
|
|
1766
|
+
PalletFileSystemFileOperationIntention: {
|
|
1767
|
+
fileKey: "H256",
|
|
1768
|
+
operation: "PalletFileSystemFileOperation"
|
|
1769
|
+
},
|
|
1770
|
+
/**
|
|
1771
|
+
* Lookup163: pallet_file_system::types::FileOperation
|
|
1772
|
+
**/
|
|
1773
|
+
PalletFileSystemFileOperation: {
|
|
1774
|
+
_enum: ["Delete"]
|
|
1775
|
+
},
|
|
1776
|
+
/**
|
|
1777
|
+
* Lookup164: sp_runtime::MultiSignature
|
|
1778
|
+
**/
|
|
1779
|
+
SpRuntimeMultiSignature: {
|
|
1780
|
+
_enum: {
|
|
1781
|
+
Ed25519: "[u8;64]",
|
|
1782
|
+
Sr25519: "[u8;64]",
|
|
1783
|
+
Ecdsa: "[u8;65]"
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
/**
|
|
1787
|
+
* Lookup167: pallet_proofs_dealer::pallet::Event<T>
|
|
1606
1788
|
**/
|
|
1607
1789
|
PalletProofsDealerEvent: {
|
|
1608
1790
|
_enum: {
|
|
1609
1791
|
NewChallenge: {
|
|
1610
|
-
who: "AccountId32",
|
|
1792
|
+
who: "Option<AccountId32>",
|
|
1611
1793
|
keyChallenged: "H256"
|
|
1612
1794
|
},
|
|
1795
|
+
NewPriorityChallenge: {
|
|
1796
|
+
who: "Option<AccountId32>",
|
|
1797
|
+
keyChallenged: "H256",
|
|
1798
|
+
shouldRemoveKey: "bool"
|
|
1799
|
+
},
|
|
1613
1800
|
ProofAccepted: {
|
|
1614
|
-
|
|
1615
|
-
proof: "PalletProofsDealerProof"
|
|
1801
|
+
providerId: "H256",
|
|
1802
|
+
proof: "PalletProofsDealerProof",
|
|
1803
|
+
lastTickProven: "u32"
|
|
1616
1804
|
},
|
|
1617
1805
|
NewChallengeSeed: {
|
|
1618
1806
|
challengesTicker: "u32",
|
|
@@ -1620,7 +1808,7 @@ export default {
|
|
|
1620
1808
|
},
|
|
1621
1809
|
NewCheckpointChallenge: {
|
|
1622
1810
|
challengesTicker: "u32",
|
|
1623
|
-
challenges: "Vec<
|
|
1811
|
+
challenges: "Vec<PalletProofsDealerCustomChallenge>"
|
|
1624
1812
|
},
|
|
1625
1813
|
SlashableProvider: {
|
|
1626
1814
|
provider: "H256",
|
|
@@ -1635,63 +1823,80 @@ export default {
|
|
|
1635
1823
|
provider: "H256",
|
|
1636
1824
|
maybeProviderAccount: "Option<AccountId32>"
|
|
1637
1825
|
},
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
mutations: "Vec<(H256,
|
|
1826
|
+
MutationsAppliedForProvider: {
|
|
1827
|
+
providerId: "H256",
|
|
1828
|
+
mutations: "Vec<(H256,ShpTraitsTrieMutation)>",
|
|
1829
|
+
oldRoot: "H256",
|
|
1641
1830
|
newRoot: "H256"
|
|
1642
1831
|
},
|
|
1832
|
+
MutationsApplied: {
|
|
1833
|
+
mutations: "Vec<(H256,ShpTraitsTrieMutation)>",
|
|
1834
|
+
oldRoot: "H256",
|
|
1835
|
+
newRoot: "H256",
|
|
1836
|
+
eventInfo: "Option<Bytes>"
|
|
1837
|
+
},
|
|
1643
1838
|
ChallengesTickerSet: {
|
|
1644
1839
|
paused: "bool"
|
|
1645
1840
|
}
|
|
1646
1841
|
}
|
|
1647
1842
|
},
|
|
1648
1843
|
/**
|
|
1649
|
-
*
|
|
1844
|
+
* Lookup168: pallet_proofs_dealer::types::Proof<T>
|
|
1650
1845
|
**/
|
|
1651
1846
|
PalletProofsDealerProof: {
|
|
1652
1847
|
forestProof: "SpTrieStorageProofCompactProof",
|
|
1653
1848
|
keyProofs: "BTreeMap<H256, PalletProofsDealerKeyProof>"
|
|
1654
1849
|
},
|
|
1655
1850
|
/**
|
|
1656
|
-
*
|
|
1851
|
+
* Lookup169: sp_trie::storage_proof::CompactProof
|
|
1657
1852
|
**/
|
|
1658
1853
|
SpTrieStorageProofCompactProof: {
|
|
1659
1854
|
encodedNodes: "Vec<Bytes>"
|
|
1660
1855
|
},
|
|
1661
1856
|
/**
|
|
1662
|
-
*
|
|
1857
|
+
* Lookup172: pallet_proofs_dealer::types::KeyProof<T>
|
|
1663
1858
|
**/
|
|
1664
1859
|
PalletProofsDealerKeyProof: {
|
|
1665
1860
|
proof: "ShpFileKeyVerifierFileKeyProof",
|
|
1666
1861
|
challengeCount: "u32"
|
|
1667
1862
|
},
|
|
1668
1863
|
/**
|
|
1669
|
-
*
|
|
1864
|
+
* Lookup173: shp_file_key_verifier::types::FileKeyProof
|
|
1670
1865
|
**/
|
|
1671
1866
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1672
1867
|
fileMetadata: "ShpFileMetadataFileMetadata",
|
|
1673
1868
|
proof: "SpTrieStorageProofCompactProof"
|
|
1674
1869
|
},
|
|
1675
1870
|
/**
|
|
1676
|
-
*
|
|
1871
|
+
* Lookup177: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1677
1872
|
**/
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
location: "Bytes",
|
|
1682
|
-
fileSize: "Compact<u64>",
|
|
1683
|
-
fingerprint: "ShpFileMetadataFingerprint"
|
|
1873
|
+
PalletProofsDealerCustomChallenge: {
|
|
1874
|
+
key: "H256",
|
|
1875
|
+
shouldRemoveKey: "bool"
|
|
1684
1876
|
},
|
|
1685
1877
|
/**
|
|
1686
|
-
*
|
|
1878
|
+
* Lookup181: shp_traits::TrieMutation
|
|
1687
1879
|
**/
|
|
1688
|
-
|
|
1880
|
+
ShpTraitsTrieMutation: {
|
|
1881
|
+
_enum: {
|
|
1882
|
+
Add: "ShpTraitsTrieAddMutation",
|
|
1883
|
+
Remove: "ShpTraitsTrieRemoveMutation"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
/**
|
|
1887
|
+
* Lookup182: shp_traits::TrieAddMutation
|
|
1888
|
+
**/
|
|
1889
|
+
ShpTraitsTrieAddMutation: {
|
|
1890
|
+
value: "Bytes"
|
|
1891
|
+
},
|
|
1689
1892
|
/**
|
|
1690
|
-
*
|
|
1893
|
+
* Lookup183: shp_traits::TrieRemoveMutation
|
|
1691
1894
|
**/
|
|
1692
|
-
ShpTraitsTrieRemoveMutation:
|
|
1895
|
+
ShpTraitsTrieRemoveMutation: {
|
|
1896
|
+
maybeValue: "Option<Bytes>"
|
|
1897
|
+
},
|
|
1693
1898
|
/**
|
|
1694
|
-
*
|
|
1899
|
+
* Lookup185: pallet_randomness::pallet::Event<T>
|
|
1695
1900
|
**/
|
|
1696
1901
|
PalletRandomnessEvent: {
|
|
1697
1902
|
_enum: {
|
|
@@ -1703,7 +1908,7 @@ export default {
|
|
|
1703
1908
|
}
|
|
1704
1909
|
},
|
|
1705
1910
|
/**
|
|
1706
|
-
*
|
|
1911
|
+
* Lookup186: pallet_payment_streams::pallet::Event<T>
|
|
1707
1912
|
**/
|
|
1708
1913
|
PalletPaymentStreamsEvent: {
|
|
1709
1914
|
_enum: {
|
|
@@ -1742,6 +1947,11 @@ export default {
|
|
|
1742
1947
|
lastTickCharged: "u32",
|
|
1743
1948
|
chargedAtTick: "u32"
|
|
1744
1949
|
},
|
|
1950
|
+
UsersCharged: {
|
|
1951
|
+
userAccounts: "Vec<AccountId32>",
|
|
1952
|
+
providerId: "H256",
|
|
1953
|
+
chargedAtTick: "u32"
|
|
1954
|
+
},
|
|
1745
1955
|
LastChargeableInfoUpdated: {
|
|
1746
1956
|
providerId: "H256",
|
|
1747
1957
|
lastChargeableTick: "u32",
|
|
@@ -1750,16 +1960,23 @@ export default {
|
|
|
1750
1960
|
UserWithoutFunds: {
|
|
1751
1961
|
who: "AccountId32"
|
|
1752
1962
|
},
|
|
1753
|
-
|
|
1963
|
+
UserPaidAllDebts: {
|
|
1964
|
+
who: "AccountId32"
|
|
1965
|
+
},
|
|
1966
|
+
UserPaidSomeDebts: {
|
|
1754
1967
|
who: "AccountId32"
|
|
1755
1968
|
},
|
|
1756
1969
|
UserSolvent: {
|
|
1757
1970
|
who: "AccountId32"
|
|
1971
|
+
},
|
|
1972
|
+
InconsistentTickProcessing: {
|
|
1973
|
+
lastProcessedTick: "u32",
|
|
1974
|
+
tickToProcess: "u32"
|
|
1758
1975
|
}
|
|
1759
1976
|
}
|
|
1760
1977
|
},
|
|
1761
1978
|
/**
|
|
1762
|
-
*
|
|
1979
|
+
* Lookup188: pallet_bucket_nfts::pallet::Event<T>
|
|
1763
1980
|
**/
|
|
1764
1981
|
PalletBucketNftsEvent: {
|
|
1765
1982
|
_enum: {
|
|
@@ -1780,7 +1997,7 @@ export default {
|
|
|
1780
1997
|
}
|
|
1781
1998
|
},
|
|
1782
1999
|
/**
|
|
1783
|
-
*
|
|
2000
|
+
* Lookup189: pallet_nfts::pallet::Event<T, I>
|
|
1784
2001
|
**/
|
|
1785
2002
|
PalletNftsEvent: {
|
|
1786
2003
|
_enum: {
|
|
@@ -1981,7 +2198,7 @@ export default {
|
|
|
1981
2198
|
}
|
|
1982
2199
|
},
|
|
1983
2200
|
/**
|
|
1984
|
-
*
|
|
2201
|
+
* Lookup193: pallet_nfts::types::AttributeNamespace<sp_core::crypto::AccountId32>
|
|
1985
2202
|
**/
|
|
1986
2203
|
PalletNftsAttributeNamespace: {
|
|
1987
2204
|
_enum: {
|
|
@@ -1992,20 +2209,20 @@ export default {
|
|
|
1992
2209
|
}
|
|
1993
2210
|
},
|
|
1994
2211
|
/**
|
|
1995
|
-
*
|
|
2212
|
+
* Lookup195: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1996
2213
|
**/
|
|
1997
2214
|
PalletNftsPriceWithDirection: {
|
|
1998
2215
|
amount: "u128",
|
|
1999
2216
|
direction: "PalletNftsPriceDirection"
|
|
2000
2217
|
},
|
|
2001
2218
|
/**
|
|
2002
|
-
*
|
|
2219
|
+
* Lookup196: pallet_nfts::types::PriceDirection
|
|
2003
2220
|
**/
|
|
2004
2221
|
PalletNftsPriceDirection: {
|
|
2005
2222
|
_enum: ["Send", "Receive"]
|
|
2006
2223
|
},
|
|
2007
2224
|
/**
|
|
2008
|
-
*
|
|
2225
|
+
* Lookup197: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
2009
2226
|
**/
|
|
2010
2227
|
PalletNftsPalletAttributes: {
|
|
2011
2228
|
_enum: {
|
|
@@ -2014,74 +2231,236 @@ export default {
|
|
|
2014
2231
|
}
|
|
2015
2232
|
},
|
|
2016
2233
|
/**
|
|
2017
|
-
*
|
|
2234
|
+
* Lookup198: pallet_parameters::pallet::Event<T>
|
|
2018
2235
|
**/
|
|
2019
2236
|
PalletParametersEvent: {
|
|
2020
2237
|
_enum: {
|
|
2021
2238
|
Updated: {
|
|
2022
|
-
key: "
|
|
2023
|
-
oldValue: "Option<
|
|
2024
|
-
newValue: "Option<
|
|
2239
|
+
key: "ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey",
|
|
2240
|
+
oldValue: "Option<ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue>",
|
|
2241
|
+
newValue: "Option<ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue>"
|
|
2025
2242
|
}
|
|
2026
2243
|
}
|
|
2027
2244
|
},
|
|
2028
2245
|
/**
|
|
2029
|
-
*
|
|
2246
|
+
* Lookup199: sh_parachain_runtime::configs::runtime_params::RuntimeParametersKey
|
|
2030
2247
|
**/
|
|
2031
|
-
|
|
2248
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey: {
|
|
2032
2249
|
_enum: {
|
|
2033
|
-
RuntimeConfig: "
|
|
2250
|
+
RuntimeConfig: "ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey"
|
|
2034
2251
|
}
|
|
2035
2252
|
},
|
|
2036
2253
|
/**
|
|
2037
|
-
*
|
|
2254
|
+
* Lookup200: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersKey
|
|
2038
2255
|
**/
|
|
2039
|
-
|
|
2256
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: {
|
|
2040
2257
|
_enum: [
|
|
2041
2258
|
"SlashAmountPerMaxFileSize",
|
|
2042
2259
|
"StakeToChallengePeriod",
|
|
2043
2260
|
"CheckpointChallengePeriod",
|
|
2044
|
-
"MinChallengePeriod"
|
|
2261
|
+
"MinChallengePeriod",
|
|
2262
|
+
"SystemUtilisationLowerThresholdPercentage",
|
|
2263
|
+
"SystemUtilisationUpperThresholdPercentage",
|
|
2264
|
+
"MostlyStablePrice",
|
|
2265
|
+
"MaxPrice",
|
|
2266
|
+
"MinPrice",
|
|
2267
|
+
"UpperExponentFactor",
|
|
2268
|
+
"LowerExponentFactor",
|
|
2269
|
+
"ZeroSizeBucketFixedRate",
|
|
2270
|
+
"IdealUtilisationRate",
|
|
2271
|
+
"DecayRate",
|
|
2272
|
+
"MinimumTreasuryCut",
|
|
2273
|
+
"MaximumTreasuryCut",
|
|
2274
|
+
"BspStopStoringFilePenalty",
|
|
2275
|
+
"ProviderTopUpTtl",
|
|
2276
|
+
"BasicReplicationTarget",
|
|
2277
|
+
"StandardReplicationTarget",
|
|
2278
|
+
"HighSecurityReplicationTarget",
|
|
2279
|
+
"SuperHighSecurityReplicationTarget",
|
|
2280
|
+
"UltraHighSecurityReplicationTarget",
|
|
2281
|
+
"MaxReplicationTarget",
|
|
2282
|
+
"TickRangeToMaximumThreshold",
|
|
2283
|
+
"StorageRequestTtl",
|
|
2284
|
+
"MinWaitForStopStoring",
|
|
2285
|
+
"MinSeedPeriod",
|
|
2286
|
+
"StakeToSeedPeriod",
|
|
2287
|
+
"UpfrontTicksToPay"
|
|
2045
2288
|
]
|
|
2046
2289
|
},
|
|
2047
2290
|
/**
|
|
2048
|
-
*
|
|
2291
|
+
* Lookup201: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SlashAmountPerMaxFileSize
|
|
2292
|
+
**/
|
|
2293
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: "Null",
|
|
2294
|
+
/**
|
|
2295
|
+
* Lookup202: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToChallengePeriod
|
|
2296
|
+
**/
|
|
2297
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: "Null",
|
|
2298
|
+
/**
|
|
2299
|
+
* Lookup203: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::CheckpointChallengePeriod
|
|
2300
|
+
**/
|
|
2301
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: "Null",
|
|
2302
|
+
/**
|
|
2303
|
+
* Lookup204: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinChallengePeriod
|
|
2304
|
+
**/
|
|
2305
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: "Null",
|
|
2306
|
+
/**
|
|
2307
|
+
* Lookup205: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationLowerThresholdPercentage
|
|
2308
|
+
**/
|
|
2309
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage:
|
|
2310
|
+
"Null",
|
|
2311
|
+
/**
|
|
2312
|
+
* Lookup206: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationUpperThresholdPercentage
|
|
2313
|
+
**/
|
|
2314
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage:
|
|
2315
|
+
"Null",
|
|
2316
|
+
/**
|
|
2317
|
+
* Lookup207: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MostlyStablePrice
|
|
2318
|
+
**/
|
|
2319
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice: "Null",
|
|
2320
|
+
/**
|
|
2321
|
+
* Lookup208: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxPrice
|
|
2322
|
+
**/
|
|
2323
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice: "Null",
|
|
2324
|
+
/**
|
|
2325
|
+
* Lookup209: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinPrice
|
|
2326
|
+
**/
|
|
2327
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice: "Null",
|
|
2328
|
+
/**
|
|
2329
|
+
* Lookup210: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpperExponentFactor
|
|
2330
|
+
**/
|
|
2331
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor: "Null",
|
|
2332
|
+
/**
|
|
2333
|
+
* Lookup211: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::LowerExponentFactor
|
|
2334
|
+
**/
|
|
2335
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor: "Null",
|
|
2336
|
+
/**
|
|
2337
|
+
* Lookup212: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ZeroSizeBucketFixedRate
|
|
2338
|
+
**/
|
|
2339
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate: "Null",
|
|
2340
|
+
/**
|
|
2341
|
+
* Lookup213: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::IdealUtilisationRate
|
|
2342
|
+
**/
|
|
2343
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate: "Null",
|
|
2344
|
+
/**
|
|
2345
|
+
* Lookup214: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::DecayRate
|
|
2346
|
+
**/
|
|
2347
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate: "Null",
|
|
2348
|
+
/**
|
|
2349
|
+
* Lookup215: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinimumTreasuryCut
|
|
2350
|
+
**/
|
|
2351
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut: "Null",
|
|
2352
|
+
/**
|
|
2353
|
+
* Lookup216: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaximumTreasuryCut
|
|
2354
|
+
**/
|
|
2355
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut: "Null",
|
|
2356
|
+
/**
|
|
2357
|
+
* Lookup217: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BspStopStoringFilePenalty
|
|
2358
|
+
**/
|
|
2359
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty: "Null",
|
|
2360
|
+
/**
|
|
2361
|
+
* Lookup218: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ProviderTopUpTtl
|
|
2362
|
+
**/
|
|
2363
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl: "Null",
|
|
2364
|
+
/**
|
|
2365
|
+
* Lookup219: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BasicReplicationTarget
|
|
2366
|
+
**/
|
|
2367
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget: "Null",
|
|
2368
|
+
/**
|
|
2369
|
+
* Lookup220: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StandardReplicationTarget
|
|
2370
|
+
**/
|
|
2371
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget: "Null",
|
|
2372
|
+
/**
|
|
2373
|
+
* Lookup221: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::HighSecurityReplicationTarget
|
|
2374
|
+
**/
|
|
2375
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget:
|
|
2376
|
+
"Null",
|
|
2377
|
+
/**
|
|
2378
|
+
* Lookup222: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SuperHighSecurityReplicationTarget
|
|
2379
|
+
**/
|
|
2380
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget:
|
|
2381
|
+
"Null",
|
|
2382
|
+
/**
|
|
2383
|
+
* Lookup223: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UltraHighSecurityReplicationTarget
|
|
2384
|
+
**/
|
|
2385
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget:
|
|
2386
|
+
"Null",
|
|
2387
|
+
/**
|
|
2388
|
+
* Lookup224: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxReplicationTarget
|
|
2389
|
+
**/
|
|
2390
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget: "Null",
|
|
2391
|
+
/**
|
|
2392
|
+
* Lookup225: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::TickRangeToMaximumThreshold
|
|
2393
|
+
**/
|
|
2394
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold:
|
|
2395
|
+
"Null",
|
|
2396
|
+
/**
|
|
2397
|
+
* Lookup226: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StorageRequestTtl
|
|
2398
|
+
**/
|
|
2399
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl: "Null",
|
|
2400
|
+
/**
|
|
2401
|
+
* Lookup227: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinWaitForStopStoring
|
|
2049
2402
|
**/
|
|
2050
|
-
|
|
2403
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring: "Null",
|
|
2051
2404
|
/**
|
|
2052
|
-
*
|
|
2405
|
+
* Lookup228: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinSeedPeriod
|
|
2053
2406
|
**/
|
|
2054
|
-
|
|
2407
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod: "Null",
|
|
2055
2408
|
/**
|
|
2056
|
-
*
|
|
2409
|
+
* Lookup229: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToSeedPeriod
|
|
2057
2410
|
**/
|
|
2058
|
-
|
|
2411
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod: "Null",
|
|
2059
2412
|
/**
|
|
2060
|
-
*
|
|
2413
|
+
* Lookup230: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpfrontTicksToPay
|
|
2061
2414
|
**/
|
|
2062
|
-
|
|
2415
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay: "Null",
|
|
2063
2416
|
/**
|
|
2064
|
-
*
|
|
2417
|
+
* Lookup232: sh_parachain_runtime::configs::runtime_params::RuntimeParametersValue
|
|
2065
2418
|
**/
|
|
2066
|
-
|
|
2419
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue: {
|
|
2067
2420
|
_enum: {
|
|
2068
2421
|
RuntimeConfig:
|
|
2069
|
-
"
|
|
2422
|
+
"ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue"
|
|
2070
2423
|
}
|
|
2071
2424
|
},
|
|
2072
2425
|
/**
|
|
2073
|
-
*
|
|
2426
|
+
* Lookup233: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersValue
|
|
2074
2427
|
**/
|
|
2075
|
-
|
|
2428
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: {
|
|
2076
2429
|
_enum: {
|
|
2077
2430
|
SlashAmountPerMaxFileSize: "u128",
|
|
2078
2431
|
StakeToChallengePeriod: "u128",
|
|
2079
2432
|
CheckpointChallengePeriod: "u32",
|
|
2080
|
-
MinChallengePeriod: "u32"
|
|
2433
|
+
MinChallengePeriod: "u32",
|
|
2434
|
+
SystemUtilisationLowerThresholdPercentage: "Perbill",
|
|
2435
|
+
SystemUtilisationUpperThresholdPercentage: "Perbill",
|
|
2436
|
+
MostlyStablePrice: "u128",
|
|
2437
|
+
MaxPrice: "u128",
|
|
2438
|
+
MinPrice: "u128",
|
|
2439
|
+
UpperExponentFactor: "u32",
|
|
2440
|
+
LowerExponentFactor: "u32",
|
|
2441
|
+
ZeroSizeBucketFixedRate: "u128",
|
|
2442
|
+
IdealUtilisationRate: "Perbill",
|
|
2443
|
+
DecayRate: "Perbill",
|
|
2444
|
+
MinimumTreasuryCut: "Perbill",
|
|
2445
|
+
MaximumTreasuryCut: "Perbill",
|
|
2446
|
+
BspStopStoringFilePenalty: "u128",
|
|
2447
|
+
ProviderTopUpTtl: "u32",
|
|
2448
|
+
BasicReplicationTarget: "u32",
|
|
2449
|
+
StandardReplicationTarget: "u32",
|
|
2450
|
+
HighSecurityReplicationTarget: "u32",
|
|
2451
|
+
SuperHighSecurityReplicationTarget: "u32",
|
|
2452
|
+
UltraHighSecurityReplicationTarget: "u32",
|
|
2453
|
+
MaxReplicationTarget: "u32",
|
|
2454
|
+
TickRangeToMaximumThreshold: "u32",
|
|
2455
|
+
StorageRequestTtl: "u32",
|
|
2456
|
+
MinWaitForStopStoring: "u32",
|
|
2457
|
+
MinSeedPeriod: "u32",
|
|
2458
|
+
StakeToSeedPeriod: "u128",
|
|
2459
|
+
UpfrontTicksToPay: "u32"
|
|
2081
2460
|
}
|
|
2082
2461
|
},
|
|
2083
2462
|
/**
|
|
2084
|
-
*
|
|
2463
|
+
* Lookup235: frame_system::Phase
|
|
2085
2464
|
**/
|
|
2086
2465
|
FrameSystemPhase: {
|
|
2087
2466
|
_enum: {
|
|
@@ -2091,21 +2470,21 @@ export default {
|
|
|
2091
2470
|
}
|
|
2092
2471
|
},
|
|
2093
2472
|
/**
|
|
2094
|
-
*
|
|
2473
|
+
* Lookup238: frame_system::LastRuntimeUpgradeInfo
|
|
2095
2474
|
**/
|
|
2096
2475
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
2097
2476
|
specVersion: "Compact<u32>",
|
|
2098
2477
|
specName: "Text"
|
|
2099
2478
|
},
|
|
2100
2479
|
/**
|
|
2101
|
-
*
|
|
2480
|
+
* Lookup241: frame_system::CodeUpgradeAuthorization<T>
|
|
2102
2481
|
**/
|
|
2103
2482
|
FrameSystemCodeUpgradeAuthorization: {
|
|
2104
2483
|
codeHash: "H256",
|
|
2105
2484
|
checkVersion: "bool"
|
|
2106
2485
|
},
|
|
2107
2486
|
/**
|
|
2108
|
-
*
|
|
2487
|
+
* Lookup242: frame_system::pallet::Call<T>
|
|
2109
2488
|
**/
|
|
2110
2489
|
FrameSystemCall: {
|
|
2111
2490
|
_enum: {
|
|
@@ -2150,7 +2529,7 @@ export default {
|
|
|
2150
2529
|
}
|
|
2151
2530
|
},
|
|
2152
2531
|
/**
|
|
2153
|
-
*
|
|
2532
|
+
* Lookup245: frame_system::limits::BlockWeights
|
|
2154
2533
|
**/
|
|
2155
2534
|
FrameSystemLimitsBlockWeights: {
|
|
2156
2535
|
baseBlock: "SpWeightsWeightV2Weight",
|
|
@@ -2158,7 +2537,7 @@ export default {
|
|
|
2158
2537
|
perClass: "FrameSupportDispatchPerDispatchClassWeightsPerClass"
|
|
2159
2538
|
},
|
|
2160
2539
|
/**
|
|
2161
|
-
*
|
|
2540
|
+
* Lookup246: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
2162
2541
|
**/
|
|
2163
2542
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
2164
2543
|
normal: "FrameSystemLimitsWeightsPerClass",
|
|
@@ -2166,7 +2545,7 @@ export default {
|
|
|
2166
2545
|
mandatory: "FrameSystemLimitsWeightsPerClass"
|
|
2167
2546
|
},
|
|
2168
2547
|
/**
|
|
2169
|
-
*
|
|
2548
|
+
* Lookup247: frame_system::limits::WeightsPerClass
|
|
2170
2549
|
**/
|
|
2171
2550
|
FrameSystemLimitsWeightsPerClass: {
|
|
2172
2551
|
baseExtrinsic: "SpWeightsWeightV2Weight",
|
|
@@ -2175,13 +2554,13 @@ export default {
|
|
|
2175
2554
|
reserved: "Option<SpWeightsWeightV2Weight>"
|
|
2176
2555
|
},
|
|
2177
2556
|
/**
|
|
2178
|
-
*
|
|
2557
|
+
* Lookup248: frame_system::limits::BlockLength
|
|
2179
2558
|
**/
|
|
2180
2559
|
FrameSystemLimitsBlockLength: {
|
|
2181
2560
|
max: "FrameSupportDispatchPerDispatchClassU32"
|
|
2182
2561
|
},
|
|
2183
2562
|
/**
|
|
2184
|
-
*
|
|
2563
|
+
* Lookup249: frame_support::dispatch::PerDispatchClass<T>
|
|
2185
2564
|
**/
|
|
2186
2565
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
2187
2566
|
normal: "u32",
|
|
@@ -2189,14 +2568,14 @@ export default {
|
|
|
2189
2568
|
mandatory: "u32"
|
|
2190
2569
|
},
|
|
2191
2570
|
/**
|
|
2192
|
-
*
|
|
2571
|
+
* Lookup250: sp_weights::RuntimeDbWeight
|
|
2193
2572
|
**/
|
|
2194
2573
|
SpWeightsRuntimeDbWeight: {
|
|
2195
2574
|
read: "u64",
|
|
2196
2575
|
write: "u64"
|
|
2197
2576
|
},
|
|
2198
2577
|
/**
|
|
2199
|
-
*
|
|
2578
|
+
* Lookup251: sp_version::RuntimeVersion
|
|
2200
2579
|
**/
|
|
2201
2580
|
SpVersionRuntimeVersion: {
|
|
2202
2581
|
specName: "Text",
|
|
@@ -2206,10 +2585,10 @@ export default {
|
|
|
2206
2585
|
implVersion: "u32",
|
|
2207
2586
|
apis: "Vec<([u8;8],u32)>",
|
|
2208
2587
|
transactionVersion: "u32",
|
|
2209
|
-
|
|
2588
|
+
systemVersion: "u8"
|
|
2210
2589
|
},
|
|
2211
2590
|
/**
|
|
2212
|
-
*
|
|
2591
|
+
* Lookup256: frame_system::pallet::Error<T>
|
|
2213
2592
|
**/
|
|
2214
2593
|
FrameSystemError: {
|
|
2215
2594
|
_enum: [
|
|
@@ -2225,15 +2604,15 @@ export default {
|
|
|
2225
2604
|
]
|
|
2226
2605
|
},
|
|
2227
2606
|
/**
|
|
2228
|
-
*
|
|
2607
|
+
* Lookup258: cumulus_pallet_parachain_system::unincluded_segment::Ancestor<primitive_types::H256>
|
|
2229
2608
|
**/
|
|
2230
2609
|
CumulusPalletParachainSystemUnincludedSegmentAncestor: {
|
|
2231
2610
|
usedBandwidth: "CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth",
|
|
2232
2611
|
paraHeadHash: "Option<H256>",
|
|
2233
|
-
consumedGoAheadSignal: "Option<
|
|
2612
|
+
consumedGoAheadSignal: "Option<PolkadotPrimitivesV8UpgradeGoAhead>"
|
|
2234
2613
|
},
|
|
2235
2614
|
/**
|
|
2236
|
-
*
|
|
2615
|
+
* Lookup259: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth
|
|
2237
2616
|
**/
|
|
2238
2617
|
CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: {
|
|
2239
2618
|
umpMsgCount: "u32",
|
|
@@ -2241,68 +2620,68 @@ export default {
|
|
|
2241
2620
|
hrmpOutgoing: "BTreeMap<u32, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate>"
|
|
2242
2621
|
},
|
|
2243
2622
|
/**
|
|
2244
|
-
*
|
|
2623
|
+
* Lookup261: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate
|
|
2245
2624
|
**/
|
|
2246
2625
|
CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: {
|
|
2247
2626
|
msgCount: "u32",
|
|
2248
2627
|
totalBytes: "u32"
|
|
2249
2628
|
},
|
|
2250
2629
|
/**
|
|
2251
|
-
*
|
|
2630
|
+
* Lookup265: polkadot_primitives::v8::UpgradeGoAhead
|
|
2252
2631
|
**/
|
|
2253
|
-
|
|
2632
|
+
PolkadotPrimitivesV8UpgradeGoAhead: {
|
|
2254
2633
|
_enum: ["Abort", "GoAhead"]
|
|
2255
2634
|
},
|
|
2256
2635
|
/**
|
|
2257
|
-
*
|
|
2636
|
+
* Lookup266: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker<primitive_types::H256>
|
|
2258
2637
|
**/
|
|
2259
2638
|
CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: {
|
|
2260
2639
|
usedBandwidth: "CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth",
|
|
2261
2640
|
hrmpWatermark: "Option<u32>",
|
|
2262
|
-
consumedGoAheadSignal: "Option<
|
|
2641
|
+
consumedGoAheadSignal: "Option<PolkadotPrimitivesV8UpgradeGoAhead>"
|
|
2263
2642
|
},
|
|
2264
2643
|
/**
|
|
2265
|
-
*
|
|
2644
|
+
* Lookup267: polkadot_primitives::v8::PersistedValidationData<primitive_types::H256, N>
|
|
2266
2645
|
**/
|
|
2267
|
-
|
|
2646
|
+
PolkadotPrimitivesV8PersistedValidationData: {
|
|
2268
2647
|
parentHead: "Bytes",
|
|
2269
2648
|
relayParentNumber: "u32",
|
|
2270
2649
|
relayParentStorageRoot: "H256",
|
|
2271
2650
|
maxPovSize: "u32"
|
|
2272
2651
|
},
|
|
2273
2652
|
/**
|
|
2274
|
-
*
|
|
2653
|
+
* Lookup270: polkadot_primitives::v8::UpgradeRestriction
|
|
2275
2654
|
**/
|
|
2276
|
-
|
|
2655
|
+
PolkadotPrimitivesV8UpgradeRestriction: {
|
|
2277
2656
|
_enum: ["Present"]
|
|
2278
2657
|
},
|
|
2279
2658
|
/**
|
|
2280
|
-
*
|
|
2659
|
+
* Lookup271: sp_trie::storage_proof::StorageProof
|
|
2281
2660
|
**/
|
|
2282
2661
|
SpTrieStorageProof: {
|
|
2283
2662
|
trieNodes: "BTreeSet<Bytes>"
|
|
2284
2663
|
},
|
|
2285
2664
|
/**
|
|
2286
|
-
*
|
|
2665
|
+
* Lookup273: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
|
|
2287
2666
|
**/
|
|
2288
2667
|
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
|
|
2289
2668
|
dmqMqcHead: "H256",
|
|
2290
2669
|
relayDispatchQueueRemainingCapacity:
|
|
2291
2670
|
"CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity",
|
|
2292
|
-
ingressChannels: "Vec<(u32,
|
|
2293
|
-
egressChannels: "Vec<(u32,
|
|
2671
|
+
ingressChannels: "Vec<(u32,PolkadotPrimitivesV8AbridgedHrmpChannel)>",
|
|
2672
|
+
egressChannels: "Vec<(u32,PolkadotPrimitivesV8AbridgedHrmpChannel)>"
|
|
2294
2673
|
},
|
|
2295
2674
|
/**
|
|
2296
|
-
*
|
|
2675
|
+
* Lookup274: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity
|
|
2297
2676
|
**/
|
|
2298
2677
|
CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: {
|
|
2299
2678
|
remainingCount: "u32",
|
|
2300
2679
|
remainingSize: "u32"
|
|
2301
2680
|
},
|
|
2302
2681
|
/**
|
|
2303
|
-
*
|
|
2682
|
+
* Lookup277: polkadot_primitives::v8::AbridgedHrmpChannel
|
|
2304
2683
|
**/
|
|
2305
|
-
|
|
2684
|
+
PolkadotPrimitivesV8AbridgedHrmpChannel: {
|
|
2306
2685
|
maxCapacity: "u32",
|
|
2307
2686
|
maxTotalSize: "u32",
|
|
2308
2687
|
maxMessageSize: "u32",
|
|
@@ -2311,9 +2690,9 @@ export default {
|
|
|
2311
2690
|
mqcHead: "Option<H256>"
|
|
2312
2691
|
},
|
|
2313
2692
|
/**
|
|
2314
|
-
*
|
|
2693
|
+
* Lookup278: polkadot_primitives::v8::AbridgedHostConfiguration
|
|
2315
2694
|
**/
|
|
2316
|
-
|
|
2695
|
+
PolkadotPrimitivesV8AbridgedHostConfiguration: {
|
|
2317
2696
|
maxCodeSize: "u32",
|
|
2318
2697
|
maxHeadDataSize: "u32",
|
|
2319
2698
|
maxUpwardQueueCount: "u32",
|
|
@@ -2323,24 +2702,24 @@ export default {
|
|
|
2323
2702
|
hrmpMaxMessageNumPerCandidate: "u32",
|
|
2324
2703
|
validationUpgradeCooldown: "u32",
|
|
2325
2704
|
validationUpgradeDelay: "u32",
|
|
2326
|
-
asyncBackingParams: "
|
|
2705
|
+
asyncBackingParams: "PolkadotPrimitivesV8AsyncBackingAsyncBackingParams"
|
|
2327
2706
|
},
|
|
2328
2707
|
/**
|
|
2329
|
-
*
|
|
2708
|
+
* Lookup279: polkadot_primitives::v8::async_backing::AsyncBackingParams
|
|
2330
2709
|
**/
|
|
2331
|
-
|
|
2710
|
+
PolkadotPrimitivesV8AsyncBackingAsyncBackingParams: {
|
|
2332
2711
|
maxCandidateDepth: "u32",
|
|
2333
2712
|
allowedAncestryLen: "u32"
|
|
2334
2713
|
},
|
|
2335
2714
|
/**
|
|
2336
|
-
*
|
|
2715
|
+
* Lookup285: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain_primitives::primitives::Id>
|
|
2337
2716
|
**/
|
|
2338
2717
|
PolkadotCorePrimitivesOutboundHrmpMessage: {
|
|
2339
2718
|
recipient: "u32",
|
|
2340
2719
|
data: "Bytes"
|
|
2341
2720
|
},
|
|
2342
2721
|
/**
|
|
2343
|
-
*
|
|
2722
|
+
* Lookup287: cumulus_pallet_parachain_system::pallet::Call<T>
|
|
2344
2723
|
**/
|
|
2345
2724
|
CumulusPalletParachainSystemCall: {
|
|
2346
2725
|
_enum: {
|
|
@@ -2349,41 +2728,34 @@ export default {
|
|
|
2349
2728
|
},
|
|
2350
2729
|
sudo_send_upward_message: {
|
|
2351
2730
|
message: "Bytes"
|
|
2352
|
-
},
|
|
2353
|
-
authorize_upgrade: {
|
|
2354
|
-
codeHash: "H256",
|
|
2355
|
-
checkVersion: "bool"
|
|
2356
|
-
},
|
|
2357
|
-
enact_authorized_upgrade: {
|
|
2358
|
-
code: "Bytes"
|
|
2359
2731
|
}
|
|
2360
2732
|
}
|
|
2361
2733
|
},
|
|
2362
2734
|
/**
|
|
2363
|
-
*
|
|
2735
|
+
* Lookup288: cumulus_primitives_parachain_inherent::ParachainInherentData
|
|
2364
2736
|
**/
|
|
2365
2737
|
CumulusPrimitivesParachainInherentParachainInherentData: {
|
|
2366
|
-
validationData: "
|
|
2738
|
+
validationData: "PolkadotPrimitivesV8PersistedValidationData",
|
|
2367
2739
|
relayChainState: "SpTrieStorageProof",
|
|
2368
2740
|
downwardMessages: "Vec<PolkadotCorePrimitivesInboundDownwardMessage>",
|
|
2369
2741
|
horizontalMessages: "BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>"
|
|
2370
2742
|
},
|
|
2371
2743
|
/**
|
|
2372
|
-
*
|
|
2744
|
+
* Lookup290: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
|
|
2373
2745
|
**/
|
|
2374
2746
|
PolkadotCorePrimitivesInboundDownwardMessage: {
|
|
2375
2747
|
sentAt: "u32",
|
|
2376
2748
|
msg: "Bytes"
|
|
2377
2749
|
},
|
|
2378
2750
|
/**
|
|
2379
|
-
*
|
|
2751
|
+
* Lookup293: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
|
|
2380
2752
|
**/
|
|
2381
2753
|
PolkadotCorePrimitivesInboundHrmpMessage: {
|
|
2382
2754
|
sentAt: "u32",
|
|
2383
2755
|
data: "Bytes"
|
|
2384
2756
|
},
|
|
2385
2757
|
/**
|
|
2386
|
-
*
|
|
2758
|
+
* Lookup296: cumulus_pallet_parachain_system::pallet::Error<T>
|
|
2387
2759
|
**/
|
|
2388
2760
|
CumulusPalletParachainSystemError: {
|
|
2389
2761
|
_enum: [
|
|
@@ -2398,7 +2770,7 @@ export default {
|
|
|
2398
2770
|
]
|
|
2399
2771
|
},
|
|
2400
2772
|
/**
|
|
2401
|
-
*
|
|
2773
|
+
* Lookup297: pallet_timestamp::pallet::Call<T>
|
|
2402
2774
|
**/
|
|
2403
2775
|
PalletTimestampCall: {
|
|
2404
2776
|
_enum: {
|
|
@@ -2408,11 +2780,11 @@ export default {
|
|
|
2408
2780
|
}
|
|
2409
2781
|
},
|
|
2410
2782
|
/**
|
|
2411
|
-
*
|
|
2783
|
+
* Lookup298: staging_parachain_info::pallet::Call<T>
|
|
2412
2784
|
**/
|
|
2413
2785
|
StagingParachainInfoCall: "Null",
|
|
2414
2786
|
/**
|
|
2415
|
-
*
|
|
2787
|
+
* Lookup300: pallet_balances::types::BalanceLock<Balance>
|
|
2416
2788
|
**/
|
|
2417
2789
|
PalletBalancesBalanceLock: {
|
|
2418
2790
|
id: "[u8;8]",
|
|
@@ -2420,22 +2792,22 @@ export default {
|
|
|
2420
2792
|
reasons: "PalletBalancesReasons"
|
|
2421
2793
|
},
|
|
2422
2794
|
/**
|
|
2423
|
-
*
|
|
2795
|
+
* Lookup301: pallet_balances::types::Reasons
|
|
2424
2796
|
**/
|
|
2425
2797
|
PalletBalancesReasons: {
|
|
2426
2798
|
_enum: ["Fee", "Misc", "All"]
|
|
2427
2799
|
},
|
|
2428
2800
|
/**
|
|
2429
|
-
*
|
|
2801
|
+
* Lookup304: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2430
2802
|
**/
|
|
2431
2803
|
PalletBalancesReserveData: {
|
|
2432
2804
|
id: "[u8;8]",
|
|
2433
2805
|
amount: "u128"
|
|
2434
2806
|
},
|
|
2435
2807
|
/**
|
|
2436
|
-
*
|
|
2808
|
+
* Lookup308: sh_parachain_runtime::RuntimeHoldReason
|
|
2437
2809
|
**/
|
|
2438
|
-
|
|
2810
|
+
ShParachainRuntimeRuntimeHoldReason: {
|
|
2439
2811
|
_enum: {
|
|
2440
2812
|
__Unused0: "Null",
|
|
2441
2813
|
__Unused1: "Null",
|
|
@@ -2478,33 +2850,39 @@ export default {
|
|
|
2478
2850
|
__Unused38: "Null",
|
|
2479
2851
|
__Unused39: "Null",
|
|
2480
2852
|
Providers: "PalletStorageProvidersHoldReason",
|
|
2481
|
-
|
|
2853
|
+
FileSystem: "PalletFileSystemHoldReason",
|
|
2482
2854
|
__Unused42: "Null",
|
|
2483
2855
|
__Unused43: "Null",
|
|
2484
2856
|
PaymentStreams: "PalletPaymentStreamsHoldReason"
|
|
2485
2857
|
}
|
|
2486
2858
|
},
|
|
2487
2859
|
/**
|
|
2488
|
-
*
|
|
2860
|
+
* Lookup309: pallet_storage_providers::pallet::HoldReason
|
|
2489
2861
|
**/
|
|
2490
2862
|
PalletStorageProvidersHoldReason: {
|
|
2491
2863
|
_enum: ["StorageProviderDeposit", "BucketDeposit"]
|
|
2492
2864
|
},
|
|
2493
2865
|
/**
|
|
2494
|
-
*
|
|
2866
|
+
* Lookup310: pallet_file_system::pallet::HoldReason
|
|
2867
|
+
**/
|
|
2868
|
+
PalletFileSystemHoldReason: {
|
|
2869
|
+
_enum: ["StorageRequestCreationHold", "FileDeletionRequestHold"]
|
|
2870
|
+
},
|
|
2871
|
+
/**
|
|
2872
|
+
* Lookup311: pallet_payment_streams::pallet::HoldReason
|
|
2495
2873
|
**/
|
|
2496
2874
|
PalletPaymentStreamsHoldReason: {
|
|
2497
2875
|
_enum: ["PaymentStreamDeposit"]
|
|
2498
2876
|
},
|
|
2499
2877
|
/**
|
|
2500
|
-
*
|
|
2878
|
+
* Lookup314: frame_support::traits::tokens::misc::IdAmount<Id, Balance>
|
|
2501
2879
|
**/
|
|
2502
2880
|
FrameSupportTokensMiscIdAmount: {
|
|
2503
2881
|
id: "Null",
|
|
2504
2882
|
amount: "u128"
|
|
2505
2883
|
},
|
|
2506
2884
|
/**
|
|
2507
|
-
*
|
|
2885
|
+
* Lookup316: pallet_balances::pallet::Call<T, I>
|
|
2508
2886
|
**/
|
|
2509
2887
|
PalletBalancesCall: {
|
|
2510
2888
|
_enum: {
|
|
@@ -2549,13 +2927,13 @@ export default {
|
|
|
2549
2927
|
}
|
|
2550
2928
|
},
|
|
2551
2929
|
/**
|
|
2552
|
-
*
|
|
2930
|
+
* Lookup319: pallet_balances::types::AdjustmentDirection
|
|
2553
2931
|
**/
|
|
2554
2932
|
PalletBalancesAdjustmentDirection: {
|
|
2555
2933
|
_enum: ["Increase", "Decrease"]
|
|
2556
2934
|
},
|
|
2557
2935
|
/**
|
|
2558
|
-
*
|
|
2936
|
+
* Lookup320: pallet_balances::pallet::Error<T, I>
|
|
2559
2937
|
**/
|
|
2560
2938
|
PalletBalancesError: {
|
|
2561
2939
|
_enum: [
|
|
@@ -2574,13 +2952,13 @@ export default {
|
|
|
2574
2952
|
]
|
|
2575
2953
|
},
|
|
2576
2954
|
/**
|
|
2577
|
-
*
|
|
2955
|
+
* Lookup321: pallet_transaction_payment::Releases
|
|
2578
2956
|
**/
|
|
2579
2957
|
PalletTransactionPaymentReleases: {
|
|
2580
2958
|
_enum: ["V1Ancient", "V2"]
|
|
2581
2959
|
},
|
|
2582
2960
|
/**
|
|
2583
|
-
*
|
|
2961
|
+
* Lookup322: pallet_sudo::pallet::Call<T>
|
|
2584
2962
|
**/
|
|
2585
2963
|
PalletSudoCall: {
|
|
2586
2964
|
_enum: {
|
|
@@ -2605,7 +2983,7 @@ export default {
|
|
|
2605
2983
|
}
|
|
2606
2984
|
},
|
|
2607
2985
|
/**
|
|
2608
|
-
*
|
|
2986
|
+
* Lookup324: pallet_collator_selection::pallet::Call<T>
|
|
2609
2987
|
**/
|
|
2610
2988
|
PalletCollatorSelectionCall: {
|
|
2611
2989
|
_enum: {
|
|
@@ -2639,7 +3017,7 @@ export default {
|
|
|
2639
3017
|
}
|
|
2640
3018
|
},
|
|
2641
3019
|
/**
|
|
2642
|
-
*
|
|
3020
|
+
* Lookup325: pallet_session::pallet::Call<T>
|
|
2643
3021
|
**/
|
|
2644
3022
|
PalletSessionCall: {
|
|
2645
3023
|
_enum: {
|
|
@@ -2647,24 +3025,24 @@ export default {
|
|
|
2647
3025
|
_alias: {
|
|
2648
3026
|
keys_: "keys"
|
|
2649
3027
|
},
|
|
2650
|
-
keys_: "
|
|
3028
|
+
keys_: "ShParachainRuntimeSessionKeys",
|
|
2651
3029
|
proof: "Bytes"
|
|
2652
3030
|
},
|
|
2653
3031
|
purge_keys: "Null"
|
|
2654
3032
|
}
|
|
2655
3033
|
},
|
|
2656
3034
|
/**
|
|
2657
|
-
*
|
|
3035
|
+
* Lookup326: sh_parachain_runtime::SessionKeys
|
|
2658
3036
|
**/
|
|
2659
|
-
|
|
3037
|
+
ShParachainRuntimeSessionKeys: {
|
|
2660
3038
|
aura: "SpConsensusAuraSr25519AppSr25519Public"
|
|
2661
3039
|
},
|
|
2662
3040
|
/**
|
|
2663
|
-
*
|
|
3041
|
+
* Lookup327: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
2664
3042
|
**/
|
|
2665
3043
|
SpConsensusAuraSr25519AppSr25519Public: "[u8;32]",
|
|
2666
3044
|
/**
|
|
2667
|
-
*
|
|
3045
|
+
* Lookup328: cumulus_pallet_xcmp_queue::pallet::Call<T>
|
|
2668
3046
|
**/
|
|
2669
3047
|
CumulusPalletXcmpQueueCall: {
|
|
2670
3048
|
_enum: {
|
|
@@ -2692,7 +3070,7 @@ export default {
|
|
|
2692
3070
|
}
|
|
2693
3071
|
},
|
|
2694
3072
|
/**
|
|
2695
|
-
*
|
|
3073
|
+
* Lookup329: pallet_xcm::pallet::Call<T>
|
|
2696
3074
|
**/
|
|
2697
3075
|
PalletXcmCall: {
|
|
2698
3076
|
_enum: {
|
|
@@ -2717,7 +3095,7 @@ export default {
|
|
|
2717
3095
|
maxWeight: "SpWeightsWeightV2Weight"
|
|
2718
3096
|
},
|
|
2719
3097
|
force_xcm_version: {
|
|
2720
|
-
location: "
|
|
3098
|
+
location: "StagingXcmV5Location",
|
|
2721
3099
|
version: "u32"
|
|
2722
3100
|
},
|
|
2723
3101
|
force_default_xcm_version: {
|
|
@@ -2769,46 +3147,48 @@ export default {
|
|
|
2769
3147
|
}
|
|
2770
3148
|
},
|
|
2771
3149
|
/**
|
|
2772
|
-
*
|
|
3150
|
+
* Lookup330: xcm::VersionedXcm<RuntimeCall>
|
|
2773
3151
|
**/
|
|
2774
3152
|
XcmVersionedXcm: {
|
|
2775
3153
|
_enum: {
|
|
2776
3154
|
__Unused0: "Null",
|
|
2777
3155
|
__Unused1: "Null",
|
|
2778
|
-
|
|
3156
|
+
__Unused2: "Null",
|
|
2779
3157
|
V3: "XcmV3Xcm",
|
|
2780
|
-
V4: "StagingXcmV4Xcm"
|
|
3158
|
+
V4: "StagingXcmV4Xcm",
|
|
3159
|
+
V5: "StagingXcmV5Xcm"
|
|
2781
3160
|
}
|
|
2782
3161
|
},
|
|
2783
3162
|
/**
|
|
2784
|
-
*
|
|
3163
|
+
* Lookup331: xcm::v3::Xcm<Call>
|
|
2785
3164
|
**/
|
|
2786
|
-
|
|
3165
|
+
XcmV3Xcm: "Vec<XcmV3Instruction>",
|
|
2787
3166
|
/**
|
|
2788
|
-
*
|
|
3167
|
+
* Lookup333: xcm::v3::Instruction<Call>
|
|
2789
3168
|
**/
|
|
2790
|
-
|
|
3169
|
+
XcmV3Instruction: {
|
|
2791
3170
|
_enum: {
|
|
2792
|
-
WithdrawAsset: "
|
|
2793
|
-
ReserveAssetDeposited: "
|
|
2794
|
-
ReceiveTeleportedAsset: "
|
|
3171
|
+
WithdrawAsset: "XcmV3MultiassetMultiAssets",
|
|
3172
|
+
ReserveAssetDeposited: "XcmV3MultiassetMultiAssets",
|
|
3173
|
+
ReceiveTeleportedAsset: "XcmV3MultiassetMultiAssets",
|
|
2795
3174
|
QueryResponse: {
|
|
2796
3175
|
queryId: "Compact<u64>",
|
|
2797
|
-
response: "
|
|
2798
|
-
maxWeight: "
|
|
3176
|
+
response: "XcmV3Response",
|
|
3177
|
+
maxWeight: "SpWeightsWeightV2Weight",
|
|
3178
|
+
querier: "Option<StagingXcmV3MultiLocation>"
|
|
2799
3179
|
},
|
|
2800
3180
|
TransferAsset: {
|
|
2801
|
-
assets: "
|
|
2802
|
-
beneficiary: "
|
|
3181
|
+
assets: "XcmV3MultiassetMultiAssets",
|
|
3182
|
+
beneficiary: "StagingXcmV3MultiLocation"
|
|
2803
3183
|
},
|
|
2804
3184
|
TransferReserveAsset: {
|
|
2805
|
-
assets: "
|
|
2806
|
-
dest: "
|
|
2807
|
-
xcm: "
|
|
3185
|
+
assets: "XcmV3MultiassetMultiAssets",
|
|
3186
|
+
dest: "StagingXcmV3MultiLocation",
|
|
3187
|
+
xcm: "XcmV3Xcm"
|
|
2808
3188
|
},
|
|
2809
3189
|
Transact: {
|
|
2810
|
-
|
|
2811
|
-
requireWeightAtMost: "
|
|
3190
|
+
originKind: "XcmV3OriginKind",
|
|
3191
|
+
requireWeightAtMost: "SpWeightsWeightV2Weight",
|
|
2812
3192
|
call: "XcmDoubleEncoded"
|
|
2813
3193
|
},
|
|
2814
3194
|
HrmpNewChannelOpenRequest: {
|
|
@@ -2825,85 +3205,130 @@ export default {
|
|
|
2825
3205
|
recipient: "Compact<u32>"
|
|
2826
3206
|
},
|
|
2827
3207
|
ClearOrigin: "Null",
|
|
2828
|
-
DescendOrigin: "
|
|
2829
|
-
ReportError:
|
|
2830
|
-
queryId: "Compact<u64>",
|
|
2831
|
-
dest: "XcmV2MultiLocation",
|
|
2832
|
-
maxResponseWeight: "Compact<u64>"
|
|
2833
|
-
},
|
|
3208
|
+
DescendOrigin: "XcmV3Junctions",
|
|
3209
|
+
ReportError: "XcmV3QueryResponseInfo",
|
|
2834
3210
|
DepositAsset: {
|
|
2835
|
-
assets: "
|
|
2836
|
-
|
|
2837
|
-
beneficiary: "XcmV2MultiLocation"
|
|
3211
|
+
assets: "XcmV3MultiassetMultiAssetFilter",
|
|
3212
|
+
beneficiary: "StagingXcmV3MultiLocation"
|
|
2838
3213
|
},
|
|
2839
3214
|
DepositReserveAsset: {
|
|
2840
|
-
assets: "
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
xcm: "XcmV2Xcm"
|
|
3215
|
+
assets: "XcmV3MultiassetMultiAssetFilter",
|
|
3216
|
+
dest: "StagingXcmV3MultiLocation",
|
|
3217
|
+
xcm: "XcmV3Xcm"
|
|
2844
3218
|
},
|
|
2845
3219
|
ExchangeAsset: {
|
|
2846
|
-
give: "
|
|
2847
|
-
|
|
3220
|
+
give: "XcmV3MultiassetMultiAssetFilter",
|
|
3221
|
+
want: "XcmV3MultiassetMultiAssets",
|
|
3222
|
+
maximal: "bool"
|
|
2848
3223
|
},
|
|
2849
3224
|
InitiateReserveWithdraw: {
|
|
2850
|
-
assets: "
|
|
2851
|
-
reserve: "
|
|
2852
|
-
xcm: "
|
|
3225
|
+
assets: "XcmV3MultiassetMultiAssetFilter",
|
|
3226
|
+
reserve: "StagingXcmV3MultiLocation",
|
|
3227
|
+
xcm: "XcmV3Xcm"
|
|
2853
3228
|
},
|
|
2854
3229
|
InitiateTeleport: {
|
|
2855
|
-
assets: "
|
|
2856
|
-
dest: "
|
|
2857
|
-
xcm: "
|
|
3230
|
+
assets: "XcmV3MultiassetMultiAssetFilter",
|
|
3231
|
+
dest: "StagingXcmV3MultiLocation",
|
|
3232
|
+
xcm: "XcmV3Xcm"
|
|
2858
3233
|
},
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
assets: "XcmV2MultiassetMultiAssetFilter",
|
|
2863
|
-
maxResponseWeight: "Compact<u64>"
|
|
3234
|
+
ReportHolding: {
|
|
3235
|
+
responseInfo: "XcmV3QueryResponseInfo",
|
|
3236
|
+
assets: "XcmV3MultiassetMultiAssetFilter"
|
|
2864
3237
|
},
|
|
2865
3238
|
BuyExecution: {
|
|
2866
|
-
fees: "
|
|
2867
|
-
weightLimit: "
|
|
3239
|
+
fees: "XcmV3MultiAsset",
|
|
3240
|
+
weightLimit: "XcmV3WeightLimit"
|
|
2868
3241
|
},
|
|
2869
3242
|
RefundSurplus: "Null",
|
|
2870
|
-
SetErrorHandler: "
|
|
2871
|
-
SetAppendix: "
|
|
3243
|
+
SetErrorHandler: "XcmV3Xcm",
|
|
3244
|
+
SetAppendix: "XcmV3Xcm",
|
|
2872
3245
|
ClearError: "Null",
|
|
2873
3246
|
ClaimAsset: {
|
|
2874
|
-
assets: "
|
|
2875
|
-
ticket: "
|
|
3247
|
+
assets: "XcmV3MultiassetMultiAssets",
|
|
3248
|
+
ticket: "StagingXcmV3MultiLocation"
|
|
2876
3249
|
},
|
|
2877
3250
|
Trap: "Compact<u64>",
|
|
2878
3251
|
SubscribeVersion: {
|
|
2879
3252
|
queryId: "Compact<u64>",
|
|
2880
|
-
maxResponseWeight: "
|
|
3253
|
+
maxResponseWeight: "SpWeightsWeightV2Weight"
|
|
3254
|
+
},
|
|
3255
|
+
UnsubscribeVersion: "Null",
|
|
3256
|
+
BurnAsset: "XcmV3MultiassetMultiAssets",
|
|
3257
|
+
ExpectAsset: "XcmV3MultiassetMultiAssets",
|
|
3258
|
+
ExpectOrigin: "Option<StagingXcmV3MultiLocation>",
|
|
3259
|
+
ExpectError: "Option<(u32,XcmV3TraitsError)>",
|
|
3260
|
+
ExpectTransactStatus: "XcmV3MaybeErrorCode",
|
|
3261
|
+
QueryPallet: {
|
|
3262
|
+
moduleName: "Bytes",
|
|
3263
|
+
responseInfo: "XcmV3QueryResponseInfo"
|
|
3264
|
+
},
|
|
3265
|
+
ExpectPallet: {
|
|
3266
|
+
index: "Compact<u32>",
|
|
3267
|
+
name: "Bytes",
|
|
3268
|
+
moduleName: "Bytes",
|
|
3269
|
+
crateMajor: "Compact<u32>",
|
|
3270
|
+
minCrateMinor: "Compact<u32>"
|
|
3271
|
+
},
|
|
3272
|
+
ReportTransactStatus: "XcmV3QueryResponseInfo",
|
|
3273
|
+
ClearTransactStatus: "Null",
|
|
3274
|
+
UniversalOrigin: "XcmV3Junction",
|
|
3275
|
+
ExportMessage: {
|
|
3276
|
+
network: "XcmV3JunctionNetworkId",
|
|
3277
|
+
destination: "XcmV3Junctions",
|
|
3278
|
+
xcm: "XcmV3Xcm"
|
|
3279
|
+
},
|
|
3280
|
+
LockAsset: {
|
|
3281
|
+
asset: "XcmV3MultiAsset",
|
|
3282
|
+
unlocker: "StagingXcmV3MultiLocation"
|
|
3283
|
+
},
|
|
3284
|
+
UnlockAsset: {
|
|
3285
|
+
asset: "XcmV3MultiAsset",
|
|
3286
|
+
target: "StagingXcmV3MultiLocation"
|
|
3287
|
+
},
|
|
3288
|
+
NoteUnlockable: {
|
|
3289
|
+
asset: "XcmV3MultiAsset",
|
|
3290
|
+
owner: "StagingXcmV3MultiLocation"
|
|
3291
|
+
},
|
|
3292
|
+
RequestUnlock: {
|
|
3293
|
+
asset: "XcmV3MultiAsset",
|
|
3294
|
+
locker: "StagingXcmV3MultiLocation"
|
|
3295
|
+
},
|
|
3296
|
+
SetFeesMode: {
|
|
3297
|
+
jitWithdraw: "bool"
|
|
2881
3298
|
},
|
|
2882
|
-
|
|
3299
|
+
SetTopic: "[u8;32]",
|
|
3300
|
+
ClearTopic: "Null",
|
|
3301
|
+
AliasOrigin: "StagingXcmV3MultiLocation",
|
|
3302
|
+
UnpaidExecution: {
|
|
3303
|
+
weightLimit: "XcmV3WeightLimit",
|
|
3304
|
+
checkOrigin: "Option<StagingXcmV3MultiLocation>"
|
|
3305
|
+
}
|
|
2883
3306
|
}
|
|
2884
3307
|
},
|
|
2885
3308
|
/**
|
|
2886
|
-
*
|
|
3309
|
+
* Lookup334: xcm::v3::Response
|
|
2887
3310
|
**/
|
|
2888
|
-
|
|
3311
|
+
XcmV3Response: {
|
|
2889
3312
|
_enum: {
|
|
2890
3313
|
Null: "Null",
|
|
2891
|
-
Assets: "
|
|
2892
|
-
ExecutionResult: "Option<(u32,
|
|
2893
|
-
Version: "u32"
|
|
3314
|
+
Assets: "XcmV3MultiassetMultiAssets",
|
|
3315
|
+
ExecutionResult: "Option<(u32,XcmV3TraitsError)>",
|
|
3316
|
+
Version: "u32",
|
|
3317
|
+
PalletsInfo: "Vec<XcmV3PalletInfo>",
|
|
3318
|
+
DispatchResult: "XcmV3MaybeErrorCode"
|
|
2894
3319
|
}
|
|
2895
3320
|
},
|
|
2896
3321
|
/**
|
|
2897
|
-
*
|
|
3322
|
+
* Lookup337: xcm::v3::traits::Error
|
|
2898
3323
|
**/
|
|
2899
|
-
|
|
3324
|
+
XcmV3TraitsError: {
|
|
2900
3325
|
_enum: {
|
|
2901
3326
|
Overflow: "Null",
|
|
2902
3327
|
Unimplemented: "Null",
|
|
2903
3328
|
UntrustedReserveLocation: "Null",
|
|
2904
3329
|
UntrustedTeleportLocation: "Null",
|
|
2905
|
-
|
|
2906
|
-
|
|
3330
|
+
LocationFull: "Null",
|
|
3331
|
+
LocationNotInvertible: "Null",
|
|
2907
3332
|
BadOrigin: "Null",
|
|
2908
3333
|
InvalidLocation: "Null",
|
|
2909
3334
|
AssetNotFound: "Null",
|
|
@@ -2920,80 +3345,104 @@ export default {
|
|
|
2920
3345
|
NotHoldingFees: "Null",
|
|
2921
3346
|
TooExpensive: "Null",
|
|
2922
3347
|
Trap: "u64",
|
|
3348
|
+
ExpectationFalse: "Null",
|
|
3349
|
+
PalletNotFound: "Null",
|
|
3350
|
+
NameMismatch: "Null",
|
|
3351
|
+
VersionIncompatible: "Null",
|
|
3352
|
+
HoldingWouldOverflow: "Null",
|
|
3353
|
+
ExportError: "Null",
|
|
3354
|
+
ReanchorFailed: "Null",
|
|
3355
|
+
NoDeal: "Null",
|
|
3356
|
+
FeesNotMet: "Null",
|
|
3357
|
+
LockError: "Null",
|
|
3358
|
+
NoPermission: "Null",
|
|
3359
|
+
Unanchored: "Null",
|
|
3360
|
+
NotDepositable: "Null",
|
|
2923
3361
|
UnhandledXcmVersion: "Null",
|
|
2924
|
-
WeightLimitReached: "
|
|
3362
|
+
WeightLimitReached: "SpWeightsWeightV2Weight",
|
|
2925
3363
|
Barrier: "Null",
|
|
2926
|
-
WeightNotComputable: "Null"
|
|
3364
|
+
WeightNotComputable: "Null",
|
|
3365
|
+
ExceedsStackLimit: "Null"
|
|
2927
3366
|
}
|
|
2928
3367
|
},
|
|
2929
3368
|
/**
|
|
2930
|
-
*
|
|
3369
|
+
* Lookup339: xcm::v3::PalletInfo
|
|
3370
|
+
**/
|
|
3371
|
+
XcmV3PalletInfo: {
|
|
3372
|
+
index: "Compact<u32>",
|
|
3373
|
+
name: "Bytes",
|
|
3374
|
+
moduleName: "Bytes",
|
|
3375
|
+
major: "Compact<u32>",
|
|
3376
|
+
minor: "Compact<u32>",
|
|
3377
|
+
patch: "Compact<u32>"
|
|
3378
|
+
},
|
|
3379
|
+
/**
|
|
3380
|
+
* Lookup343: xcm::v3::QueryResponseInfo
|
|
2931
3381
|
**/
|
|
2932
|
-
|
|
2933
|
-
|
|
3382
|
+
XcmV3QueryResponseInfo: {
|
|
3383
|
+
destination: "StagingXcmV3MultiLocation",
|
|
3384
|
+
queryId: "Compact<u64>",
|
|
3385
|
+
maxWeight: "SpWeightsWeightV2Weight"
|
|
2934
3386
|
},
|
|
2935
3387
|
/**
|
|
2936
|
-
*
|
|
3388
|
+
* Lookup344: xcm::v3::multiasset::MultiAssetFilter
|
|
2937
3389
|
**/
|
|
2938
|
-
|
|
3390
|
+
XcmV3MultiassetMultiAssetFilter: {
|
|
2939
3391
|
_enum: {
|
|
2940
|
-
Definite: "
|
|
2941
|
-
Wild: "
|
|
3392
|
+
Definite: "XcmV3MultiassetMultiAssets",
|
|
3393
|
+
Wild: "XcmV3MultiassetWildMultiAsset"
|
|
2942
3394
|
}
|
|
2943
3395
|
},
|
|
2944
3396
|
/**
|
|
2945
|
-
*
|
|
3397
|
+
* Lookup345: xcm::v3::multiasset::WildMultiAsset
|
|
2946
3398
|
**/
|
|
2947
|
-
|
|
3399
|
+
XcmV3MultiassetWildMultiAsset: {
|
|
2948
3400
|
_enum: {
|
|
2949
3401
|
All: "Null",
|
|
2950
3402
|
AllOf: {
|
|
2951
|
-
id: "
|
|
2952
|
-
fun: "
|
|
3403
|
+
id: "XcmV3MultiassetAssetId",
|
|
3404
|
+
fun: "XcmV3MultiassetWildFungibility"
|
|
3405
|
+
},
|
|
3406
|
+
AllCounted: "Compact<u32>",
|
|
3407
|
+
AllOfCounted: {
|
|
3408
|
+
id: "XcmV3MultiassetAssetId",
|
|
3409
|
+
fun: "XcmV3MultiassetWildFungibility",
|
|
3410
|
+
count: "Compact<u32>"
|
|
2953
3411
|
}
|
|
2954
3412
|
}
|
|
2955
3413
|
},
|
|
2956
3414
|
/**
|
|
2957
|
-
*
|
|
3415
|
+
* Lookup346: xcm::v3::multiasset::WildFungibility
|
|
2958
3416
|
**/
|
|
2959
|
-
|
|
3417
|
+
XcmV3MultiassetWildFungibility: {
|
|
2960
3418
|
_enum: ["Fungible", "NonFungible"]
|
|
2961
3419
|
},
|
|
2962
3420
|
/**
|
|
2963
|
-
*
|
|
2964
|
-
**/
|
|
2965
|
-
XcmV2WeightLimit: {
|
|
2966
|
-
_enum: {
|
|
2967
|
-
Unlimited: "Null",
|
|
2968
|
-
Limited: "Compact<u64>"
|
|
2969
|
-
}
|
|
2970
|
-
},
|
|
2971
|
-
/**
|
|
2972
|
-
* Lookup299: xcm::v3::Xcm<Call>
|
|
3421
|
+
* Lookup347: staging_xcm::v4::Xcm<Call>
|
|
2973
3422
|
**/
|
|
2974
|
-
|
|
3423
|
+
StagingXcmV4Xcm: "Vec<StagingXcmV4Instruction>",
|
|
2975
3424
|
/**
|
|
2976
|
-
*
|
|
3425
|
+
* Lookup349: staging_xcm::v4::Instruction<Call>
|
|
2977
3426
|
**/
|
|
2978
|
-
|
|
3427
|
+
StagingXcmV4Instruction: {
|
|
2979
3428
|
_enum: {
|
|
2980
|
-
WithdrawAsset: "
|
|
2981
|
-
ReserveAssetDeposited: "
|
|
2982
|
-
ReceiveTeleportedAsset: "
|
|
3429
|
+
WithdrawAsset: "StagingXcmV4AssetAssets",
|
|
3430
|
+
ReserveAssetDeposited: "StagingXcmV4AssetAssets",
|
|
3431
|
+
ReceiveTeleportedAsset: "StagingXcmV4AssetAssets",
|
|
2983
3432
|
QueryResponse: {
|
|
2984
3433
|
queryId: "Compact<u64>",
|
|
2985
|
-
response: "
|
|
3434
|
+
response: "StagingXcmV4Response",
|
|
2986
3435
|
maxWeight: "SpWeightsWeightV2Weight",
|
|
2987
|
-
querier: "Option<
|
|
3436
|
+
querier: "Option<StagingXcmV4Location>"
|
|
2988
3437
|
},
|
|
2989
3438
|
TransferAsset: {
|
|
2990
|
-
assets: "
|
|
2991
|
-
beneficiary: "
|
|
3439
|
+
assets: "StagingXcmV4AssetAssets",
|
|
3440
|
+
beneficiary: "StagingXcmV4Location"
|
|
2992
3441
|
},
|
|
2993
3442
|
TransferReserveAsset: {
|
|
2994
|
-
assets: "
|
|
2995
|
-
dest: "
|
|
2996
|
-
xcm: "
|
|
3443
|
+
assets: "StagingXcmV4AssetAssets",
|
|
3444
|
+
dest: "StagingXcmV4Location",
|
|
3445
|
+
xcm: "StagingXcmV4Xcm"
|
|
2997
3446
|
},
|
|
2998
3447
|
Transact: {
|
|
2999
3448
|
originKind: "XcmV3OriginKind",
|
|
@@ -3014,47 +3463,47 @@ export default {
|
|
|
3014
3463
|
recipient: "Compact<u32>"
|
|
3015
3464
|
},
|
|
3016
3465
|
ClearOrigin: "Null",
|
|
3017
|
-
DescendOrigin: "
|
|
3018
|
-
ReportError: "
|
|
3466
|
+
DescendOrigin: "StagingXcmV4Junctions",
|
|
3467
|
+
ReportError: "StagingXcmV4QueryResponseInfo",
|
|
3019
3468
|
DepositAsset: {
|
|
3020
|
-
assets: "
|
|
3021
|
-
beneficiary: "
|
|
3469
|
+
assets: "StagingXcmV4AssetAssetFilter",
|
|
3470
|
+
beneficiary: "StagingXcmV4Location"
|
|
3022
3471
|
},
|
|
3023
3472
|
DepositReserveAsset: {
|
|
3024
|
-
assets: "
|
|
3025
|
-
dest: "
|
|
3026
|
-
xcm: "
|
|
3473
|
+
assets: "StagingXcmV4AssetAssetFilter",
|
|
3474
|
+
dest: "StagingXcmV4Location",
|
|
3475
|
+
xcm: "StagingXcmV4Xcm"
|
|
3027
3476
|
},
|
|
3028
3477
|
ExchangeAsset: {
|
|
3029
|
-
give: "
|
|
3030
|
-
want: "
|
|
3478
|
+
give: "StagingXcmV4AssetAssetFilter",
|
|
3479
|
+
want: "StagingXcmV4AssetAssets",
|
|
3031
3480
|
maximal: "bool"
|
|
3032
3481
|
},
|
|
3033
3482
|
InitiateReserveWithdraw: {
|
|
3034
|
-
assets: "
|
|
3035
|
-
reserve: "
|
|
3036
|
-
xcm: "
|
|
3483
|
+
assets: "StagingXcmV4AssetAssetFilter",
|
|
3484
|
+
reserve: "StagingXcmV4Location",
|
|
3485
|
+
xcm: "StagingXcmV4Xcm"
|
|
3037
3486
|
},
|
|
3038
3487
|
InitiateTeleport: {
|
|
3039
|
-
assets: "
|
|
3040
|
-
dest: "
|
|
3041
|
-
xcm: "
|
|
3488
|
+
assets: "StagingXcmV4AssetAssetFilter",
|
|
3489
|
+
dest: "StagingXcmV4Location",
|
|
3490
|
+
xcm: "StagingXcmV4Xcm"
|
|
3042
3491
|
},
|
|
3043
3492
|
ReportHolding: {
|
|
3044
|
-
responseInfo: "
|
|
3045
|
-
assets: "
|
|
3493
|
+
responseInfo: "StagingXcmV4QueryResponseInfo",
|
|
3494
|
+
assets: "StagingXcmV4AssetAssetFilter"
|
|
3046
3495
|
},
|
|
3047
3496
|
BuyExecution: {
|
|
3048
|
-
fees: "
|
|
3497
|
+
fees: "StagingXcmV4Asset",
|
|
3049
3498
|
weightLimit: "XcmV3WeightLimit"
|
|
3050
3499
|
},
|
|
3051
3500
|
RefundSurplus: "Null",
|
|
3052
|
-
SetErrorHandler: "
|
|
3053
|
-
SetAppendix: "
|
|
3501
|
+
SetErrorHandler: "StagingXcmV4Xcm",
|
|
3502
|
+
SetAppendix: "StagingXcmV4Xcm",
|
|
3054
3503
|
ClearError: "Null",
|
|
3055
3504
|
ClaimAsset: {
|
|
3056
|
-
assets: "
|
|
3057
|
-
ticket: "
|
|
3505
|
+
assets: "StagingXcmV4AssetAssets",
|
|
3506
|
+
ticket: "StagingXcmV4Location"
|
|
3058
3507
|
},
|
|
3059
3508
|
Trap: "Compact<u64>",
|
|
3060
3509
|
SubscribeVersion: {
|
|
@@ -3062,14 +3511,14 @@ export default {
|
|
|
3062
3511
|
maxResponseWeight: "SpWeightsWeightV2Weight"
|
|
3063
3512
|
},
|
|
3064
3513
|
UnsubscribeVersion: "Null",
|
|
3065
|
-
BurnAsset: "
|
|
3066
|
-
ExpectAsset: "
|
|
3067
|
-
ExpectOrigin: "Option<
|
|
3514
|
+
BurnAsset: "StagingXcmV4AssetAssets",
|
|
3515
|
+
ExpectAsset: "StagingXcmV4AssetAssets",
|
|
3516
|
+
ExpectOrigin: "Option<StagingXcmV4Location>",
|
|
3068
3517
|
ExpectError: "Option<(u32,XcmV3TraitsError)>",
|
|
3069
3518
|
ExpectTransactStatus: "XcmV3MaybeErrorCode",
|
|
3070
3519
|
QueryPallet: {
|
|
3071
3520
|
moduleName: "Bytes",
|
|
3072
|
-
responseInfo: "
|
|
3521
|
+
responseInfo: "StagingXcmV4QueryResponseInfo"
|
|
3073
3522
|
},
|
|
3074
3523
|
ExpectPallet: {
|
|
3075
3524
|
index: "Compact<u32>",
|
|
@@ -3078,59 +3527,59 @@ export default {
|
|
|
3078
3527
|
crateMajor: "Compact<u32>",
|
|
3079
3528
|
minCrateMinor: "Compact<u32>"
|
|
3080
3529
|
},
|
|
3081
|
-
ReportTransactStatus: "
|
|
3530
|
+
ReportTransactStatus: "StagingXcmV4QueryResponseInfo",
|
|
3082
3531
|
ClearTransactStatus: "Null",
|
|
3083
|
-
UniversalOrigin: "
|
|
3532
|
+
UniversalOrigin: "StagingXcmV4Junction",
|
|
3084
3533
|
ExportMessage: {
|
|
3085
|
-
network: "
|
|
3086
|
-
destination: "
|
|
3087
|
-
xcm: "
|
|
3534
|
+
network: "StagingXcmV4JunctionNetworkId",
|
|
3535
|
+
destination: "StagingXcmV4Junctions",
|
|
3536
|
+
xcm: "StagingXcmV4Xcm"
|
|
3088
3537
|
},
|
|
3089
3538
|
LockAsset: {
|
|
3090
|
-
asset: "
|
|
3091
|
-
unlocker: "
|
|
3539
|
+
asset: "StagingXcmV4Asset",
|
|
3540
|
+
unlocker: "StagingXcmV4Location"
|
|
3092
3541
|
},
|
|
3093
3542
|
UnlockAsset: {
|
|
3094
|
-
asset: "
|
|
3095
|
-
target: "
|
|
3543
|
+
asset: "StagingXcmV4Asset",
|
|
3544
|
+
target: "StagingXcmV4Location"
|
|
3096
3545
|
},
|
|
3097
3546
|
NoteUnlockable: {
|
|
3098
|
-
asset: "
|
|
3099
|
-
owner: "
|
|
3547
|
+
asset: "StagingXcmV4Asset",
|
|
3548
|
+
owner: "StagingXcmV4Location"
|
|
3100
3549
|
},
|
|
3101
3550
|
RequestUnlock: {
|
|
3102
|
-
asset: "
|
|
3103
|
-
locker: "
|
|
3551
|
+
asset: "StagingXcmV4Asset",
|
|
3552
|
+
locker: "StagingXcmV4Location"
|
|
3104
3553
|
},
|
|
3105
3554
|
SetFeesMode: {
|
|
3106
3555
|
jitWithdraw: "bool"
|
|
3107
3556
|
},
|
|
3108
3557
|
SetTopic: "[u8;32]",
|
|
3109
3558
|
ClearTopic: "Null",
|
|
3110
|
-
AliasOrigin: "
|
|
3559
|
+
AliasOrigin: "StagingXcmV4Location",
|
|
3111
3560
|
UnpaidExecution: {
|
|
3112
3561
|
weightLimit: "XcmV3WeightLimit",
|
|
3113
|
-
checkOrigin: "Option<
|
|
3562
|
+
checkOrigin: "Option<StagingXcmV4Location>"
|
|
3114
3563
|
}
|
|
3115
3564
|
}
|
|
3116
3565
|
},
|
|
3117
3566
|
/**
|
|
3118
|
-
*
|
|
3567
|
+
* Lookup350: staging_xcm::v4::Response
|
|
3119
3568
|
**/
|
|
3120
|
-
|
|
3569
|
+
StagingXcmV4Response: {
|
|
3121
3570
|
_enum: {
|
|
3122
3571
|
Null: "Null",
|
|
3123
|
-
Assets: "
|
|
3572
|
+
Assets: "StagingXcmV4AssetAssets",
|
|
3124
3573
|
ExecutionResult: "Option<(u32,XcmV3TraitsError)>",
|
|
3125
3574
|
Version: "u32",
|
|
3126
|
-
PalletsInfo: "Vec<
|
|
3575
|
+
PalletsInfo: "Vec<StagingXcmV4PalletInfo>",
|
|
3127
3576
|
DispatchResult: "XcmV3MaybeErrorCode"
|
|
3128
3577
|
}
|
|
3129
3578
|
},
|
|
3130
3579
|
/**
|
|
3131
|
-
*
|
|
3580
|
+
* Lookup352: staging_xcm::v4::PalletInfo
|
|
3132
3581
|
**/
|
|
3133
|
-
|
|
3582
|
+
StagingXcmV4PalletInfo: {
|
|
3134
3583
|
index: "Compact<u32>",
|
|
3135
3584
|
name: "Bytes",
|
|
3136
3585
|
moduleName: "Bytes",
|
|
@@ -3139,48 +3588,48 @@ export default {
|
|
|
3139
3588
|
patch: "Compact<u32>"
|
|
3140
3589
|
},
|
|
3141
3590
|
/**
|
|
3142
|
-
*
|
|
3591
|
+
* Lookup356: staging_xcm::v4::QueryResponseInfo
|
|
3143
3592
|
**/
|
|
3144
|
-
|
|
3145
|
-
destination: "
|
|
3593
|
+
StagingXcmV4QueryResponseInfo: {
|
|
3594
|
+
destination: "StagingXcmV4Location",
|
|
3146
3595
|
queryId: "Compact<u64>",
|
|
3147
3596
|
maxWeight: "SpWeightsWeightV2Weight"
|
|
3148
3597
|
},
|
|
3149
3598
|
/**
|
|
3150
|
-
*
|
|
3599
|
+
* Lookup357: staging_xcm::v4::asset::AssetFilter
|
|
3151
3600
|
**/
|
|
3152
|
-
|
|
3601
|
+
StagingXcmV4AssetAssetFilter: {
|
|
3153
3602
|
_enum: {
|
|
3154
|
-
Definite: "
|
|
3155
|
-
Wild: "
|
|
3603
|
+
Definite: "StagingXcmV4AssetAssets",
|
|
3604
|
+
Wild: "StagingXcmV4AssetWildAsset"
|
|
3156
3605
|
}
|
|
3157
3606
|
},
|
|
3158
3607
|
/**
|
|
3159
|
-
*
|
|
3608
|
+
* Lookup358: staging_xcm::v4::asset::WildAsset
|
|
3160
3609
|
**/
|
|
3161
|
-
|
|
3610
|
+
StagingXcmV4AssetWildAsset: {
|
|
3162
3611
|
_enum: {
|
|
3163
3612
|
All: "Null",
|
|
3164
3613
|
AllOf: {
|
|
3165
|
-
id: "
|
|
3166
|
-
fun: "
|
|
3614
|
+
id: "StagingXcmV4AssetAssetId",
|
|
3615
|
+
fun: "StagingXcmV4AssetWildFungibility"
|
|
3167
3616
|
},
|
|
3168
3617
|
AllCounted: "Compact<u32>",
|
|
3169
3618
|
AllOfCounted: {
|
|
3170
|
-
id: "
|
|
3171
|
-
fun: "
|
|
3619
|
+
id: "StagingXcmV4AssetAssetId",
|
|
3620
|
+
fun: "StagingXcmV4AssetWildFungibility",
|
|
3172
3621
|
count: "Compact<u32>"
|
|
3173
3622
|
}
|
|
3174
3623
|
}
|
|
3175
3624
|
},
|
|
3176
3625
|
/**
|
|
3177
|
-
*
|
|
3626
|
+
* Lookup359: staging_xcm::v4::asset::WildFungibility
|
|
3178
3627
|
**/
|
|
3179
|
-
|
|
3628
|
+
StagingXcmV4AssetWildFungibility: {
|
|
3180
3629
|
_enum: ["Fungible", "NonFungible"]
|
|
3181
3630
|
},
|
|
3182
3631
|
/**
|
|
3183
|
-
*
|
|
3632
|
+
* Lookup371: staging_xcm_executor::traits::asset_transfer::TransferType
|
|
3184
3633
|
**/
|
|
3185
3634
|
StagingXcmExecutorAssetTransferTransferType: {
|
|
3186
3635
|
_enum: {
|
|
@@ -3191,7 +3640,7 @@ export default {
|
|
|
3191
3640
|
}
|
|
3192
3641
|
},
|
|
3193
3642
|
/**
|
|
3194
|
-
*
|
|
3643
|
+
* Lookup372: xcm::VersionedAssetId
|
|
3195
3644
|
**/
|
|
3196
3645
|
XcmVersionedAssetId: {
|
|
3197
3646
|
_enum: {
|
|
@@ -3199,15 +3648,16 @@ export default {
|
|
|
3199
3648
|
__Unused1: "Null",
|
|
3200
3649
|
__Unused2: "Null",
|
|
3201
3650
|
V3: "XcmV3MultiassetAssetId",
|
|
3202
|
-
V4: "StagingXcmV4AssetAssetId"
|
|
3651
|
+
V4: "StagingXcmV4AssetAssetId",
|
|
3652
|
+
V5: "StagingXcmV5AssetAssetId"
|
|
3203
3653
|
}
|
|
3204
3654
|
},
|
|
3205
3655
|
/**
|
|
3206
|
-
*
|
|
3656
|
+
* Lookup373: cumulus_pallet_xcm::pallet::Call<T>
|
|
3207
3657
|
**/
|
|
3208
3658
|
CumulusPalletXcmCall: "Null",
|
|
3209
3659
|
/**
|
|
3210
|
-
*
|
|
3660
|
+
* Lookup374: pallet_message_queue::pallet::Call<T>
|
|
3211
3661
|
**/
|
|
3212
3662
|
PalletMessageQueueCall: {
|
|
3213
3663
|
_enum: {
|
|
@@ -3224,14 +3674,16 @@ export default {
|
|
|
3224
3674
|
}
|
|
3225
3675
|
},
|
|
3226
3676
|
/**
|
|
3227
|
-
*
|
|
3677
|
+
* Lookup375: pallet_storage_providers::pallet::Call<T>
|
|
3228
3678
|
**/
|
|
3229
3679
|
PalletStorageProvidersCall: {
|
|
3230
3680
|
_enum: {
|
|
3231
3681
|
request_msp_sign_up: {
|
|
3232
3682
|
capacity: "u64",
|
|
3233
3683
|
multiaddresses: "Vec<Bytes>",
|
|
3234
|
-
|
|
3684
|
+
valuePropPricePerGigaUnitOfDataPerBlock: "u128",
|
|
3685
|
+
commitment: "Bytes",
|
|
3686
|
+
valuePropMaxDataLimit: "u64",
|
|
3235
3687
|
paymentAccount: "AccountId32"
|
|
3236
3688
|
},
|
|
3237
3689
|
request_bsp_sign_up: {
|
|
@@ -3243,20 +3695,35 @@ export default {
|
|
|
3243
3695
|
providerAccount: "Option<AccountId32>"
|
|
3244
3696
|
},
|
|
3245
3697
|
cancel_sign_up: "Null",
|
|
3246
|
-
msp_sign_off:
|
|
3698
|
+
msp_sign_off: {
|
|
3699
|
+
mspId: "H256"
|
|
3700
|
+
},
|
|
3247
3701
|
bsp_sign_off: "Null",
|
|
3248
3702
|
change_capacity: {
|
|
3249
3703
|
newCapacity: "u64"
|
|
3250
3704
|
},
|
|
3251
3705
|
add_value_prop: {
|
|
3252
|
-
|
|
3706
|
+
pricePerGigaUnitOfDataPerBlock: "u128",
|
|
3707
|
+
commitment: "Bytes",
|
|
3708
|
+
bucketDataLimit: "u64"
|
|
3709
|
+
},
|
|
3710
|
+
make_value_prop_unavailable: {
|
|
3711
|
+
valuePropId: "H256"
|
|
3712
|
+
},
|
|
3713
|
+
add_multiaddress: {
|
|
3714
|
+
newMultiaddress: "Bytes"
|
|
3715
|
+
},
|
|
3716
|
+
remove_multiaddress: {
|
|
3717
|
+
multiaddress: "Bytes"
|
|
3253
3718
|
},
|
|
3254
3719
|
force_msp_sign_up: {
|
|
3255
3720
|
who: "AccountId32",
|
|
3256
3721
|
mspId: "H256",
|
|
3257
3722
|
capacity: "u64",
|
|
3258
3723
|
multiaddresses: "Vec<Bytes>",
|
|
3259
|
-
|
|
3724
|
+
valuePropPricePerGigaUnitOfDataPerBlock: "u128",
|
|
3725
|
+
commitment: "Bytes",
|
|
3726
|
+
valuePropMaxDataLimit: "u64",
|
|
3260
3727
|
paymentAccount: "AccountId32"
|
|
3261
3728
|
},
|
|
3262
3729
|
force_bsp_sign_up: {
|
|
@@ -3269,22 +3736,29 @@ export default {
|
|
|
3269
3736
|
},
|
|
3270
3737
|
slash: {
|
|
3271
3738
|
providerId: "H256"
|
|
3272
|
-
}
|
|
3739
|
+
},
|
|
3740
|
+
top_up_deposit: "Null",
|
|
3741
|
+
delete_provider: {
|
|
3742
|
+
providerId: "H256"
|
|
3743
|
+
},
|
|
3744
|
+
stop_all_cycles: "Null"
|
|
3273
3745
|
}
|
|
3274
3746
|
},
|
|
3275
3747
|
/**
|
|
3276
|
-
*
|
|
3748
|
+
* Lookup376: pallet_file_system::pallet::Call<T>
|
|
3277
3749
|
**/
|
|
3278
3750
|
PalletFileSystemCall: {
|
|
3279
3751
|
_enum: {
|
|
3280
3752
|
create_bucket: {
|
|
3281
3753
|
mspId: "H256",
|
|
3282
3754
|
name: "Bytes",
|
|
3283
|
-
private: "bool"
|
|
3755
|
+
private: "bool",
|
|
3756
|
+
valuePropId: "H256"
|
|
3284
3757
|
},
|
|
3285
3758
|
request_move_bucket: {
|
|
3286
3759
|
bucketId: "H256",
|
|
3287
|
-
newMspId: "H256"
|
|
3760
|
+
newMspId: "H256",
|
|
3761
|
+
newValuePropId: "H256"
|
|
3288
3762
|
},
|
|
3289
3763
|
msp_respond_move_bucket_request: {
|
|
3290
3764
|
bucketId: "H256",
|
|
@@ -3297,6 +3771,9 @@ export default {
|
|
|
3297
3771
|
create_and_associate_collection_with_bucket: {
|
|
3298
3772
|
bucketId: "H256"
|
|
3299
3773
|
},
|
|
3774
|
+
delete_bucket: {
|
|
3775
|
+
bucketId: "H256"
|
|
3776
|
+
},
|
|
3300
3777
|
issue_storage_request: {
|
|
3301
3778
|
_alias: {
|
|
3302
3779
|
size_: "size"
|
|
@@ -3306,23 +3783,24 @@ export default {
|
|
|
3306
3783
|
fingerprint: "H256",
|
|
3307
3784
|
size_: "u64",
|
|
3308
3785
|
mspId: "H256",
|
|
3309
|
-
peerIds: "Vec<Bytes>"
|
|
3786
|
+
peerIds: "Vec<Bytes>",
|
|
3787
|
+
replicationTarget: "PalletFileSystemReplicationTarget"
|
|
3310
3788
|
},
|
|
3311
3789
|
revoke_storage_request: {
|
|
3312
3790
|
fileKey: "H256"
|
|
3313
3791
|
},
|
|
3314
|
-
bsp_add_data_server_for_move_bucket_request: {
|
|
3315
|
-
bucketId: "H256"
|
|
3316
|
-
},
|
|
3317
3792
|
msp_respond_storage_requests_multiple_buckets: {
|
|
3318
|
-
|
|
3793
|
+
storageRequestMspResponse: "Vec<PalletFileSystemStorageRequestMspBucketResponse>"
|
|
3794
|
+
},
|
|
3795
|
+
msp_stop_storing_bucket: {
|
|
3796
|
+
bucketId: "H256"
|
|
3319
3797
|
},
|
|
3320
3798
|
bsp_volunteer: {
|
|
3321
3799
|
fileKey: "H256"
|
|
3322
3800
|
},
|
|
3323
3801
|
bsp_confirm_storing: {
|
|
3324
3802
|
nonInclusionForestProof: "SpTrieStorageProofCompactProof",
|
|
3325
|
-
fileKeysAndProofs: "Vec<
|
|
3803
|
+
fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>"
|
|
3326
3804
|
},
|
|
3327
3805
|
bsp_request_stop_storing: {
|
|
3328
3806
|
_alias: {
|
|
@@ -3353,51 +3831,91 @@ export default {
|
|
|
3353
3831
|
size_: "u64",
|
|
3354
3832
|
inclusionForestProof: "SpTrieStorageProofCompactProof"
|
|
3355
3833
|
},
|
|
3834
|
+
msp_stop_storing_bucket_for_insolvent_user: {
|
|
3835
|
+
bucketId: "H256"
|
|
3836
|
+
},
|
|
3837
|
+
request_delete_file: {
|
|
3838
|
+
_alias: {
|
|
3839
|
+
size_: "size"
|
|
3840
|
+
},
|
|
3841
|
+
signedIntention: "PalletFileSystemFileOperationIntention",
|
|
3842
|
+
signature: "SpRuntimeMultiSignature",
|
|
3843
|
+
bucketId: "H256",
|
|
3844
|
+
location: "Bytes",
|
|
3845
|
+
size_: "u64",
|
|
3846
|
+
fingerprint: "H256"
|
|
3847
|
+
},
|
|
3356
3848
|
delete_file: {
|
|
3357
3849
|
_alias: {
|
|
3358
3850
|
size_: "size"
|
|
3359
3851
|
},
|
|
3852
|
+
fileOwner: "AccountId32",
|
|
3853
|
+
signedIntention: "PalletFileSystemFileOperationIntention",
|
|
3854
|
+
signature: "SpRuntimeMultiSignature",
|
|
3360
3855
|
bucketId: "H256",
|
|
3361
|
-
fileKey: "H256",
|
|
3362
3856
|
location: "Bytes",
|
|
3363
3857
|
size_: "u64",
|
|
3364
3858
|
fingerprint: "H256",
|
|
3365
|
-
|
|
3859
|
+
bspId: "Option<H256>",
|
|
3860
|
+
forestProof: "SpTrieStorageProofCompactProof"
|
|
3366
3861
|
},
|
|
3367
|
-
|
|
3368
|
-
user: "AccountId32",
|
|
3862
|
+
delete_file_for_incomplete_storage_request: {
|
|
3369
3863
|
fileKey: "H256",
|
|
3370
|
-
|
|
3864
|
+
bspId: "Option<H256>",
|
|
3371
3865
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
3372
|
-
},
|
|
3373
|
-
set_global_parameters: {
|
|
3374
|
-
replicationTarget: "Option<u32>",
|
|
3375
|
-
tickRangeToMaximumThreshold: "Option<u32>"
|
|
3376
3866
|
}
|
|
3377
3867
|
}
|
|
3378
3868
|
},
|
|
3379
3869
|
/**
|
|
3380
|
-
*
|
|
3870
|
+
* Lookup377: pallet_file_system::types::BucketMoveRequestResponse
|
|
3381
3871
|
**/
|
|
3382
3872
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
3383
3873
|
_enum: ["Accepted", "Rejected"]
|
|
3384
3874
|
},
|
|
3385
3875
|
/**
|
|
3386
|
-
*
|
|
3876
|
+
* Lookup378: pallet_file_system::types::ReplicationTarget<T>
|
|
3877
|
+
**/
|
|
3878
|
+
PalletFileSystemReplicationTarget: {
|
|
3879
|
+
_enum: {
|
|
3880
|
+
Basic: "Null",
|
|
3881
|
+
Standard: "Null",
|
|
3882
|
+
HighSecurity: "Null",
|
|
3883
|
+
SuperHighSecurity: "Null",
|
|
3884
|
+
UltraHighSecurity: "Null",
|
|
3885
|
+
Custom: "u32"
|
|
3886
|
+
}
|
|
3887
|
+
},
|
|
3888
|
+
/**
|
|
3889
|
+
* Lookup380: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
3890
|
+
**/
|
|
3891
|
+
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
3892
|
+
bucketId: "H256",
|
|
3893
|
+
accept: "Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>",
|
|
3894
|
+
reject: "Vec<PalletFileSystemRejectedStorageRequest>"
|
|
3895
|
+
},
|
|
3896
|
+
/**
|
|
3897
|
+
* Lookup382: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
3898
|
+
**/
|
|
3899
|
+
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
3900
|
+
fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>",
|
|
3901
|
+
forestProof: "SpTrieStorageProofCompactProof"
|
|
3902
|
+
},
|
|
3903
|
+
/**
|
|
3904
|
+
* Lookup384: pallet_file_system::types::FileKeyWithProof<T>
|
|
3387
3905
|
**/
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3906
|
+
PalletFileSystemFileKeyWithProof: {
|
|
3907
|
+
fileKey: "H256",
|
|
3908
|
+
proof: "ShpFileKeyVerifierFileKeyProof"
|
|
3391
3909
|
},
|
|
3392
3910
|
/**
|
|
3393
|
-
*
|
|
3911
|
+
* Lookup386: pallet_file_system::types::RejectedStorageRequest<T>
|
|
3394
3912
|
**/
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3913
|
+
PalletFileSystemRejectedStorageRequest: {
|
|
3914
|
+
fileKey: "H256",
|
|
3915
|
+
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
3398
3916
|
},
|
|
3399
3917
|
/**
|
|
3400
|
-
*
|
|
3918
|
+
* Lookup388: pallet_proofs_dealer::pallet::Call<T>
|
|
3401
3919
|
**/
|
|
3402
3920
|
PalletProofsDealerCall: {
|
|
3403
3921
|
_enum: {
|
|
@@ -3413,17 +3931,21 @@ export default {
|
|
|
3413
3931
|
},
|
|
3414
3932
|
set_paused: {
|
|
3415
3933
|
paused: "bool"
|
|
3934
|
+
},
|
|
3935
|
+
priority_challenge: {
|
|
3936
|
+
key: "H256",
|
|
3937
|
+
shouldRemoveKey: "bool"
|
|
3416
3938
|
}
|
|
3417
3939
|
}
|
|
3418
3940
|
},
|
|
3419
3941
|
/**
|
|
3420
|
-
*
|
|
3942
|
+
* Lookup389: pallet_randomness::pallet::Call<T>
|
|
3421
3943
|
**/
|
|
3422
3944
|
PalletRandomnessCall: {
|
|
3423
3945
|
_enum: ["set_babe_randomness"]
|
|
3424
3946
|
},
|
|
3425
3947
|
/**
|
|
3426
|
-
*
|
|
3948
|
+
* Lookup390: pallet_payment_streams::pallet::Call<T>
|
|
3427
3949
|
**/
|
|
3428
3950
|
PalletPaymentStreamsCall: {
|
|
3429
3951
|
_enum: {
|
|
@@ -3458,12 +3980,17 @@ export default {
|
|
|
3458
3980
|
charge_payment_streams: {
|
|
3459
3981
|
userAccount: "AccountId32"
|
|
3460
3982
|
},
|
|
3461
|
-
|
|
3983
|
+
charge_multiple_users_payment_streams: {
|
|
3984
|
+
userAccounts: "Vec<AccountId32>"
|
|
3985
|
+
},
|
|
3986
|
+
pay_outstanding_debt: {
|
|
3987
|
+
providers: "Vec<H256>"
|
|
3988
|
+
},
|
|
3462
3989
|
clear_insolvent_flag: "Null"
|
|
3463
3990
|
}
|
|
3464
3991
|
},
|
|
3465
3992
|
/**
|
|
3466
|
-
*
|
|
3993
|
+
* Lookup391: pallet_bucket_nfts::pallet::Call<T>
|
|
3467
3994
|
**/
|
|
3468
3995
|
PalletBucketNftsCall: {
|
|
3469
3996
|
_enum: {
|
|
@@ -3481,7 +4008,7 @@ export default {
|
|
|
3481
4008
|
}
|
|
3482
4009
|
},
|
|
3483
4010
|
/**
|
|
3484
|
-
*
|
|
4011
|
+
* Lookup393: pallet_nfts::pallet::Call<T, I>
|
|
3485
4012
|
**/
|
|
3486
4013
|
PalletNftsCall: {
|
|
3487
4014
|
_enum: {
|
|
@@ -3678,7 +4205,7 @@ export default {
|
|
|
3678
4205
|
}
|
|
3679
4206
|
},
|
|
3680
4207
|
/**
|
|
3681
|
-
*
|
|
4208
|
+
* Lookup394: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
3682
4209
|
**/
|
|
3683
4210
|
PalletNftsCollectionConfig: {
|
|
3684
4211
|
settings: "u64",
|
|
@@ -3686,7 +4213,7 @@ export default {
|
|
|
3686
4213
|
mintSettings: "PalletNftsMintSettings"
|
|
3687
4214
|
},
|
|
3688
4215
|
/**
|
|
3689
|
-
*
|
|
4216
|
+
* Lookup396: pallet_nfts::types::CollectionSetting
|
|
3690
4217
|
**/
|
|
3691
4218
|
PalletNftsCollectionSetting: {
|
|
3692
4219
|
_enum: [
|
|
@@ -3710,7 +4237,7 @@ export default {
|
|
|
3710
4237
|
]
|
|
3711
4238
|
},
|
|
3712
4239
|
/**
|
|
3713
|
-
*
|
|
4240
|
+
* Lookup397: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
3714
4241
|
**/
|
|
3715
4242
|
PalletNftsMintSettings: {
|
|
3716
4243
|
mintType: "PalletNftsMintType",
|
|
@@ -3720,7 +4247,7 @@ export default {
|
|
|
3720
4247
|
defaultItemSettings: "u64"
|
|
3721
4248
|
},
|
|
3722
4249
|
/**
|
|
3723
|
-
*
|
|
4250
|
+
* Lookup398: pallet_nfts::types::MintType<CollectionId>
|
|
3724
4251
|
**/
|
|
3725
4252
|
PalletNftsMintType: {
|
|
3726
4253
|
_enum: {
|
|
@@ -3730,13 +4257,13 @@ export default {
|
|
|
3730
4257
|
}
|
|
3731
4258
|
},
|
|
3732
4259
|
/**
|
|
3733
|
-
*
|
|
4260
|
+
* Lookup401: pallet_nfts::types::ItemSetting
|
|
3734
4261
|
**/
|
|
3735
4262
|
PalletNftsItemSetting: {
|
|
3736
4263
|
_enum: ["__Unused0", "Transferable", "UnlockedMetadata", "__Unused3", "UnlockedAttributes"]
|
|
3737
4264
|
},
|
|
3738
4265
|
/**
|
|
3739
|
-
*
|
|
4266
|
+
* Lookup402: pallet_nfts::types::DestroyWitness
|
|
3740
4267
|
**/
|
|
3741
4268
|
PalletNftsDestroyWitness: {
|
|
3742
4269
|
itemMetadatas: "Compact<u32>",
|
|
@@ -3744,26 +4271,26 @@ export default {
|
|
|
3744
4271
|
attributes: "Compact<u32>"
|
|
3745
4272
|
},
|
|
3746
4273
|
/**
|
|
3747
|
-
*
|
|
4274
|
+
* Lookup404: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
3748
4275
|
**/
|
|
3749
4276
|
PalletNftsMintWitness: {
|
|
3750
4277
|
ownedItem: "Option<u32>",
|
|
3751
4278
|
mintPrice: "Option<u128>"
|
|
3752
4279
|
},
|
|
3753
4280
|
/**
|
|
3754
|
-
*
|
|
4281
|
+
* Lookup405: pallet_nfts::types::ItemConfig
|
|
3755
4282
|
**/
|
|
3756
4283
|
PalletNftsItemConfig: {
|
|
3757
4284
|
settings: "u64"
|
|
3758
4285
|
},
|
|
3759
4286
|
/**
|
|
3760
|
-
*
|
|
4287
|
+
* Lookup407: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
3761
4288
|
**/
|
|
3762
4289
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
3763
4290
|
accountAttributes: "u32"
|
|
3764
4291
|
},
|
|
3765
4292
|
/**
|
|
3766
|
-
*
|
|
4293
|
+
* Lookup409: pallet_nfts::types::ItemTip<CollectionId, ItemId, sp_core::crypto::AccountId32, Amount>
|
|
3767
4294
|
**/
|
|
3768
4295
|
PalletNftsItemTip: {
|
|
3769
4296
|
collection: "u32",
|
|
@@ -3772,7 +4299,7 @@ export default {
|
|
|
3772
4299
|
amount: "u128"
|
|
3773
4300
|
},
|
|
3774
4301
|
/**
|
|
3775
|
-
*
|
|
4302
|
+
* Lookup411: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline, Balance>
|
|
3776
4303
|
**/
|
|
3777
4304
|
PalletNftsPreSignedMint: {
|
|
3778
4305
|
collection: "u32",
|
|
@@ -3784,17 +4311,7 @@ export default {
|
|
|
3784
4311
|
mintPrice: "Option<u128>"
|
|
3785
4312
|
},
|
|
3786
4313
|
/**
|
|
3787
|
-
*
|
|
3788
|
-
**/
|
|
3789
|
-
SpRuntimeMultiSignature: {
|
|
3790
|
-
_enum: {
|
|
3791
|
-
Ed25519: "[u8;64]",
|
|
3792
|
-
Sr25519: "[u8;64]",
|
|
3793
|
-
Ecdsa: "[u8;65]"
|
|
3794
|
-
}
|
|
3795
|
-
},
|
|
3796
|
-
/**
|
|
3797
|
-
* Lookup368: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline>
|
|
4314
|
+
* Lookup412: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline>
|
|
3798
4315
|
**/
|
|
3799
4316
|
PalletNftsPreSignedAttributes: {
|
|
3800
4317
|
collection: "u32",
|
|
@@ -3804,53 +4321,105 @@ export default {
|
|
|
3804
4321
|
deadline: "u32"
|
|
3805
4322
|
},
|
|
3806
4323
|
/**
|
|
3807
|
-
*
|
|
4324
|
+
* Lookup413: pallet_parameters::pallet::Call<T>
|
|
3808
4325
|
**/
|
|
3809
4326
|
PalletParametersCall: {
|
|
3810
4327
|
_enum: {
|
|
3811
4328
|
set_parameter: {
|
|
3812
|
-
keyValue: "
|
|
4329
|
+
keyValue: "ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters"
|
|
3813
4330
|
}
|
|
3814
4331
|
}
|
|
3815
4332
|
},
|
|
3816
4333
|
/**
|
|
3817
|
-
*
|
|
4334
|
+
* Lookup414: sh_parachain_runtime::configs::runtime_params::RuntimeParameters
|
|
3818
4335
|
**/
|
|
3819
|
-
|
|
4336
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
3820
4337
|
_enum: {
|
|
3821
|
-
RuntimeConfig: "
|
|
4338
|
+
RuntimeConfig: "ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters"
|
|
3822
4339
|
}
|
|
3823
4340
|
},
|
|
3824
4341
|
/**
|
|
3825
|
-
*
|
|
4342
|
+
* Lookup415: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
3826
4343
|
**/
|
|
3827
|
-
|
|
4344
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
3828
4345
|
_enum: {
|
|
3829
4346
|
SlashAmountPerMaxFileSize:
|
|
3830
|
-
"(
|
|
4347
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize,Option<u128>)",
|
|
3831
4348
|
StakeToChallengePeriod:
|
|
3832
|
-
"(
|
|
4349
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod,Option<u128>)",
|
|
3833
4350
|
CheckpointChallengePeriod:
|
|
3834
|
-
"(
|
|
4351
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod,Option<u32>)",
|
|
3835
4352
|
MinChallengePeriod:
|
|
3836
|
-
"(
|
|
4353
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod,Option<u32>)",
|
|
4354
|
+
SystemUtilisationLowerThresholdPercentage:
|
|
4355
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage,Option<Perbill>)",
|
|
4356
|
+
SystemUtilisationUpperThresholdPercentage:
|
|
4357
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage,Option<Perbill>)",
|
|
4358
|
+
MostlyStablePrice:
|
|
4359
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice,Option<u128>)",
|
|
4360
|
+
MaxPrice:
|
|
4361
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice,Option<u128>)",
|
|
4362
|
+
MinPrice:
|
|
4363
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,Option<u128>)",
|
|
4364
|
+
UpperExponentFactor:
|
|
4365
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u32>)",
|
|
4366
|
+
LowerExponentFactor:
|
|
4367
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u32>)",
|
|
4368
|
+
ZeroSizeBucketFixedRate:
|
|
4369
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,Option<u128>)",
|
|
4370
|
+
IdealUtilisationRate:
|
|
4371
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate,Option<Perbill>)",
|
|
4372
|
+
DecayRate:
|
|
4373
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate,Option<Perbill>)",
|
|
4374
|
+
MinimumTreasuryCut:
|
|
4375
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut,Option<Perbill>)",
|
|
4376
|
+
MaximumTreasuryCut:
|
|
4377
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut,Option<Perbill>)",
|
|
4378
|
+
BspStopStoringFilePenalty:
|
|
4379
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty,Option<u128>)",
|
|
4380
|
+
ProviderTopUpTtl:
|
|
4381
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl,Option<u32>)",
|
|
4382
|
+
BasicReplicationTarget:
|
|
4383
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget,Option<u32>)",
|
|
4384
|
+
StandardReplicationTarget:
|
|
4385
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget,Option<u32>)",
|
|
4386
|
+
HighSecurityReplicationTarget:
|
|
4387
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget,Option<u32>)",
|
|
4388
|
+
SuperHighSecurityReplicationTarget:
|
|
4389
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget,Option<u32>)",
|
|
4390
|
+
UltraHighSecurityReplicationTarget:
|
|
4391
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget,Option<u32>)",
|
|
4392
|
+
MaxReplicationTarget:
|
|
4393
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget,Option<u32>)",
|
|
4394
|
+
TickRangeToMaximumThreshold:
|
|
4395
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold,Option<u32>)",
|
|
4396
|
+
StorageRequestTtl:
|
|
4397
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl,Option<u32>)",
|
|
4398
|
+
MinWaitForStopStoring:
|
|
4399
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring,Option<u32>)",
|
|
4400
|
+
MinSeedPeriod:
|
|
4401
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod,Option<u32>)",
|
|
4402
|
+
StakeToSeedPeriod:
|
|
4403
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod,Option<u128>)",
|
|
4404
|
+
UpfrontTicksToPay:
|
|
4405
|
+
"(ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay,Option<u32>)"
|
|
3837
4406
|
}
|
|
3838
4407
|
},
|
|
3839
4408
|
/**
|
|
3840
|
-
*
|
|
4409
|
+
* Lookup417: pallet_sudo::pallet::Error<T>
|
|
3841
4410
|
**/
|
|
3842
4411
|
PalletSudoError: {
|
|
3843
4412
|
_enum: ["RequireSudo"]
|
|
3844
4413
|
},
|
|
3845
4414
|
/**
|
|
3846
|
-
*
|
|
4415
|
+
* Lookup420: pallet_collator_selection::pallet::CandidateInfo<sp_core::crypto::AccountId32, Balance>
|
|
3847
4416
|
**/
|
|
3848
4417
|
PalletCollatorSelectionCandidateInfo: {
|
|
3849
4418
|
who: "AccountId32",
|
|
3850
4419
|
deposit: "u128"
|
|
3851
4420
|
},
|
|
3852
4421
|
/**
|
|
3853
|
-
*
|
|
4422
|
+
* Lookup422: pallet_collator_selection::pallet::Error<T>
|
|
3854
4423
|
**/
|
|
3855
4424
|
PalletCollatorSelectionError: {
|
|
3856
4425
|
_enum: [
|
|
@@ -3874,17 +4443,17 @@ export default {
|
|
|
3874
4443
|
]
|
|
3875
4444
|
},
|
|
3876
4445
|
/**
|
|
3877
|
-
*
|
|
4446
|
+
* Lookup426: sp_core::crypto::KeyTypeId
|
|
3878
4447
|
**/
|
|
3879
4448
|
SpCoreCryptoKeyTypeId: "[u8;4]",
|
|
3880
4449
|
/**
|
|
3881
|
-
*
|
|
4450
|
+
* Lookup427: pallet_session::pallet::Error<T>
|
|
3882
4451
|
**/
|
|
3883
4452
|
PalletSessionError: {
|
|
3884
4453
|
_enum: ["InvalidProof", "NoAssociatedValidatorId", "DuplicatedKey", "NoKeys", "NoAccount"]
|
|
3885
4454
|
},
|
|
3886
4455
|
/**
|
|
3887
|
-
*
|
|
4456
|
+
* Lookup436: cumulus_pallet_xcmp_queue::OutboundChannelDetails
|
|
3888
4457
|
**/
|
|
3889
4458
|
CumulusPalletXcmpQueueOutboundChannelDetails: {
|
|
3890
4459
|
recipient: "u32",
|
|
@@ -3894,13 +4463,13 @@ export default {
|
|
|
3894
4463
|
lastIndex: "u16"
|
|
3895
4464
|
},
|
|
3896
4465
|
/**
|
|
3897
|
-
*
|
|
4466
|
+
* Lookup437: cumulus_pallet_xcmp_queue::OutboundState
|
|
3898
4467
|
**/
|
|
3899
4468
|
CumulusPalletXcmpQueueOutboundState: {
|
|
3900
4469
|
_enum: ["Ok", "Suspended"]
|
|
3901
4470
|
},
|
|
3902
4471
|
/**
|
|
3903
|
-
*
|
|
4472
|
+
* Lookup441: cumulus_pallet_xcmp_queue::QueueConfigData
|
|
3904
4473
|
**/
|
|
3905
4474
|
CumulusPalletXcmpQueueQueueConfigData: {
|
|
3906
4475
|
suspendThreshold: "u32",
|
|
@@ -3908,7 +4477,7 @@ export default {
|
|
|
3908
4477
|
resumeThreshold: "u32"
|
|
3909
4478
|
},
|
|
3910
4479
|
/**
|
|
3911
|
-
*
|
|
4480
|
+
* Lookup442: cumulus_pallet_xcmp_queue::pallet::Error<T>
|
|
3912
4481
|
**/
|
|
3913
4482
|
CumulusPalletXcmpQueueError: {
|
|
3914
4483
|
_enum: [
|
|
@@ -3920,7 +4489,7 @@ export default {
|
|
|
3920
4489
|
]
|
|
3921
4490
|
},
|
|
3922
4491
|
/**
|
|
3923
|
-
*
|
|
4492
|
+
* Lookup443: pallet_xcm::pallet::QueryStatus<BlockNumber>
|
|
3924
4493
|
**/
|
|
3925
4494
|
PalletXcmQueryStatus: {
|
|
3926
4495
|
_enum: {
|
|
@@ -3941,19 +4510,20 @@ export default {
|
|
|
3941
4510
|
}
|
|
3942
4511
|
},
|
|
3943
4512
|
/**
|
|
3944
|
-
*
|
|
4513
|
+
* Lookup447: xcm::VersionedResponse
|
|
3945
4514
|
**/
|
|
3946
4515
|
XcmVersionedResponse: {
|
|
3947
4516
|
_enum: {
|
|
3948
4517
|
__Unused0: "Null",
|
|
3949
4518
|
__Unused1: "Null",
|
|
3950
|
-
|
|
4519
|
+
__Unused2: "Null",
|
|
3951
4520
|
V3: "XcmV3Response",
|
|
3952
|
-
V4: "StagingXcmV4Response"
|
|
4521
|
+
V4: "StagingXcmV4Response",
|
|
4522
|
+
V5: "StagingXcmV5Response"
|
|
3953
4523
|
}
|
|
3954
4524
|
},
|
|
3955
4525
|
/**
|
|
3956
|
-
*
|
|
4526
|
+
* Lookup453: pallet_xcm::pallet::VersionMigrationStage
|
|
3957
4527
|
**/
|
|
3958
4528
|
PalletXcmVersionMigrationStage: {
|
|
3959
4529
|
_enum: {
|
|
@@ -3964,7 +4534,7 @@ export default {
|
|
|
3964
4534
|
}
|
|
3965
4535
|
},
|
|
3966
4536
|
/**
|
|
3967
|
-
*
|
|
4537
|
+
* Lookup455: pallet_xcm::pallet::RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>
|
|
3968
4538
|
**/
|
|
3969
4539
|
PalletXcmRemoteLockedFungibleRecord: {
|
|
3970
4540
|
amount: "u128",
|
|
@@ -3973,7 +4543,7 @@ export default {
|
|
|
3973
4543
|
consumers: "Vec<(Null,u128)>"
|
|
3974
4544
|
},
|
|
3975
4545
|
/**
|
|
3976
|
-
*
|
|
4546
|
+
* Lookup462: pallet_xcm::pallet::Error<T>
|
|
3977
4547
|
**/
|
|
3978
4548
|
PalletXcmError: {
|
|
3979
4549
|
_enum: [
|
|
@@ -4005,7 +4575,7 @@ export default {
|
|
|
4005
4575
|
]
|
|
4006
4576
|
},
|
|
4007
4577
|
/**
|
|
4008
|
-
*
|
|
4578
|
+
* Lookup463: pallet_message_queue::BookState<cumulus_primitives_core::AggregateMessageOrigin>
|
|
4009
4579
|
**/
|
|
4010
4580
|
PalletMessageQueueBookState: {
|
|
4011
4581
|
_alias: {
|
|
@@ -4019,14 +4589,14 @@ export default {
|
|
|
4019
4589
|
size_: "u64"
|
|
4020
4590
|
},
|
|
4021
4591
|
/**
|
|
4022
|
-
*
|
|
4592
|
+
* Lookup465: pallet_message_queue::Neighbours<cumulus_primitives_core::AggregateMessageOrigin>
|
|
4023
4593
|
**/
|
|
4024
4594
|
PalletMessageQueueNeighbours: {
|
|
4025
4595
|
prev: "CumulusPrimitivesCoreAggregateMessageOrigin",
|
|
4026
4596
|
next: "CumulusPrimitivesCoreAggregateMessageOrigin"
|
|
4027
4597
|
},
|
|
4028
4598
|
/**
|
|
4029
|
-
*
|
|
4599
|
+
* Lookup467: pallet_message_queue::Page<Size, HeapSize>
|
|
4030
4600
|
**/
|
|
4031
4601
|
PalletMessageQueuePage: {
|
|
4032
4602
|
remaining: "u32",
|
|
@@ -4037,7 +4607,7 @@ export default {
|
|
|
4037
4607
|
heap: "Bytes"
|
|
4038
4608
|
},
|
|
4039
4609
|
/**
|
|
4040
|
-
*
|
|
4610
|
+
* Lookup469: pallet_message_queue::pallet::Error<T>
|
|
4041
4611
|
**/
|
|
4042
4612
|
PalletMessageQueueError: {
|
|
4043
4613
|
_enum: [
|
|
@@ -4053,16 +4623,23 @@ export default {
|
|
|
4053
4623
|
]
|
|
4054
4624
|
},
|
|
4055
4625
|
/**
|
|
4056
|
-
*
|
|
4626
|
+
* Lookup470: pallet_storage_providers::types::SignUpRequest<T>
|
|
4627
|
+
**/
|
|
4628
|
+
PalletStorageProvidersSignUpRequest: {
|
|
4629
|
+
spSignUpRequest: "PalletStorageProvidersSignUpRequestSpParams",
|
|
4630
|
+
at: "u32"
|
|
4631
|
+
},
|
|
4632
|
+
/**
|
|
4633
|
+
* Lookup471: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
4057
4634
|
**/
|
|
4058
|
-
|
|
4635
|
+
PalletStorageProvidersSignUpRequestSpParams: {
|
|
4059
4636
|
_enum: {
|
|
4060
4637
|
BackupStorageProvider: "PalletStorageProvidersBackupStorageProvider",
|
|
4061
|
-
MainStorageProvider: "
|
|
4638
|
+
MainStorageProvider: "PalletStorageProvidersMainStorageProviderSignUpRequest"
|
|
4062
4639
|
}
|
|
4063
4640
|
},
|
|
4064
4641
|
/**
|
|
4065
|
-
*
|
|
4642
|
+
* Lookup472: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
4066
4643
|
**/
|
|
4067
4644
|
PalletStorageProvidersBackupStorageProvider: {
|
|
4068
4645
|
capacity: "u64",
|
|
@@ -4072,23 +4649,32 @@ export default {
|
|
|
4072
4649
|
lastCapacityChange: "u32",
|
|
4073
4650
|
ownerAccount: "AccountId32",
|
|
4074
4651
|
paymentAccount: "AccountId32",
|
|
4075
|
-
reputationWeight: "u32"
|
|
4652
|
+
reputationWeight: "u32",
|
|
4653
|
+
signUpBlock: "u32"
|
|
4076
4654
|
},
|
|
4077
4655
|
/**
|
|
4078
|
-
*
|
|
4656
|
+
* Lookup473: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
4657
|
+
**/
|
|
4658
|
+
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
4659
|
+
mspInfo: "PalletStorageProvidersMainStorageProvider",
|
|
4660
|
+
valueProp: "PalletStorageProvidersValueProposition"
|
|
4661
|
+
},
|
|
4662
|
+
/**
|
|
4663
|
+
* Lookup474: pallet_storage_providers::types::MainStorageProvider<T>
|
|
4079
4664
|
**/
|
|
4080
4665
|
PalletStorageProvidersMainStorageProvider: {
|
|
4081
|
-
buckets: "Vec<PalletStorageProvidersBucket>",
|
|
4082
4666
|
capacity: "u64",
|
|
4083
4667
|
capacityUsed: "u64",
|
|
4084
4668
|
multiaddresses: "Vec<Bytes>",
|
|
4085
|
-
|
|
4669
|
+
amountOfBuckets: "u128",
|
|
4670
|
+
amountOfValueProps: "u32",
|
|
4086
4671
|
lastCapacityChange: "u32",
|
|
4087
4672
|
ownerAccount: "AccountId32",
|
|
4088
|
-
paymentAccount: "AccountId32"
|
|
4673
|
+
paymentAccount: "AccountId32",
|
|
4674
|
+
signUpBlock: "u32"
|
|
4089
4675
|
},
|
|
4090
4676
|
/**
|
|
4091
|
-
*
|
|
4677
|
+
* Lookup475: pallet_storage_providers::types::Bucket<T>
|
|
4092
4678
|
**/
|
|
4093
4679
|
PalletStorageProvidersBucket: {
|
|
4094
4680
|
_alias: {
|
|
@@ -4096,13 +4682,14 @@ export default {
|
|
|
4096
4682
|
},
|
|
4097
4683
|
root: "H256",
|
|
4098
4684
|
userId: "AccountId32",
|
|
4099
|
-
mspId: "H256",
|
|
4685
|
+
mspId: "Option<H256>",
|
|
4100
4686
|
private: "bool",
|
|
4101
4687
|
readAccessGroupId: "Option<u32>",
|
|
4102
|
-
size_: "u64"
|
|
4688
|
+
size_: "u64",
|
|
4689
|
+
valuePropId: "H256"
|
|
4103
4690
|
},
|
|
4104
4691
|
/**
|
|
4105
|
-
*
|
|
4692
|
+
* Lookup479: pallet_storage_providers::pallet::Error<T>
|
|
4106
4693
|
**/
|
|
4107
4694
|
PalletStorageProvidersError: {
|
|
4108
4695
|
_enum: [
|
|
@@ -4115,6 +4702,7 @@ export default {
|
|
|
4115
4702
|
"NotEnoughBalance",
|
|
4116
4703
|
"CannotHoldDeposit",
|
|
4117
4704
|
"StorageStillInUse",
|
|
4705
|
+
"SignOffPeriodNotPassed",
|
|
4118
4706
|
"RandomnessNotValidYet",
|
|
4119
4707
|
"SignUpRequestExpired",
|
|
4120
4708
|
"NewCapacityLessThanUsedStorage",
|
|
@@ -4122,27 +4710,52 @@ export default {
|
|
|
4122
4710
|
"NewCapacityCantBeZero",
|
|
4123
4711
|
"NotEnoughTimePassed",
|
|
4124
4712
|
"NewUsedCapacityExceedsStorageCapacity",
|
|
4713
|
+
"DepositTooLow",
|
|
4125
4714
|
"NotRegistered",
|
|
4126
4715
|
"NoUserId",
|
|
4127
4716
|
"NoBucketId",
|
|
4128
4717
|
"SpRegisteredButDataNotFound",
|
|
4129
4718
|
"BucketNotFound",
|
|
4130
4719
|
"BucketAlreadyExists",
|
|
4720
|
+
"BucketNotEmpty",
|
|
4721
|
+
"BucketsMovedAmountMismatch",
|
|
4131
4722
|
"AppendBucketToMspFailed",
|
|
4132
4723
|
"ProviderNotSlashable",
|
|
4724
|
+
"TopUpNotRequired",
|
|
4725
|
+
"BucketMustHaveMspForOperation",
|
|
4726
|
+
"MultiAddressesMaxAmountReached",
|
|
4727
|
+
"MultiAddressNotFound",
|
|
4728
|
+
"MultiAddressAlreadyExists",
|
|
4729
|
+
"LastMultiAddressCantBeRemoved",
|
|
4730
|
+
"ValuePropositionNotFound",
|
|
4731
|
+
"ValuePropositionAlreadyExists",
|
|
4732
|
+
"ValuePropositionNotAvailable",
|
|
4733
|
+
"CantDeactivateLastValueProp",
|
|
4734
|
+
"ValuePropositionsDeletedAmountMismatch",
|
|
4735
|
+
"FixedRatePaymentStreamNotFound",
|
|
4736
|
+
"MspAlreadyAssignedToBucket",
|
|
4737
|
+
"BucketSizeExceedsLimit",
|
|
4738
|
+
"BucketHasNoValueProposition",
|
|
4739
|
+
"MaxBlockNumberReached",
|
|
4740
|
+
"OperationNotAllowedForInsolventProvider",
|
|
4741
|
+
"DeleteProviderConditionsNotMet",
|
|
4742
|
+
"CannotStopCycleWithNonDefaultRoot",
|
|
4743
|
+
"BspOnlyOperation",
|
|
4744
|
+
"MspOnlyOperation",
|
|
4133
4745
|
"InvalidEncodedFileMetadata",
|
|
4134
4746
|
"InvalidEncodedAccountId",
|
|
4135
4747
|
"PaymentStreamNotFound"
|
|
4136
4748
|
]
|
|
4137
4749
|
},
|
|
4138
4750
|
/**
|
|
4139
|
-
*
|
|
4751
|
+
* Lookup480: pallet_file_system::types::StorageRequestMetadata<T>
|
|
4140
4752
|
**/
|
|
4141
4753
|
PalletFileSystemStorageRequestMetadata: {
|
|
4142
4754
|
_alias: {
|
|
4143
4755
|
size_: "size"
|
|
4144
4756
|
},
|
|
4145
4757
|
requestedAt: "u32",
|
|
4758
|
+
expiresAt: "u32",
|
|
4146
4759
|
owner: "AccountId32",
|
|
4147
4760
|
bucketId: "H256",
|
|
4148
4761
|
location: "Bytes",
|
|
@@ -4150,25 +4763,58 @@ export default {
|
|
|
4150
4763
|
size_: "u64",
|
|
4151
4764
|
msp: "Option<(H256,bool)>",
|
|
4152
4765
|
userPeerIds: "Vec<Bytes>",
|
|
4153
|
-
dataServerSps: "Vec<H256>",
|
|
4154
4766
|
bspsRequired: "u32",
|
|
4155
4767
|
bspsConfirmed: "u32",
|
|
4156
|
-
bspsVolunteered: "u32"
|
|
4768
|
+
bspsVolunteered: "u32",
|
|
4769
|
+
depositPaid: "u128"
|
|
4157
4770
|
},
|
|
4158
4771
|
/**
|
|
4159
|
-
*
|
|
4772
|
+
* Lookup483: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
4160
4773
|
**/
|
|
4161
4774
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
4162
4775
|
confirmed: "bool"
|
|
4163
4776
|
},
|
|
4164
4777
|
/**
|
|
4165
|
-
*
|
|
4778
|
+
* Lookup486: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
4779
|
+
**/
|
|
4780
|
+
PalletFileSystemPendingFileDeletionRequest: {
|
|
4781
|
+
user: "AccountId32",
|
|
4782
|
+
fileKey: "H256",
|
|
4783
|
+
bucketId: "H256",
|
|
4784
|
+
fileSize: "u64",
|
|
4785
|
+
depositPaidForCreation: "u128",
|
|
4786
|
+
queuePriorityChallenge: "bool"
|
|
4787
|
+
},
|
|
4788
|
+
/**
|
|
4789
|
+
* Lookup488: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
4790
|
+
**/
|
|
4791
|
+
PalletFileSystemPendingStopStoringRequest: {
|
|
4792
|
+
tickWhenRequested: "u32",
|
|
4793
|
+
fileOwner: "AccountId32",
|
|
4794
|
+
fileSize: "u64"
|
|
4795
|
+
},
|
|
4796
|
+
/**
|
|
4797
|
+
* Lookup489: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
4166
4798
|
**/
|
|
4167
4799
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
4168
|
-
requester: "AccountId32"
|
|
4800
|
+
requester: "AccountId32",
|
|
4801
|
+
newMspId: "H256",
|
|
4802
|
+
newValuePropId: "H256"
|
|
4803
|
+
},
|
|
4804
|
+
/**
|
|
4805
|
+
* Lookup490: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
4806
|
+
**/
|
|
4807
|
+
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
4808
|
+
owner: "AccountId32",
|
|
4809
|
+
bucketId: "H256",
|
|
4810
|
+
location: "Bytes",
|
|
4811
|
+
fileSize: "u64",
|
|
4812
|
+
fingerprint: "H256",
|
|
4813
|
+
pendingBspRemovals: "Vec<H256>",
|
|
4814
|
+
pendingBucketRemoval: "bool"
|
|
4169
4815
|
},
|
|
4170
4816
|
/**
|
|
4171
|
-
*
|
|
4817
|
+
* Lookup492: pallet_file_system::pallet::Error<T>
|
|
4172
4818
|
**/
|
|
4173
4819
|
PalletFileSystemError: {
|
|
4174
4820
|
_enum: [
|
|
@@ -4177,7 +4823,8 @@ export default {
|
|
|
4177
4823
|
"StorageRequestNotRevoked",
|
|
4178
4824
|
"StorageRequestExists",
|
|
4179
4825
|
"ReplicationTargetCannotBeZero",
|
|
4180
|
-
"
|
|
4826
|
+
"ReplicationTargetExceedsMaximum",
|
|
4827
|
+
"MaxReplicationTargetSmallerThanDefault",
|
|
4181
4828
|
"NotABsp",
|
|
4182
4829
|
"NotAMsp",
|
|
4183
4830
|
"NotASp",
|
|
@@ -4188,9 +4835,10 @@ export default {
|
|
|
4188
4835
|
"BspAlreadyVolunteered",
|
|
4189
4836
|
"InsufficientAvailableCapacity",
|
|
4190
4837
|
"UnexpectedNumberOfRemovedVolunteeredBsps",
|
|
4838
|
+
"BspNotEligibleToVolunteer",
|
|
4191
4839
|
"StorageRequestExpiredNoSlotAvailable",
|
|
4192
4840
|
"StorageRequestNotAuthorized",
|
|
4193
|
-
"
|
|
4841
|
+
"MaxTickNumberReached",
|
|
4194
4842
|
"FailedToEncodeBsp",
|
|
4195
4843
|
"FailedToEncodeFingerprint",
|
|
4196
4844
|
"FailedToDecodeThreshold",
|
|
@@ -4201,7 +4849,10 @@ export default {
|
|
|
4201
4849
|
"ImpossibleFailedToGetValue",
|
|
4202
4850
|
"BucketIsNotPrivate",
|
|
4203
4851
|
"BucketNotFound",
|
|
4852
|
+
"BucketNotEmpty",
|
|
4204
4853
|
"NotBucketOwner",
|
|
4854
|
+
"ValuePropositionNotAvailable",
|
|
4855
|
+
"CollectionNotFound",
|
|
4205
4856
|
"ProviderRootNotFound",
|
|
4206
4857
|
"ExpectedNonInclusionProof",
|
|
4207
4858
|
"ExpectedInclusionProof",
|
|
@@ -4214,11 +4865,13 @@ export default {
|
|
|
4214
4865
|
"FileKeyNotPendingDeletion",
|
|
4215
4866
|
"FileSizeCannotBeZero",
|
|
4216
4867
|
"NoGlobalReputationWeightSet",
|
|
4868
|
+
"NoBspReputationWeightSet",
|
|
4217
4869
|
"MaximumThresholdCannotBeZero",
|
|
4218
4870
|
"TickRangeToMaximumThresholdCannotBeZero",
|
|
4219
4871
|
"PendingStopStoringRequestNotFound",
|
|
4220
4872
|
"MinWaitForStopStoringNotReached",
|
|
4221
4873
|
"PendingStopStoringRequestAlreadyExists",
|
|
4874
|
+
"OperationNotAllowedWithInsolventUser",
|
|
4222
4875
|
"UserNotInsolvent",
|
|
4223
4876
|
"NotSelectedMsp",
|
|
4224
4877
|
"MspAlreadyConfirmed",
|
|
@@ -4232,11 +4885,38 @@ export default {
|
|
|
4232
4885
|
"TooManyBatchResponses",
|
|
4233
4886
|
"TooManyStorageRequestResponses",
|
|
4234
4887
|
"InvalidBucketIdFileKeyPair",
|
|
4235
|
-
"InconsistentStateKeyAlreadyExists"
|
|
4888
|
+
"InconsistentStateKeyAlreadyExists",
|
|
4889
|
+
"FixedRatePaymentStreamNotFound",
|
|
4890
|
+
"DynamicRatePaymentStreamNotFound",
|
|
4891
|
+
"CannotHoldDeposit",
|
|
4892
|
+
"FailedToQueryEarliestFileVolunteerTick",
|
|
4893
|
+
"FailedToGetOwnerAccount",
|
|
4894
|
+
"FailedToGetPaymentAccount",
|
|
4895
|
+
"NoFileKeysToConfirm",
|
|
4896
|
+
"RootNotUpdated",
|
|
4897
|
+
"NoPrivacyChange",
|
|
4898
|
+
"OperationNotAllowedForInsolventProvider",
|
|
4899
|
+
"OperationNotAllowedWhileBucketIsNotStoredByMsp",
|
|
4900
|
+
"FailedToComputeFileKey",
|
|
4901
|
+
"FailedToCreateFileMetadata",
|
|
4902
|
+
"InvalidSignature",
|
|
4903
|
+
"ForestProofVerificationFailed",
|
|
4904
|
+
"ProviderNotStoringFile",
|
|
4905
|
+
"InvalidProviderID",
|
|
4906
|
+
"InvalidSignedOperation",
|
|
4907
|
+
"FileKeyMismatch",
|
|
4908
|
+
"IncompleteStorageRequestNotFound"
|
|
4236
4909
|
]
|
|
4237
4910
|
},
|
|
4238
4911
|
/**
|
|
4239
|
-
*
|
|
4912
|
+
* Lookup494: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
4913
|
+
**/
|
|
4914
|
+
PalletProofsDealerProofSubmissionRecord: {
|
|
4915
|
+
lastTickProven: "u32",
|
|
4916
|
+
nextTickToSubmitProofFor: "u32"
|
|
4917
|
+
},
|
|
4918
|
+
/**
|
|
4919
|
+
* Lookup501: pallet_proofs_dealer::pallet::Error<T>
|
|
4240
4920
|
**/
|
|
4241
4921
|
PalletProofsDealerError: {
|
|
4242
4922
|
_enum: [
|
|
@@ -4257,15 +4937,17 @@ export default {
|
|
|
4257
4937
|
"SeedNotFound",
|
|
4258
4938
|
"CheckpointChallengesNotFound",
|
|
4259
4939
|
"ForestProofVerificationFailed",
|
|
4940
|
+
"IncorrectNumberOfKeyProofs",
|
|
4260
4941
|
"KeyProofNotFound",
|
|
4261
4942
|
"KeyProofVerificationFailed",
|
|
4262
4943
|
"FailedToApplyDelta",
|
|
4944
|
+
"UnexpectedNumberOfRemoveMutations",
|
|
4263
4945
|
"FailedToUpdateProviderAfterKeyRemoval",
|
|
4264
4946
|
"TooManyValidProofSubmitters"
|
|
4265
4947
|
]
|
|
4266
4948
|
},
|
|
4267
4949
|
/**
|
|
4268
|
-
*
|
|
4950
|
+
* Lookup504: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
4269
4951
|
**/
|
|
4270
4952
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
4271
4953
|
rate: "u128",
|
|
@@ -4274,7 +4956,7 @@ export default {
|
|
|
4274
4956
|
outOfFundsTick: "Option<u32>"
|
|
4275
4957
|
},
|
|
4276
4958
|
/**
|
|
4277
|
-
*
|
|
4959
|
+
* Lookup505: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
4278
4960
|
**/
|
|
4279
4961
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
4280
4962
|
amountProvided: "u64",
|
|
@@ -4283,14 +4965,14 @@ export default {
|
|
|
4283
4965
|
outOfFundsTick: "Option<u32>"
|
|
4284
4966
|
},
|
|
4285
4967
|
/**
|
|
4286
|
-
*
|
|
4968
|
+
* Lookup506: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
4287
4969
|
**/
|
|
4288
4970
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
4289
4971
|
lastChargeableTick: "u32",
|
|
4290
4972
|
priceIndex: "u128"
|
|
4291
4973
|
},
|
|
4292
4974
|
/**
|
|
4293
|
-
*
|
|
4975
|
+
* Lookup507: pallet_payment_streams::pallet::Error<T>
|
|
4294
4976
|
**/
|
|
4295
4977
|
PalletPaymentStreamsError: {
|
|
4296
4978
|
_enum: [
|
|
@@ -4309,11 +4991,13 @@ export default {
|
|
|
4309
4991
|
"ChargeOverflow",
|
|
4310
4992
|
"UserWithoutFunds",
|
|
4311
4993
|
"UserNotFlaggedAsWithoutFunds",
|
|
4312
|
-
"CooldownPeriodNotPassed"
|
|
4994
|
+
"CooldownPeriodNotPassed",
|
|
4995
|
+
"UserHasRemainingDebt",
|
|
4996
|
+
"ProviderInsolvent"
|
|
4313
4997
|
]
|
|
4314
4998
|
},
|
|
4315
4999
|
/**
|
|
4316
|
-
*
|
|
5000
|
+
* Lookup508: pallet_bucket_nfts::pallet::Error<T>
|
|
4317
5001
|
**/
|
|
4318
5002
|
PalletBucketNftsError: {
|
|
4319
5003
|
_enum: [
|
|
@@ -4324,7 +5008,7 @@ export default {
|
|
|
4324
5008
|
]
|
|
4325
5009
|
},
|
|
4326
5010
|
/**
|
|
4327
|
-
*
|
|
5011
|
+
* Lookup509: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
|
|
4328
5012
|
**/
|
|
4329
5013
|
PalletNftsCollectionDetails: {
|
|
4330
5014
|
owner: "AccountId32",
|
|
@@ -4335,13 +5019,13 @@ export default {
|
|
|
4335
5019
|
attributes: "u32"
|
|
4336
5020
|
},
|
|
4337
5021
|
/**
|
|
4338
|
-
*
|
|
5022
|
+
* Lookup514: pallet_nfts::types::CollectionRole
|
|
4339
5023
|
**/
|
|
4340
5024
|
PalletNftsCollectionRole: {
|
|
4341
5025
|
_enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
|
|
4342
5026
|
},
|
|
4343
5027
|
/**
|
|
4344
|
-
*
|
|
5028
|
+
* Lookup515: 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>>
|
|
4345
5029
|
**/
|
|
4346
5030
|
PalletNftsItemDetails: {
|
|
4347
5031
|
owner: "AccountId32",
|
|
@@ -4349,42 +5033,42 @@ export default {
|
|
|
4349
5033
|
deposit: "PalletNftsItemDeposit"
|
|
4350
5034
|
},
|
|
4351
5035
|
/**
|
|
4352
|
-
*
|
|
5036
|
+
* Lookup516: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4353
5037
|
**/
|
|
4354
5038
|
PalletNftsItemDeposit: {
|
|
4355
5039
|
account: "AccountId32",
|
|
4356
5040
|
amount: "u128"
|
|
4357
5041
|
},
|
|
4358
5042
|
/**
|
|
4359
|
-
*
|
|
5043
|
+
* Lookup521: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
4360
5044
|
**/
|
|
4361
5045
|
PalletNftsCollectionMetadata: {
|
|
4362
5046
|
deposit: "u128",
|
|
4363
5047
|
data: "Bytes"
|
|
4364
5048
|
},
|
|
4365
5049
|
/**
|
|
4366
|
-
*
|
|
5050
|
+
* Lookup522: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
|
|
4367
5051
|
**/
|
|
4368
5052
|
PalletNftsItemMetadata: {
|
|
4369
5053
|
deposit: "PalletNftsItemMetadataDeposit",
|
|
4370
5054
|
data: "Bytes"
|
|
4371
5055
|
},
|
|
4372
5056
|
/**
|
|
4373
|
-
*
|
|
5057
|
+
* Lookup523: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4374
5058
|
**/
|
|
4375
5059
|
PalletNftsItemMetadataDeposit: {
|
|
4376
5060
|
account: "Option<AccountId32>",
|
|
4377
5061
|
amount: "u128"
|
|
4378
5062
|
},
|
|
4379
5063
|
/**
|
|
4380
|
-
*
|
|
5064
|
+
* Lookup526: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4381
5065
|
**/
|
|
4382
5066
|
PalletNftsAttributeDeposit: {
|
|
4383
5067
|
account: "Option<AccountId32>",
|
|
4384
5068
|
amount: "u128"
|
|
4385
5069
|
},
|
|
4386
5070
|
/**
|
|
4387
|
-
*
|
|
5071
|
+
* Lookup530: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
4388
5072
|
**/
|
|
4389
5073
|
PalletNftsPendingSwap: {
|
|
4390
5074
|
desiredCollection: "u32",
|
|
@@ -4393,7 +5077,7 @@ export default {
|
|
|
4393
5077
|
deadline: "u32"
|
|
4394
5078
|
},
|
|
4395
5079
|
/**
|
|
4396
|
-
*
|
|
5080
|
+
* Lookup532: pallet_nfts::types::PalletFeature
|
|
4397
5081
|
**/
|
|
4398
5082
|
PalletNftsPalletFeature: {
|
|
4399
5083
|
_enum: [
|
|
@@ -4409,7 +5093,7 @@ export default {
|
|
|
4409
5093
|
]
|
|
4410
5094
|
},
|
|
4411
5095
|
/**
|
|
4412
|
-
*
|
|
5096
|
+
* Lookup533: pallet_nfts::pallet::Error<T, I>
|
|
4413
5097
|
**/
|
|
4414
5098
|
PalletNftsError: {
|
|
4415
5099
|
_enum: [
|
|
@@ -4461,51 +5145,51 @@ export default {
|
|
|
4461
5145
|
]
|
|
4462
5146
|
},
|
|
4463
5147
|
/**
|
|
4464
|
-
*
|
|
5148
|
+
* Lookup536: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4465
5149
|
**/
|
|
4466
5150
|
FrameSystemExtensionsCheckNonZeroSender: "Null",
|
|
4467
5151
|
/**
|
|
4468
|
-
*
|
|
5152
|
+
* Lookup537: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4469
5153
|
**/
|
|
4470
5154
|
FrameSystemExtensionsCheckSpecVersion: "Null",
|
|
4471
5155
|
/**
|
|
4472
|
-
*
|
|
5156
|
+
* Lookup538: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4473
5157
|
**/
|
|
4474
5158
|
FrameSystemExtensionsCheckTxVersion: "Null",
|
|
4475
5159
|
/**
|
|
4476
|
-
*
|
|
5160
|
+
* Lookup539: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4477
5161
|
**/
|
|
4478
5162
|
FrameSystemExtensionsCheckGenesis: "Null",
|
|
4479
5163
|
/**
|
|
4480
|
-
*
|
|
5164
|
+
* Lookup542: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4481
5165
|
**/
|
|
4482
5166
|
FrameSystemExtensionsCheckNonce: "Compact<u32>",
|
|
4483
5167
|
/**
|
|
4484
|
-
*
|
|
5168
|
+
* Lookup543: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4485
5169
|
**/
|
|
4486
5170
|
FrameSystemExtensionsCheckWeight: "Null",
|
|
4487
5171
|
/**
|
|
4488
|
-
*
|
|
5172
|
+
* Lookup544: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4489
5173
|
**/
|
|
4490
5174
|
PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
|
|
4491
5175
|
/**
|
|
4492
|
-
*
|
|
5176
|
+
* Lookup545: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
|
|
4493
5177
|
**/
|
|
4494
5178
|
CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: "Null",
|
|
4495
5179
|
/**
|
|
4496
|
-
*
|
|
5180
|
+
* Lookup546: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4497
5181
|
**/
|
|
4498
5182
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4499
5183
|
mode: "FrameMetadataHashExtensionMode"
|
|
4500
5184
|
},
|
|
4501
5185
|
/**
|
|
4502
|
-
*
|
|
5186
|
+
* Lookup547: frame_metadata_hash_extension::Mode
|
|
4503
5187
|
**/
|
|
4504
5188
|
FrameMetadataHashExtensionMode: {
|
|
4505
5189
|
_enum: ["Disabled", "Enabled"]
|
|
4506
5190
|
},
|
|
4507
5191
|
/**
|
|
4508
|
-
*
|
|
5192
|
+
* Lookup548: sh_parachain_runtime::Runtime
|
|
4509
5193
|
**/
|
|
4510
|
-
|
|
5194
|
+
ShParachainRuntimeRuntime: "Null"
|
|
4511
5195
|
};
|