@functionland/react-native-fula 1.43.0 → 1.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +226 -226
- package/android/build.gradle +1 -1
- package/android/gradle.properties +5 -5
- 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 +16 -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 +49 -49
- package/ios/Fula-Bridging-Header.h +3 -3
- package/ios/Fula.mm +5 -0
- package/ios/Fula.swift +12 -0
- package/ios/UserDataHelper.swift +143 -143
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-errors.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.js.map +1 -1
- package/lib/commonjs/interfaces/augment-types.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 +278 -278
- 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.map +1 -1
- package/lib/commonjs/protocols/chain-api.js.map +1 -1
- package/lib/commonjs/protocols/fula.js +106 -106
- package/lib/commonjs/protocols/fula.js.map +1 -1
- package/lib/commonjs/protocols/fxblox.js +23 -1
- 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-errors.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.js.map +1 -1
- package/lib/module/interfaces/augment-types.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 +278 -278
- 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.map +1 -1
- package/lib/module/protocols/chain-api.js.map +1 -1
- package/lib/module/protocols/fula.js +106 -106
- package/lib/module/protocols/fula.js.map +1 -1
- package/lib/module/protocols/fxblox.js +21 -0
- 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/lib/typescript/interfaces/fulaNativeModule.d.ts +1 -0
- package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -1
- package/lib/typescript/protocols/fxblox.d.ts +1 -0
- package/lib/typescript/protocols/fxblox.d.ts.map +1 -1
- package/lib/typescript/types/fxblox.d.ts +4 -0
- package/lib/typescript/types/fxblox.d.ts.map +1 -1
- package/package.json +1 -1
- package/react-native-fula.podspec +47 -47
- package/src/index.tsx +4 -4
- package/src/interfaces/augment-api-errors.ts +449 -449
- package/src/interfaces/augment-api-rpc.ts +617 -617
- package/src/interfaces/augment-api-runtime.ts +224 -224
- package/src/interfaces/augment-api.ts +10 -10
- package/src/interfaces/augment-types.ts +1230 -1230
- package/src/interfaces/fulaNativeModule.ts +4 -1
- package/src/interfaces/index.ts +4 -4
- package/src/interfaces/lookup.ts +1889 -1889
- package/src/interfaces/registry.ts +152 -152
- package/src/interfaces/types-lookup.ts +2043 -2043
- package/src/interfaces/types.ts +3 -3
- package/src/protocols/fula.ts +427 -427
- package/src/protocols/fxblox.ts +26 -0
- package/src/types/fxblox.ts +5 -0
|
@@ -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_grandpa::pallet::Event
|
|
169
|
+
/**
|
|
170
|
+
* Lookup30: pallet_grandpa::pallet::Event
|
|
171
171
|
**/
|
|
172
172
|
PalletGrandpaEvent: {
|
|
173
173
|
_enum: {
|
|
@@ -178,16 +178,16 @@ var _default = exports.default = {
|
|
|
178
178
|
Resumed: 'Null'
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
|
-
/**
|
|
182
|
-
* Lookup33: sp_consensus_grandpa::app::Public
|
|
181
|
+
/**
|
|
182
|
+
* Lookup33: sp_consensus_grandpa::app::Public
|
|
183
183
|
**/
|
|
184
184
|
SpConsensusGrandpaAppPublic: 'SpCoreEd25519Public',
|
|
185
|
-
/**
|
|
186
|
-
* Lookup34: sp_core::ed25519::Public
|
|
185
|
+
/**
|
|
186
|
+
* Lookup34: sp_core::ed25519::Public
|
|
187
187
|
**/
|
|
188
188
|
SpCoreEd25519Public: '[u8;32]',
|
|
189
|
-
/**
|
|
190
|
-
* Lookup35: pallet_balances::pallet::Event<T, I>
|
|
189
|
+
/**
|
|
190
|
+
* Lookup35: pallet_balances::pallet::Event<T, I>
|
|
191
191
|
**/
|
|
192
192
|
PalletBalancesEvent: {
|
|
193
193
|
_enum: {
|
|
@@ -277,14 +277,14 @@ var _default = exports.default = {
|
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
279
|
},
|
|
280
|
-
/**
|
|
281
|
-
* Lookup36: frame_support::traits::tokens::misc::BalanceStatus
|
|
280
|
+
/**
|
|
281
|
+
* Lookup36: frame_support::traits::tokens::misc::BalanceStatus
|
|
282
282
|
**/
|
|
283
283
|
FrameSupportTokensMiscBalanceStatus: {
|
|
284
284
|
_enum: ['Free', 'Reserved']
|
|
285
285
|
},
|
|
286
|
-
/**
|
|
287
|
-
* Lookup37: pallet_transaction_payment::pallet::Event<T>
|
|
286
|
+
/**
|
|
287
|
+
* Lookup37: pallet_transaction_payment::pallet::Event<T>
|
|
288
288
|
**/
|
|
289
289
|
PalletTransactionPaymentEvent: {
|
|
290
290
|
_enum: {
|
|
@@ -295,8 +295,8 @@ var _default = exports.default = {
|
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
|
-
/**
|
|
299
|
-
* Lookup38: pallet_sudo::pallet::Event<T>
|
|
298
|
+
/**
|
|
299
|
+
* Lookup38: pallet_sudo::pallet::Event<T>
|
|
300
300
|
**/
|
|
301
301
|
PalletSudoEvent: {
|
|
302
302
|
_enum: {
|
|
@@ -311,8 +311,8 @@ var _default = exports.default = {
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
},
|
|
314
|
-
/**
|
|
315
|
-
* Lookup42: pallet_scheduler::pallet::Event<T>
|
|
314
|
+
/**
|
|
315
|
+
* Lookup42: pallet_scheduler::pallet::Event<T>
|
|
316
316
|
**/
|
|
317
317
|
PalletSchedulerEvent: {
|
|
318
318
|
_enum: {
|
|
@@ -343,8 +343,8 @@ var _default = exports.default = {
|
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
345
|
},
|
|
346
|
-
/**
|
|
347
|
-
* Lookup45: pallet_collective::pallet::Event<T, I>
|
|
346
|
+
/**
|
|
347
|
+
* Lookup45: pallet_collective::pallet::Event<T, I>
|
|
348
348
|
**/
|
|
349
349
|
PalletCollectiveEvent: {
|
|
350
350
|
_enum: {
|
|
@@ -382,8 +382,8 @@ var _default = exports.default = {
|
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
384
|
},
|
|
385
|
-
/**
|
|
386
|
-
* Lookup47: sugarfunge_validator_set::pallet::Event<T>
|
|
385
|
+
/**
|
|
386
|
+
* Lookup47: sugarfunge_validator_set::pallet::Event<T>
|
|
387
387
|
**/
|
|
388
388
|
SugarfungeValidatorSetEvent: {
|
|
389
389
|
_enum: {
|
|
@@ -391,8 +391,8 @@ var _default = exports.default = {
|
|
|
391
391
|
ValidatorRemovalInitiated: 'AccountId32'
|
|
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: sugarfunge_asset::pallet::Event<T>
|
|
404
|
+
/**
|
|
405
|
+
* Lookup49: sugarfunge_asset::pallet::Event<T>
|
|
406
406
|
**/
|
|
407
407
|
SugarfungeAssetEvent: {
|
|
408
408
|
_enum: {
|
|
@@ -473,16 +473,16 @@ var _default = exports.default = {
|
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
475
|
},
|
|
476
|
-
/**
|
|
477
|
-
* Lookup52: sugarfunge_dao::pallet::Event<T>
|
|
476
|
+
/**
|
|
477
|
+
* Lookup52: sugarfunge_dao::pallet::Event<T>
|
|
478
478
|
**/
|
|
479
479
|
SugarfungeDaoEvent: {
|
|
480
480
|
_enum: {
|
|
481
481
|
SomethingStored: '(u32,AccountId32)'
|
|
482
482
|
}
|
|
483
483
|
},
|
|
484
|
-
/**
|
|
485
|
-
* Lookup53: sugarfunge_bundle::pallet::Event<T>
|
|
484
|
+
/**
|
|
485
|
+
* Lookup53: sugarfunge_bundle::pallet::Event<T>
|
|
486
486
|
**/
|
|
487
487
|
SugarfungeBundleEvent: {
|
|
488
488
|
_enum: {
|
|
@@ -508,8 +508,8 @@ var _default = exports.default = {
|
|
|
508
508
|
}
|
|
509
509
|
}
|
|
510
510
|
},
|
|
511
|
-
/**
|
|
512
|
-
* Lookup54: sugarfunge_bag::pallet::Event<T>
|
|
511
|
+
/**
|
|
512
|
+
* Lookup54: sugarfunge_bag::pallet::Event<T>
|
|
513
513
|
**/
|
|
514
514
|
SugarfungeBagEvent: {
|
|
515
515
|
_enum: {
|
|
@@ -535,16 +535,16 @@ var _default = exports.default = {
|
|
|
535
535
|
}
|
|
536
536
|
}
|
|
537
537
|
},
|
|
538
|
-
/**
|
|
539
|
-
* Lookup56: sugarfunge_exgine::pallet::Event<T>
|
|
538
|
+
/**
|
|
539
|
+
* Lookup56: sugarfunge_exgine::pallet::Event<T>
|
|
540
540
|
**/
|
|
541
541
|
SugarfungeExgineEvent: {
|
|
542
542
|
_enum: {
|
|
543
543
|
SomethingStored: '(u32,AccountId32)'
|
|
544
544
|
}
|
|
545
545
|
},
|
|
546
|
-
/**
|
|
547
|
-
* Lookup57: sugarfunge_market::pallet::Event<T>
|
|
546
|
+
/**
|
|
547
|
+
* Lookup57: sugarfunge_market::pallet::Event<T>
|
|
548
548
|
**/
|
|
549
549
|
SugarfungeMarketEvent: {
|
|
550
550
|
_enum: {
|
|
@@ -591,15 +591,15 @@ var _default = exports.default = {
|
|
|
591
591
|
}
|
|
592
592
|
}
|
|
593
593
|
},
|
|
594
|
-
/**
|
|
595
|
-
* Lookup61: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
594
|
+
/**
|
|
595
|
+
* Lookup61: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
596
596
|
**/
|
|
597
597
|
SugarfungeMarketRateBalance: {
|
|
598
598
|
rate: 'SugarfungeMarketAssetRate',
|
|
599
599
|
balance: 'i128'
|
|
600
600
|
},
|
|
601
|
-
/**
|
|
602
|
-
* Lookup62: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
601
|
+
/**
|
|
602
|
+
* Lookup62: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
603
603
|
**/
|
|
604
604
|
SugarfungeMarketAssetRate: {
|
|
605
605
|
classId: 'u64',
|
|
@@ -608,8 +608,8 @@ var _default = exports.default = {
|
|
|
608
608
|
from: 'SugarfungeMarketRateAccount',
|
|
609
609
|
to: 'SugarfungeMarketRateAccount'
|
|
610
610
|
},
|
|
611
|
-
/**
|
|
612
|
-
* Lookup63: sugarfunge_market::RateAction<ClassId, AssetId>
|
|
611
|
+
/**
|
|
612
|
+
* Lookup63: sugarfunge_market::RateAction<ClassId, AssetId>
|
|
613
613
|
**/
|
|
614
614
|
SugarfungeMarketRateAction: {
|
|
615
615
|
_enum: {
|
|
@@ -620,20 +620,20 @@ var _default = exports.default = {
|
|
|
620
620
|
Has: '(SugarfungeMarketAmountOp,i128)'
|
|
621
621
|
}
|
|
622
622
|
},
|
|
623
|
-
/**
|
|
624
|
-
* Lookup65: sugarfunge_market::AMM
|
|
623
|
+
/**
|
|
624
|
+
* Lookup65: sugarfunge_market::AMM
|
|
625
625
|
**/
|
|
626
626
|
SugarfungeMarketAmm: {
|
|
627
627
|
_enum: ['Constant']
|
|
628
628
|
},
|
|
629
|
-
/**
|
|
630
|
-
* Lookup66: sugarfunge_market::AmountOp
|
|
629
|
+
/**
|
|
630
|
+
* Lookup66: sugarfunge_market::AmountOp
|
|
631
631
|
**/
|
|
632
632
|
SugarfungeMarketAmountOp: {
|
|
633
633
|
_enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
|
|
634
634
|
},
|
|
635
|
-
/**
|
|
636
|
-
* Lookup67: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
|
|
635
|
+
/**
|
|
636
|
+
* Lookup67: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
|
|
637
637
|
**/
|
|
638
638
|
SugarfungeMarketRateAccount: {
|
|
639
639
|
_enum: {
|
|
@@ -642,8 +642,8 @@ var _default = exports.default = {
|
|
|
642
642
|
Buyer: 'Null'
|
|
643
643
|
}
|
|
644
644
|
},
|
|
645
|
-
/**
|
|
646
|
-
* Lookup68: functionland_fula::pallet::Event<T>
|
|
645
|
+
/**
|
|
646
|
+
* Lookup68: functionland_fula::pallet::Event<T>
|
|
647
647
|
**/
|
|
648
648
|
FunctionlandFulaEvent: {
|
|
649
649
|
_enum: {
|
|
@@ -745,8 +745,8 @@ var _default = exports.default = {
|
|
|
745
745
|
}
|
|
746
746
|
}
|
|
747
747
|
},
|
|
748
|
-
/**
|
|
749
|
-
* Lookup74: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
748
|
+
/**
|
|
749
|
+
* Lookup74: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
750
750
|
**/
|
|
751
751
|
FunctionlandFulaManifestWithPoolId: {
|
|
752
752
|
_alias: {
|
|
@@ -757,24 +757,24 @@ var _default = exports.default = {
|
|
|
757
757
|
manifestMetadata: 'Bytes',
|
|
758
758
|
size_: 'Option<u64>'
|
|
759
759
|
},
|
|
760
|
-
/**
|
|
761
|
-
* Lookup77: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
|
|
760
|
+
/**
|
|
761
|
+
* Lookup77: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
|
|
762
762
|
**/
|
|
763
763
|
FunctionlandFulaUploaderData: {
|
|
764
764
|
uploader: 'AccountId32',
|
|
765
765
|
storers: 'Vec<AccountId32>',
|
|
766
766
|
replicationFactor: 'u16'
|
|
767
767
|
},
|
|
768
|
-
/**
|
|
769
|
-
* Lookup80: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
768
|
+
/**
|
|
769
|
+
* Lookup80: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
770
770
|
**/
|
|
771
771
|
FunctionlandFulaManifestAvailable: {
|
|
772
772
|
poolId: 'u32',
|
|
773
773
|
replicationFactor: 'u16',
|
|
774
774
|
manifestMetadata: 'Bytes'
|
|
775
775
|
},
|
|
776
|
-
/**
|
|
777
|
-
* Lookup82: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
|
|
776
|
+
/**
|
|
777
|
+
* Lookup82: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
|
|
778
778
|
**/
|
|
779
779
|
FunctionlandFulaStorerData: {
|
|
780
780
|
poolId: 'u32',
|
|
@@ -782,8 +782,8 @@ var _default = exports.default = {
|
|
|
782
782
|
account: 'AccountId32',
|
|
783
783
|
manifestData: 'FunctionlandFulaManifestStorageData'
|
|
784
784
|
},
|
|
785
|
-
/**
|
|
786
|
-
* Lookup84: functionland_fula::ManifestStorageData
|
|
785
|
+
/**
|
|
786
|
+
* Lookup84: functionland_fula::ManifestStorageData
|
|
787
787
|
**/
|
|
788
788
|
FunctionlandFulaManifestStorageData: {
|
|
789
789
|
activeCycles: 'u16',
|
|
@@ -791,14 +791,14 @@ var _default = exports.default = {
|
|
|
791
791
|
activeDays: 'i32',
|
|
792
792
|
challengeState: 'FunctionlandFulaChallengeState'
|
|
793
793
|
},
|
|
794
|
-
/**
|
|
795
|
-
* Lookup85: functionland_fula::ChallengeState
|
|
794
|
+
/**
|
|
795
|
+
* Lookup85: functionland_fula::ChallengeState
|
|
796
796
|
**/
|
|
797
797
|
FunctionlandFulaChallengeState: {
|
|
798
798
|
_enum: ['Open', 'Successful', 'Failed']
|
|
799
799
|
},
|
|
800
|
-
/**
|
|
801
|
-
* Lookup86: fula_pool::pallet::Event<T>
|
|
800
|
+
/**
|
|
801
|
+
* Lookup86: fula_pool::pallet::Event<T>
|
|
802
802
|
**/
|
|
803
803
|
FulaPoolEvent: {
|
|
804
804
|
_enum: {
|
|
@@ -828,8 +828,8 @@ var _default = exports.default = {
|
|
|
828
828
|
}
|
|
829
829
|
}
|
|
830
830
|
},
|
|
831
|
-
/**
|
|
832
|
-
* Lookup87: frame_system::Phase
|
|
831
|
+
/**
|
|
832
|
+
* Lookup87: frame_system::Phase
|
|
833
833
|
**/
|
|
834
834
|
FrameSystemPhase: {
|
|
835
835
|
_enum: {
|
|
@@ -838,15 +838,15 @@ var _default = exports.default = {
|
|
|
838
838
|
Initialization: 'Null'
|
|
839
839
|
}
|
|
840
840
|
},
|
|
841
|
-
/**
|
|
842
|
-
* Lookup90: frame_system::LastRuntimeUpgradeInfo
|
|
841
|
+
/**
|
|
842
|
+
* Lookup90: frame_system::LastRuntimeUpgradeInfo
|
|
843
843
|
**/
|
|
844
844
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
845
845
|
specVersion: 'Compact<u32>',
|
|
846
846
|
specName: 'Text'
|
|
847
847
|
},
|
|
848
|
-
/**
|
|
849
|
-
* Lookup93: frame_system::pallet::Call<T>
|
|
848
|
+
/**
|
|
849
|
+
* Lookup93: frame_system::pallet::Call<T>
|
|
850
850
|
**/
|
|
851
851
|
FrameSystemCall: {
|
|
852
852
|
_enum: {
|
|
@@ -880,24 +880,24 @@ var _default = exports.default = {
|
|
|
880
880
|
}
|
|
881
881
|
}
|
|
882
882
|
},
|
|
883
|
-
/**
|
|
884
|
-
* Lookup96: frame_system::limits::BlockWeights
|
|
883
|
+
/**
|
|
884
|
+
* Lookup96: frame_system::limits::BlockWeights
|
|
885
885
|
**/
|
|
886
886
|
FrameSystemLimitsBlockWeights: {
|
|
887
887
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
888
888
|
maxBlock: 'SpWeightsWeightV2Weight',
|
|
889
889
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
|
890
890
|
},
|
|
891
|
-
/**
|
|
892
|
-
* Lookup97: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
891
|
+
/**
|
|
892
|
+
* Lookup97: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
893
893
|
**/
|
|
894
894
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
895
895
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
896
896
|
operational: 'FrameSystemLimitsWeightsPerClass',
|
|
897
897
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
|
898
898
|
},
|
|
899
|
-
/**
|
|
900
|
-
* Lookup98: frame_system::limits::WeightsPerClass
|
|
899
|
+
/**
|
|
900
|
+
* Lookup98: frame_system::limits::WeightsPerClass
|
|
901
901
|
**/
|
|
902
902
|
FrameSystemLimitsWeightsPerClass: {
|
|
903
903
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -905,29 +905,29 @@ var _default = exports.default = {
|
|
|
905
905
|
maxTotal: 'Option<SpWeightsWeightV2Weight>',
|
|
906
906
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
|
907
907
|
},
|
|
908
|
-
/**
|
|
909
|
-
* Lookup100: frame_system::limits::BlockLength
|
|
908
|
+
/**
|
|
909
|
+
* Lookup100: frame_system::limits::BlockLength
|
|
910
910
|
**/
|
|
911
911
|
FrameSystemLimitsBlockLength: {
|
|
912
912
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
|
913
913
|
},
|
|
914
|
-
/**
|
|
915
|
-
* Lookup101: frame_support::dispatch::PerDispatchClass<T>
|
|
914
|
+
/**
|
|
915
|
+
* Lookup101: frame_support::dispatch::PerDispatchClass<T>
|
|
916
916
|
**/
|
|
917
917
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
918
918
|
normal: 'u32',
|
|
919
919
|
operational: 'u32',
|
|
920
920
|
mandatory: 'u32'
|
|
921
921
|
},
|
|
922
|
-
/**
|
|
923
|
-
* Lookup102: sp_weights::RuntimeDbWeight
|
|
922
|
+
/**
|
|
923
|
+
* Lookup102: sp_weights::RuntimeDbWeight
|
|
924
924
|
**/
|
|
925
925
|
SpWeightsRuntimeDbWeight: {
|
|
926
926
|
read: 'u64',
|
|
927
927
|
write: 'u64'
|
|
928
928
|
},
|
|
929
|
-
/**
|
|
930
|
-
* Lookup103: sp_version::RuntimeVersion
|
|
929
|
+
/**
|
|
930
|
+
* Lookup103: sp_version::RuntimeVersion
|
|
931
931
|
**/
|
|
932
932
|
SpVersionRuntimeVersion: {
|
|
933
933
|
specName: 'Text',
|
|
@@ -939,14 +939,14 @@ var _default = exports.default = {
|
|
|
939
939
|
transactionVersion: 'u32',
|
|
940
940
|
stateVersion: 'u8'
|
|
941
941
|
},
|
|
942
|
-
/**
|
|
943
|
-
* Lookup108: frame_system::pallet::Error<T>
|
|
942
|
+
/**
|
|
943
|
+
* Lookup108: frame_system::pallet::Error<T>
|
|
944
944
|
**/
|
|
945
945
|
FrameSystemError: {
|
|
946
946
|
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
|
|
947
947
|
},
|
|
948
|
-
/**
|
|
949
|
-
* Lookup109: pallet_timestamp::pallet::Call<T>
|
|
948
|
+
/**
|
|
949
|
+
* Lookup109: pallet_timestamp::pallet::Call<T>
|
|
950
950
|
**/
|
|
951
951
|
PalletTimestampCall: {
|
|
952
952
|
_enum: {
|
|
@@ -955,8 +955,8 @@ var _default = exports.default = {
|
|
|
955
955
|
}
|
|
956
956
|
}
|
|
957
957
|
},
|
|
958
|
-
/**
|
|
959
|
-
* Lookup110: pallet_grandpa::StoredState<N>
|
|
958
|
+
/**
|
|
959
|
+
* Lookup110: pallet_grandpa::StoredState<N>
|
|
960
960
|
**/
|
|
961
961
|
PalletGrandpaStoredState: {
|
|
962
962
|
_enum: {
|
|
@@ -972,8 +972,8 @@ var _default = exports.default = {
|
|
|
972
972
|
}
|
|
973
973
|
}
|
|
974
974
|
},
|
|
975
|
-
/**
|
|
976
|
-
* Lookup111: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
975
|
+
/**
|
|
976
|
+
* Lookup111: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
977
977
|
**/
|
|
978
978
|
PalletGrandpaStoredPendingChange: {
|
|
979
979
|
scheduledAt: 'u32',
|
|
@@ -981,8 +981,8 @@ var _default = exports.default = {
|
|
|
981
981
|
nextAuthorities: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
|
|
982
982
|
forced: 'Option<u32>'
|
|
983
983
|
},
|
|
984
|
-
/**
|
|
985
|
-
* Lookup114: pallet_grandpa::pallet::Call<T>
|
|
984
|
+
/**
|
|
985
|
+
* Lookup114: pallet_grandpa::pallet::Call<T>
|
|
986
986
|
**/
|
|
987
987
|
PalletGrandpaCall: {
|
|
988
988
|
_enum: {
|
|
@@ -1000,15 +1000,15 @@ var _default = exports.default = {
|
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
|
1002
1002
|
},
|
|
1003
|
-
/**
|
|
1004
|
-
* Lookup115: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1003
|
+
/**
|
|
1004
|
+
* Lookup115: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1005
1005
|
**/
|
|
1006
1006
|
SpConsensusGrandpaEquivocationProof: {
|
|
1007
1007
|
setId: 'u64',
|
|
1008
1008
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
|
1009
1009
|
},
|
|
1010
|
-
/**
|
|
1011
|
-
* Lookup116: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1010
|
+
/**
|
|
1011
|
+
* Lookup116: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1012
1012
|
**/
|
|
1013
1013
|
SpConsensusGrandpaEquivocation: {
|
|
1014
1014
|
_enum: {
|
|
@@ -1016,8 +1016,8 @@ var _default = exports.default = {
|
|
|
1016
1016
|
Precommit: 'FinalityGrandpaEquivocationPrecommit'
|
|
1017
1017
|
}
|
|
1018
1018
|
},
|
|
1019
|
-
/**
|
|
1020
|
-
* Lookup117: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1019
|
+
/**
|
|
1020
|
+
* Lookup117: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1021
1021
|
**/
|
|
1022
1022
|
FinalityGrandpaEquivocationPrevote: {
|
|
1023
1023
|
roundNumber: 'u64',
|
|
@@ -1025,23 +1025,23 @@ var _default = exports.default = {
|
|
|
1025
1025
|
first: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
1026
1026
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
|
1027
1027
|
},
|
|
1028
|
-
/**
|
|
1029
|
-
* Lookup118: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1028
|
+
/**
|
|
1029
|
+
* Lookup118: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1030
1030
|
**/
|
|
1031
1031
|
FinalityGrandpaPrevote: {
|
|
1032
1032
|
targetHash: 'H256',
|
|
1033
1033
|
targetNumber: 'u32'
|
|
1034
1034
|
},
|
|
1035
|
-
/**
|
|
1036
|
-
* Lookup119: sp_consensus_grandpa::app::Signature
|
|
1035
|
+
/**
|
|
1036
|
+
* Lookup119: sp_consensus_grandpa::app::Signature
|
|
1037
1037
|
**/
|
|
1038
1038
|
SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
|
|
1039
|
-
/**
|
|
1040
|
-
* Lookup120: sp_core::ed25519::Signature
|
|
1039
|
+
/**
|
|
1040
|
+
* Lookup120: sp_core::ed25519::Signature
|
|
1041
1041
|
**/
|
|
1042
1042
|
SpCoreEd25519Signature: '[u8;64]',
|
|
1043
|
-
/**
|
|
1044
|
-
* Lookup123: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1043
|
+
/**
|
|
1044
|
+
* Lookup123: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1045
1045
|
**/
|
|
1046
1046
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1047
1047
|
roundNumber: 'u64',
|
|
@@ -1049,53 +1049,53 @@ var _default = exports.default = {
|
|
|
1049
1049
|
first: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
1050
1050
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
|
1051
1051
|
},
|
|
1052
|
-
/**
|
|
1053
|
-
* Lookup124: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1052
|
+
/**
|
|
1053
|
+
* Lookup124: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1054
1054
|
**/
|
|
1055
1055
|
FinalityGrandpaPrecommit: {
|
|
1056
1056
|
targetHash: 'H256',
|
|
1057
1057
|
targetNumber: 'u32'
|
|
1058
1058
|
},
|
|
1059
|
-
/**
|
|
1060
|
-
* Lookup126: sp_core::Void
|
|
1059
|
+
/**
|
|
1060
|
+
* Lookup126: sp_core::Void
|
|
1061
1061
|
**/
|
|
1062
1062
|
SpCoreVoid: 'Null',
|
|
1063
|
-
/**
|
|
1064
|
-
* Lookup127: pallet_grandpa::pallet::Error<T>
|
|
1063
|
+
/**
|
|
1064
|
+
* Lookup127: pallet_grandpa::pallet::Error<T>
|
|
1065
1065
|
**/
|
|
1066
1066
|
PalletGrandpaError: {
|
|
1067
1067
|
_enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
|
|
1068
1068
|
},
|
|
1069
|
-
/**
|
|
1070
|
-
* Lookup129: pallet_balances::types::BalanceLock<Balance>
|
|
1069
|
+
/**
|
|
1070
|
+
* Lookup129: pallet_balances::types::BalanceLock<Balance>
|
|
1071
1071
|
**/
|
|
1072
1072
|
PalletBalancesBalanceLock: {
|
|
1073
1073
|
id: '[u8;8]',
|
|
1074
1074
|
amount: 'u128',
|
|
1075
1075
|
reasons: 'PalletBalancesReasons'
|
|
1076
1076
|
},
|
|
1077
|
-
/**
|
|
1078
|
-
* Lookup130: pallet_balances::types::Reasons
|
|
1077
|
+
/**
|
|
1078
|
+
* Lookup130: pallet_balances::types::Reasons
|
|
1079
1079
|
**/
|
|
1080
1080
|
PalletBalancesReasons: {
|
|
1081
1081
|
_enum: ['Fee', 'Misc', 'All']
|
|
1082
1082
|
},
|
|
1083
|
-
/**
|
|
1084
|
-
* Lookup133: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1083
|
+
/**
|
|
1084
|
+
* Lookup133: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1085
1085
|
**/
|
|
1086
1086
|
PalletBalancesReserveData: {
|
|
1087
1087
|
id: '[u8;8]',
|
|
1088
1088
|
amount: 'u128'
|
|
1089
1089
|
},
|
|
1090
|
-
/**
|
|
1091
|
-
* Lookup136: pallet_balances::types::IdAmount<Id, Balance>
|
|
1090
|
+
/**
|
|
1091
|
+
* Lookup136: pallet_balances::types::IdAmount<Id, Balance>
|
|
1092
1092
|
**/
|
|
1093
1093
|
PalletBalancesIdAmount: {
|
|
1094
1094
|
id: 'Null',
|
|
1095
1095
|
amount: 'u128'
|
|
1096
1096
|
},
|
|
1097
|
-
/**
|
|
1098
|
-
* Lookup138: pallet_balances::pallet::Call<T, I>
|
|
1097
|
+
/**
|
|
1098
|
+
* Lookup138: pallet_balances::pallet::Call<T, I>
|
|
1099
1099
|
**/
|
|
1100
1100
|
PalletBalancesCall: {
|
|
1101
1101
|
_enum: {
|
|
@@ -1138,20 +1138,20 @@ var _default = exports.default = {
|
|
|
1138
1138
|
}
|
|
1139
1139
|
}
|
|
1140
1140
|
},
|
|
1141
|
-
/**
|
|
1142
|
-
* Lookup143: pallet_balances::pallet::Error<T, I>
|
|
1141
|
+
/**
|
|
1142
|
+
* Lookup143: pallet_balances::pallet::Error<T, I>
|
|
1143
1143
|
**/
|
|
1144
1144
|
PalletBalancesError: {
|
|
1145
1145
|
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
|
|
1146
1146
|
},
|
|
1147
|
-
/**
|
|
1148
|
-
* Lookup145: pallet_transaction_payment::Releases
|
|
1147
|
+
/**
|
|
1148
|
+
* Lookup145: pallet_transaction_payment::Releases
|
|
1149
1149
|
**/
|
|
1150
1150
|
PalletTransactionPaymentReleases: {
|
|
1151
1151
|
_enum: ['V1Ancient', 'V2']
|
|
1152
1152
|
},
|
|
1153
|
-
/**
|
|
1154
|
-
* Lookup146: pallet_sudo::pallet::Call<T>
|
|
1153
|
+
/**
|
|
1154
|
+
* Lookup146: pallet_sudo::pallet::Call<T>
|
|
1155
1155
|
**/
|
|
1156
1156
|
PalletSudoCall: {
|
|
1157
1157
|
_enum: {
|
|
@@ -1174,8 +1174,8 @@ var _default = exports.default = {
|
|
|
1174
1174
|
}
|
|
1175
1175
|
}
|
|
1176
1176
|
},
|
|
1177
|
-
/**
|
|
1178
|
-
* Lookup148: pallet_scheduler::pallet::Call<T>
|
|
1177
|
+
/**
|
|
1178
|
+
* Lookup148: pallet_scheduler::pallet::Call<T>
|
|
1179
1179
|
**/
|
|
1180
1180
|
PalletSchedulerCall: {
|
|
1181
1181
|
_enum: {
|
|
@@ -1214,8 +1214,8 @@ var _default = exports.default = {
|
|
|
1214
1214
|
}
|
|
1215
1215
|
}
|
|
1216
1216
|
},
|
|
1217
|
-
/**
|
|
1218
|
-
* Lookup150: pallet_collective::pallet::Call<T, I>
|
|
1217
|
+
/**
|
|
1218
|
+
* Lookup150: pallet_collective::pallet::Call<T, I>
|
|
1219
1219
|
**/
|
|
1220
1220
|
PalletCollectiveCall: {
|
|
1221
1221
|
_enum: {
|
|
@@ -1250,8 +1250,8 @@ var _default = exports.default = {
|
|
|
1250
1250
|
}
|
|
1251
1251
|
}
|
|
1252
1252
|
},
|
|
1253
|
-
/**
|
|
1254
|
-
* Lookup151: sugarfunge_validator_set::pallet::Call<T>
|
|
1253
|
+
/**
|
|
1254
|
+
* Lookup151: sugarfunge_validator_set::pallet::Call<T>
|
|
1255
1255
|
**/
|
|
1256
1256
|
SugarfungeValidatorSetCall: {
|
|
1257
1257
|
_enum: {
|
|
@@ -1266,8 +1266,8 @@ var _default = exports.default = {
|
|
|
1266
1266
|
}
|
|
1267
1267
|
}
|
|
1268
1268
|
},
|
|
1269
|
-
/**
|
|
1270
|
-
* Lookup152: pallet_session::pallet::Call<T>
|
|
1269
|
+
/**
|
|
1270
|
+
* Lookup152: pallet_session::pallet::Call<T>
|
|
1271
1271
|
**/
|
|
1272
1272
|
PalletSessionCall: {
|
|
1273
1273
|
_enum: {
|
|
@@ -1281,23 +1281,23 @@ var _default = exports.default = {
|
|
|
1281
1281
|
purge_keys: 'Null'
|
|
1282
1282
|
}
|
|
1283
1283
|
},
|
|
1284
|
-
/**
|
|
1285
|
-
* Lookup153: sugarfunge_runtime::opaque::SessionKeys
|
|
1284
|
+
/**
|
|
1285
|
+
* Lookup153: sugarfunge_runtime::opaque::SessionKeys
|
|
1286
1286
|
**/
|
|
1287
1287
|
SugarfungeRuntimeOpaqueSessionKeys: {
|
|
1288
1288
|
aura: 'SpConsensusAuraSr25519AppSr25519Public',
|
|
1289
1289
|
grandpa: 'SpConsensusGrandpaAppPublic'
|
|
1290
1290
|
},
|
|
1291
|
-
/**
|
|
1292
|
-
* Lookup154: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
1291
|
+
/**
|
|
1292
|
+
* Lookup154: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
1293
1293
|
**/
|
|
1294
1294
|
SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
|
|
1295
|
-
/**
|
|
1296
|
-
* Lookup155: sp_core::sr25519::Public
|
|
1295
|
+
/**
|
|
1296
|
+
* Lookup155: sp_core::sr25519::Public
|
|
1297
1297
|
**/
|
|
1298
1298
|
SpCoreSr25519Public: '[u8;32]',
|
|
1299
|
-
/**
|
|
1300
|
-
* Lookup156: sugarfunge_asset::pallet::Call<T>
|
|
1299
|
+
/**
|
|
1300
|
+
* Lookup156: sugarfunge_asset::pallet::Call<T>
|
|
1301
1301
|
**/
|
|
1302
1302
|
SugarfungeAssetCall: {
|
|
1303
1303
|
_enum: {
|
|
@@ -1360,8 +1360,8 @@ var _default = exports.default = {
|
|
|
1360
1360
|
}
|
|
1361
1361
|
}
|
|
1362
1362
|
},
|
|
1363
|
-
/**
|
|
1364
|
-
* Lookup159: sugarfunge_dao::pallet::Call<T>
|
|
1363
|
+
/**
|
|
1364
|
+
* Lookup159: sugarfunge_dao::pallet::Call<T>
|
|
1365
1365
|
**/
|
|
1366
1366
|
SugarfungeDaoCall: {
|
|
1367
1367
|
_enum: {
|
|
@@ -1371,8 +1371,8 @@ var _default = exports.default = {
|
|
|
1371
1371
|
cause_error: 'Null'
|
|
1372
1372
|
}
|
|
1373
1373
|
},
|
|
1374
|
-
/**
|
|
1375
|
-
* Lookup160: sugarfunge_bundle::pallet::Call<T>
|
|
1374
|
+
/**
|
|
1375
|
+
* Lookup160: sugarfunge_bundle::pallet::Call<T>
|
|
1376
1376
|
**/
|
|
1377
1377
|
SugarfungeBundleCall: {
|
|
1378
1378
|
_enum: {
|
|
@@ -1397,8 +1397,8 @@ var _default = exports.default = {
|
|
|
1397
1397
|
}
|
|
1398
1398
|
}
|
|
1399
1399
|
},
|
|
1400
|
-
/**
|
|
1401
|
-
* Lookup168: sugarfunge_bag::pallet::Call<T>
|
|
1400
|
+
/**
|
|
1401
|
+
* Lookup168: sugarfunge_bag::pallet::Call<T>
|
|
1402
1402
|
**/
|
|
1403
1403
|
SugarfungeBagCall: {
|
|
1404
1404
|
_enum: {
|
|
@@ -1423,8 +1423,8 @@ var _default = exports.default = {
|
|
|
1423
1423
|
}
|
|
1424
1424
|
}
|
|
1425
1425
|
},
|
|
1426
|
-
/**
|
|
1427
|
-
* Lookup169: sugarfunge_exgine::pallet::Call<T>
|
|
1426
|
+
/**
|
|
1427
|
+
* Lookup169: sugarfunge_exgine::pallet::Call<T>
|
|
1428
1428
|
**/
|
|
1429
1429
|
SugarfungeExgineCall: {
|
|
1430
1430
|
_enum: {
|
|
@@ -1434,8 +1434,8 @@ var _default = exports.default = {
|
|
|
1434
1434
|
cause_error: 'Null'
|
|
1435
1435
|
}
|
|
1436
1436
|
},
|
|
1437
|
-
/**
|
|
1438
|
-
* Lookup170: sugarfunge_market::pallet::Call<T>
|
|
1437
|
+
/**
|
|
1438
|
+
* Lookup170: sugarfunge_market::pallet::Call<T>
|
|
1439
1439
|
**/
|
|
1440
1440
|
SugarfungeMarketCall: {
|
|
1441
1441
|
_enum: {
|
|
@@ -1459,8 +1459,8 @@ var _default = exports.default = {
|
|
|
1459
1459
|
}
|
|
1460
1460
|
}
|
|
1461
1461
|
},
|
|
1462
|
-
/**
|
|
1463
|
-
* Lookup173: functionland_fula::pallet::Call<T>
|
|
1462
|
+
/**
|
|
1463
|
+
* Lookup173: functionland_fula::pallet::Call<T>
|
|
1464
1464
|
**/
|
|
1465
1465
|
FunctionlandFulaCall: {
|
|
1466
1466
|
_enum: {
|
|
@@ -1547,8 +1547,8 @@ var _default = exports.default = {
|
|
|
1547
1547
|
}
|
|
1548
1548
|
}
|
|
1549
1549
|
},
|
|
1550
|
-
/**
|
|
1551
|
-
* Lookup177: fula_pool::pallet::Call<T>
|
|
1550
|
+
/**
|
|
1551
|
+
* Lookup177: fula_pool::pallet::Call<T>
|
|
1552
1552
|
**/
|
|
1553
1553
|
FulaPoolCall: {
|
|
1554
1554
|
_enum: {
|
|
@@ -1575,14 +1575,14 @@ var _default = exports.default = {
|
|
|
1575
1575
|
}
|
|
1576
1576
|
}
|
|
1577
1577
|
},
|
|
1578
|
-
/**
|
|
1579
|
-
* Lookup179: pallet_sudo::pallet::Error<T>
|
|
1578
|
+
/**
|
|
1579
|
+
* Lookup179: pallet_sudo::pallet::Error<T>
|
|
1580
1580
|
**/
|
|
1581
1581
|
PalletSudoError: {
|
|
1582
1582
|
_enum: ['RequireSudo']
|
|
1583
1583
|
},
|
|
1584
|
-
/**
|
|
1585
|
-
* Lookup182: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
1584
|
+
/**
|
|
1585
|
+
* Lookup182: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
1586
1586
|
**/
|
|
1587
1587
|
PalletSchedulerScheduled: {
|
|
1588
1588
|
maybeId: 'Option<[u8;32]>',
|
|
@@ -1591,8 +1591,8 @@ var _default = exports.default = {
|
|
|
1591
1591
|
maybePeriodic: 'Option<(u32,u32)>',
|
|
1592
1592
|
origin: 'SugarfungeRuntimeOriginCaller'
|
|
1593
1593
|
},
|
|
1594
|
-
/**
|
|
1595
|
-
* Lookup183: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
|
|
1594
|
+
/**
|
|
1595
|
+
* Lookup183: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
|
|
1596
1596
|
**/
|
|
1597
1597
|
FrameSupportPreimagesBounded: {
|
|
1598
1598
|
_enum: {
|
|
@@ -1612,8 +1612,8 @@ var _default = exports.default = {
|
|
|
1612
1612
|
}
|
|
1613
1613
|
}
|
|
1614
1614
|
},
|
|
1615
|
-
/**
|
|
1616
|
-
* Lookup185: sugarfunge_runtime::OriginCaller
|
|
1615
|
+
/**
|
|
1616
|
+
* Lookup185: sugarfunge_runtime::OriginCaller
|
|
1617
1617
|
**/
|
|
1618
1618
|
SugarfungeRuntimeOriginCaller: {
|
|
1619
1619
|
_enum: {
|
|
@@ -1628,8 +1628,8 @@ var _default = exports.default = {
|
|
|
1628
1628
|
Council: 'PalletCollectiveRawOrigin'
|
|
1629
1629
|
}
|
|
1630
1630
|
},
|
|
1631
|
-
/**
|
|
1632
|
-
* Lookup186: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1631
|
+
/**
|
|
1632
|
+
* Lookup186: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1633
1633
|
**/
|
|
1634
1634
|
FrameSupportDispatchRawOrigin: {
|
|
1635
1635
|
_enum: {
|
|
@@ -1638,8 +1638,8 @@ var _default = exports.default = {
|
|
|
1638
1638
|
None: 'Null'
|
|
1639
1639
|
}
|
|
1640
1640
|
},
|
|
1641
|
-
/**
|
|
1642
|
-
* Lookup187: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
1641
|
+
/**
|
|
1642
|
+
* Lookup187: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
1643
1643
|
**/
|
|
1644
1644
|
PalletCollectiveRawOrigin: {
|
|
1645
1645
|
_enum: {
|
|
@@ -1648,14 +1648,14 @@ var _default = exports.default = {
|
|
|
1648
1648
|
_Phantom: 'Null'
|
|
1649
1649
|
}
|
|
1650
1650
|
},
|
|
1651
|
-
/**
|
|
1652
|
-
* Lookup189: pallet_scheduler::pallet::Error<T>
|
|
1651
|
+
/**
|
|
1652
|
+
* Lookup189: pallet_scheduler::pallet::Error<T>
|
|
1653
1653
|
**/
|
|
1654
1654
|
PalletSchedulerError: {
|
|
1655
1655
|
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
|
|
1656
1656
|
},
|
|
1657
|
-
/**
|
|
1658
|
-
* Lookup191: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
1657
|
+
/**
|
|
1658
|
+
* Lookup191: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
1659
1659
|
**/
|
|
1660
1660
|
PalletCollectiveVotes: {
|
|
1661
1661
|
index: 'u32',
|
|
@@ -1664,57 +1664,57 @@ var _default = exports.default = {
|
|
|
1664
1664
|
nays: 'Vec<AccountId32>',
|
|
1665
1665
|
end: 'u32'
|
|
1666
1666
|
},
|
|
1667
|
-
/**
|
|
1668
|
-
* Lookup192: pallet_collective::pallet::Error<T, I>
|
|
1667
|
+
/**
|
|
1668
|
+
* Lookup192: pallet_collective::pallet::Error<T, I>
|
|
1669
1669
|
**/
|
|
1670
1670
|
PalletCollectiveError: {
|
|
1671
1671
|
_enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
|
|
1672
1672
|
},
|
|
1673
|
-
/**
|
|
1674
|
-
* Lookup194: sugarfunge_validator_set::pallet::Error<T>
|
|
1673
|
+
/**
|
|
1674
|
+
* Lookup194: sugarfunge_validator_set::pallet::Error<T>
|
|
1675
1675
|
**/
|
|
1676
1676
|
SugarfungeValidatorSetError: {
|
|
1677
1677
|
_enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
|
|
1678
1678
|
},
|
|
1679
|
-
/**
|
|
1680
|
-
* Lookup198: sp_core::crypto::KeyTypeId
|
|
1679
|
+
/**
|
|
1680
|
+
* Lookup198: sp_core::crypto::KeyTypeId
|
|
1681
1681
|
**/
|
|
1682
1682
|
SpCoreCryptoKeyTypeId: '[u8;4]',
|
|
1683
|
-
/**
|
|
1684
|
-
* Lookup199: pallet_session::pallet::Error<T>
|
|
1683
|
+
/**
|
|
1684
|
+
* Lookup199: pallet_session::pallet::Error<T>
|
|
1685
1685
|
**/
|
|
1686
1686
|
PalletSessionError: {
|
|
1687
1687
|
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
|
|
1688
1688
|
},
|
|
1689
|
-
/**
|
|
1690
|
-
* Lookup200: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1689
|
+
/**
|
|
1690
|
+
* Lookup200: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1691
1691
|
**/
|
|
1692
1692
|
SugarfungeAssetClass: {
|
|
1693
1693
|
owner: 'AccountId32',
|
|
1694
1694
|
metadata: 'Bytes'
|
|
1695
1695
|
},
|
|
1696
|
-
/**
|
|
1697
|
-
* Lookup202: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1696
|
+
/**
|
|
1697
|
+
* Lookup202: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1698
1698
|
**/
|
|
1699
1699
|
SugarfungeAssetAsset: {
|
|
1700
1700
|
classId: 'u64',
|
|
1701
1701
|
creator: 'AccountId32',
|
|
1702
1702
|
metadata: 'Bytes'
|
|
1703
1703
|
},
|
|
1704
|
-
/**
|
|
1705
|
-
* Lookup204: sugarfunge_asset::pallet::Error<T>
|
|
1704
|
+
/**
|
|
1705
|
+
* Lookup204: sugarfunge_asset::pallet::Error<T>
|
|
1706
1706
|
**/
|
|
1707
1707
|
SugarfungeAssetError: {
|
|
1708
1708
|
_enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
|
|
1709
1709
|
},
|
|
1710
|
-
/**
|
|
1711
|
-
* Lookup205: sugarfunge_dao::pallet::Error<T>
|
|
1710
|
+
/**
|
|
1711
|
+
* Lookup205: sugarfunge_dao::pallet::Error<T>
|
|
1712
1712
|
**/
|
|
1713
1713
|
SugarfungeDaoError: {
|
|
1714
1714
|
_enum: ['NoneValue', 'StorageOverflow']
|
|
1715
1715
|
},
|
|
1716
|
-
/**
|
|
1717
|
-
* Lookup206: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1716
|
+
/**
|
|
1717
|
+
* Lookup206: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1718
1718
|
**/
|
|
1719
1719
|
SugarfungeBundleBundle: {
|
|
1720
1720
|
creator: 'AccountId32',
|
|
@@ -1724,25 +1724,25 @@ var _default = exports.default = {
|
|
|
1724
1724
|
schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
|
|
1725
1725
|
vault: 'AccountId32'
|
|
1726
1726
|
},
|
|
1727
|
-
/**
|
|
1728
|
-
* Lookup207: frame_support::PalletId
|
|
1727
|
+
/**
|
|
1728
|
+
* Lookup207: frame_support::PalletId
|
|
1729
1729
|
**/
|
|
1730
1730
|
FrameSupportPalletId: '[u8;8]',
|
|
1731
|
-
/**
|
|
1732
|
-
* Lookup208: sugarfunge_bundle::pallet::Error<T>
|
|
1731
|
+
/**
|
|
1732
|
+
* Lookup208: sugarfunge_bundle::pallet::Error<T>
|
|
1733
1733
|
**/
|
|
1734
1734
|
SugarfungeBundleError: {
|
|
1735
1735
|
_enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance', 'AssetExists', 'AccountNotOwner']
|
|
1736
1736
|
},
|
|
1737
|
-
/**
|
|
1738
|
-
* Lookup209: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
|
|
1737
|
+
/**
|
|
1738
|
+
* Lookup209: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
|
|
1739
1739
|
**/
|
|
1740
1740
|
SugarfungeBagBagClass: {
|
|
1741
1741
|
operator: 'AccountId32',
|
|
1742
1742
|
classId: 'u64'
|
|
1743
1743
|
},
|
|
1744
|
-
/**
|
|
1745
|
-
* Lookup210: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
1744
|
+
/**
|
|
1745
|
+
* Lookup210: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
1746
1746
|
**/
|
|
1747
1747
|
SugarfungeBagBag: {
|
|
1748
1748
|
operator: 'AccountId32',
|
|
@@ -1750,33 +1750,33 @@ var _default = exports.default = {
|
|
|
1750
1750
|
assetId: 'u64',
|
|
1751
1751
|
totalShares: 'u128'
|
|
1752
1752
|
},
|
|
1753
|
-
/**
|
|
1754
|
-
* Lookup211: sugarfunge_bag::pallet::Error<T>
|
|
1753
|
+
/**
|
|
1754
|
+
* Lookup211: sugarfunge_bag::pallet::Error<T>
|
|
1755
1755
|
**/
|
|
1756
1756
|
SugarfungeBagError: {
|
|
1757
1757
|
_enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
|
|
1758
1758
|
},
|
|
1759
|
-
/**
|
|
1760
|
-
* Lookup212: sugarfunge_exgine::pallet::Error<T>
|
|
1759
|
+
/**
|
|
1760
|
+
* Lookup212: sugarfunge_exgine::pallet::Error<T>
|
|
1761
1761
|
**/
|
|
1762
1762
|
SugarfungeExgineError: {
|
|
1763
1763
|
_enum: ['NoneValue', 'StorageOverflow']
|
|
1764
1764
|
},
|
|
1765
|
-
/**
|
|
1766
|
-
* Lookup213: sugarfunge_market::Market<sp_core::crypto::AccountId32>
|
|
1765
|
+
/**
|
|
1766
|
+
* Lookup213: sugarfunge_market::Market<sp_core::crypto::AccountId32>
|
|
1767
1767
|
**/
|
|
1768
1768
|
SugarfungeMarketMarket: {
|
|
1769
1769
|
owner: 'AccountId32',
|
|
1770
1770
|
vault: 'AccountId32'
|
|
1771
1771
|
},
|
|
1772
|
-
/**
|
|
1773
|
-
* Lookup215: sugarfunge_market::pallet::Error<T>
|
|
1772
|
+
/**
|
|
1773
|
+
* Lookup215: sugarfunge_market::pallet::Error<T>
|
|
1774
1774
|
**/
|
|
1775
1775
|
SugarfungeMarketError: {
|
|
1776
1776
|
_enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
|
|
1777
1777
|
},
|
|
1778
|
-
/**
|
|
1779
|
-
* Lookup217: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1778
|
+
/**
|
|
1779
|
+
* Lookup217: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1780
1780
|
**/
|
|
1781
1781
|
FunctionlandFulaManifest: {
|
|
1782
1782
|
_alias: {
|
|
@@ -1786,29 +1786,29 @@ var _default = exports.default = {
|
|
|
1786
1786
|
manifestMetadata: 'Bytes',
|
|
1787
1787
|
size_: 'Option<u64>'
|
|
1788
1788
|
},
|
|
1789
|
-
/**
|
|
1790
|
-
* Lookup220: functionland_fula::Challenge<sp_core::crypto::AccountId32>
|
|
1789
|
+
/**
|
|
1790
|
+
* Lookup220: functionland_fula::Challenge<sp_core::crypto::AccountId32>
|
|
1791
1791
|
**/
|
|
1792
1792
|
FunctionlandFulaChallenge: {
|
|
1793
1793
|
challenger: 'AccountId32',
|
|
1794
1794
|
challengeState: 'FunctionlandFulaChallengeState'
|
|
1795
1795
|
},
|
|
1796
|
-
/**
|
|
1797
|
-
* Lookup221: functionland_fula::ClaimData
|
|
1796
|
+
/**
|
|
1797
|
+
* Lookup221: functionland_fula::ClaimData
|
|
1798
1798
|
**/
|
|
1799
1799
|
FunctionlandFulaClaimData: {
|
|
1800
1800
|
mintedLaborTokens: 'u128',
|
|
1801
1801
|
expectedLaborTokens: 'u128',
|
|
1802
1802
|
challengeTokens: 'u128'
|
|
1803
1803
|
},
|
|
1804
|
-
/**
|
|
1805
|
-
* Lookup222: functionland_fula::pallet::Error<T>
|
|
1804
|
+
/**
|
|
1805
|
+
* Lookup222: functionland_fula::pallet::Error<T>
|
|
1806
1806
|
**/
|
|
1807
1807
|
FunctionlandFulaError: {
|
|
1808
1808
|
_enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'AccountNotUploader', 'AccountNotFound', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored', 'InvalidArrayLength', 'ErrorPickingCIDToChallenge', 'ErrorPickingAccountToChallenge', 'ManifestStorerDataNotFound', 'NoFileSizeProvided', 'NoAccountsToChallenge']
|
|
1809
1809
|
},
|
|
1810
|
-
/**
|
|
1811
|
-
* Lookup223: fula_pool::Pool<T>
|
|
1810
|
+
/**
|
|
1811
|
+
* Lookup223: fula_pool::Pool<T>
|
|
1812
1812
|
**/
|
|
1813
1813
|
FulaPoolPool: {
|
|
1814
1814
|
name: 'Bytes',
|
|
@@ -1818,30 +1818,30 @@ var _default = exports.default = {
|
|
|
1818
1818
|
requestNumber: 'u8',
|
|
1819
1819
|
region: 'Bytes'
|
|
1820
1820
|
},
|
|
1821
|
-
/**
|
|
1822
|
-
* Lookup226: fula_pool::PoolRequest<T>
|
|
1821
|
+
/**
|
|
1822
|
+
* Lookup226: fula_pool::PoolRequest<T>
|
|
1823
1823
|
**/
|
|
1824
1824
|
FulaPoolPoolRequest: {
|
|
1825
1825
|
voted: 'Vec<AccountId32>',
|
|
1826
1826
|
positiveVotes: 'u16',
|
|
1827
1827
|
peerId: 'Bytes'
|
|
1828
1828
|
},
|
|
1829
|
-
/**
|
|
1830
|
-
* Lookup227: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1829
|
+
/**
|
|
1830
|
+
* Lookup227: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1831
1831
|
**/
|
|
1832
1832
|
FulaPoolUser: {
|
|
1833
1833
|
poolId: 'Option<u32>',
|
|
1834
1834
|
requestPoolId: 'Option<u32>',
|
|
1835
1835
|
peerId: 'Bytes'
|
|
1836
1836
|
},
|
|
1837
|
-
/**
|
|
1838
|
-
* Lookup228: fula_pool::pallet::Error<T>
|
|
1837
|
+
/**
|
|
1838
|
+
* Lookup228: fula_pool::pallet::Error<T>
|
|
1839
1839
|
**/
|
|
1840
1840
|
FulaPoolError: {
|
|
1841
1841
|
_enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
|
|
1842
1842
|
},
|
|
1843
|
-
/**
|
|
1844
|
-
* Lookup230: sp_runtime::MultiSignature
|
|
1843
|
+
/**
|
|
1844
|
+
* Lookup230: sp_runtime::MultiSignature
|
|
1845
1845
|
**/
|
|
1846
1846
|
SpRuntimeMultiSignature: {
|
|
1847
1847
|
_enum: {
|
|
@@ -1850,44 +1850,44 @@ var _default = exports.default = {
|
|
|
1850
1850
|
Ecdsa: 'SpCoreEcdsaSignature'
|
|
1851
1851
|
}
|
|
1852
1852
|
},
|
|
1853
|
-
/**
|
|
1854
|
-
* Lookup231: sp_core::sr25519::Signature
|
|
1853
|
+
/**
|
|
1854
|
+
* Lookup231: sp_core::sr25519::Signature
|
|
1855
1855
|
**/
|
|
1856
1856
|
SpCoreSr25519Signature: '[u8;64]',
|
|
1857
|
-
/**
|
|
1858
|
-
* Lookup232: sp_core::ecdsa::Signature
|
|
1857
|
+
/**
|
|
1858
|
+
* Lookup232: sp_core::ecdsa::Signature
|
|
1859
1859
|
**/
|
|
1860
1860
|
SpCoreEcdsaSignature: '[u8;65]',
|
|
1861
|
-
/**
|
|
1862
|
-
* Lookup235: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
1861
|
+
/**
|
|
1862
|
+
* Lookup235: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
1863
1863
|
**/
|
|
1864
1864
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
1865
|
-
/**
|
|
1866
|
-
* Lookup236: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
1865
|
+
/**
|
|
1866
|
+
* Lookup236: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
1867
1867
|
**/
|
|
1868
1868
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
1869
|
-
/**
|
|
1870
|
-
* Lookup237: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
1869
|
+
/**
|
|
1870
|
+
* Lookup237: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
1871
1871
|
**/
|
|
1872
1872
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
1873
|
-
/**
|
|
1874
|
-
* Lookup238: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
1873
|
+
/**
|
|
1874
|
+
* Lookup238: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
1875
1875
|
**/
|
|
1876
1876
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
1877
|
-
/**
|
|
1878
|
-
* Lookup241: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
1877
|
+
/**
|
|
1878
|
+
* Lookup241: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
1879
1879
|
**/
|
|
1880
1880
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
1881
|
-
/**
|
|
1882
|
-
* Lookup242: frame_system::extensions::check_weight::CheckWeight<T>
|
|
1881
|
+
/**
|
|
1882
|
+
* Lookup242: frame_system::extensions::check_weight::CheckWeight<T>
|
|
1883
1883
|
**/
|
|
1884
1884
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
1885
|
-
/**
|
|
1886
|
-
* Lookup243: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
1885
|
+
/**
|
|
1886
|
+
* Lookup243: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
1887
1887
|
**/
|
|
1888
1888
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
1889
|
-
/**
|
|
1890
|
-
* Lookup244: sugarfunge_runtime::Runtime
|
|
1889
|
+
/**
|
|
1890
|
+
* Lookup244: sugarfunge_runtime::Runtime
|
|
1891
1891
|
**/
|
|
1892
1892
|
SugarfungeRuntimeRuntime: 'Null'
|
|
1893
1893
|
};
|