@functionland/react-native-fula 1.55.15 → 1.55.17
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 +20 -20
- package/android/build.gradle +114 -114
- package/android/gradle.properties +8 -8
- package/android/src/main/AndroidManifest.xml +3 -3
- package/android/src/main/AndroidManifestNew.xml +2 -2
- package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
- package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
- package/android/src/main/java/land/fx/fula/FulaModule.java +0 -0
- package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
- package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
- package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
- package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
- package/ios/Cryptography.swift +59 -59
- package/ios/Fula-Bridging-Header.h +3 -3
- package/ios/Fula.mm +272 -272
- package/ios/Fula.swift +32 -21
- package/ios/UserDataHelper.swift +143 -143
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-consts.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-events.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-query.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-tx.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api.js.map +1 -1
- package/lib/commonjs/interfaces/augment-types.js.map +1 -1
- package/lib/commonjs/interfaces/definitions.js.map +1 -1
- package/lib/commonjs/interfaces/defintions.js.map +1 -1
- package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/commonjs/interfaces/index.js.map +1 -1
- package/lib/commonjs/interfaces/lookup.js +300 -300
- package/lib/commonjs/interfaces/lookup.js.map +1 -1
- package/lib/commonjs/interfaces/registry.js.map +1 -1
- package/lib/commonjs/interfaces/types-lookup.js.map +1 -1
- package/lib/commonjs/interfaces/types.js.map +1 -1
- package/lib/commonjs/protocols/blockchain.js +70 -70
- package/lib/commonjs/protocols/blockchain.js.map +1 -1
- package/lib/commonjs/protocols/chain-api.js.map +1 -1
- package/lib/commonjs/protocols/fula.js.map +1 -1
- package/lib/commonjs/protocols/fx-ai.js.map +1 -1
- package/lib/commonjs/protocols/fxblox.js +3 -3
- package/lib/commonjs/protocols/fxblox.js.map +1 -1
- package/lib/commonjs/types/blockchain.js.map +1 -1
- package/lib/commonjs/types/fxblox.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/interfaces/augment-api-consts.js.map +1 -1
- package/lib/module/interfaces/augment-api-errors.js.map +1 -1
- package/lib/module/interfaces/augment-api-events.js.map +1 -1
- package/lib/module/interfaces/augment-api-query.js.map +1 -1
- package/lib/module/interfaces/augment-api-rpc.js.map +1 -1
- package/lib/module/interfaces/augment-api-runtime.js.map +1 -1
- package/lib/module/interfaces/augment-api-tx.js.map +1 -1
- package/lib/module/interfaces/augment-api.js.map +1 -1
- package/lib/module/interfaces/augment-types.js.map +1 -1
- package/lib/module/interfaces/definitions.js.map +1 -1
- package/lib/module/interfaces/defintions.js.map +1 -1
- package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/module/interfaces/index.js.map +1 -1
- package/lib/module/interfaces/lookup.js +300 -300
- package/lib/module/interfaces/lookup.js.map +1 -1
- package/lib/module/interfaces/registry.js.map +1 -1
- package/lib/module/interfaces/types-lookup.js.map +1 -1
- package/lib/module/interfaces/types.js.map +1 -1
- package/lib/module/protocols/blockchain.js +70 -70
- package/lib/module/protocols/blockchain.js.map +1 -1
- package/lib/module/protocols/chain-api.js.map +1 -1
- package/lib/module/protocols/fula.js.map +1 -1
- package/lib/module/protocols/fx-ai.js.map +1 -1
- package/lib/module/protocols/fxblox.js +3 -3
- package/lib/module/protocols/fxblox.js.map +1 -1
- package/lib/module/types/blockchain.js.map +1 -1
- package/lib/module/types/fxblox.js.map +1 -1
- package/package.json +177 -176
- package/src/index.tsx +4 -4
- package/src/interfaces/augment-api-consts.ts +273 -273
- package/src/interfaces/augment-api-errors.ts +474 -474
- package/src/interfaces/augment-api-events.ts +448 -448
- package/src/interfaces/augment-api-query.ts +466 -466
- package/src/interfaces/augment-api-rpc.ts +617 -617
- package/src/interfaces/augment-api-runtime.ts +223 -223
- package/src/interfaces/augment-api-tx.ts +709 -709
- package/src/interfaces/augment-api.ts +9 -9
- package/src/interfaces/augment-types.ts +1322 -1322
- package/src/interfaces/definitions.ts +1 -1
- package/src/interfaces/defintions.ts +1 -1
- package/src/interfaces/index.ts +3 -3
- package/src/interfaces/lookup.ts +2011 -2011
- package/src/interfaces/registry.ts +163 -163
- package/src/interfaces/types-lookup.ts +2165 -2165
- package/src/interfaces/types.ts +2 -2
- package/src/protocols/blockchain.ts +716 -716
- package/src/protocols/fxblox.ts +442 -442
|
@@ -8,8 +8,8 @@ exports.default = void 0;
|
|
|
8
8
|
/* eslint-disable */
|
|
9
9
|
/* eslint-disable sort-keys */
|
|
10
10
|
var _default = exports.default = {
|
|
11
|
-
/**
|
|
12
|
-
* Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
|
|
11
|
+
/**
|
|
12
|
+
* Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
|
|
13
13
|
**/
|
|
14
14
|
FrameSystemAccountInfo: {
|
|
15
15
|
nonce: 'u32',
|
|
@@ -18,8 +18,8 @@ var _default = exports.default = {
|
|
|
18
18
|
sufficients: 'u32',
|
|
19
19
|
data: 'PalletBalancesAccountData'
|
|
20
20
|
},
|
|
21
|
-
/**
|
|
22
|
-
* Lookup5: pallet_balances::types::AccountData<Balance>
|
|
21
|
+
/**
|
|
22
|
+
* Lookup5: pallet_balances::types::AccountData<Balance>
|
|
23
23
|
**/
|
|
24
24
|
PalletBalancesAccountData: {
|
|
25
25
|
free: 'u128',
|
|
@@ -27,29 +27,29 @@ var _default = exports.default = {
|
|
|
27
27
|
frozen: 'u128',
|
|
28
28
|
flags: 'u128'
|
|
29
29
|
},
|
|
30
|
-
/**
|
|
31
|
-
* Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
|
|
30
|
+
/**
|
|
31
|
+
* Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
|
|
32
32
|
**/
|
|
33
33
|
FrameSupportDispatchPerDispatchClassWeight: {
|
|
34
34
|
normal: 'SpWeightsWeightV2Weight',
|
|
35
35
|
operational: 'SpWeightsWeightV2Weight',
|
|
36
36
|
mandatory: 'SpWeightsWeightV2Weight'
|
|
37
37
|
},
|
|
38
|
-
/**
|
|
39
|
-
* Lookup9: sp_weights::weight_v2::Weight
|
|
38
|
+
/**
|
|
39
|
+
* Lookup9: sp_weights::weight_v2::Weight
|
|
40
40
|
**/
|
|
41
41
|
SpWeightsWeightV2Weight: {
|
|
42
42
|
refTime: 'Compact<u64>',
|
|
43
43
|
proofSize: 'Compact<u64>'
|
|
44
44
|
},
|
|
45
|
-
/**
|
|
46
|
-
* Lookup14: sp_runtime::generic::digest::Digest
|
|
45
|
+
/**
|
|
46
|
+
* Lookup14: sp_runtime::generic::digest::Digest
|
|
47
47
|
**/
|
|
48
48
|
SpRuntimeDigest: {
|
|
49
49
|
logs: 'Vec<SpRuntimeDigestDigestItem>'
|
|
50
50
|
},
|
|
51
|
-
/**
|
|
52
|
-
* Lookup16: sp_runtime::generic::digest::DigestItem
|
|
51
|
+
/**
|
|
52
|
+
* Lookup16: sp_runtime::generic::digest::DigestItem
|
|
53
53
|
**/
|
|
54
54
|
SpRuntimeDigestDigestItem: {
|
|
55
55
|
_enum: {
|
|
@@ -64,16 +64,16 @@ var _default = exports.default = {
|
|
|
64
64
|
RuntimeEnvironmentUpdated: 'Null'
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
/**
|
|
68
|
-
* Lookup19: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
|
|
67
|
+
/**
|
|
68
|
+
* Lookup19: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
|
|
69
69
|
**/
|
|
70
70
|
FrameSystemEventRecord: {
|
|
71
71
|
phase: 'FrameSystemPhase',
|
|
72
72
|
event: 'Event',
|
|
73
73
|
topics: 'Vec<H256>'
|
|
74
74
|
},
|
|
75
|
-
/**
|
|
76
|
-
* Lookup21: frame_system::pallet::Event<T>
|
|
75
|
+
/**
|
|
76
|
+
* Lookup21: frame_system::pallet::Event<T>
|
|
77
77
|
**/
|
|
78
78
|
FrameSystemEvent: {
|
|
79
79
|
_enum: {
|
|
@@ -100,28 +100,28 @@ var _default = exports.default = {
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
|
-
/**
|
|
104
|
-
* Lookup22: frame_support::dispatch::DispatchInfo
|
|
103
|
+
/**
|
|
104
|
+
* Lookup22: frame_support::dispatch::DispatchInfo
|
|
105
105
|
**/
|
|
106
106
|
FrameSupportDispatchDispatchInfo: {
|
|
107
107
|
weight: 'SpWeightsWeightV2Weight',
|
|
108
108
|
class: 'FrameSupportDispatchDispatchClass',
|
|
109
109
|
paysFee: 'FrameSupportDispatchPays'
|
|
110
110
|
},
|
|
111
|
-
/**
|
|
112
|
-
* Lookup23: frame_support::dispatch::DispatchClass
|
|
111
|
+
/**
|
|
112
|
+
* Lookup23: frame_support::dispatch::DispatchClass
|
|
113
113
|
**/
|
|
114
114
|
FrameSupportDispatchDispatchClass: {
|
|
115
115
|
_enum: ['Normal', 'Operational', 'Mandatory']
|
|
116
116
|
},
|
|
117
|
-
/**
|
|
118
|
-
* Lookup24: frame_support::dispatch::Pays
|
|
117
|
+
/**
|
|
118
|
+
* Lookup24: frame_support::dispatch::Pays
|
|
119
119
|
**/
|
|
120
120
|
FrameSupportDispatchPays: {
|
|
121
121
|
_enum: ['Yes', 'No']
|
|
122
122
|
},
|
|
123
|
-
/**
|
|
124
|
-
* Lookup25: sp_runtime::DispatchError
|
|
123
|
+
/**
|
|
124
|
+
* Lookup25: sp_runtime::DispatchError
|
|
125
125
|
**/
|
|
126
126
|
SpRuntimeDispatchError: {
|
|
127
127
|
_enum: {
|
|
@@ -141,33 +141,33 @@ var _default = exports.default = {
|
|
|
141
141
|
RootNotAllowed: 'Null'
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
|
-
/**
|
|
145
|
-
* Lookup26: sp_runtime::ModuleError
|
|
144
|
+
/**
|
|
145
|
+
* Lookup26: sp_runtime::ModuleError
|
|
146
146
|
**/
|
|
147
147
|
SpRuntimeModuleError: {
|
|
148
148
|
index: 'u8',
|
|
149
149
|
error: '[u8;4]'
|
|
150
150
|
},
|
|
151
|
-
/**
|
|
152
|
-
* Lookup27: sp_runtime::TokenError
|
|
151
|
+
/**
|
|
152
|
+
* Lookup27: sp_runtime::TokenError
|
|
153
153
|
**/
|
|
154
154
|
SpRuntimeTokenError: {
|
|
155
155
|
_enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked']
|
|
156
156
|
},
|
|
157
|
-
/**
|
|
158
|
-
* Lookup28: sp_arithmetic::ArithmeticError
|
|
157
|
+
/**
|
|
158
|
+
* Lookup28: sp_arithmetic::ArithmeticError
|
|
159
159
|
**/
|
|
160
160
|
SpArithmeticArithmeticError: {
|
|
161
161
|
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
|
|
162
162
|
},
|
|
163
|
-
/**
|
|
164
|
-
* Lookup29: sp_runtime::TransactionalError
|
|
163
|
+
/**
|
|
164
|
+
* Lookup29: sp_runtime::TransactionalError
|
|
165
165
|
**/
|
|
166
166
|
SpRuntimeTransactionalError: {
|
|
167
167
|
_enum: ['LimitReached', 'NoLayer']
|
|
168
168
|
},
|
|
169
|
-
/**
|
|
170
|
-
* Lookup30: pallet_balances::pallet::Event<T, I>
|
|
169
|
+
/**
|
|
170
|
+
* Lookup30: pallet_balances::pallet::Event<T, I>
|
|
171
171
|
**/
|
|
172
172
|
PalletBalancesEvent: {
|
|
173
173
|
_enum: {
|
|
@@ -257,14 +257,14 @@ var _default = exports.default = {
|
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
|
-
/**
|
|
261
|
-
* Lookup31: frame_support::traits::tokens::misc::BalanceStatus
|
|
260
|
+
/**
|
|
261
|
+
* Lookup31: frame_support::traits::tokens::misc::BalanceStatus
|
|
262
262
|
**/
|
|
263
263
|
FrameSupportTokensMiscBalanceStatus: {
|
|
264
264
|
_enum: ['Free', 'Reserved']
|
|
265
265
|
},
|
|
266
|
-
/**
|
|
267
|
-
* Lookup32: sugarfunge_validator_set::pallet::Event<T>
|
|
266
|
+
/**
|
|
267
|
+
* Lookup32: sugarfunge_validator_set::pallet::Event<T>
|
|
268
268
|
**/
|
|
269
269
|
SugarfungeValidatorSetEvent: {
|
|
270
270
|
_enum: {
|
|
@@ -272,8 +272,8 @@ var _default = exports.default = {
|
|
|
272
272
|
ValidatorRemovalInitiated: 'AccountId32'
|
|
273
273
|
}
|
|
274
274
|
},
|
|
275
|
-
/**
|
|
276
|
-
* Lookup33: pallet_grandpa::pallet::Event
|
|
275
|
+
/**
|
|
276
|
+
* Lookup33: pallet_grandpa::pallet::Event
|
|
277
277
|
**/
|
|
278
278
|
PalletGrandpaEvent: {
|
|
279
279
|
_enum: {
|
|
@@ -284,16 +284,16 @@ var _default = exports.default = {
|
|
|
284
284
|
Resumed: 'Null'
|
|
285
285
|
}
|
|
286
286
|
},
|
|
287
|
-
/**
|
|
288
|
-
* Lookup36: sp_consensus_grandpa::app::Public
|
|
287
|
+
/**
|
|
288
|
+
* Lookup36: sp_consensus_grandpa::app::Public
|
|
289
289
|
**/
|
|
290
290
|
SpConsensusGrandpaAppPublic: 'SpCoreEd25519Public',
|
|
291
|
-
/**
|
|
292
|
-
* Lookup37: sp_core::ed25519::Public
|
|
291
|
+
/**
|
|
292
|
+
* Lookup37: sp_core::ed25519::Public
|
|
293
293
|
**/
|
|
294
294
|
SpCoreEd25519Public: '[u8;32]',
|
|
295
|
-
/**
|
|
296
|
-
* Lookup38: pallet_transaction_payment::pallet::Event<T>
|
|
295
|
+
/**
|
|
296
|
+
* Lookup38: pallet_transaction_payment::pallet::Event<T>
|
|
297
297
|
**/
|
|
298
298
|
PalletTransactionPaymentEvent: {
|
|
299
299
|
_enum: {
|
|
@@ -304,8 +304,8 @@ var _default = exports.default = {
|
|
|
304
304
|
}
|
|
305
305
|
}
|
|
306
306
|
},
|
|
307
|
-
/**
|
|
308
|
-
* Lookup39: pallet_sudo::pallet::Event<T>
|
|
307
|
+
/**
|
|
308
|
+
* Lookup39: pallet_sudo::pallet::Event<T>
|
|
309
309
|
**/
|
|
310
310
|
PalletSudoEvent: {
|
|
311
311
|
_enum: {
|
|
@@ -320,8 +320,8 @@ var _default = exports.default = {
|
|
|
320
320
|
}
|
|
321
321
|
}
|
|
322
322
|
},
|
|
323
|
-
/**
|
|
324
|
-
* Lookup43: pallet_scheduler::pallet::Event<T>
|
|
323
|
+
/**
|
|
324
|
+
* Lookup43: pallet_scheduler::pallet::Event<T>
|
|
325
325
|
**/
|
|
326
326
|
PalletSchedulerEvent: {
|
|
327
327
|
_enum: {
|
|
@@ -352,8 +352,8 @@ var _default = exports.default = {
|
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
|
-
/**
|
|
356
|
-
* Lookup46: pallet_collective::pallet::Event<T, I>
|
|
355
|
+
/**
|
|
356
|
+
* Lookup46: pallet_collective::pallet::Event<T, I>
|
|
357
357
|
**/
|
|
358
358
|
PalletCollectiveEvent: {
|
|
359
359
|
_enum: {
|
|
@@ -391,8 +391,8 @@ var _default = exports.default = {
|
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
|
-
/**
|
|
395
|
-
* Lookup48: pallet_session::pallet::Event
|
|
394
|
+
/**
|
|
395
|
+
* Lookup48: pallet_session::pallet::Event
|
|
396
396
|
**/
|
|
397
397
|
PalletSessionEvent: {
|
|
398
398
|
_enum: {
|
|
@@ -401,8 +401,8 @@ var _default = exports.default = {
|
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
},
|
|
404
|
-
/**
|
|
405
|
-
* Lookup49: pallet_im_online::pallet::Event<T>
|
|
404
|
+
/**
|
|
405
|
+
* Lookup49: pallet_im_online::pallet::Event<T>
|
|
406
406
|
**/
|
|
407
407
|
PalletImOnlineEvent: {
|
|
408
408
|
_enum: {
|
|
@@ -415,16 +415,16 @@ var _default = exports.default = {
|
|
|
415
415
|
}
|
|
416
416
|
}
|
|
417
417
|
},
|
|
418
|
-
/**
|
|
419
|
-
* Lookup50: pallet_im_online::sr25519::app_sr25519::Public
|
|
418
|
+
/**
|
|
419
|
+
* Lookup50: pallet_im_online::sr25519::app_sr25519::Public
|
|
420
420
|
**/
|
|
421
421
|
PalletImOnlineSr25519AppSr25519Public: 'SpCoreSr25519Public',
|
|
422
|
-
/**
|
|
423
|
-
* Lookup51: sp_core::sr25519::Public
|
|
422
|
+
/**
|
|
423
|
+
* Lookup51: sp_core::sr25519::Public
|
|
424
424
|
**/
|
|
425
425
|
SpCoreSr25519Public: '[u8;32]',
|
|
426
|
-
/**
|
|
427
|
-
* Lookup54: sugarfunge_asset::pallet::Event<T>
|
|
426
|
+
/**
|
|
427
|
+
* Lookup54: sugarfunge_asset::pallet::Event<T>
|
|
428
428
|
**/
|
|
429
429
|
SugarfungeAssetEvent: {
|
|
430
430
|
_enum: {
|
|
@@ -495,16 +495,16 @@ var _default = exports.default = {
|
|
|
495
495
|
}
|
|
496
496
|
}
|
|
497
497
|
},
|
|
498
|
-
/**
|
|
499
|
-
* Lookup57: sugarfunge_dao::pallet::Event<T>
|
|
498
|
+
/**
|
|
499
|
+
* Lookup57: sugarfunge_dao::pallet::Event<T>
|
|
500
500
|
**/
|
|
501
501
|
SugarfungeDaoEvent: {
|
|
502
502
|
_enum: {
|
|
503
503
|
SomethingStored: '(u32,AccountId32)'
|
|
504
504
|
}
|
|
505
505
|
},
|
|
506
|
-
/**
|
|
507
|
-
* Lookup58: sugarfunge_bundle::pallet::Event<T>
|
|
506
|
+
/**
|
|
507
|
+
* Lookup58: sugarfunge_bundle::pallet::Event<T>
|
|
508
508
|
**/
|
|
509
509
|
SugarfungeBundleEvent: {
|
|
510
510
|
_enum: {
|
|
@@ -530,8 +530,8 @@ var _default = exports.default = {
|
|
|
530
530
|
}
|
|
531
531
|
}
|
|
532
532
|
},
|
|
533
|
-
/**
|
|
534
|
-
* Lookup59: sugarfunge_bag::pallet::Event<T>
|
|
533
|
+
/**
|
|
534
|
+
* Lookup59: sugarfunge_bag::pallet::Event<T>
|
|
535
535
|
**/
|
|
536
536
|
SugarfungeBagEvent: {
|
|
537
537
|
_enum: {
|
|
@@ -557,16 +557,16 @@ var _default = exports.default = {
|
|
|
557
557
|
}
|
|
558
558
|
}
|
|
559
559
|
},
|
|
560
|
-
/**
|
|
561
|
-
* Lookup61: sugarfunge_exgine::pallet::Event<T>
|
|
560
|
+
/**
|
|
561
|
+
* Lookup61: sugarfunge_exgine::pallet::Event<T>
|
|
562
562
|
**/
|
|
563
563
|
SugarfungeExgineEvent: {
|
|
564
564
|
_enum: {
|
|
565
565
|
SomethingStored: '(u32,AccountId32)'
|
|
566
566
|
}
|
|
567
567
|
},
|
|
568
|
-
/**
|
|
569
|
-
* Lookup62: sugarfunge_market::pallet::Event<T>
|
|
568
|
+
/**
|
|
569
|
+
* Lookup62: sugarfunge_market::pallet::Event<T>
|
|
570
570
|
**/
|
|
571
571
|
SugarfungeMarketEvent: {
|
|
572
572
|
_enum: {
|
|
@@ -613,15 +613,15 @@ var _default = exports.default = {
|
|
|
613
613
|
}
|
|
614
614
|
}
|
|
615
615
|
},
|
|
616
|
-
/**
|
|
617
|
-
* Lookup66: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
616
|
+
/**
|
|
617
|
+
* Lookup66: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
618
618
|
**/
|
|
619
619
|
SugarfungeMarketRateBalance: {
|
|
620
620
|
rate: 'SugarfungeMarketAssetRate',
|
|
621
621
|
balance: 'i128'
|
|
622
622
|
},
|
|
623
|
-
/**
|
|
624
|
-
* Lookup67: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
623
|
+
/**
|
|
624
|
+
* Lookup67: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
625
625
|
**/
|
|
626
626
|
SugarfungeMarketAssetRate: {
|
|
627
627
|
classId: 'u64',
|
|
@@ -630,8 +630,8 @@ var _default = exports.default = {
|
|
|
630
630
|
from: 'SugarfungeMarketRateAccount',
|
|
631
631
|
to: 'SugarfungeMarketRateAccount'
|
|
632
632
|
},
|
|
633
|
-
/**
|
|
634
|
-
* Lookup68: sugarfunge_market::RateAction<ClassId, AssetId>
|
|
633
|
+
/**
|
|
634
|
+
* Lookup68: sugarfunge_market::RateAction<ClassId, AssetId>
|
|
635
635
|
**/
|
|
636
636
|
SugarfungeMarketRateAction: {
|
|
637
637
|
_enum: {
|
|
@@ -642,20 +642,20 @@ var _default = exports.default = {
|
|
|
642
642
|
Has: '(SugarfungeMarketAmountOp,i128)'
|
|
643
643
|
}
|
|
644
644
|
},
|
|
645
|
-
/**
|
|
646
|
-
* Lookup70: sugarfunge_market::AMM
|
|
645
|
+
/**
|
|
646
|
+
* Lookup70: sugarfunge_market::AMM
|
|
647
647
|
**/
|
|
648
648
|
SugarfungeMarketAmm: {
|
|
649
649
|
_enum: ['Constant']
|
|
650
650
|
},
|
|
651
|
-
/**
|
|
652
|
-
* Lookup71: sugarfunge_market::AmountOp
|
|
651
|
+
/**
|
|
652
|
+
* Lookup71: sugarfunge_market::AmountOp
|
|
653
653
|
**/
|
|
654
654
|
SugarfungeMarketAmountOp: {
|
|
655
655
|
_enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
|
|
656
656
|
},
|
|
657
|
-
/**
|
|
658
|
-
* Lookup72: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
|
|
657
|
+
/**
|
|
658
|
+
* Lookup72: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
|
|
659
659
|
**/
|
|
660
660
|
SugarfungeMarketRateAccount: {
|
|
661
661
|
_enum: {
|
|
@@ -664,8 +664,8 @@ var _default = exports.default = {
|
|
|
664
664
|
Buyer: 'Null'
|
|
665
665
|
}
|
|
666
666
|
},
|
|
667
|
-
/**
|
|
668
|
-
* Lookup73: functionland_fula::pallet::Event<T>
|
|
667
|
+
/**
|
|
668
|
+
* Lookup73: functionland_fula::pallet::Event<T>
|
|
669
669
|
**/
|
|
670
670
|
FunctionlandFulaEvent: {
|
|
671
671
|
_enum: {
|
|
@@ -767,8 +767,8 @@ var _default = exports.default = {
|
|
|
767
767
|
}
|
|
768
768
|
}
|
|
769
769
|
},
|
|
770
|
-
/**
|
|
771
|
-
* Lookup79: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
770
|
+
/**
|
|
771
|
+
* Lookup79: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
772
772
|
**/
|
|
773
773
|
FunctionlandFulaManifestWithPoolId: {
|
|
774
774
|
_alias: {
|
|
@@ -779,24 +779,24 @@ var _default = exports.default = {
|
|
|
779
779
|
manifestMetadata: 'Bytes',
|
|
780
780
|
size_: 'Option<u64>'
|
|
781
781
|
},
|
|
782
|
-
/**
|
|
783
|
-
* Lookup82: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
|
|
782
|
+
/**
|
|
783
|
+
* Lookup82: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
|
|
784
784
|
**/
|
|
785
785
|
FunctionlandFulaUploaderData: {
|
|
786
786
|
uploader: 'AccountId32',
|
|
787
787
|
storers: 'Vec<AccountId32>',
|
|
788
788
|
replicationFactor: 'u16'
|
|
789
789
|
},
|
|
790
|
-
/**
|
|
791
|
-
* Lookup85: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
790
|
+
/**
|
|
791
|
+
* Lookup85: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
792
792
|
**/
|
|
793
793
|
FunctionlandFulaManifestAvailable: {
|
|
794
794
|
poolId: 'u32',
|
|
795
795
|
replicationFactor: 'u16',
|
|
796
796
|
manifestMetadata: 'Bytes'
|
|
797
797
|
},
|
|
798
|
-
/**
|
|
799
|
-
* Lookup87: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
|
|
798
|
+
/**
|
|
799
|
+
* Lookup87: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
|
|
800
800
|
**/
|
|
801
801
|
FunctionlandFulaStorerData: {
|
|
802
802
|
poolId: 'u32',
|
|
@@ -804,8 +804,8 @@ var _default = exports.default = {
|
|
|
804
804
|
account: 'AccountId32',
|
|
805
805
|
manifestData: 'FunctionlandFulaManifestStorageData'
|
|
806
806
|
},
|
|
807
|
-
/**
|
|
808
|
-
* Lookup89: functionland_fula::ManifestStorageData
|
|
807
|
+
/**
|
|
808
|
+
* Lookup89: functionland_fula::ManifestStorageData
|
|
809
809
|
**/
|
|
810
810
|
FunctionlandFulaManifestStorageData: {
|
|
811
811
|
activeCycles: 'u16',
|
|
@@ -813,14 +813,14 @@ var _default = exports.default = {
|
|
|
813
813
|
activeDays: 'i32',
|
|
814
814
|
challengeState: 'FunctionlandFulaChallengeState'
|
|
815
815
|
},
|
|
816
|
-
/**
|
|
817
|
-
* Lookup90: functionland_fula::ChallengeState
|
|
816
|
+
/**
|
|
817
|
+
* Lookup90: functionland_fula::ChallengeState
|
|
818
818
|
**/
|
|
819
819
|
FunctionlandFulaChallengeState: {
|
|
820
820
|
_enum: ['Open', 'Successful', 'Failed']
|
|
821
821
|
},
|
|
822
|
-
/**
|
|
823
|
-
* Lookup91: fula_pool::pallet::Event<T>
|
|
822
|
+
/**
|
|
823
|
+
* Lookup91: fula_pool::pallet::Event<T>
|
|
824
824
|
**/
|
|
825
825
|
FulaPoolEvent: {
|
|
826
826
|
_enum: {
|
|
@@ -850,8 +850,8 @@ var _default = exports.default = {
|
|
|
850
850
|
}
|
|
851
851
|
}
|
|
852
852
|
},
|
|
853
|
-
/**
|
|
854
|
-
* Lookup92: pallet_utility::pallet::Event
|
|
853
|
+
/**
|
|
854
|
+
* Lookup92: pallet_utility::pallet::Event
|
|
855
855
|
**/
|
|
856
856
|
PalletUtilityEvent: {
|
|
857
857
|
_enum: {
|
|
@@ -870,8 +870,8 @@ var _default = exports.default = {
|
|
|
870
870
|
}
|
|
871
871
|
}
|
|
872
872
|
},
|
|
873
|
-
/**
|
|
874
|
-
* Lookup93: frame_system::Phase
|
|
873
|
+
/**
|
|
874
|
+
* Lookup93: frame_system::Phase
|
|
875
875
|
**/
|
|
876
876
|
FrameSystemPhase: {
|
|
877
877
|
_enum: {
|
|
@@ -880,15 +880,15 @@ var _default = exports.default = {
|
|
|
880
880
|
Initialization: 'Null'
|
|
881
881
|
}
|
|
882
882
|
},
|
|
883
|
-
/**
|
|
884
|
-
* Lookup96: frame_system::LastRuntimeUpgradeInfo
|
|
883
|
+
/**
|
|
884
|
+
* Lookup96: frame_system::LastRuntimeUpgradeInfo
|
|
885
885
|
**/
|
|
886
886
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
887
887
|
specVersion: 'Compact<u32>',
|
|
888
888
|
specName: 'Text'
|
|
889
889
|
},
|
|
890
|
-
/**
|
|
891
|
-
* Lookup99: frame_system::pallet::Call<T>
|
|
890
|
+
/**
|
|
891
|
+
* Lookup99: frame_system::pallet::Call<T>
|
|
892
892
|
**/
|
|
893
893
|
FrameSystemCall: {
|
|
894
894
|
_enum: {
|
|
@@ -922,24 +922,24 @@ var _default = exports.default = {
|
|
|
922
922
|
}
|
|
923
923
|
}
|
|
924
924
|
},
|
|
925
|
-
/**
|
|
926
|
-
* Lookup102: frame_system::limits::BlockWeights
|
|
925
|
+
/**
|
|
926
|
+
* Lookup102: frame_system::limits::BlockWeights
|
|
927
927
|
**/
|
|
928
928
|
FrameSystemLimitsBlockWeights: {
|
|
929
929
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
930
930
|
maxBlock: 'SpWeightsWeightV2Weight',
|
|
931
931
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
|
932
932
|
},
|
|
933
|
-
/**
|
|
934
|
-
* Lookup103: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
933
|
+
/**
|
|
934
|
+
* Lookup103: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
935
935
|
**/
|
|
936
936
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
937
937
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
938
938
|
operational: 'FrameSystemLimitsWeightsPerClass',
|
|
939
939
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
|
940
940
|
},
|
|
941
|
-
/**
|
|
942
|
-
* Lookup104: frame_system::limits::WeightsPerClass
|
|
941
|
+
/**
|
|
942
|
+
* Lookup104: frame_system::limits::WeightsPerClass
|
|
943
943
|
**/
|
|
944
944
|
FrameSystemLimitsWeightsPerClass: {
|
|
945
945
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -947,29 +947,29 @@ var _default = exports.default = {
|
|
|
947
947
|
maxTotal: 'Option<SpWeightsWeightV2Weight>',
|
|
948
948
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
|
949
949
|
},
|
|
950
|
-
/**
|
|
951
|
-
* Lookup106: frame_system::limits::BlockLength
|
|
950
|
+
/**
|
|
951
|
+
* Lookup106: frame_system::limits::BlockLength
|
|
952
952
|
**/
|
|
953
953
|
FrameSystemLimitsBlockLength: {
|
|
954
954
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
|
955
955
|
},
|
|
956
|
-
/**
|
|
957
|
-
* Lookup107: frame_support::dispatch::PerDispatchClass<T>
|
|
956
|
+
/**
|
|
957
|
+
* Lookup107: frame_support::dispatch::PerDispatchClass<T>
|
|
958
958
|
**/
|
|
959
959
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
960
960
|
normal: 'u32',
|
|
961
961
|
operational: 'u32',
|
|
962
962
|
mandatory: 'u32'
|
|
963
963
|
},
|
|
964
|
-
/**
|
|
965
|
-
* Lookup108: sp_weights::RuntimeDbWeight
|
|
964
|
+
/**
|
|
965
|
+
* Lookup108: sp_weights::RuntimeDbWeight
|
|
966
966
|
**/
|
|
967
967
|
SpWeightsRuntimeDbWeight: {
|
|
968
968
|
read: 'u64',
|
|
969
969
|
write: 'u64'
|
|
970
970
|
},
|
|
971
|
-
/**
|
|
972
|
-
* Lookup109: sp_version::RuntimeVersion
|
|
971
|
+
/**
|
|
972
|
+
* Lookup109: sp_version::RuntimeVersion
|
|
973
973
|
**/
|
|
974
974
|
SpVersionRuntimeVersion: {
|
|
975
975
|
specName: 'Text',
|
|
@@ -981,14 +981,14 @@ var _default = exports.default = {
|
|
|
981
981
|
transactionVersion: 'u32',
|
|
982
982
|
stateVersion: 'u8'
|
|
983
983
|
},
|
|
984
|
-
/**
|
|
985
|
-
* Lookup114: frame_system::pallet::Error<T>
|
|
984
|
+
/**
|
|
985
|
+
* Lookup114: frame_system::pallet::Error<T>
|
|
986
986
|
**/
|
|
987
987
|
FrameSystemError: {
|
|
988
988
|
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
|
|
989
989
|
},
|
|
990
|
-
/**
|
|
991
|
-
* Lookup115: pallet_timestamp::pallet::Call<T>
|
|
990
|
+
/**
|
|
991
|
+
* Lookup115: pallet_timestamp::pallet::Call<T>
|
|
992
992
|
**/
|
|
993
993
|
PalletTimestampCall: {
|
|
994
994
|
_enum: {
|
|
@@ -997,36 +997,36 @@ var _default = exports.default = {
|
|
|
997
997
|
}
|
|
998
998
|
}
|
|
999
999
|
},
|
|
1000
|
-
/**
|
|
1001
|
-
* Lookup117: pallet_balances::types::BalanceLock<Balance>
|
|
1000
|
+
/**
|
|
1001
|
+
* Lookup117: pallet_balances::types::BalanceLock<Balance>
|
|
1002
1002
|
**/
|
|
1003
1003
|
PalletBalancesBalanceLock: {
|
|
1004
1004
|
id: '[u8;8]',
|
|
1005
1005
|
amount: 'u128',
|
|
1006
1006
|
reasons: 'PalletBalancesReasons'
|
|
1007
1007
|
},
|
|
1008
|
-
/**
|
|
1009
|
-
* Lookup118: pallet_balances::types::Reasons
|
|
1008
|
+
/**
|
|
1009
|
+
* Lookup118: pallet_balances::types::Reasons
|
|
1010
1010
|
**/
|
|
1011
1011
|
PalletBalancesReasons: {
|
|
1012
1012
|
_enum: ['Fee', 'Misc', 'All']
|
|
1013
1013
|
},
|
|
1014
|
-
/**
|
|
1015
|
-
* Lookup121: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1014
|
+
/**
|
|
1015
|
+
* Lookup121: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1016
1016
|
**/
|
|
1017
1017
|
PalletBalancesReserveData: {
|
|
1018
1018
|
id: '[u8;8]',
|
|
1019
1019
|
amount: 'u128'
|
|
1020
1020
|
},
|
|
1021
|
-
/**
|
|
1022
|
-
* Lookup124: pallet_balances::types::IdAmount<Id, Balance>
|
|
1021
|
+
/**
|
|
1022
|
+
* Lookup124: pallet_balances::types::IdAmount<Id, Balance>
|
|
1023
1023
|
**/
|
|
1024
1024
|
PalletBalancesIdAmount: {
|
|
1025
1025
|
id: 'Null',
|
|
1026
1026
|
amount: 'u128'
|
|
1027
1027
|
},
|
|
1028
|
-
/**
|
|
1029
|
-
* Lookup126: pallet_balances::pallet::Call<T, I>
|
|
1028
|
+
/**
|
|
1029
|
+
* Lookup126: pallet_balances::pallet::Call<T, I>
|
|
1030
1030
|
**/
|
|
1031
1031
|
PalletBalancesCall: {
|
|
1032
1032
|
_enum: {
|
|
@@ -1069,14 +1069,14 @@ var _default = exports.default = {
|
|
|
1069
1069
|
}
|
|
1070
1070
|
}
|
|
1071
1071
|
},
|
|
1072
|
-
/**
|
|
1073
|
-
* Lookup131: pallet_balances::pallet::Error<T, I>
|
|
1072
|
+
/**
|
|
1073
|
+
* Lookup131: pallet_balances::pallet::Error<T, I>
|
|
1074
1074
|
**/
|
|
1075
1075
|
PalletBalancesError: {
|
|
1076
1076
|
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
|
|
1077
1077
|
},
|
|
1078
|
-
/**
|
|
1079
|
-
* Lookup133: sugarfunge_validator_set::pallet::Call<T>
|
|
1078
|
+
/**
|
|
1079
|
+
* Lookup133: sugarfunge_validator_set::pallet::Call<T>
|
|
1080
1080
|
**/
|
|
1081
1081
|
SugarfungeValidatorSetCall: {
|
|
1082
1082
|
_enum: {
|
|
@@ -1091,14 +1091,14 @@ var _default = exports.default = {
|
|
|
1091
1091
|
}
|
|
1092
1092
|
}
|
|
1093
1093
|
},
|
|
1094
|
-
/**
|
|
1095
|
-
* Lookup134: sugarfunge_validator_set::pallet::Error<T>
|
|
1094
|
+
/**
|
|
1095
|
+
* Lookup134: sugarfunge_validator_set::pallet::Error<T>
|
|
1096
1096
|
**/
|
|
1097
1097
|
SugarfungeValidatorSetError: {
|
|
1098
1098
|
_enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
|
|
1099
1099
|
},
|
|
1100
|
-
/**
|
|
1101
|
-
* Lookup135: pallet_grandpa::StoredState<N>
|
|
1100
|
+
/**
|
|
1101
|
+
* Lookup135: pallet_grandpa::StoredState<N>
|
|
1102
1102
|
**/
|
|
1103
1103
|
PalletGrandpaStoredState: {
|
|
1104
1104
|
_enum: {
|
|
@@ -1114,8 +1114,8 @@ var _default = exports.default = {
|
|
|
1114
1114
|
}
|
|
1115
1115
|
}
|
|
1116
1116
|
},
|
|
1117
|
-
/**
|
|
1118
|
-
* Lookup136: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
1117
|
+
/**
|
|
1118
|
+
* Lookup136: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
1119
1119
|
**/
|
|
1120
1120
|
PalletGrandpaStoredPendingChange: {
|
|
1121
1121
|
scheduledAt: 'u32',
|
|
@@ -1123,8 +1123,8 @@ var _default = exports.default = {
|
|
|
1123
1123
|
nextAuthorities: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
|
|
1124
1124
|
forced: 'Option<u32>'
|
|
1125
1125
|
},
|
|
1126
|
-
/**
|
|
1127
|
-
* Lookup139: pallet_grandpa::pallet::Call<T>
|
|
1126
|
+
/**
|
|
1127
|
+
* Lookup139: pallet_grandpa::pallet::Call<T>
|
|
1128
1128
|
**/
|
|
1129
1129
|
PalletGrandpaCall: {
|
|
1130
1130
|
_enum: {
|
|
@@ -1142,15 +1142,15 @@ var _default = exports.default = {
|
|
|
1142
1142
|
}
|
|
1143
1143
|
}
|
|
1144
1144
|
},
|
|
1145
|
-
/**
|
|
1146
|
-
* Lookup140: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1145
|
+
/**
|
|
1146
|
+
* Lookup140: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1147
1147
|
**/
|
|
1148
1148
|
SpConsensusGrandpaEquivocationProof: {
|
|
1149
1149
|
setId: 'u64',
|
|
1150
1150
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
|
1151
1151
|
},
|
|
1152
|
-
/**
|
|
1153
|
-
* Lookup141: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1152
|
+
/**
|
|
1153
|
+
* Lookup141: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1154
1154
|
**/
|
|
1155
1155
|
SpConsensusGrandpaEquivocation: {
|
|
1156
1156
|
_enum: {
|
|
@@ -1158,8 +1158,8 @@ var _default = exports.default = {
|
|
|
1158
1158
|
Precommit: 'FinalityGrandpaEquivocationPrecommit'
|
|
1159
1159
|
}
|
|
1160
1160
|
},
|
|
1161
|
-
/**
|
|
1162
|
-
* Lookup142: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1161
|
+
/**
|
|
1162
|
+
* Lookup142: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1163
1163
|
**/
|
|
1164
1164
|
FinalityGrandpaEquivocationPrevote: {
|
|
1165
1165
|
roundNumber: 'u64',
|
|
@@ -1167,23 +1167,23 @@ var _default = exports.default = {
|
|
|
1167
1167
|
first: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
1168
1168
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
|
1169
1169
|
},
|
|
1170
|
-
/**
|
|
1171
|
-
* Lookup143: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1170
|
+
/**
|
|
1171
|
+
* Lookup143: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1172
1172
|
**/
|
|
1173
1173
|
FinalityGrandpaPrevote: {
|
|
1174
1174
|
targetHash: 'H256',
|
|
1175
1175
|
targetNumber: 'u32'
|
|
1176
1176
|
},
|
|
1177
|
-
/**
|
|
1178
|
-
* Lookup144: sp_consensus_grandpa::app::Signature
|
|
1177
|
+
/**
|
|
1178
|
+
* Lookup144: sp_consensus_grandpa::app::Signature
|
|
1179
1179
|
**/
|
|
1180
1180
|
SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
|
|
1181
|
-
/**
|
|
1182
|
-
* Lookup145: sp_core::ed25519::Signature
|
|
1181
|
+
/**
|
|
1182
|
+
* Lookup145: sp_core::ed25519::Signature
|
|
1183
1183
|
**/
|
|
1184
1184
|
SpCoreEd25519Signature: '[u8;64]',
|
|
1185
|
-
/**
|
|
1186
|
-
* Lookup148: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1185
|
+
/**
|
|
1186
|
+
* Lookup148: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1187
1187
|
**/
|
|
1188
1188
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1189
1189
|
roundNumber: 'u64',
|
|
@@ -1191,31 +1191,31 @@ var _default = exports.default = {
|
|
|
1191
1191
|
first: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
1192
1192
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
|
1193
1193
|
},
|
|
1194
|
-
/**
|
|
1195
|
-
* Lookup149: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1194
|
+
/**
|
|
1195
|
+
* Lookup149: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1196
1196
|
**/
|
|
1197
1197
|
FinalityGrandpaPrecommit: {
|
|
1198
1198
|
targetHash: 'H256',
|
|
1199
1199
|
targetNumber: 'u32'
|
|
1200
1200
|
},
|
|
1201
|
-
/**
|
|
1202
|
-
* Lookup151: sp_core::Void
|
|
1201
|
+
/**
|
|
1202
|
+
* Lookup151: sp_core::Void
|
|
1203
1203
|
**/
|
|
1204
1204
|
SpCoreVoid: 'Null',
|
|
1205
|
-
/**
|
|
1206
|
-
* Lookup152: pallet_grandpa::pallet::Error<T>
|
|
1205
|
+
/**
|
|
1206
|
+
* Lookup152: pallet_grandpa::pallet::Error<T>
|
|
1207
1207
|
**/
|
|
1208
1208
|
PalletGrandpaError: {
|
|
1209
1209
|
_enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
|
|
1210
1210
|
},
|
|
1211
|
-
/**
|
|
1212
|
-
* Lookup154: pallet_transaction_payment::Releases
|
|
1211
|
+
/**
|
|
1212
|
+
* Lookup154: pallet_transaction_payment::Releases
|
|
1213
1213
|
**/
|
|
1214
1214
|
PalletTransactionPaymentReleases: {
|
|
1215
1215
|
_enum: ['V1Ancient', 'V2']
|
|
1216
1216
|
},
|
|
1217
|
-
/**
|
|
1218
|
-
* Lookup155: pallet_sudo::pallet::Call<T>
|
|
1217
|
+
/**
|
|
1218
|
+
* Lookup155: pallet_sudo::pallet::Call<T>
|
|
1219
1219
|
**/
|
|
1220
1220
|
PalletSudoCall: {
|
|
1221
1221
|
_enum: {
|
|
@@ -1238,8 +1238,8 @@ var _default = exports.default = {
|
|
|
1238
1238
|
}
|
|
1239
1239
|
}
|
|
1240
1240
|
},
|
|
1241
|
-
/**
|
|
1242
|
-
* Lookup157: pallet_scheduler::pallet::Call<T>
|
|
1241
|
+
/**
|
|
1242
|
+
* Lookup157: pallet_scheduler::pallet::Call<T>
|
|
1243
1243
|
**/
|
|
1244
1244
|
PalletSchedulerCall: {
|
|
1245
1245
|
_enum: {
|
|
@@ -1278,8 +1278,8 @@ var _default = exports.default = {
|
|
|
1278
1278
|
}
|
|
1279
1279
|
}
|
|
1280
1280
|
},
|
|
1281
|
-
/**
|
|
1282
|
-
* Lookup159: pallet_collective::pallet::Call<T, I>
|
|
1281
|
+
/**
|
|
1282
|
+
* Lookup159: pallet_collective::pallet::Call<T, I>
|
|
1283
1283
|
**/
|
|
1284
1284
|
PalletCollectiveCall: {
|
|
1285
1285
|
_enum: {
|
|
@@ -1314,8 +1314,8 @@ var _default = exports.default = {
|
|
|
1314
1314
|
}
|
|
1315
1315
|
}
|
|
1316
1316
|
},
|
|
1317
|
-
/**
|
|
1318
|
-
* Lookup160: pallet_session::pallet::Call<T>
|
|
1317
|
+
/**
|
|
1318
|
+
* Lookup160: pallet_session::pallet::Call<T>
|
|
1319
1319
|
**/
|
|
1320
1320
|
PalletSessionCall: {
|
|
1321
1321
|
_enum: {
|
|
@@ -1329,20 +1329,20 @@ var _default = exports.default = {
|
|
|
1329
1329
|
purge_keys: 'Null'
|
|
1330
1330
|
}
|
|
1331
1331
|
},
|
|
1332
|
-
/**
|
|
1333
|
-
* Lookup161: sugarfunge_runtime::opaque::SessionKeys
|
|
1332
|
+
/**
|
|
1333
|
+
* Lookup161: sugarfunge_runtime::opaque::SessionKeys
|
|
1334
1334
|
**/
|
|
1335
1335
|
SugarfungeRuntimeOpaqueSessionKeys: {
|
|
1336
1336
|
aura: 'SpConsensusAuraSr25519AppSr25519Public',
|
|
1337
1337
|
grandpa: 'SpConsensusGrandpaAppPublic',
|
|
1338
1338
|
imOnline: 'PalletImOnlineSr25519AppSr25519Public'
|
|
1339
1339
|
},
|
|
1340
|
-
/**
|
|
1341
|
-
* Lookup162: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
1340
|
+
/**
|
|
1341
|
+
* Lookup162: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
1342
1342
|
**/
|
|
1343
1343
|
SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
|
|
1344
|
-
/**
|
|
1345
|
-
* Lookup163: pallet_im_online::pallet::Call<T>
|
|
1344
|
+
/**
|
|
1345
|
+
* Lookup163: pallet_im_online::pallet::Call<T>
|
|
1346
1346
|
**/
|
|
1347
1347
|
PalletImOnlineCall: {
|
|
1348
1348
|
_enum: {
|
|
@@ -1352,8 +1352,8 @@ var _default = exports.default = {
|
|
|
1352
1352
|
}
|
|
1353
1353
|
}
|
|
1354
1354
|
},
|
|
1355
|
-
/**
|
|
1356
|
-
* Lookup164: pallet_im_online::Heartbeat<BlockNumber>
|
|
1355
|
+
/**
|
|
1356
|
+
* Lookup164: pallet_im_online::Heartbeat<BlockNumber>
|
|
1357
1357
|
**/
|
|
1358
1358
|
PalletImOnlineHeartbeat: {
|
|
1359
1359
|
blockNumber: 'u32',
|
|
@@ -1362,23 +1362,23 @@ var _default = exports.default = {
|
|
|
1362
1362
|
authorityIndex: 'u32',
|
|
1363
1363
|
validatorsLen: 'u32'
|
|
1364
1364
|
},
|
|
1365
|
-
/**
|
|
1366
|
-
* Lookup165: sp_core::offchain::OpaqueNetworkState
|
|
1365
|
+
/**
|
|
1366
|
+
* Lookup165: sp_core::offchain::OpaqueNetworkState
|
|
1367
1367
|
**/
|
|
1368
1368
|
SpCoreOffchainOpaqueNetworkState: {
|
|
1369
1369
|
peerId: 'OpaquePeerId',
|
|
1370
1370
|
externalAddresses: 'Vec<OpaqueMultiaddr>'
|
|
1371
1371
|
},
|
|
1372
|
-
/**
|
|
1373
|
-
* Lookup169: pallet_im_online::sr25519::app_sr25519::Signature
|
|
1372
|
+
/**
|
|
1373
|
+
* Lookup169: pallet_im_online::sr25519::app_sr25519::Signature
|
|
1374
1374
|
**/
|
|
1375
1375
|
PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
|
|
1376
|
-
/**
|
|
1377
|
-
* Lookup170: sp_core::sr25519::Signature
|
|
1376
|
+
/**
|
|
1377
|
+
* Lookup170: sp_core::sr25519::Signature
|
|
1378
1378
|
**/
|
|
1379
1379
|
SpCoreSr25519Signature: '[u8;64]',
|
|
1380
|
-
/**
|
|
1381
|
-
* Lookup171: sugarfunge_asset::pallet::Call<T>
|
|
1380
|
+
/**
|
|
1381
|
+
* Lookup171: sugarfunge_asset::pallet::Call<T>
|
|
1382
1382
|
**/
|
|
1383
1383
|
SugarfungeAssetCall: {
|
|
1384
1384
|
_enum: {
|
|
@@ -1441,8 +1441,8 @@ var _default = exports.default = {
|
|
|
1441
1441
|
}
|
|
1442
1442
|
}
|
|
1443
1443
|
},
|
|
1444
|
-
/**
|
|
1445
|
-
* Lookup174: sugarfunge_dao::pallet::Call<T>
|
|
1444
|
+
/**
|
|
1445
|
+
* Lookup174: sugarfunge_dao::pallet::Call<T>
|
|
1446
1446
|
**/
|
|
1447
1447
|
SugarfungeDaoCall: {
|
|
1448
1448
|
_enum: {
|
|
@@ -1452,8 +1452,8 @@ var _default = exports.default = {
|
|
|
1452
1452
|
cause_error: 'Null'
|
|
1453
1453
|
}
|
|
1454
1454
|
},
|
|
1455
|
-
/**
|
|
1456
|
-
* Lookup175: sugarfunge_bundle::pallet::Call<T>
|
|
1455
|
+
/**
|
|
1456
|
+
* Lookup175: sugarfunge_bundle::pallet::Call<T>
|
|
1457
1457
|
**/
|
|
1458
1458
|
SugarfungeBundleCall: {
|
|
1459
1459
|
_enum: {
|
|
@@ -1478,8 +1478,8 @@ var _default = exports.default = {
|
|
|
1478
1478
|
}
|
|
1479
1479
|
}
|
|
1480
1480
|
},
|
|
1481
|
-
/**
|
|
1482
|
-
* Lookup183: sugarfunge_bag::pallet::Call<T>
|
|
1481
|
+
/**
|
|
1482
|
+
* Lookup183: sugarfunge_bag::pallet::Call<T>
|
|
1483
1483
|
**/
|
|
1484
1484
|
SugarfungeBagCall: {
|
|
1485
1485
|
_enum: {
|
|
@@ -1504,8 +1504,8 @@ var _default = exports.default = {
|
|
|
1504
1504
|
}
|
|
1505
1505
|
}
|
|
1506
1506
|
},
|
|
1507
|
-
/**
|
|
1508
|
-
* Lookup184: sugarfunge_exgine::pallet::Call<T>
|
|
1507
|
+
/**
|
|
1508
|
+
* Lookup184: sugarfunge_exgine::pallet::Call<T>
|
|
1509
1509
|
**/
|
|
1510
1510
|
SugarfungeExgineCall: {
|
|
1511
1511
|
_enum: {
|
|
@@ -1515,8 +1515,8 @@ var _default = exports.default = {
|
|
|
1515
1515
|
cause_error: 'Null'
|
|
1516
1516
|
}
|
|
1517
1517
|
},
|
|
1518
|
-
/**
|
|
1519
|
-
* Lookup185: sugarfunge_market::pallet::Call<T>
|
|
1518
|
+
/**
|
|
1519
|
+
* Lookup185: sugarfunge_market::pallet::Call<T>
|
|
1520
1520
|
**/
|
|
1521
1521
|
SugarfungeMarketCall: {
|
|
1522
1522
|
_enum: {
|
|
@@ -1540,8 +1540,8 @@ var _default = exports.default = {
|
|
|
1540
1540
|
}
|
|
1541
1541
|
}
|
|
1542
1542
|
},
|
|
1543
|
-
/**
|
|
1544
|
-
* Lookup188: functionland_fula::pallet::Call<T>
|
|
1543
|
+
/**
|
|
1544
|
+
* Lookup188: functionland_fula::pallet::Call<T>
|
|
1545
1545
|
**/
|
|
1546
1546
|
FunctionlandFulaCall: {
|
|
1547
1547
|
_enum: {
|
|
@@ -1628,8 +1628,8 @@ var _default = exports.default = {
|
|
|
1628
1628
|
}
|
|
1629
1629
|
}
|
|
1630
1630
|
},
|
|
1631
|
-
/**
|
|
1632
|
-
* Lookup192: fula_pool::pallet::Call<T>
|
|
1631
|
+
/**
|
|
1632
|
+
* Lookup192: fula_pool::pallet::Call<T>
|
|
1633
1633
|
**/
|
|
1634
1634
|
FulaPoolCall: {
|
|
1635
1635
|
_enum: {
|
|
@@ -1658,8 +1658,8 @@ var _default = exports.default = {
|
|
|
1658
1658
|
}
|
|
1659
1659
|
}
|
|
1660
1660
|
},
|
|
1661
|
-
/**
|
|
1662
|
-
* Lookup194: pallet_utility::pallet::Call<T>
|
|
1661
|
+
/**
|
|
1662
|
+
* Lookup194: pallet_utility::pallet::Call<T>
|
|
1663
1663
|
**/
|
|
1664
1664
|
PalletUtilityCall: {
|
|
1665
1665
|
_enum: {
|
|
@@ -1686,8 +1686,8 @@ var _default = exports.default = {
|
|
|
1686
1686
|
}
|
|
1687
1687
|
}
|
|
1688
1688
|
},
|
|
1689
|
-
/**
|
|
1690
|
-
* Lookup196: sugarfunge_runtime::OriginCaller
|
|
1689
|
+
/**
|
|
1690
|
+
* Lookup196: sugarfunge_runtime::OriginCaller
|
|
1691
1691
|
**/
|
|
1692
1692
|
SugarfungeRuntimeOriginCaller: {
|
|
1693
1693
|
_enum: {
|
|
@@ -1704,8 +1704,8 @@ var _default = exports.default = {
|
|
|
1704
1704
|
Council: 'PalletCollectiveRawOrigin'
|
|
1705
1705
|
}
|
|
1706
1706
|
},
|
|
1707
|
-
/**
|
|
1708
|
-
* Lookup197: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1707
|
+
/**
|
|
1708
|
+
* Lookup197: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1709
1709
|
**/
|
|
1710
1710
|
FrameSupportDispatchRawOrigin: {
|
|
1711
1711
|
_enum: {
|
|
@@ -1714,8 +1714,8 @@ var _default = exports.default = {
|
|
|
1714
1714
|
None: 'Null'
|
|
1715
1715
|
}
|
|
1716
1716
|
},
|
|
1717
|
-
/**
|
|
1718
|
-
* Lookup198: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
1717
|
+
/**
|
|
1718
|
+
* Lookup198: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
1719
1719
|
**/
|
|
1720
1720
|
PalletCollectiveRawOrigin: {
|
|
1721
1721
|
_enum: {
|
|
@@ -1724,14 +1724,14 @@ var _default = exports.default = {
|
|
|
1724
1724
|
_Phantom: 'Null'
|
|
1725
1725
|
}
|
|
1726
1726
|
},
|
|
1727
|
-
/**
|
|
1728
|
-
* Lookup199: pallet_sudo::pallet::Error<T>
|
|
1727
|
+
/**
|
|
1728
|
+
* Lookup199: pallet_sudo::pallet::Error<T>
|
|
1729
1729
|
**/
|
|
1730
1730
|
PalletSudoError: {
|
|
1731
1731
|
_enum: ['RequireSudo']
|
|
1732
1732
|
},
|
|
1733
|
-
/**
|
|
1734
|
-
* Lookup202: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
1733
|
+
/**
|
|
1734
|
+
* Lookup202: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
1735
1735
|
**/
|
|
1736
1736
|
PalletSchedulerScheduled: {
|
|
1737
1737
|
maybeId: 'Option<[u8;32]>',
|
|
@@ -1740,8 +1740,8 @@ var _default = exports.default = {
|
|
|
1740
1740
|
maybePeriodic: 'Option<(u32,u32)>',
|
|
1741
1741
|
origin: 'SugarfungeRuntimeOriginCaller'
|
|
1742
1742
|
},
|
|
1743
|
-
/**
|
|
1744
|
-
* Lookup203: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
|
|
1743
|
+
/**
|
|
1744
|
+
* Lookup203: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
|
|
1745
1745
|
**/
|
|
1746
1746
|
FrameSupportPreimagesBounded: {
|
|
1747
1747
|
_enum: {
|
|
@@ -1761,14 +1761,14 @@ var _default = exports.default = {
|
|
|
1761
1761
|
}
|
|
1762
1762
|
}
|
|
1763
1763
|
},
|
|
1764
|
-
/**
|
|
1765
|
-
* Lookup206: pallet_scheduler::pallet::Error<T>
|
|
1764
|
+
/**
|
|
1765
|
+
* Lookup206: pallet_scheduler::pallet::Error<T>
|
|
1766
1766
|
**/
|
|
1767
1767
|
PalletSchedulerError: {
|
|
1768
1768
|
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
|
|
1769
1769
|
},
|
|
1770
|
-
/**
|
|
1771
|
-
* Lookup208: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
1770
|
+
/**
|
|
1771
|
+
* Lookup208: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
1772
1772
|
**/
|
|
1773
1773
|
PalletCollectiveVotes: {
|
|
1774
1774
|
index: 'u32',
|
|
@@ -1777,64 +1777,64 @@ var _default = exports.default = {
|
|
|
1777
1777
|
nays: 'Vec<AccountId32>',
|
|
1778
1778
|
end: 'u32'
|
|
1779
1779
|
},
|
|
1780
|
-
/**
|
|
1781
|
-
* Lookup209: pallet_collective::pallet::Error<T, I>
|
|
1780
|
+
/**
|
|
1781
|
+
* Lookup209: pallet_collective::pallet::Error<T, I>
|
|
1782
1782
|
**/
|
|
1783
1783
|
PalletCollectiveError: {
|
|
1784
1784
|
_enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
|
|
1785
1785
|
},
|
|
1786
|
-
/**
|
|
1787
|
-
* Lookup213: sp_core::crypto::KeyTypeId
|
|
1786
|
+
/**
|
|
1787
|
+
* Lookup213: sp_core::crypto::KeyTypeId
|
|
1788
1788
|
**/
|
|
1789
1789
|
SpCoreCryptoKeyTypeId: '[u8;4]',
|
|
1790
|
-
/**
|
|
1791
|
-
* Lookup214: pallet_session::pallet::Error<T>
|
|
1790
|
+
/**
|
|
1791
|
+
* Lookup214: pallet_session::pallet::Error<T>
|
|
1792
1792
|
**/
|
|
1793
1793
|
PalletSessionError: {
|
|
1794
1794
|
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
|
|
1795
1795
|
},
|
|
1796
|
-
/**
|
|
1797
|
-
* Lookup218: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
|
|
1796
|
+
/**
|
|
1797
|
+
* Lookup218: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
|
|
1798
1798
|
**/
|
|
1799
1799
|
PalletImOnlineBoundedOpaqueNetworkState: {
|
|
1800
1800
|
peerId: 'Bytes',
|
|
1801
1801
|
externalAddresses: 'Vec<Bytes>'
|
|
1802
1802
|
},
|
|
1803
|
-
/**
|
|
1804
|
-
* Lookup223: pallet_im_online::pallet::Error<T>
|
|
1803
|
+
/**
|
|
1804
|
+
* Lookup223: pallet_im_online::pallet::Error<T>
|
|
1805
1805
|
**/
|
|
1806
1806
|
PalletImOnlineError: {
|
|
1807
1807
|
_enum: ['InvalidKey', 'DuplicatedHeartbeat']
|
|
1808
1808
|
},
|
|
1809
|
-
/**
|
|
1810
|
-
* Lookup224: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1809
|
+
/**
|
|
1810
|
+
* Lookup224: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1811
1811
|
**/
|
|
1812
1812
|
SugarfungeAssetClass: {
|
|
1813
1813
|
owner: 'AccountId32',
|
|
1814
1814
|
metadata: 'Bytes'
|
|
1815
1815
|
},
|
|
1816
|
-
/**
|
|
1817
|
-
* Lookup226: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1816
|
+
/**
|
|
1817
|
+
* Lookup226: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1818
1818
|
**/
|
|
1819
1819
|
SugarfungeAssetAsset: {
|
|
1820
1820
|
classId: 'u64',
|
|
1821
1821
|
creator: 'AccountId32',
|
|
1822
1822
|
metadata: 'Bytes'
|
|
1823
1823
|
},
|
|
1824
|
-
/**
|
|
1825
|
-
* Lookup228: sugarfunge_asset::pallet::Error<T>
|
|
1824
|
+
/**
|
|
1825
|
+
* Lookup228: sugarfunge_asset::pallet::Error<T>
|
|
1826
1826
|
**/
|
|
1827
1827
|
SugarfungeAssetError: {
|
|
1828
1828
|
_enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
|
|
1829
1829
|
},
|
|
1830
|
-
/**
|
|
1831
|
-
* Lookup229: sugarfunge_dao::pallet::Error<T>
|
|
1830
|
+
/**
|
|
1831
|
+
* Lookup229: sugarfunge_dao::pallet::Error<T>
|
|
1832
1832
|
**/
|
|
1833
1833
|
SugarfungeDaoError: {
|
|
1834
1834
|
_enum: ['NoneValue', 'StorageOverflow']
|
|
1835
1835
|
},
|
|
1836
|
-
/**
|
|
1837
|
-
* Lookup230: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1836
|
+
/**
|
|
1837
|
+
* Lookup230: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1838
1838
|
**/
|
|
1839
1839
|
SugarfungeBundleBundle: {
|
|
1840
1840
|
creator: 'AccountId32',
|
|
@@ -1844,25 +1844,25 @@ var _default = exports.default = {
|
|
|
1844
1844
|
schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
|
|
1845
1845
|
vault: 'AccountId32'
|
|
1846
1846
|
},
|
|
1847
|
-
/**
|
|
1848
|
-
* Lookup231: frame_support::PalletId
|
|
1847
|
+
/**
|
|
1848
|
+
* Lookup231: frame_support::PalletId
|
|
1849
1849
|
**/
|
|
1850
1850
|
FrameSupportPalletId: '[u8;8]',
|
|
1851
|
-
/**
|
|
1852
|
-
* Lookup232: sugarfunge_bundle::pallet::Error<T>
|
|
1851
|
+
/**
|
|
1852
|
+
* Lookup232: sugarfunge_bundle::pallet::Error<T>
|
|
1853
1853
|
**/
|
|
1854
1854
|
SugarfungeBundleError: {
|
|
1855
1855
|
_enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance', 'AssetExists', 'AccountNotOwner']
|
|
1856
1856
|
},
|
|
1857
|
-
/**
|
|
1858
|
-
* Lookup233: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
|
|
1857
|
+
/**
|
|
1858
|
+
* Lookup233: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
|
|
1859
1859
|
**/
|
|
1860
1860
|
SugarfungeBagBagClass: {
|
|
1861
1861
|
operator: 'AccountId32',
|
|
1862
1862
|
classId: 'u64'
|
|
1863
1863
|
},
|
|
1864
|
-
/**
|
|
1865
|
-
* Lookup234: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
1864
|
+
/**
|
|
1865
|
+
* Lookup234: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
1866
1866
|
**/
|
|
1867
1867
|
SugarfungeBagBag: {
|
|
1868
1868
|
operator: 'AccountId32',
|
|
@@ -1870,33 +1870,33 @@ var _default = exports.default = {
|
|
|
1870
1870
|
assetId: 'u64',
|
|
1871
1871
|
totalShares: 'u128'
|
|
1872
1872
|
},
|
|
1873
|
-
/**
|
|
1874
|
-
* Lookup235: sugarfunge_bag::pallet::Error<T>
|
|
1873
|
+
/**
|
|
1874
|
+
* Lookup235: sugarfunge_bag::pallet::Error<T>
|
|
1875
1875
|
**/
|
|
1876
1876
|
SugarfungeBagError: {
|
|
1877
1877
|
_enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
|
|
1878
1878
|
},
|
|
1879
|
-
/**
|
|
1880
|
-
* Lookup236: sugarfunge_exgine::pallet::Error<T>
|
|
1879
|
+
/**
|
|
1880
|
+
* Lookup236: sugarfunge_exgine::pallet::Error<T>
|
|
1881
1881
|
**/
|
|
1882
1882
|
SugarfungeExgineError: {
|
|
1883
1883
|
_enum: ['NoneValue', 'StorageOverflow']
|
|
1884
1884
|
},
|
|
1885
|
-
/**
|
|
1886
|
-
* Lookup237: sugarfunge_market::Market<sp_core::crypto::AccountId32>
|
|
1885
|
+
/**
|
|
1886
|
+
* Lookup237: sugarfunge_market::Market<sp_core::crypto::AccountId32>
|
|
1887
1887
|
**/
|
|
1888
1888
|
SugarfungeMarketMarket: {
|
|
1889
1889
|
owner: 'AccountId32',
|
|
1890
1890
|
vault: 'AccountId32'
|
|
1891
1891
|
},
|
|
1892
|
-
/**
|
|
1893
|
-
* Lookup239: sugarfunge_market::pallet::Error<T>
|
|
1892
|
+
/**
|
|
1893
|
+
* Lookup239: sugarfunge_market::pallet::Error<T>
|
|
1894
1894
|
**/
|
|
1895
1895
|
SugarfungeMarketError: {
|
|
1896
1896
|
_enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
|
|
1897
1897
|
},
|
|
1898
|
-
/**
|
|
1899
|
-
* Lookup241: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1898
|
+
/**
|
|
1899
|
+
* Lookup241: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1900
1900
|
**/
|
|
1901
1901
|
FunctionlandFulaManifest: {
|
|
1902
1902
|
_alias: {
|
|
@@ -1906,29 +1906,29 @@ var _default = exports.default = {
|
|
|
1906
1906
|
manifestMetadata: 'Bytes',
|
|
1907
1907
|
size_: 'Option<u64>'
|
|
1908
1908
|
},
|
|
1909
|
-
/**
|
|
1910
|
-
* Lookup244: functionland_fula::Challenge<sp_core::crypto::AccountId32>
|
|
1909
|
+
/**
|
|
1910
|
+
* Lookup244: functionland_fula::Challenge<sp_core::crypto::AccountId32>
|
|
1911
1911
|
**/
|
|
1912
1912
|
FunctionlandFulaChallenge: {
|
|
1913
1913
|
challenger: 'AccountId32',
|
|
1914
1914
|
challengeState: 'FunctionlandFulaChallengeState'
|
|
1915
1915
|
},
|
|
1916
|
-
/**
|
|
1917
|
-
* Lookup245: functionland_fula::ClaimData
|
|
1916
|
+
/**
|
|
1917
|
+
* Lookup245: functionland_fula::ClaimData
|
|
1918
1918
|
**/
|
|
1919
1919
|
FunctionlandFulaClaimData: {
|
|
1920
1920
|
mintedLaborTokens: 'u128',
|
|
1921
1921
|
expectedLaborTokens: 'u128',
|
|
1922
1922
|
challengeTokens: 'u128'
|
|
1923
1923
|
},
|
|
1924
|
-
/**
|
|
1925
|
-
* Lookup246: functionland_fula::pallet::Error<T>
|
|
1924
|
+
/**
|
|
1925
|
+
* Lookup246: functionland_fula::pallet::Error<T>
|
|
1926
1926
|
**/
|
|
1927
1927
|
FunctionlandFulaError: {
|
|
1928
1928
|
_enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'AccountNotUploader', 'AccountNotFound', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored', 'InvalidArrayLength', 'ErrorPickingCIDToChallenge', 'ErrorPickingAccountToChallenge', 'ManifestStorerDataNotFound', 'NoFileSizeProvided', 'NoAccountsToChallenge', 'FileAlreadyUploadedbyUser']
|
|
1929
1929
|
},
|
|
1930
|
-
/**
|
|
1931
|
-
* Lookup247: fula_pool::Pool<T>
|
|
1930
|
+
/**
|
|
1931
|
+
* Lookup247: fula_pool::Pool<T>
|
|
1932
1932
|
**/
|
|
1933
1933
|
FulaPoolPool: {
|
|
1934
1934
|
name: 'Bytes',
|
|
@@ -1938,36 +1938,36 @@ var _default = exports.default = {
|
|
|
1938
1938
|
requestNumber: 'u8',
|
|
1939
1939
|
region: 'Bytes'
|
|
1940
1940
|
},
|
|
1941
|
-
/**
|
|
1942
|
-
* Lookup249: fula_pool::PoolRequest<T>
|
|
1941
|
+
/**
|
|
1942
|
+
* Lookup249: fula_pool::PoolRequest<T>
|
|
1943
1943
|
**/
|
|
1944
1944
|
FulaPoolPoolRequest: {
|
|
1945
1945
|
voted: 'Vec<AccountId32>',
|
|
1946
1946
|
positiveVotes: 'u16',
|
|
1947
1947
|
peerId: 'Bytes'
|
|
1948
1948
|
},
|
|
1949
|
-
/**
|
|
1950
|
-
* Lookup250: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1949
|
+
/**
|
|
1950
|
+
* Lookup250: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1951
1951
|
**/
|
|
1952
1952
|
FulaPoolUser: {
|
|
1953
1953
|
poolId: 'Option<u32>',
|
|
1954
1954
|
requestPoolId: 'Option<u32>',
|
|
1955
1955
|
peerId: 'Bytes'
|
|
1956
1956
|
},
|
|
1957
|
-
/**
|
|
1958
|
-
* Lookup251: fula_pool::pallet::Error<T>
|
|
1957
|
+
/**
|
|
1958
|
+
* Lookup251: fula_pool::pallet::Error<T>
|
|
1959
1959
|
**/
|
|
1960
1960
|
FulaPoolError: {
|
|
1961
1961
|
_enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
|
|
1962
1962
|
},
|
|
1963
|
-
/**
|
|
1964
|
-
* Lookup252: pallet_utility::pallet::Error<T>
|
|
1963
|
+
/**
|
|
1964
|
+
* Lookup252: pallet_utility::pallet::Error<T>
|
|
1965
1965
|
**/
|
|
1966
1966
|
PalletUtilityError: {
|
|
1967
1967
|
_enum: ['TooManyCalls']
|
|
1968
1968
|
},
|
|
1969
|
-
/**
|
|
1970
|
-
* Lookup254: sp_runtime::MultiSignature
|
|
1969
|
+
/**
|
|
1970
|
+
* Lookup254: sp_runtime::MultiSignature
|
|
1971
1971
|
**/
|
|
1972
1972
|
SpRuntimeMultiSignature: {
|
|
1973
1973
|
_enum: {
|
|
@@ -1976,40 +1976,40 @@ var _default = exports.default = {
|
|
|
1976
1976
|
Ecdsa: 'SpCoreEcdsaSignature'
|
|
1977
1977
|
}
|
|
1978
1978
|
},
|
|
1979
|
-
/**
|
|
1980
|
-
* Lookup255: sp_core::ecdsa::Signature
|
|
1979
|
+
/**
|
|
1980
|
+
* Lookup255: sp_core::ecdsa::Signature
|
|
1981
1981
|
**/
|
|
1982
1982
|
SpCoreEcdsaSignature: '[u8;65]',
|
|
1983
|
-
/**
|
|
1984
|
-
* Lookup258: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
1983
|
+
/**
|
|
1984
|
+
* Lookup258: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
1985
1985
|
**/
|
|
1986
1986
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
1987
|
-
/**
|
|
1988
|
-
* Lookup259: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
1987
|
+
/**
|
|
1988
|
+
* Lookup259: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
1989
1989
|
**/
|
|
1990
1990
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
1991
|
-
/**
|
|
1992
|
-
* Lookup260: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
1991
|
+
/**
|
|
1992
|
+
* Lookup260: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
1993
1993
|
**/
|
|
1994
1994
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
1995
|
-
/**
|
|
1996
|
-
* Lookup261: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
1995
|
+
/**
|
|
1996
|
+
* Lookup261: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
1997
1997
|
**/
|
|
1998
1998
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
1999
|
-
/**
|
|
2000
|
-
* Lookup264: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
1999
|
+
/**
|
|
2000
|
+
* Lookup264: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2001
2001
|
**/
|
|
2002
2002
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
2003
|
-
/**
|
|
2004
|
-
* Lookup265: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2003
|
+
/**
|
|
2004
|
+
* Lookup265: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2005
2005
|
**/
|
|
2006
2006
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
2007
|
-
/**
|
|
2008
|
-
* Lookup266: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2007
|
+
/**
|
|
2008
|
+
* Lookup266: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2009
2009
|
**/
|
|
2010
2010
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
2011
|
-
/**
|
|
2012
|
-
* Lookup267: sugarfunge_runtime::Runtime
|
|
2011
|
+
/**
|
|
2012
|
+
* Lookup267: sugarfunge_runtime::Runtime
|
|
2013
2013
|
**/
|
|
2014
2014
|
SugarfungeRuntimeRuntime: 'Null'
|
|
2015
2015
|
};
|