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