@functionland/react-native-fula 1.14.7 → 1.19.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 -214
- package/android/build.gradle +110 -110
- 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 +1435 -1466
- 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 +197 -199
- package/ios/Fula.swift +1221 -1221
- package/ios/UserDataHelper.swift +143 -143
- package/lib/commonjs/index.js +2 -2
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-errors.js +4 -0
- package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -0
- package/lib/commonjs/interfaces/augment-api-rpc.js +4 -0
- package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -0
- package/lib/commonjs/interfaces/augment-api-runtime.js +4 -0
- package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -0
- package/lib/commonjs/interfaces/augment-api.js +10 -0
- package/lib/commonjs/interfaces/augment-api.js.map +1 -0
- package/lib/commonjs/interfaces/augment-types.js +4 -0
- package/lib/commonjs/interfaces/augment-types.js.map +1 -0
- package/lib/commonjs/interfaces/fulaNativeModule.js +1 -2
- package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/commonjs/interfaces/index.js +6 -0
- package/lib/commonjs/interfaces/index.js.map +1 -0
- package/lib/commonjs/interfaces/{api-lookup.js → lookup.js} +623 -382
- package/lib/commonjs/interfaces/lookup.js.map +1 -0
- package/lib/commonjs/interfaces/registry.js +4 -0
- package/lib/commonjs/interfaces/registry.js.map +1 -0
- package/lib/commonjs/interfaces/types-lookup.js +4 -0
- package/lib/commonjs/interfaces/types-lookup.js.map +1 -0
- package/lib/commonjs/interfaces/types.js +4 -0
- package/lib/commonjs/interfaces/types.js.map +1 -0
- package/lib/commonjs/protocols/blockchain.js +123 -76
- package/lib/commonjs/protocols/blockchain.js.map +1 -1
- package/lib/commonjs/protocols/chain-api.js +151 -37
- package/lib/commonjs/protocols/chain-api.js.map +1 -1
- package/lib/commonjs/protocols/fula.js +195 -99
- package/lib/commonjs/protocols/fula.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-errors.js +9 -0
- package/lib/module/interfaces/augment-api-errors.js.map +1 -0
- package/lib/module/interfaces/augment-api-rpc.js +9 -0
- package/lib/module/interfaces/augment-api-rpc.js.map +1 -0
- package/lib/module/interfaces/augment-api-runtime.js +9 -0
- package/lib/module/interfaces/augment-api-runtime.js.map +1 -0
- package/lib/module/interfaces/augment-api.js +11 -0
- package/lib/module/interfaces/augment-api.js.map +1 -0
- package/lib/module/interfaces/augment-types.js +9 -0
- package/lib/module/interfaces/augment-types.js.map +1 -0
- package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/module/interfaces/index.js +5 -0
- package/lib/module/interfaces/index.js.map +1 -0
- package/lib/module/interfaces/{api-lookup.js → lookup.js} +622 -380
- package/lib/module/interfaces/lookup.js.map +1 -0
- package/lib/module/interfaces/registry.js +9 -0
- package/lib/module/interfaces/registry.js.map +1 -0
- package/lib/module/interfaces/types-lookup.js +9 -0
- package/lib/module/interfaces/types-lookup.js.map +1 -0
- package/lib/module/interfaces/types.js +3 -0
- package/lib/module/interfaces/types.js.map +1 -0
- package/lib/module/protocols/blockchain.js +120 -75
- package/lib/module/protocols/blockchain.js.map +1 -1
- package/lib/module/protocols/chain-api.js +142 -31
- package/lib/module/protocols/chain-api.js.map +1 -1
- package/lib/module/protocols/fula.js +191 -99
- package/lib/module/protocols/fula.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/lib/typescript/interfaces/augment-api-errors.d.ts +442 -0
- package/lib/typescript/interfaces/augment-api-errors.d.ts.map +1 -0
- package/lib/typescript/interfaces/augment-api-rpc.d.ts +680 -0
- package/lib/typescript/interfaces/augment-api-rpc.d.ts.map +1 -0
- package/lib/typescript/interfaces/augment-api-runtime.d.ts +248 -0
- package/lib/typescript/interfaces/augment-api-runtime.d.ts.map +1 -0
- package/lib/typescript/interfaces/augment-api.d.ts +8 -0
- package/lib/typescript/interfaces/augment-api.d.ts.map +1 -0
- package/lib/typescript/interfaces/augment-types.d.ts +1224 -0
- package/lib/typescript/interfaces/augment-types.d.ts.map +1 -0
- package/lib/typescript/interfaces/fulaNativeModule.d.ts +7 -3
- package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -1
- package/lib/typescript/interfaces/index.d.ts +1 -0
- package/lib/typescript/interfaces/index.d.ts.map +1 -0
- package/lib/typescript/interfaces/{api-lookup.d.ts → lookup.d.ts} +441 -199
- package/lib/typescript/interfaces/lookup.d.ts.map +1 -0
- package/lib/typescript/interfaces/registry.d.ts +146 -0
- package/lib/typescript/interfaces/registry.d.ts.map +1 -0
- package/lib/typescript/interfaces/types-lookup.d.ts +1910 -0
- package/lib/typescript/interfaces/types-lookup.d.ts.map +1 -0
- package/lib/typescript/interfaces/types.d.ts +1 -0
- package/lib/typescript/interfaces/types.d.ts.map +1 -0
- package/lib/typescript/protocols/blockchain.d.ts +5 -3
- package/lib/typescript/protocols/blockchain.d.ts.map +1 -1
- package/lib/typescript/protocols/chain-api.d.ts +5 -0
- package/lib/typescript/protocols/chain-api.d.ts.map +1 -1
- package/lib/typescript/protocols/fula.d.ts +16 -0
- package/lib/typescript/protocols/fula.d.ts.map +1 -1
- package/lib/typescript/types/blockchain.d.ts +6 -0
- package/lib/typescript/types/blockchain.d.ts.map +1 -1
- package/package.json +178 -172
- package/react-native-fula.podspec +47 -47
- package/src/index.tsx +4 -4
- package/src/interfaces/augment-api-errors.ts +449 -0
- package/src/interfaces/augment-api-rpc.ts +617 -0
- package/src/interfaces/augment-api-runtime.ts +224 -0
- package/src/interfaces/augment-api.ts +10 -0
- package/src/interfaces/augment-types.ts +1230 -0
- package/src/interfaces/fulaNativeModule.ts +130 -122
- package/src/interfaces/index.ts +4 -0
- package/src/interfaces/{api-lookup.ts → lookup.ts} +1889 -1647
- package/src/interfaces/registry.ts +152 -0
- package/src/interfaces/types-lookup.ts +2043 -0
- package/src/interfaces/types.ts +3 -0
- package/src/protocols/blockchain.ts +549 -504
- package/src/protocols/chain-api.ts +148 -24
- package/src/protocols/fula.ts +419 -314
- package/src/protocols/fxblox.ts +49 -49
- package/src/types/blockchain.ts +89 -81
- package/src/types/fxblox.ts +8 -8
- package/ios/Fula.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- package/ios/Fula.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/Fula.xcodeproj/project.xcworkspace/xcuserdata/user246549.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/Fula.xcodeproj/xcuserdata/user246549.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/lib/commonjs/interfaces/api-lookup.js.map +0 -1
- package/lib/module/interfaces/api-lookup.js.map +0 -1
- package/lib/typescript/interfaces/api-lookup.d.ts.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
/**
|
|
3
|
-
* Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
|
|
3
|
+
* Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
|
|
4
4
|
**/
|
|
5
5
|
FrameSystemAccountInfo: {
|
|
6
6
|
nonce: string;
|
|
@@ -10,16 +10,16 @@ declare const _default: {
|
|
|
10
10
|
data: string;
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
|
-
* Lookup5: pallet_balances::AccountData<Balance>
|
|
13
|
+
* Lookup5: pallet_balances::types::AccountData<Balance>
|
|
14
14
|
**/
|
|
15
15
|
PalletBalancesAccountData: {
|
|
16
16
|
free: string;
|
|
17
17
|
reserved: string;
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
frozen: string;
|
|
19
|
+
flags: string;
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
|
|
23
23
|
**/
|
|
24
24
|
FrameSupportDispatchPerDispatchClassWeight: {
|
|
25
25
|
normal: string;
|
|
@@ -27,13 +27,20 @@ declare const _default: {
|
|
|
27
27
|
mandatory: string;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Lookup9: sp_weights::weight_v2::Weight
|
|
31
|
+
**/
|
|
32
|
+
SpWeightsWeightV2Weight: {
|
|
33
|
+
refTime: string;
|
|
34
|
+
proofSize: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Lookup14: sp_runtime::generic::digest::Digest
|
|
31
38
|
**/
|
|
32
39
|
SpRuntimeDigest: {
|
|
33
40
|
logs: string;
|
|
34
41
|
};
|
|
35
42
|
/**
|
|
36
|
-
*
|
|
43
|
+
* Lookup16: sp_runtime::generic::digest::DigestItem
|
|
37
44
|
**/
|
|
38
45
|
SpRuntimeDigestDigestItem: {
|
|
39
46
|
_enum: {
|
|
@@ -49,7 +56,7 @@ declare const _default: {
|
|
|
49
56
|
};
|
|
50
57
|
};
|
|
51
58
|
/**
|
|
52
|
-
*
|
|
59
|
+
* Lookup19: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
|
|
53
60
|
**/
|
|
54
61
|
FrameSystemEventRecord: {
|
|
55
62
|
phase: string;
|
|
@@ -57,7 +64,7 @@ declare const _default: {
|
|
|
57
64
|
topics: string;
|
|
58
65
|
};
|
|
59
66
|
/**
|
|
60
|
-
*
|
|
67
|
+
* Lookup21: frame_system::pallet::Event<T>
|
|
61
68
|
**/
|
|
62
69
|
FrameSystemEvent: {
|
|
63
70
|
_enum: {
|
|
@@ -85,7 +92,7 @@ declare const _default: {
|
|
|
85
92
|
};
|
|
86
93
|
};
|
|
87
94
|
/**
|
|
88
|
-
*
|
|
95
|
+
* Lookup22: frame_support::dispatch::DispatchInfo
|
|
89
96
|
**/
|
|
90
97
|
FrameSupportDispatchDispatchInfo: {
|
|
91
98
|
weight: string;
|
|
@@ -93,19 +100,19 @@ declare const _default: {
|
|
|
93
100
|
paysFee: string;
|
|
94
101
|
};
|
|
95
102
|
/**
|
|
96
|
-
*
|
|
103
|
+
* Lookup23: frame_support::dispatch::DispatchClass
|
|
97
104
|
**/
|
|
98
105
|
FrameSupportDispatchDispatchClass: {
|
|
99
106
|
_enum: string[];
|
|
100
107
|
};
|
|
101
108
|
/**
|
|
102
|
-
*
|
|
109
|
+
* Lookup24: frame_support::dispatch::Pays
|
|
103
110
|
**/
|
|
104
111
|
FrameSupportDispatchPays: {
|
|
105
112
|
_enum: string[];
|
|
106
113
|
};
|
|
107
114
|
/**
|
|
108
|
-
*
|
|
115
|
+
* Lookup25: sp_runtime::DispatchError
|
|
109
116
|
**/
|
|
110
117
|
SpRuntimeDispatchError: {
|
|
111
118
|
_enum: {
|
|
@@ -119,35 +126,39 @@ declare const _default: {
|
|
|
119
126
|
Token: string;
|
|
120
127
|
Arithmetic: string;
|
|
121
128
|
Transactional: string;
|
|
129
|
+
Exhausted: string;
|
|
130
|
+
Corruption: string;
|
|
131
|
+
Unavailable: string;
|
|
132
|
+
RootNotAllowed: string;
|
|
122
133
|
};
|
|
123
134
|
};
|
|
124
135
|
/**
|
|
125
|
-
*
|
|
136
|
+
* Lookup26: sp_runtime::ModuleError
|
|
126
137
|
**/
|
|
127
138
|
SpRuntimeModuleError: {
|
|
128
139
|
index: string;
|
|
129
140
|
error: string;
|
|
130
141
|
};
|
|
131
142
|
/**
|
|
132
|
-
*
|
|
143
|
+
* Lookup27: sp_runtime::TokenError
|
|
133
144
|
**/
|
|
134
145
|
SpRuntimeTokenError: {
|
|
135
146
|
_enum: string[];
|
|
136
147
|
};
|
|
137
148
|
/**
|
|
138
|
-
*
|
|
149
|
+
* Lookup28: sp_arithmetic::ArithmeticError
|
|
139
150
|
**/
|
|
140
|
-
|
|
151
|
+
SpArithmeticArithmeticError: {
|
|
141
152
|
_enum: string[];
|
|
142
153
|
};
|
|
143
154
|
/**
|
|
144
|
-
*
|
|
155
|
+
* Lookup29: sp_runtime::TransactionalError
|
|
145
156
|
**/
|
|
146
157
|
SpRuntimeTransactionalError: {
|
|
147
158
|
_enum: string[];
|
|
148
159
|
};
|
|
149
160
|
/**
|
|
150
|
-
*
|
|
161
|
+
* Lookup30: pallet_grandpa::pallet::Event
|
|
151
162
|
**/
|
|
152
163
|
PalletGrandpaEvent: {
|
|
153
164
|
_enum: {
|
|
@@ -159,15 +170,15 @@ declare const _default: {
|
|
|
159
170
|
};
|
|
160
171
|
};
|
|
161
172
|
/**
|
|
162
|
-
*
|
|
173
|
+
* Lookup33: sp_consensus_grandpa::app::Public
|
|
163
174
|
**/
|
|
164
|
-
|
|
175
|
+
SpConsensusGrandpaAppPublic: string;
|
|
165
176
|
/**
|
|
166
|
-
*
|
|
177
|
+
* Lookup34: sp_core::ed25519::Public
|
|
167
178
|
**/
|
|
168
179
|
SpCoreEd25519Public: string;
|
|
169
180
|
/**
|
|
170
|
-
*
|
|
181
|
+
* Lookup35: pallet_balances::pallet::Event<T, I>
|
|
171
182
|
**/
|
|
172
183
|
PalletBalancesEvent: {
|
|
173
184
|
_enum: {
|
|
@@ -187,7 +198,6 @@ declare const _default: {
|
|
|
187
198
|
BalanceSet: {
|
|
188
199
|
who: string;
|
|
189
200
|
free: string;
|
|
190
|
-
reserved: string;
|
|
191
201
|
};
|
|
192
202
|
Reserved: {
|
|
193
203
|
who: string;
|
|
@@ -215,16 +225,57 @@ declare const _default: {
|
|
|
215
225
|
who: string;
|
|
216
226
|
amount: string;
|
|
217
227
|
};
|
|
228
|
+
Minted: {
|
|
229
|
+
who: string;
|
|
230
|
+
amount: string;
|
|
231
|
+
};
|
|
232
|
+
Burned: {
|
|
233
|
+
who: string;
|
|
234
|
+
amount: string;
|
|
235
|
+
};
|
|
236
|
+
Suspended: {
|
|
237
|
+
who: string;
|
|
238
|
+
amount: string;
|
|
239
|
+
};
|
|
240
|
+
Restored: {
|
|
241
|
+
who: string;
|
|
242
|
+
amount: string;
|
|
243
|
+
};
|
|
244
|
+
Upgraded: {
|
|
245
|
+
who: string;
|
|
246
|
+
};
|
|
247
|
+
Issued: {
|
|
248
|
+
amount: string;
|
|
249
|
+
};
|
|
250
|
+
Rescinded: {
|
|
251
|
+
amount: string;
|
|
252
|
+
};
|
|
253
|
+
Locked: {
|
|
254
|
+
who: string;
|
|
255
|
+
amount: string;
|
|
256
|
+
};
|
|
257
|
+
Unlocked: {
|
|
258
|
+
who: string;
|
|
259
|
+
amount: string;
|
|
260
|
+
};
|
|
261
|
+
Frozen: {
|
|
262
|
+
who: string;
|
|
263
|
+
amount: string;
|
|
264
|
+
};
|
|
265
|
+
Thawed: {
|
|
266
|
+
who: string;
|
|
267
|
+
amount: string;
|
|
268
|
+
};
|
|
218
269
|
};
|
|
219
270
|
};
|
|
220
271
|
/**
|
|
221
|
-
*
|
|
272
|
+
* Lookup36: frame_support::traits::tokens::misc::BalanceStatus
|
|
222
273
|
**/
|
|
223
274
|
FrameSupportTokensMiscBalanceStatus: {
|
|
224
275
|
_enum: string[];
|
|
225
276
|
};
|
|
226
277
|
/**
|
|
227
|
-
*
|
|
278
|
+
* Lookup37: pallet_transaction_payment::pallet::Event<T>
|
|
228
279
|
**/
|
|
229
280
|
PalletTransactionPaymentEvent: {
|
|
230
281
|
_enum: {
|
|
@@ -236,7 +287,7 @@ declare const _default: {
|
|
|
236
287
|
};
|
|
237
288
|
};
|
|
238
289
|
/**
|
|
239
|
-
*
|
|
290
|
+
* Lookup38: pallet_sudo::pallet::Event<T>
|
|
240
291
|
**/
|
|
241
292
|
PalletSudoEvent: {
|
|
242
293
|
_enum: {
|
|
@@ -252,7 +303,7 @@ declare const _default: {
|
|
|
252
303
|
};
|
|
253
304
|
};
|
|
254
305
|
/**
|
|
255
|
-
*
|
|
306
|
+
* Lookup42: pallet_scheduler::pallet::Event<T>
|
|
256
307
|
**/
|
|
257
308
|
PalletSchedulerEvent: {
|
|
258
309
|
_enum: {
|
|
@@ -269,21 +320,22 @@ declare const _default: {
|
|
|
269
320
|
id: string;
|
|
270
321
|
result: string;
|
|
271
322
|
};
|
|
272
|
-
|
|
323
|
+
CallUnavailable: {
|
|
324
|
+
task: string;
|
|
325
|
+
id: string;
|
|
326
|
+
};
|
|
327
|
+
PeriodicFailed: {
|
|
328
|
+
task: string;
|
|
329
|
+
id: string;
|
|
330
|
+
};
|
|
331
|
+
PermanentlyOverweight: {
|
|
273
332
|
task: string;
|
|
274
333
|
id: string;
|
|
275
|
-
error: string;
|
|
276
334
|
};
|
|
277
335
|
};
|
|
278
336
|
};
|
|
279
337
|
/**
|
|
280
|
-
*
|
|
281
|
-
**/
|
|
282
|
-
FrameSupportScheduleLookupError: {
|
|
283
|
-
_enum: string[];
|
|
284
|
-
};
|
|
285
|
-
/**
|
|
286
|
-
* Lookup44: pallet_collective::pallet::Event<T, I>
|
|
338
|
+
* Lookup45: pallet_collective::pallet::Event<T, I>
|
|
287
339
|
**/
|
|
288
340
|
PalletCollectiveEvent: {
|
|
289
341
|
_enum: {
|
|
@@ -322,7 +374,7 @@ declare const _default: {
|
|
|
322
374
|
};
|
|
323
375
|
};
|
|
324
376
|
/**
|
|
325
|
-
*
|
|
377
|
+
* Lookup47: sugarfunge_validator_set::pallet::Event<T>
|
|
326
378
|
**/
|
|
327
379
|
SugarfungeValidatorSetEvent: {
|
|
328
380
|
_enum: {
|
|
@@ -331,7 +383,7 @@ declare const _default: {
|
|
|
331
383
|
};
|
|
332
384
|
};
|
|
333
385
|
/**
|
|
334
|
-
*
|
|
386
|
+
* Lookup48: pallet_session::pallet::Event
|
|
335
387
|
**/
|
|
336
388
|
PalletSessionEvent: {
|
|
337
389
|
_enum: {
|
|
@@ -341,7 +393,7 @@ declare const _default: {
|
|
|
341
393
|
};
|
|
342
394
|
};
|
|
343
395
|
/**
|
|
344
|
-
*
|
|
396
|
+
* Lookup49: sugarfunge_asset::pallet::Event<T>
|
|
345
397
|
**/
|
|
346
398
|
SugarfungeAssetEvent: {
|
|
347
399
|
_enum: {
|
|
@@ -413,7 +465,7 @@ declare const _default: {
|
|
|
413
465
|
};
|
|
414
466
|
};
|
|
415
467
|
/**
|
|
416
|
-
*
|
|
468
|
+
* Lookup52: sugarfunge_dao::pallet::Event<T>
|
|
417
469
|
**/
|
|
418
470
|
SugarfungeDaoEvent: {
|
|
419
471
|
_enum: {
|
|
@@ -421,7 +473,7 @@ declare const _default: {
|
|
|
421
473
|
};
|
|
422
474
|
};
|
|
423
475
|
/**
|
|
424
|
-
*
|
|
476
|
+
* Lookup53: sugarfunge_bundle::pallet::Event<T>
|
|
425
477
|
**/
|
|
426
478
|
SugarfungeBundleEvent: {
|
|
427
479
|
_enum: {
|
|
@@ -448,7 +500,7 @@ declare const _default: {
|
|
|
448
500
|
};
|
|
449
501
|
};
|
|
450
502
|
/**
|
|
451
|
-
*
|
|
503
|
+
* Lookup54: sugarfunge_bag::pallet::Event<T>
|
|
452
504
|
**/
|
|
453
505
|
SugarfungeBagEvent: {
|
|
454
506
|
_enum: {
|
|
@@ -475,7 +527,7 @@ declare const _default: {
|
|
|
475
527
|
};
|
|
476
528
|
};
|
|
477
529
|
/**
|
|
478
|
-
*
|
|
530
|
+
* Lookup56: sugarfunge_exgine::pallet::Event<T>
|
|
479
531
|
**/
|
|
480
532
|
SugarfungeExgineEvent: {
|
|
481
533
|
_enum: {
|
|
@@ -483,7 +535,7 @@ declare const _default: {
|
|
|
483
535
|
};
|
|
484
536
|
};
|
|
485
537
|
/**
|
|
486
|
-
*
|
|
538
|
+
* Lookup57: sugarfunge_market::pallet::Event<T>
|
|
487
539
|
**/
|
|
488
540
|
SugarfungeMarketEvent: {
|
|
489
541
|
_enum: {
|
|
@@ -531,14 +583,14 @@ declare const _default: {
|
|
|
531
583
|
};
|
|
532
584
|
};
|
|
533
585
|
/**
|
|
534
|
-
*
|
|
586
|
+
* Lookup61: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
535
587
|
**/
|
|
536
588
|
SugarfungeMarketRateBalance: {
|
|
537
589
|
rate: string;
|
|
538
590
|
balance: string;
|
|
539
591
|
};
|
|
540
592
|
/**
|
|
541
|
-
*
|
|
593
|
+
* Lookup62: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
542
594
|
**/
|
|
543
595
|
SugarfungeMarketAssetRate: {
|
|
544
596
|
classId: string;
|
|
@@ -548,7 +600,7 @@ declare const _default: {
|
|
|
548
600
|
to: string;
|
|
549
601
|
};
|
|
550
602
|
/**
|
|
551
|
-
*
|
|
603
|
+
* Lookup63: sugarfunge_market::RateAction<ClassId, AssetId>
|
|
552
604
|
**/
|
|
553
605
|
SugarfungeMarketRateAction: {
|
|
554
606
|
_enum: {
|
|
@@ -560,19 +612,19 @@ declare const _default: {
|
|
|
560
612
|
};
|
|
561
613
|
};
|
|
562
614
|
/**
|
|
563
|
-
*
|
|
615
|
+
* Lookup65: sugarfunge_market::AMM
|
|
564
616
|
**/
|
|
565
617
|
SugarfungeMarketAmm: {
|
|
566
618
|
_enum: string[];
|
|
567
619
|
};
|
|
568
620
|
/**
|
|
569
|
-
*
|
|
621
|
+
* Lookup66: sugarfunge_market::AmountOp
|
|
570
622
|
**/
|
|
571
623
|
SugarfungeMarketAmountOp: {
|
|
572
624
|
_enum: string[];
|
|
573
625
|
};
|
|
574
626
|
/**
|
|
575
|
-
*
|
|
627
|
+
* Lookup67: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
|
|
576
628
|
**/
|
|
577
629
|
SugarfungeMarketRateAccount: {
|
|
578
630
|
_enum: {
|
|
@@ -582,32 +634,30 @@ declare const _default: {
|
|
|
582
634
|
};
|
|
583
635
|
};
|
|
584
636
|
/**
|
|
585
|
-
*
|
|
637
|
+
* Lookup68: functionland_fula::pallet::Event<T>
|
|
586
638
|
**/
|
|
587
639
|
FunctionlandFulaEvent: {
|
|
588
640
|
_enum: {
|
|
589
641
|
ManifestOutput: {
|
|
590
642
|
uploader: string;
|
|
591
|
-
|
|
592
|
-
manifest: string;
|
|
643
|
+
storer: string;
|
|
593
644
|
poolId: string;
|
|
645
|
+
manifest: string;
|
|
594
646
|
};
|
|
595
647
|
StorageManifestOutput: {
|
|
596
|
-
|
|
597
|
-
storage: string;
|
|
598
|
-
cid: string;
|
|
648
|
+
storer: string;
|
|
599
649
|
poolId: string;
|
|
650
|
+
cid: string;
|
|
600
651
|
};
|
|
601
652
|
RemoveStorerOutput: {
|
|
602
|
-
|
|
603
|
-
storage: string;
|
|
604
|
-
cid: string;
|
|
653
|
+
storer: string;
|
|
605
654
|
poolId: string;
|
|
655
|
+
cid: string;
|
|
606
656
|
};
|
|
607
657
|
ManifestRemoved: {
|
|
608
658
|
uploader: string;
|
|
609
|
-
cid: string;
|
|
610
659
|
poolId: string;
|
|
660
|
+
cid: string;
|
|
611
661
|
};
|
|
612
662
|
ManifestStorageUpdated: {
|
|
613
663
|
storer: string;
|
|
@@ -617,10 +667,129 @@ declare const _default: {
|
|
|
617
667
|
missedCycles: string;
|
|
618
668
|
activeDays: string;
|
|
619
669
|
};
|
|
670
|
+
BatchManifestOutput: {
|
|
671
|
+
uploader: string;
|
|
672
|
+
poolIds: string;
|
|
673
|
+
manifests: string;
|
|
674
|
+
};
|
|
675
|
+
BatchStorageManifestOutput: {
|
|
676
|
+
storer: string;
|
|
677
|
+
poolId: string;
|
|
678
|
+
cids: string;
|
|
679
|
+
};
|
|
680
|
+
BatchRemoveStorerOutput: {
|
|
681
|
+
storer: string;
|
|
682
|
+
poolId: string;
|
|
683
|
+
cids: string;
|
|
684
|
+
};
|
|
685
|
+
BatchManifestRemoved: {
|
|
686
|
+
uploader: string;
|
|
687
|
+
poolIds: string;
|
|
688
|
+
cids: string;
|
|
689
|
+
};
|
|
690
|
+
VerifiedStorerManifests: {
|
|
691
|
+
storer: string;
|
|
692
|
+
validCids: string;
|
|
693
|
+
invalidCids: string;
|
|
694
|
+
};
|
|
695
|
+
UpdateFileSizeOutput: {
|
|
696
|
+
_alias: {
|
|
697
|
+
size_: string;
|
|
698
|
+
};
|
|
699
|
+
account: string;
|
|
700
|
+
poolId: string;
|
|
701
|
+
cid: string;
|
|
702
|
+
size_: string;
|
|
703
|
+
};
|
|
704
|
+
UpdateFileSizesOutput: {
|
|
705
|
+
account: string;
|
|
706
|
+
poolId: string;
|
|
707
|
+
cids: string;
|
|
708
|
+
sizes: string;
|
|
709
|
+
};
|
|
710
|
+
GetManifests: {
|
|
711
|
+
manifests: string;
|
|
712
|
+
};
|
|
713
|
+
GetAvailableManifests: {
|
|
714
|
+
manifests: string;
|
|
715
|
+
};
|
|
716
|
+
GetManifestsStorerData: {
|
|
717
|
+
manifests: string;
|
|
718
|
+
};
|
|
719
|
+
Challenge: {
|
|
720
|
+
challenger: string;
|
|
721
|
+
challenged: string;
|
|
722
|
+
cid: string;
|
|
723
|
+
state: string;
|
|
724
|
+
};
|
|
725
|
+
VerifiedChallenges: {
|
|
726
|
+
challenged: string;
|
|
727
|
+
successful: string;
|
|
728
|
+
failed: string;
|
|
729
|
+
};
|
|
730
|
+
MintedLaborTokens: {
|
|
731
|
+
account: string;
|
|
732
|
+
classId: string;
|
|
733
|
+
assetId: string;
|
|
734
|
+
amount: string;
|
|
735
|
+
calculatedAmount: string;
|
|
736
|
+
};
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
/**
|
|
740
|
+
* Lookup74: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
741
|
+
**/
|
|
742
|
+
FunctionlandFulaManifestWithPoolId: {
|
|
743
|
+
_alias: {
|
|
744
|
+
size_: string;
|
|
620
745
|
};
|
|
746
|
+
poolId: string;
|
|
747
|
+
usersData: string;
|
|
748
|
+
manifestMetadata: string;
|
|
749
|
+
size_: string;
|
|
621
750
|
};
|
|
622
751
|
/**
|
|
623
|
-
*
|
|
752
|
+
* Lookup77: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
|
|
753
|
+
**/
|
|
754
|
+
FunctionlandFulaUploaderData: {
|
|
755
|
+
uploader: string;
|
|
756
|
+
storers: string;
|
|
757
|
+
replicationFactor: string;
|
|
758
|
+
};
|
|
759
|
+
/**
|
|
760
|
+
* Lookup80: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
761
|
+
**/
|
|
762
|
+
FunctionlandFulaManifestAvailable: {
|
|
763
|
+
poolId: string;
|
|
764
|
+
replicationFactor: string;
|
|
765
|
+
manifestMetadata: string;
|
|
766
|
+
};
|
|
767
|
+
/**
|
|
768
|
+
* Lookup82: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
|
|
769
|
+
**/
|
|
770
|
+
FunctionlandFulaStorerData: {
|
|
771
|
+
poolId: string;
|
|
772
|
+
cid: string;
|
|
773
|
+
account: string;
|
|
774
|
+
manifestData: string;
|
|
775
|
+
};
|
|
776
|
+
/**
|
|
777
|
+
* Lookup84: functionland_fula::ManifestStorageData
|
|
778
|
+
**/
|
|
779
|
+
FunctionlandFulaManifestStorageData: {
|
|
780
|
+
activeCycles: string;
|
|
781
|
+
missedCycles: string;
|
|
782
|
+
activeDays: string;
|
|
783
|
+
challengeState: string;
|
|
784
|
+
};
|
|
785
|
+
/**
|
|
786
|
+
* Lookup85: functionland_fula::ChallengeState
|
|
787
|
+
**/
|
|
788
|
+
FunctionlandFulaChallengeState: {
|
|
789
|
+
_enum: string[];
|
|
790
|
+
};
|
|
791
|
+
/**
|
|
792
|
+
* Lookup86: fula_pool::pallet::Event<T>
|
|
624
793
|
**/
|
|
625
794
|
FulaPoolEvent: {
|
|
626
795
|
_enum: {
|
|
@@ -636,13 +805,10 @@ declare const _default: {
|
|
|
636
805
|
account: string;
|
|
637
806
|
poolId: string;
|
|
638
807
|
};
|
|
639
|
-
|
|
640
|
-
account: string;
|
|
641
|
-
poolId: string;
|
|
642
|
-
};
|
|
643
|
-
Denied: {
|
|
808
|
+
VotingResult: {
|
|
644
809
|
account: string;
|
|
645
810
|
poolId: string;
|
|
811
|
+
result: string;
|
|
646
812
|
};
|
|
647
813
|
CapacityReached: {
|
|
648
814
|
poolId: string;
|
|
@@ -654,7 +820,7 @@ declare const _default: {
|
|
|
654
820
|
};
|
|
655
821
|
};
|
|
656
822
|
/**
|
|
657
|
-
*
|
|
823
|
+
* Lookup87: frame_system::Phase
|
|
658
824
|
**/
|
|
659
825
|
FrameSystemPhase: {
|
|
660
826
|
_enum: {
|
|
@@ -664,20 +830,17 @@ declare const _default: {
|
|
|
664
830
|
};
|
|
665
831
|
};
|
|
666
832
|
/**
|
|
667
|
-
*
|
|
833
|
+
* Lookup90: frame_system::LastRuntimeUpgradeInfo
|
|
668
834
|
**/
|
|
669
835
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
670
836
|
specVersion: string;
|
|
671
837
|
specName: string;
|
|
672
838
|
};
|
|
673
839
|
/**
|
|
674
|
-
*
|
|
840
|
+
* Lookup93: frame_system::pallet::Call<T>
|
|
675
841
|
**/
|
|
676
842
|
FrameSystemCall: {
|
|
677
843
|
_enum: {
|
|
678
|
-
fill_block: {
|
|
679
|
-
ratio: string;
|
|
680
|
-
};
|
|
681
844
|
remark: {
|
|
682
845
|
remark: string;
|
|
683
846
|
};
|
|
@@ -709,7 +872,7 @@ declare const _default: {
|
|
|
709
872
|
};
|
|
710
873
|
};
|
|
711
874
|
/**
|
|
712
|
-
*
|
|
875
|
+
* Lookup96: frame_system::limits::BlockWeights
|
|
713
876
|
**/
|
|
714
877
|
FrameSystemLimitsBlockWeights: {
|
|
715
878
|
baseBlock: string;
|
|
@@ -717,7 +880,7 @@ declare const _default: {
|
|
|
717
880
|
perClass: string;
|
|
718
881
|
};
|
|
719
882
|
/**
|
|
720
|
-
*
|
|
883
|
+
* Lookup97: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
721
884
|
**/
|
|
722
885
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
723
886
|
normal: string;
|
|
@@ -725,7 +888,7 @@ declare const _default: {
|
|
|
725
888
|
mandatory: string;
|
|
726
889
|
};
|
|
727
890
|
/**
|
|
728
|
-
*
|
|
891
|
+
* Lookup98: frame_system::limits::WeightsPerClass
|
|
729
892
|
**/
|
|
730
893
|
FrameSystemLimitsWeightsPerClass: {
|
|
731
894
|
baseExtrinsic: string;
|
|
@@ -734,13 +897,13 @@ declare const _default: {
|
|
|
734
897
|
reserved: string;
|
|
735
898
|
};
|
|
736
899
|
/**
|
|
737
|
-
*
|
|
900
|
+
* Lookup100: frame_system::limits::BlockLength
|
|
738
901
|
**/
|
|
739
902
|
FrameSystemLimitsBlockLength: {
|
|
740
903
|
max: string;
|
|
741
904
|
};
|
|
742
905
|
/**
|
|
743
|
-
*
|
|
906
|
+
* Lookup101: frame_support::dispatch::PerDispatchClass<T>
|
|
744
907
|
**/
|
|
745
908
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
746
909
|
normal: string;
|
|
@@ -748,14 +911,14 @@ declare const _default: {
|
|
|
748
911
|
mandatory: string;
|
|
749
912
|
};
|
|
750
913
|
/**
|
|
751
|
-
*
|
|
914
|
+
* Lookup102: sp_weights::RuntimeDbWeight
|
|
752
915
|
**/
|
|
753
916
|
SpWeightsRuntimeDbWeight: {
|
|
754
917
|
read: string;
|
|
755
918
|
write: string;
|
|
756
919
|
};
|
|
757
920
|
/**
|
|
758
|
-
*
|
|
921
|
+
* Lookup103: sp_version::RuntimeVersion
|
|
759
922
|
**/
|
|
760
923
|
SpVersionRuntimeVersion: {
|
|
761
924
|
specName: string;
|
|
@@ -768,13 +931,13 @@ declare const _default: {
|
|
|
768
931
|
stateVersion: string;
|
|
769
932
|
};
|
|
770
933
|
/**
|
|
771
|
-
*
|
|
934
|
+
* Lookup108: frame_system::pallet::Error<T>
|
|
772
935
|
**/
|
|
773
936
|
FrameSystemError: {
|
|
774
937
|
_enum: string[];
|
|
775
938
|
};
|
|
776
939
|
/**
|
|
777
|
-
*
|
|
940
|
+
* Lookup109: pallet_timestamp::pallet::Call<T>
|
|
778
941
|
**/
|
|
779
942
|
PalletTimestampCall: {
|
|
780
943
|
_enum: {
|
|
@@ -784,7 +947,7 @@ declare const _default: {
|
|
|
784
947
|
};
|
|
785
948
|
};
|
|
786
949
|
/**
|
|
787
|
-
*
|
|
950
|
+
* Lookup110: pallet_grandpa::StoredState<N>
|
|
788
951
|
**/
|
|
789
952
|
PalletGrandpaStoredState: {
|
|
790
953
|
_enum: {
|
|
@@ -801,7 +964,7 @@ declare const _default: {
|
|
|
801
964
|
};
|
|
802
965
|
};
|
|
803
966
|
/**
|
|
804
|
-
*
|
|
967
|
+
* Lookup111: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
805
968
|
**/
|
|
806
969
|
PalletGrandpaStoredPendingChange: {
|
|
807
970
|
scheduledAt: string;
|
|
@@ -810,7 +973,7 @@ declare const _default: {
|
|
|
810
973
|
forced: string;
|
|
811
974
|
};
|
|
812
975
|
/**
|
|
813
|
-
*
|
|
976
|
+
* Lookup114: pallet_grandpa::pallet::Call<T>
|
|
814
977
|
**/
|
|
815
978
|
PalletGrandpaCall: {
|
|
816
979
|
_enum: {
|
|
@@ -829,23 +992,23 @@ declare const _default: {
|
|
|
829
992
|
};
|
|
830
993
|
};
|
|
831
994
|
/**
|
|
832
|
-
*
|
|
995
|
+
* Lookup115: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
833
996
|
**/
|
|
834
|
-
|
|
997
|
+
SpConsensusGrandpaEquivocationProof: {
|
|
835
998
|
setId: string;
|
|
836
999
|
equivocation: string;
|
|
837
1000
|
};
|
|
838
1001
|
/**
|
|
839
|
-
*
|
|
1002
|
+
* Lookup116: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
840
1003
|
**/
|
|
841
|
-
|
|
1004
|
+
SpConsensusGrandpaEquivocation: {
|
|
842
1005
|
_enum: {
|
|
843
1006
|
Prevote: string;
|
|
844
1007
|
Precommit: string;
|
|
845
1008
|
};
|
|
846
1009
|
};
|
|
847
1010
|
/**
|
|
848
|
-
*
|
|
1011
|
+
* Lookup117: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
849
1012
|
**/
|
|
850
1013
|
FinalityGrandpaEquivocationPrevote: {
|
|
851
1014
|
roundNumber: string;
|
|
@@ -854,22 +1017,22 @@ declare const _default: {
|
|
|
854
1017
|
second: string;
|
|
855
1018
|
};
|
|
856
1019
|
/**
|
|
857
|
-
*
|
|
1020
|
+
* Lookup118: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
858
1021
|
**/
|
|
859
1022
|
FinalityGrandpaPrevote: {
|
|
860
1023
|
targetHash: string;
|
|
861
1024
|
targetNumber: string;
|
|
862
1025
|
};
|
|
863
1026
|
/**
|
|
864
|
-
*
|
|
1027
|
+
* Lookup119: sp_consensus_grandpa::app::Signature
|
|
865
1028
|
**/
|
|
866
|
-
|
|
1029
|
+
SpConsensusGrandpaAppSignature: string;
|
|
867
1030
|
/**
|
|
868
|
-
*
|
|
1031
|
+
* Lookup120: sp_core::ed25519::Signature
|
|
869
1032
|
**/
|
|
870
1033
|
SpCoreEd25519Signature: string;
|
|
871
1034
|
/**
|
|
872
|
-
*
|
|
1035
|
+
* Lookup123: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
873
1036
|
**/
|
|
874
1037
|
FinalityGrandpaEquivocationPrecommit: {
|
|
875
1038
|
roundNumber: string;
|
|
@@ -878,24 +1041,24 @@ declare const _default: {
|
|
|
878
1041
|
second: string;
|
|
879
1042
|
};
|
|
880
1043
|
/**
|
|
881
|
-
*
|
|
1044
|
+
* Lookup124: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
882
1045
|
**/
|
|
883
1046
|
FinalityGrandpaPrecommit: {
|
|
884
1047
|
targetHash: string;
|
|
885
1048
|
targetNumber: string;
|
|
886
1049
|
};
|
|
887
1050
|
/**
|
|
888
|
-
*
|
|
1051
|
+
* Lookup126: sp_core::Void
|
|
889
1052
|
**/
|
|
890
1053
|
SpCoreVoid: string;
|
|
891
1054
|
/**
|
|
892
|
-
*
|
|
1055
|
+
* Lookup127: pallet_grandpa::pallet::Error<T>
|
|
893
1056
|
**/
|
|
894
1057
|
PalletGrandpaError: {
|
|
895
1058
|
_enum: string[];
|
|
896
1059
|
};
|
|
897
1060
|
/**
|
|
898
|
-
*
|
|
1061
|
+
* Lookup129: pallet_balances::types::BalanceLock<Balance>
|
|
899
1062
|
**/
|
|
900
1063
|
PalletBalancesBalanceLock: {
|
|
901
1064
|
id: string;
|
|
@@ -903,37 +1066,38 @@ declare const _default: {
|
|
|
903
1066
|
reasons: string;
|
|
904
1067
|
};
|
|
905
1068
|
/**
|
|
906
|
-
*
|
|
1069
|
+
* Lookup130: pallet_balances::types::Reasons
|
|
907
1070
|
**/
|
|
908
1071
|
PalletBalancesReasons: {
|
|
909
1072
|
_enum: string[];
|
|
910
1073
|
};
|
|
911
1074
|
/**
|
|
912
|
-
*
|
|
1075
|
+
* Lookup133: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
913
1076
|
**/
|
|
914
1077
|
PalletBalancesReserveData: {
|
|
915
1078
|
id: string;
|
|
916
1079
|
amount: string;
|
|
917
1080
|
};
|
|
918
1081
|
/**
|
|
919
|
-
*
|
|
1082
|
+
* Lookup136: pallet_balances::types::IdAmount<Id, Balance>
|
|
920
1083
|
**/
|
|
921
|
-
|
|
922
|
-
|
|
1084
|
+
PalletBalancesIdAmount: {
|
|
1085
|
+
id: string;
|
|
1086
|
+
amount: string;
|
|
923
1087
|
};
|
|
924
1088
|
/**
|
|
925
|
-
*
|
|
1089
|
+
* Lookup138: pallet_balances::pallet::Call<T, I>
|
|
926
1090
|
**/
|
|
927
1091
|
PalletBalancesCall: {
|
|
928
1092
|
_enum: {
|
|
929
|
-
|
|
1093
|
+
transfer_allow_death: {
|
|
930
1094
|
dest: string;
|
|
931
1095
|
value: string;
|
|
932
1096
|
};
|
|
933
|
-
|
|
1097
|
+
set_balance_deprecated: {
|
|
934
1098
|
who: string;
|
|
935
1099
|
newFree: string;
|
|
936
|
-
|
|
1100
|
+
oldReserved: string;
|
|
937
1101
|
};
|
|
938
1102
|
force_transfer: {
|
|
939
1103
|
source: string;
|
|
@@ -952,22 +1116,33 @@ declare const _default: {
|
|
|
952
1116
|
who: string;
|
|
953
1117
|
amount: string;
|
|
954
1118
|
};
|
|
1119
|
+
upgrade_accounts: {
|
|
1120
|
+
who: string;
|
|
1121
|
+
};
|
|
1122
|
+
transfer: {
|
|
1123
|
+
dest: string;
|
|
1124
|
+
value: string;
|
|
1125
|
+
};
|
|
1126
|
+
force_set_balance: {
|
|
1127
|
+
who: string;
|
|
1128
|
+
newFree: string;
|
|
1129
|
+
};
|
|
955
1130
|
};
|
|
956
1131
|
};
|
|
957
1132
|
/**
|
|
958
|
-
*
|
|
1133
|
+
* Lookup143: pallet_balances::pallet::Error<T, I>
|
|
959
1134
|
**/
|
|
960
1135
|
PalletBalancesError: {
|
|
961
1136
|
_enum: string[];
|
|
962
1137
|
};
|
|
963
1138
|
/**
|
|
964
|
-
*
|
|
1139
|
+
* Lookup145: pallet_transaction_payment::Releases
|
|
965
1140
|
**/
|
|
966
1141
|
PalletTransactionPaymentReleases: {
|
|
967
1142
|
_enum: string[];
|
|
968
1143
|
};
|
|
969
1144
|
/**
|
|
970
|
-
*
|
|
1145
|
+
* Lookup146: pallet_sudo::pallet::Call<T>
|
|
971
1146
|
**/
|
|
972
1147
|
PalletSudoCall: {
|
|
973
1148
|
_enum: {
|
|
@@ -991,7 +1166,7 @@ declare const _default: {
|
|
|
991
1166
|
};
|
|
992
1167
|
};
|
|
993
1168
|
/**
|
|
994
|
-
*
|
|
1169
|
+
* Lookup148: pallet_scheduler::pallet::Call<T>
|
|
995
1170
|
**/
|
|
996
1171
|
PalletSchedulerCall: {
|
|
997
1172
|
_enum: {
|
|
@@ -1031,16 +1206,7 @@ declare const _default: {
|
|
|
1031
1206
|
};
|
|
1032
1207
|
};
|
|
1033
1208
|
/**
|
|
1034
|
-
*
|
|
1035
|
-
**/
|
|
1036
|
-
FrameSupportScheduleMaybeHashed: {
|
|
1037
|
-
_enum: {
|
|
1038
|
-
Value: string;
|
|
1039
|
-
Hash: string;
|
|
1040
|
-
};
|
|
1041
|
-
};
|
|
1042
|
-
/**
|
|
1043
|
-
* Lookup137: pallet_collective::pallet::Call<T, I>
|
|
1209
|
+
* Lookup150: pallet_collective::pallet::Call<T, I>
|
|
1044
1210
|
**/
|
|
1045
1211
|
PalletCollectiveCall: {
|
|
1046
1212
|
_enum: {
|
|
@@ -1063,19 +1229,20 @@ declare const _default: {
|
|
|
1063
1229
|
index: string;
|
|
1064
1230
|
approve: string;
|
|
1065
1231
|
};
|
|
1232
|
+
__Unused4: string;
|
|
1233
|
+
disapprove_proposal: {
|
|
1234
|
+
proposalHash: string;
|
|
1235
|
+
};
|
|
1066
1236
|
close: {
|
|
1067
1237
|
proposalHash: string;
|
|
1068
1238
|
index: string;
|
|
1069
1239
|
proposalWeightBound: string;
|
|
1070
1240
|
lengthBound: string;
|
|
1071
1241
|
};
|
|
1072
|
-
disapprove_proposal: {
|
|
1073
|
-
proposalHash: string;
|
|
1074
|
-
};
|
|
1075
1242
|
};
|
|
1076
1243
|
};
|
|
1077
1244
|
/**
|
|
1078
|
-
*
|
|
1245
|
+
* Lookup151: sugarfunge_validator_set::pallet::Call<T>
|
|
1079
1246
|
**/
|
|
1080
1247
|
SugarfungeValidatorSetCall: {
|
|
1081
1248
|
_enum: {
|
|
@@ -1091,7 +1258,7 @@ declare const _default: {
|
|
|
1091
1258
|
};
|
|
1092
1259
|
};
|
|
1093
1260
|
/**
|
|
1094
|
-
*
|
|
1261
|
+
* Lookup152: pallet_session::pallet::Call<T>
|
|
1095
1262
|
**/
|
|
1096
1263
|
PalletSessionCall: {
|
|
1097
1264
|
_enum: {
|
|
@@ -1106,22 +1273,22 @@ declare const _default: {
|
|
|
1106
1273
|
};
|
|
1107
1274
|
};
|
|
1108
1275
|
/**
|
|
1109
|
-
*
|
|
1276
|
+
* Lookup153: sugarfunge_runtime::opaque::SessionKeys
|
|
1110
1277
|
**/
|
|
1111
1278
|
SugarfungeRuntimeOpaqueSessionKeys: {
|
|
1112
1279
|
aura: string;
|
|
1113
1280
|
grandpa: string;
|
|
1114
1281
|
};
|
|
1115
1282
|
/**
|
|
1116
|
-
*
|
|
1283
|
+
* Lookup154: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
1117
1284
|
**/
|
|
1118
1285
|
SpConsensusAuraSr25519AppSr25519Public: string;
|
|
1119
1286
|
/**
|
|
1120
|
-
*
|
|
1287
|
+
* Lookup155: sp_core::sr25519::Public
|
|
1121
1288
|
**/
|
|
1122
1289
|
SpCoreSr25519Public: string;
|
|
1123
1290
|
/**
|
|
1124
|
-
*
|
|
1291
|
+
* Lookup156: sugarfunge_asset::pallet::Call<T>
|
|
1125
1292
|
**/
|
|
1126
1293
|
SugarfungeAssetCall: {
|
|
1127
1294
|
_enum: {
|
|
@@ -1185,7 +1352,7 @@ declare const _default: {
|
|
|
1185
1352
|
};
|
|
1186
1353
|
};
|
|
1187
1354
|
/**
|
|
1188
|
-
*
|
|
1355
|
+
* Lookup159: sugarfunge_dao::pallet::Call<T>
|
|
1189
1356
|
**/
|
|
1190
1357
|
SugarfungeDaoCall: {
|
|
1191
1358
|
_enum: {
|
|
@@ -1196,7 +1363,7 @@ declare const _default: {
|
|
|
1196
1363
|
};
|
|
1197
1364
|
};
|
|
1198
1365
|
/**
|
|
1199
|
-
*
|
|
1366
|
+
* Lookup160: sugarfunge_bundle::pallet::Call<T>
|
|
1200
1367
|
**/
|
|
1201
1368
|
SugarfungeBundleCall: {
|
|
1202
1369
|
_enum: {
|
|
@@ -1222,7 +1389,7 @@ declare const _default: {
|
|
|
1222
1389
|
};
|
|
1223
1390
|
};
|
|
1224
1391
|
/**
|
|
1225
|
-
*
|
|
1392
|
+
* Lookup168: sugarfunge_bag::pallet::Call<T>
|
|
1226
1393
|
**/
|
|
1227
1394
|
SugarfungeBagCall: {
|
|
1228
1395
|
_enum: {
|
|
@@ -1248,7 +1415,7 @@ declare const _default: {
|
|
|
1248
1415
|
};
|
|
1249
1416
|
};
|
|
1250
1417
|
/**
|
|
1251
|
-
*
|
|
1418
|
+
* Lookup169: sugarfunge_exgine::pallet::Call<T>
|
|
1252
1419
|
**/
|
|
1253
1420
|
SugarfungeExgineCall: {
|
|
1254
1421
|
_enum: {
|
|
@@ -1259,7 +1426,7 @@ declare const _default: {
|
|
|
1259
1426
|
};
|
|
1260
1427
|
};
|
|
1261
1428
|
/**
|
|
1262
|
-
*
|
|
1429
|
+
* Lookup170: sugarfunge_market::pallet::Call<T>
|
|
1263
1430
|
**/
|
|
1264
1431
|
SugarfungeMarketCall: {
|
|
1265
1432
|
_enum: {
|
|
@@ -1284,7 +1451,7 @@ declare const _default: {
|
|
|
1284
1451
|
};
|
|
1285
1452
|
};
|
|
1286
1453
|
/**
|
|
1287
|
-
*
|
|
1454
|
+
* Lookup173: functionland_fula::pallet::Call<T>
|
|
1288
1455
|
**/
|
|
1289
1456
|
FunctionlandFulaCall: {
|
|
1290
1457
|
_enum: {
|
|
@@ -1301,34 +1468,84 @@ declare const _default: {
|
|
|
1301
1468
|
poolId: string;
|
|
1302
1469
|
replicationFactor: string;
|
|
1303
1470
|
};
|
|
1471
|
+
batch_upload_manifest: {
|
|
1472
|
+
manifest: string;
|
|
1473
|
+
cids: string;
|
|
1474
|
+
poolId: string;
|
|
1475
|
+
replicationFactor: string;
|
|
1476
|
+
};
|
|
1304
1477
|
storage_manifest: {
|
|
1305
|
-
uploader: string;
|
|
1306
1478
|
cid: string;
|
|
1307
1479
|
poolId: string;
|
|
1308
1480
|
};
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
cid: string;
|
|
1481
|
+
batch_storage_manifest: {
|
|
1482
|
+
cids: string;
|
|
1312
1483
|
poolId: string;
|
|
1313
1484
|
};
|
|
1314
1485
|
remove_stored_manifest: {
|
|
1315
|
-
uploader: string;
|
|
1316
1486
|
cid: string;
|
|
1317
1487
|
poolId: string;
|
|
1318
1488
|
};
|
|
1489
|
+
batch_remove_stored_manifest: {
|
|
1490
|
+
cids: string;
|
|
1491
|
+
poolId: string;
|
|
1492
|
+
};
|
|
1319
1493
|
remove_manifest: {
|
|
1320
1494
|
cid: string;
|
|
1321
1495
|
poolId: string;
|
|
1322
1496
|
};
|
|
1497
|
+
batch_remove_manifest: {
|
|
1498
|
+
cids: string;
|
|
1499
|
+
poolIds: string;
|
|
1500
|
+
};
|
|
1501
|
+
verify_manifests: string;
|
|
1502
|
+
get_manifests: {
|
|
1503
|
+
poolId: string;
|
|
1504
|
+
uploader: string;
|
|
1505
|
+
storer: string;
|
|
1506
|
+
};
|
|
1507
|
+
get_available_manifests: {
|
|
1508
|
+
poolId: string;
|
|
1509
|
+
};
|
|
1510
|
+
get_manifests_storer_data: {
|
|
1511
|
+
poolId: string;
|
|
1512
|
+
storer: string;
|
|
1513
|
+
};
|
|
1514
|
+
generate_challenge: string;
|
|
1515
|
+
verify_challenge: {
|
|
1516
|
+
poolId: string;
|
|
1517
|
+
cids: string;
|
|
1518
|
+
classId: string;
|
|
1519
|
+
assetId: string;
|
|
1520
|
+
};
|
|
1521
|
+
mint_labor_tokens: {
|
|
1522
|
+
classId: string;
|
|
1523
|
+
assetId: string;
|
|
1524
|
+
amount: string;
|
|
1525
|
+
};
|
|
1526
|
+
update_file_size: {
|
|
1527
|
+
_alias: {
|
|
1528
|
+
size_: string;
|
|
1529
|
+
};
|
|
1530
|
+
cid: string;
|
|
1531
|
+
poolId: string;
|
|
1532
|
+
size_: string;
|
|
1533
|
+
};
|
|
1534
|
+
update_file_sizes: {
|
|
1535
|
+
cids: string;
|
|
1536
|
+
poolId: string;
|
|
1537
|
+
sizes: string;
|
|
1538
|
+
};
|
|
1323
1539
|
};
|
|
1324
1540
|
};
|
|
1325
1541
|
/**
|
|
1326
|
-
*
|
|
1542
|
+
* Lookup177: fula_pool::pallet::Call<T>
|
|
1327
1543
|
**/
|
|
1328
1544
|
FulaPoolCall: {
|
|
1329
1545
|
_enum: {
|
|
1330
1546
|
create: {
|
|
1331
1547
|
name: string;
|
|
1548
|
+
region: string;
|
|
1332
1549
|
peerId: string;
|
|
1333
1550
|
};
|
|
1334
1551
|
leave_pool: {
|
|
@@ -1345,19 +1562,20 @@ declare const _default: {
|
|
|
1345
1562
|
poolId: string;
|
|
1346
1563
|
account: string;
|
|
1347
1564
|
positive: string;
|
|
1565
|
+
peerId: string;
|
|
1348
1566
|
};
|
|
1349
1567
|
};
|
|
1350
1568
|
};
|
|
1351
1569
|
/**
|
|
1352
|
-
*
|
|
1570
|
+
* Lookup179: pallet_sudo::pallet::Error<T>
|
|
1353
1571
|
**/
|
|
1354
1572
|
PalletSudoError: {
|
|
1355
1573
|
_enum: string[];
|
|
1356
1574
|
};
|
|
1357
1575
|
/**
|
|
1358
|
-
*
|
|
1576
|
+
* Lookup182: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
1359
1577
|
**/
|
|
1360
|
-
|
|
1578
|
+
PalletSchedulerScheduled: {
|
|
1361
1579
|
maybeId: string;
|
|
1362
1580
|
priority: string;
|
|
1363
1581
|
call: string;
|
|
@@ -1365,7 +1583,28 @@ declare const _default: {
|
|
|
1365
1583
|
origin: string;
|
|
1366
1584
|
};
|
|
1367
1585
|
/**
|
|
1368
|
-
*
|
|
1586
|
+
* Lookup183: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
|
|
1587
|
+
**/
|
|
1588
|
+
FrameSupportPreimagesBounded: {
|
|
1589
|
+
_enum: {
|
|
1590
|
+
Legacy: {
|
|
1591
|
+
_alias: {
|
|
1592
|
+
hash_: string;
|
|
1593
|
+
};
|
|
1594
|
+
hash_: string;
|
|
1595
|
+
};
|
|
1596
|
+
Inline: string;
|
|
1597
|
+
Lookup: {
|
|
1598
|
+
_alias: {
|
|
1599
|
+
hash_: string;
|
|
1600
|
+
};
|
|
1601
|
+
hash_: string;
|
|
1602
|
+
len: string;
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
/**
|
|
1607
|
+
* Lookup185: sugarfunge_runtime::OriginCaller
|
|
1369
1608
|
**/
|
|
1370
1609
|
SugarfungeRuntimeOriginCaller: {
|
|
1371
1610
|
_enum: {
|
|
@@ -1377,12 +1616,11 @@ declare const _default: {
|
|
|
1377
1616
|
__Unused5: string;
|
|
1378
1617
|
__Unused6: string;
|
|
1379
1618
|
__Unused7: string;
|
|
1380
|
-
__Unused8: string;
|
|
1381
1619
|
Council: string;
|
|
1382
1620
|
};
|
|
1383
1621
|
};
|
|
1384
1622
|
/**
|
|
1385
|
-
*
|
|
1623
|
+
* Lookup186: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1386
1624
|
**/
|
|
1387
1625
|
FrameSupportDispatchRawOrigin: {
|
|
1388
1626
|
_enum: {
|
|
@@ -1392,7 +1630,7 @@ declare const _default: {
|
|
|
1392
1630
|
};
|
|
1393
1631
|
};
|
|
1394
1632
|
/**
|
|
1395
|
-
*
|
|
1633
|
+
* Lookup187: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
1396
1634
|
**/
|
|
1397
1635
|
PalletCollectiveRawOrigin: {
|
|
1398
1636
|
_enum: {
|
|
@@ -1402,13 +1640,13 @@ declare const _default: {
|
|
|
1402
1640
|
};
|
|
1403
1641
|
};
|
|
1404
1642
|
/**
|
|
1405
|
-
*
|
|
1643
|
+
* Lookup189: pallet_scheduler::pallet::Error<T>
|
|
1406
1644
|
**/
|
|
1407
1645
|
PalletSchedulerError: {
|
|
1408
1646
|
_enum: string[];
|
|
1409
1647
|
};
|
|
1410
1648
|
/**
|
|
1411
|
-
*
|
|
1649
|
+
* Lookup191: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
1412
1650
|
**/
|
|
1413
1651
|
PalletCollectiveVotes: {
|
|
1414
1652
|
index: string;
|
|
@@ -1418,36 +1656,36 @@ declare const _default: {
|
|
|
1418
1656
|
end: string;
|
|
1419
1657
|
};
|
|
1420
1658
|
/**
|
|
1421
|
-
*
|
|
1659
|
+
* Lookup192: pallet_collective::pallet::Error<T, I>
|
|
1422
1660
|
**/
|
|
1423
1661
|
PalletCollectiveError: {
|
|
1424
1662
|
_enum: string[];
|
|
1425
1663
|
};
|
|
1426
1664
|
/**
|
|
1427
|
-
*
|
|
1665
|
+
* Lookup194: sugarfunge_validator_set::pallet::Error<T>
|
|
1428
1666
|
**/
|
|
1429
1667
|
SugarfungeValidatorSetError: {
|
|
1430
1668
|
_enum: string[];
|
|
1431
1669
|
};
|
|
1432
1670
|
/**
|
|
1433
|
-
*
|
|
1671
|
+
* Lookup198: sp_core::crypto::KeyTypeId
|
|
1434
1672
|
**/
|
|
1435
1673
|
SpCoreCryptoKeyTypeId: string;
|
|
1436
1674
|
/**
|
|
1437
|
-
*
|
|
1675
|
+
* Lookup199: pallet_session::pallet::Error<T>
|
|
1438
1676
|
**/
|
|
1439
1677
|
PalletSessionError: {
|
|
1440
1678
|
_enum: string[];
|
|
1441
1679
|
};
|
|
1442
1680
|
/**
|
|
1443
|
-
*
|
|
1681
|
+
* Lookup200: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1444
1682
|
**/
|
|
1445
1683
|
SugarfungeAssetClass: {
|
|
1446
1684
|
owner: string;
|
|
1447
1685
|
metadata: string;
|
|
1448
1686
|
};
|
|
1449
1687
|
/**
|
|
1450
|
-
*
|
|
1688
|
+
* Lookup202: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1451
1689
|
**/
|
|
1452
1690
|
SugarfungeAssetAsset: {
|
|
1453
1691
|
classId: string;
|
|
@@ -1455,19 +1693,19 @@ declare const _default: {
|
|
|
1455
1693
|
metadata: string;
|
|
1456
1694
|
};
|
|
1457
1695
|
/**
|
|
1458
|
-
*
|
|
1696
|
+
* Lookup204: sugarfunge_asset::pallet::Error<T>
|
|
1459
1697
|
**/
|
|
1460
1698
|
SugarfungeAssetError: {
|
|
1461
1699
|
_enum: string[];
|
|
1462
1700
|
};
|
|
1463
1701
|
/**
|
|
1464
|
-
*
|
|
1702
|
+
* Lookup205: sugarfunge_dao::pallet::Error<T>
|
|
1465
1703
|
**/
|
|
1466
1704
|
SugarfungeDaoError: {
|
|
1467
1705
|
_enum: string[];
|
|
1468
1706
|
};
|
|
1469
1707
|
/**
|
|
1470
|
-
*
|
|
1708
|
+
* Lookup206: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1471
1709
|
**/
|
|
1472
1710
|
SugarfungeBundleBundle: {
|
|
1473
1711
|
creator: string;
|
|
@@ -1478,24 +1716,24 @@ declare const _default: {
|
|
|
1478
1716
|
vault: string;
|
|
1479
1717
|
};
|
|
1480
1718
|
/**
|
|
1481
|
-
*
|
|
1719
|
+
* Lookup207: frame_support::PalletId
|
|
1482
1720
|
**/
|
|
1483
1721
|
FrameSupportPalletId: string;
|
|
1484
1722
|
/**
|
|
1485
|
-
*
|
|
1723
|
+
* Lookup208: sugarfunge_bundle::pallet::Error<T>
|
|
1486
1724
|
**/
|
|
1487
1725
|
SugarfungeBundleError: {
|
|
1488
1726
|
_enum: string[];
|
|
1489
1727
|
};
|
|
1490
1728
|
/**
|
|
1491
|
-
*
|
|
1729
|
+
* Lookup209: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
|
|
1492
1730
|
**/
|
|
1493
1731
|
SugarfungeBagBagClass: {
|
|
1494
1732
|
operator: string;
|
|
1495
1733
|
classId: string;
|
|
1496
1734
|
};
|
|
1497
1735
|
/**
|
|
1498
|
-
*
|
|
1736
|
+
* Lookup210: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
|
|
1499
1737
|
**/
|
|
1500
1738
|
SugarfungeBagBag: {
|
|
1501
1739
|
operator: string;
|
|
@@ -1504,61 +1742,64 @@ declare const _default: {
|
|
|
1504
1742
|
totalShares: string;
|
|
1505
1743
|
};
|
|
1506
1744
|
/**
|
|
1507
|
-
*
|
|
1745
|
+
* Lookup211: sugarfunge_bag::pallet::Error<T>
|
|
1508
1746
|
**/
|
|
1509
1747
|
SugarfungeBagError: {
|
|
1510
1748
|
_enum: string[];
|
|
1511
1749
|
};
|
|
1512
1750
|
/**
|
|
1513
|
-
*
|
|
1751
|
+
* Lookup212: sugarfunge_exgine::pallet::Error<T>
|
|
1514
1752
|
**/
|
|
1515
1753
|
SugarfungeExgineError: {
|
|
1516
1754
|
_enum: string[];
|
|
1517
1755
|
};
|
|
1518
1756
|
/**
|
|
1519
|
-
*
|
|
1757
|
+
* Lookup213: sugarfunge_market::Market<sp_core::crypto::AccountId32>
|
|
1520
1758
|
**/
|
|
1521
1759
|
SugarfungeMarketMarket: {
|
|
1522
1760
|
owner: string;
|
|
1523
1761
|
vault: string;
|
|
1524
1762
|
};
|
|
1525
1763
|
/**
|
|
1526
|
-
*
|
|
1764
|
+
* Lookup215: sugarfunge_market::pallet::Error<T>
|
|
1527
1765
|
**/
|
|
1528
1766
|
SugarfungeMarketError: {
|
|
1529
1767
|
_enum: string[];
|
|
1530
1768
|
};
|
|
1531
1769
|
/**
|
|
1532
|
-
*
|
|
1770
|
+
* Lookup217: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1533
1771
|
**/
|
|
1534
1772
|
FunctionlandFulaManifest: {
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1773
|
+
_alias: {
|
|
1774
|
+
size_: string;
|
|
1775
|
+
};
|
|
1776
|
+
usersData: string;
|
|
1777
|
+
manifestMetadata: string;
|
|
1778
|
+
size_: string;
|
|
1538
1779
|
};
|
|
1539
1780
|
/**
|
|
1540
|
-
*
|
|
1781
|
+
* Lookup220: functionland_fula::Challenge<sp_core::crypto::AccountId32>
|
|
1541
1782
|
**/
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1783
|
+
FunctionlandFulaChallenge: {
|
|
1784
|
+
challenger: string;
|
|
1785
|
+
challengeState: string;
|
|
1545
1786
|
};
|
|
1546
1787
|
/**
|
|
1547
|
-
*
|
|
1788
|
+
* Lookup221: functionland_fula::ClaimData
|
|
1548
1789
|
**/
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1790
|
+
FunctionlandFulaClaimData: {
|
|
1791
|
+
mintedLaborTokens: string;
|
|
1792
|
+
expectedLaborTokens: string;
|
|
1793
|
+
challengeTokens: string;
|
|
1553
1794
|
};
|
|
1554
1795
|
/**
|
|
1555
|
-
*
|
|
1796
|
+
* Lookup222: functionland_fula::pallet::Error<T>
|
|
1556
1797
|
**/
|
|
1557
1798
|
FunctionlandFulaError: {
|
|
1558
1799
|
_enum: string[];
|
|
1559
1800
|
};
|
|
1560
1801
|
/**
|
|
1561
|
-
*
|
|
1802
|
+
* Lookup223: fula_pool::Pool<T>
|
|
1562
1803
|
**/
|
|
1563
1804
|
FulaPoolPool: {
|
|
1564
1805
|
name: string;
|
|
@@ -1566,9 +1807,10 @@ declare const _default: {
|
|
|
1566
1807
|
parent: string;
|
|
1567
1808
|
participants: string;
|
|
1568
1809
|
requestNumber: string;
|
|
1810
|
+
region: string;
|
|
1569
1811
|
};
|
|
1570
1812
|
/**
|
|
1571
|
-
*
|
|
1813
|
+
* Lookup226: fula_pool::PoolRequest<T>
|
|
1572
1814
|
**/
|
|
1573
1815
|
FulaPoolPoolRequest: {
|
|
1574
1816
|
voted: string;
|
|
@@ -1576,7 +1818,7 @@ declare const _default: {
|
|
|
1576
1818
|
peerId: string;
|
|
1577
1819
|
};
|
|
1578
1820
|
/**
|
|
1579
|
-
*
|
|
1821
|
+
* Lookup227: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
1580
1822
|
**/
|
|
1581
1823
|
FulaPoolUser: {
|
|
1582
1824
|
poolId: string;
|
|
@@ -1584,13 +1826,13 @@ declare const _default: {
|
|
|
1584
1826
|
peerId: string;
|
|
1585
1827
|
};
|
|
1586
1828
|
/**
|
|
1587
|
-
*
|
|
1829
|
+
* Lookup228: fula_pool::pallet::Error<T>
|
|
1588
1830
|
**/
|
|
1589
1831
|
FulaPoolError: {
|
|
1590
1832
|
_enum: string[];
|
|
1591
1833
|
};
|
|
1592
1834
|
/**
|
|
1593
|
-
*
|
|
1835
|
+
* Lookup230: sp_runtime::MultiSignature
|
|
1594
1836
|
**/
|
|
1595
1837
|
SpRuntimeMultiSignature: {
|
|
1596
1838
|
_enum: {
|
|
@@ -1600,45 +1842,45 @@ declare const _default: {
|
|
|
1600
1842
|
};
|
|
1601
1843
|
};
|
|
1602
1844
|
/**
|
|
1603
|
-
*
|
|
1845
|
+
* Lookup231: sp_core::sr25519::Signature
|
|
1604
1846
|
**/
|
|
1605
1847
|
SpCoreSr25519Signature: string;
|
|
1606
1848
|
/**
|
|
1607
|
-
*
|
|
1849
|
+
* Lookup232: sp_core::ecdsa::Signature
|
|
1608
1850
|
**/
|
|
1609
1851
|
SpCoreEcdsaSignature: string;
|
|
1610
1852
|
/**
|
|
1611
|
-
*
|
|
1853
|
+
* Lookup235: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
1612
1854
|
**/
|
|
1613
1855
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
1614
1856
|
/**
|
|
1615
|
-
*
|
|
1857
|
+
* Lookup236: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
1616
1858
|
**/
|
|
1617
1859
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
1618
1860
|
/**
|
|
1619
|
-
*
|
|
1861
|
+
* Lookup237: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
1620
1862
|
**/
|
|
1621
1863
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
1622
1864
|
/**
|
|
1623
|
-
*
|
|
1865
|
+
* Lookup238: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
1624
1866
|
**/
|
|
1625
1867
|
FrameSystemExtensionsCheckGenesis: string;
|
|
1626
1868
|
/**
|
|
1627
|
-
*
|
|
1869
|
+
* Lookup241: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
1628
1870
|
**/
|
|
1629
1871
|
FrameSystemExtensionsCheckNonce: string;
|
|
1630
1872
|
/**
|
|
1631
|
-
*
|
|
1873
|
+
* Lookup242: frame_system::extensions::check_weight::CheckWeight<T>
|
|
1632
1874
|
**/
|
|
1633
1875
|
FrameSystemExtensionsCheckWeight: string;
|
|
1634
1876
|
/**
|
|
1635
|
-
*
|
|
1877
|
+
* Lookup243: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
1636
1878
|
**/
|
|
1637
1879
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
1638
1880
|
/**
|
|
1639
|
-
*
|
|
1881
|
+
* Lookup244: sugarfunge_runtime::Runtime
|
|
1640
1882
|
**/
|
|
1641
1883
|
SugarfungeRuntimeRuntime: string;
|
|
1642
1884
|
};
|
|
1643
1885
|
export default _default;
|
|
1644
|
-
//# sourceMappingURL=
|
|
1886
|
+
//# sourceMappingURL=lookup.d.ts.map
|