@functionland/react-native-fula 1.55.15 → 1.55.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +20 -20
  2. package/android/build.gradle +114 -114
  3. package/android/gradle.properties +8 -8
  4. package/android/src/main/AndroidManifest.xml +3 -3
  5. package/android/src/main/AndroidManifestNew.xml +2 -2
  6. package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
  7. package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
  8. package/android/src/main/java/land/fx/fula/FulaModule.java +0 -0
  9. package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
  10. package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
  11. package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
  12. package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
  13. package/ios/Cryptography.swift +59 -59
  14. package/ios/Fula-Bridging-Header.h +3 -3
  15. package/ios/Fula.mm +272 -272
  16. package/ios/Fula.swift +32 -21
  17. package/ios/UserDataHelper.swift +143 -143
  18. package/lib/commonjs/index.js.map +1 -1
  19. package/lib/commonjs/interfaces/augment-api-consts.js.map +1 -1
  20. package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -1
  21. package/lib/commonjs/interfaces/augment-api-events.js.map +1 -1
  22. package/lib/commonjs/interfaces/augment-api-query.js.map +1 -1
  23. package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -1
  24. package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -1
  25. package/lib/commonjs/interfaces/augment-api-tx.js.map +1 -1
  26. package/lib/commonjs/interfaces/augment-api.js.map +1 -1
  27. package/lib/commonjs/interfaces/augment-types.js.map +1 -1
  28. package/lib/commonjs/interfaces/definitions.js.map +1 -1
  29. package/lib/commonjs/interfaces/defintions.js.map +1 -1
  30. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  31. package/lib/commonjs/interfaces/index.js.map +1 -1
  32. package/lib/commonjs/interfaces/lookup.js +300 -300
  33. package/lib/commonjs/interfaces/lookup.js.map +1 -1
  34. package/lib/commonjs/interfaces/registry.js.map +1 -1
  35. package/lib/commonjs/interfaces/types-lookup.js.map +1 -1
  36. package/lib/commonjs/interfaces/types.js.map +1 -1
  37. package/lib/commonjs/protocols/blockchain.js +70 -70
  38. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  39. package/lib/commonjs/protocols/chain-api.js.map +1 -1
  40. package/lib/commonjs/protocols/fula.js.map +1 -1
  41. package/lib/commonjs/protocols/fx-ai.js.map +1 -1
  42. package/lib/commonjs/protocols/fxblox.js +3 -3
  43. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  44. package/lib/commonjs/types/blockchain.js.map +1 -1
  45. package/lib/commonjs/types/fxblox.js.map +1 -1
  46. package/lib/module/index.js.map +1 -1
  47. package/lib/module/interfaces/augment-api-consts.js.map +1 -1
  48. package/lib/module/interfaces/augment-api-errors.js.map +1 -1
  49. package/lib/module/interfaces/augment-api-events.js.map +1 -1
  50. package/lib/module/interfaces/augment-api-query.js.map +1 -1
  51. package/lib/module/interfaces/augment-api-rpc.js.map +1 -1
  52. package/lib/module/interfaces/augment-api-runtime.js.map +1 -1
  53. package/lib/module/interfaces/augment-api-tx.js.map +1 -1
  54. package/lib/module/interfaces/augment-api.js.map +1 -1
  55. package/lib/module/interfaces/augment-types.js.map +1 -1
  56. package/lib/module/interfaces/definitions.js.map +1 -1
  57. package/lib/module/interfaces/defintions.js.map +1 -1
  58. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  59. package/lib/module/interfaces/index.js.map +1 -1
  60. package/lib/module/interfaces/lookup.js +300 -300
  61. package/lib/module/interfaces/lookup.js.map +1 -1
  62. package/lib/module/interfaces/registry.js.map +1 -1
  63. package/lib/module/interfaces/types-lookup.js.map +1 -1
  64. package/lib/module/interfaces/types.js.map +1 -1
  65. package/lib/module/protocols/blockchain.js +70 -70
  66. package/lib/module/protocols/blockchain.js.map +1 -1
  67. package/lib/module/protocols/chain-api.js.map +1 -1
  68. package/lib/module/protocols/fula.js.map +1 -1
  69. package/lib/module/protocols/fx-ai.js.map +1 -1
  70. package/lib/module/protocols/fxblox.js +3 -3
  71. package/lib/module/protocols/fxblox.js.map +1 -1
  72. package/lib/module/types/blockchain.js.map +1 -1
  73. package/lib/module/types/fxblox.js.map +1 -1
  74. package/package.json +177 -176
  75. package/src/index.tsx +4 -4
  76. package/src/interfaces/augment-api-consts.ts +273 -273
  77. package/src/interfaces/augment-api-errors.ts +474 -474
  78. package/src/interfaces/augment-api-events.ts +448 -448
  79. package/src/interfaces/augment-api-query.ts +466 -466
  80. package/src/interfaces/augment-api-rpc.ts +617 -617
  81. package/src/interfaces/augment-api-runtime.ts +223 -223
  82. package/src/interfaces/augment-api-tx.ts +709 -709
  83. package/src/interfaces/augment-api.ts +9 -9
  84. package/src/interfaces/augment-types.ts +1322 -1322
  85. package/src/interfaces/definitions.ts +1 -1
  86. package/src/interfaces/defintions.ts +1 -1
  87. package/src/interfaces/index.ts +3 -3
  88. package/src/interfaces/lookup.ts +2011 -2011
  89. package/src/interfaces/registry.ts +163 -163
  90. package/src/interfaces/types-lookup.ts +2165 -2165
  91. package/src/interfaces/types.ts +2 -2
  92. package/src/protocols/blockchain.ts +716 -716
  93. package/src/protocols/fxblox.ts +442 -442
@@ -1,2011 +1,2011 @@
1
- // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
- /* eslint-disable */
3
-
4
- /* eslint-disable sort-keys */
5
-
6
- export default {
7
- /**
8
- * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
9
- **/
10
- FrameSystemAccountInfo: {
11
- nonce: 'u32',
12
- consumers: 'u32',
13
- providers: 'u32',
14
- sufficients: 'u32',
15
- data: 'PalletBalancesAccountData'
16
- },
17
- /**
18
- * Lookup5: pallet_balances::types::AccountData<Balance>
19
- **/
20
- PalletBalancesAccountData: {
21
- free: 'u128',
22
- reserved: 'u128',
23
- frozen: 'u128',
24
- flags: 'u128'
25
- },
26
- /**
27
- * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
28
- **/
29
- FrameSupportDispatchPerDispatchClassWeight: {
30
- normal: 'SpWeightsWeightV2Weight',
31
- operational: 'SpWeightsWeightV2Weight',
32
- mandatory: 'SpWeightsWeightV2Weight'
33
- },
34
- /**
35
- * Lookup9: sp_weights::weight_v2::Weight
36
- **/
37
- SpWeightsWeightV2Weight: {
38
- refTime: 'Compact<u64>',
39
- proofSize: 'Compact<u64>'
40
- },
41
- /**
42
- * Lookup14: sp_runtime::generic::digest::Digest
43
- **/
44
- SpRuntimeDigest: {
45
- logs: 'Vec<SpRuntimeDigestDigestItem>'
46
- },
47
- /**
48
- * Lookup16: sp_runtime::generic::digest::DigestItem
49
- **/
50
- SpRuntimeDigestDigestItem: {
51
- _enum: {
52
- Other: 'Bytes',
53
- __Unused1: 'Null',
54
- __Unused2: 'Null',
55
- __Unused3: 'Null',
56
- Consensus: '([u8;4],Bytes)',
57
- Seal: '([u8;4],Bytes)',
58
- PreRuntime: '([u8;4],Bytes)',
59
- __Unused7: 'Null',
60
- RuntimeEnvironmentUpdated: 'Null'
61
- }
62
- },
63
- /**
64
- * Lookup19: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
65
- **/
66
- FrameSystemEventRecord: {
67
- phase: 'FrameSystemPhase',
68
- event: 'Event',
69
- topics: 'Vec<H256>'
70
- },
71
- /**
72
- * Lookup21: frame_system::pallet::Event<T>
73
- **/
74
- FrameSystemEvent: {
75
- _enum: {
76
- ExtrinsicSuccess: {
77
- dispatchInfo: 'FrameSupportDispatchDispatchInfo',
78
- },
79
- ExtrinsicFailed: {
80
- dispatchError: 'SpRuntimeDispatchError',
81
- dispatchInfo: 'FrameSupportDispatchDispatchInfo',
82
- },
83
- CodeUpdated: 'Null',
84
- NewAccount: {
85
- account: 'AccountId32',
86
- },
87
- KilledAccount: {
88
- account: 'AccountId32',
89
- },
90
- Remarked: {
91
- _alias: {
92
- hash_: 'hash',
93
- },
94
- sender: 'AccountId32',
95
- hash_: 'H256'
96
- }
97
- }
98
- },
99
- /**
100
- * Lookup22: frame_support::dispatch::DispatchInfo
101
- **/
102
- FrameSupportDispatchDispatchInfo: {
103
- weight: 'SpWeightsWeightV2Weight',
104
- class: 'FrameSupportDispatchDispatchClass',
105
- paysFee: 'FrameSupportDispatchPays'
106
- },
107
- /**
108
- * Lookup23: frame_support::dispatch::DispatchClass
109
- **/
110
- FrameSupportDispatchDispatchClass: {
111
- _enum: ['Normal', 'Operational', 'Mandatory']
112
- },
113
- /**
114
- * Lookup24: frame_support::dispatch::Pays
115
- **/
116
- FrameSupportDispatchPays: {
117
- _enum: ['Yes', 'No']
118
- },
119
- /**
120
- * Lookup25: sp_runtime::DispatchError
121
- **/
122
- SpRuntimeDispatchError: {
123
- _enum: {
124
- Other: 'Null',
125
- CannotLookup: 'Null',
126
- BadOrigin: 'Null',
127
- Module: 'SpRuntimeModuleError',
128
- ConsumerRemaining: 'Null',
129
- NoProviders: 'Null',
130
- TooManyConsumers: 'Null',
131
- Token: 'SpRuntimeTokenError',
132
- Arithmetic: 'SpArithmeticArithmeticError',
133
- Transactional: 'SpRuntimeTransactionalError',
134
- Exhausted: 'Null',
135
- Corruption: 'Null',
136
- Unavailable: 'Null',
137
- RootNotAllowed: 'Null'
138
- }
139
- },
140
- /**
141
- * Lookup26: sp_runtime::ModuleError
142
- **/
143
- SpRuntimeModuleError: {
144
- index: 'u8',
145
- error: '[u8;4]'
146
- },
147
- /**
148
- * Lookup27: sp_runtime::TokenError
149
- **/
150
- SpRuntimeTokenError: {
151
- _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked']
152
- },
153
- /**
154
- * Lookup28: sp_arithmetic::ArithmeticError
155
- **/
156
- SpArithmeticArithmeticError: {
157
- _enum: ['Underflow', 'Overflow', 'DivisionByZero']
158
- },
159
- /**
160
- * Lookup29: sp_runtime::TransactionalError
161
- **/
162
- SpRuntimeTransactionalError: {
163
- _enum: ['LimitReached', 'NoLayer']
164
- },
165
- /**
166
- * Lookup30: pallet_balances::pallet::Event<T, I>
167
- **/
168
- PalletBalancesEvent: {
169
- _enum: {
170
- Endowed: {
171
- account: 'AccountId32',
172
- freeBalance: 'u128',
173
- },
174
- DustLost: {
175
- account: 'AccountId32',
176
- amount: 'u128',
177
- },
178
- Transfer: {
179
- from: 'AccountId32',
180
- to: 'AccountId32',
181
- amount: 'u128',
182
- },
183
- BalanceSet: {
184
- who: 'AccountId32',
185
- free: 'u128',
186
- },
187
- Reserved: {
188
- who: 'AccountId32',
189
- amount: 'u128',
190
- },
191
- Unreserved: {
192
- who: 'AccountId32',
193
- amount: 'u128',
194
- },
195
- ReserveRepatriated: {
196
- from: 'AccountId32',
197
- to: 'AccountId32',
198
- amount: 'u128',
199
- destinationStatus: 'FrameSupportTokensMiscBalanceStatus',
200
- },
201
- Deposit: {
202
- who: 'AccountId32',
203
- amount: 'u128',
204
- },
205
- Withdraw: {
206
- who: 'AccountId32',
207
- amount: 'u128',
208
- },
209
- Slashed: {
210
- who: 'AccountId32',
211
- amount: 'u128',
212
- },
213
- Minted: {
214
- who: 'AccountId32',
215
- amount: 'u128',
216
- },
217
- Burned: {
218
- who: 'AccountId32',
219
- amount: 'u128',
220
- },
221
- Suspended: {
222
- who: 'AccountId32',
223
- amount: 'u128',
224
- },
225
- Restored: {
226
- who: 'AccountId32',
227
- amount: 'u128',
228
- },
229
- Upgraded: {
230
- who: 'AccountId32',
231
- },
232
- Issued: {
233
- amount: 'u128',
234
- },
235
- Rescinded: {
236
- amount: 'u128',
237
- },
238
- Locked: {
239
- who: 'AccountId32',
240
- amount: 'u128',
241
- },
242
- Unlocked: {
243
- who: 'AccountId32',
244
- amount: 'u128',
245
- },
246
- Frozen: {
247
- who: 'AccountId32',
248
- amount: 'u128',
249
- },
250
- Thawed: {
251
- who: 'AccountId32',
252
- amount: 'u128'
253
- }
254
- }
255
- },
256
- /**
257
- * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
258
- **/
259
- FrameSupportTokensMiscBalanceStatus: {
260
- _enum: ['Free', 'Reserved']
261
- },
262
- /**
263
- * Lookup32: sugarfunge_validator_set::pallet::Event<T>
264
- **/
265
- SugarfungeValidatorSetEvent: {
266
- _enum: {
267
- ValidatorAdditionInitiated: 'AccountId32',
268
- ValidatorRemovalInitiated: 'AccountId32'
269
- }
270
- },
271
- /**
272
- * Lookup33: pallet_grandpa::pallet::Event
273
- **/
274
- PalletGrandpaEvent: {
275
- _enum: {
276
- NewAuthorities: {
277
- authoritySet: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
278
- },
279
- Paused: 'Null',
280
- Resumed: 'Null'
281
- }
282
- },
283
- /**
284
- * Lookup36: sp_consensus_grandpa::app::Public
285
- **/
286
- SpConsensusGrandpaAppPublic: 'SpCoreEd25519Public',
287
- /**
288
- * Lookup37: sp_core::ed25519::Public
289
- **/
290
- SpCoreEd25519Public: '[u8;32]',
291
- /**
292
- * Lookup38: pallet_transaction_payment::pallet::Event<T>
293
- **/
294
- PalletTransactionPaymentEvent: {
295
- _enum: {
296
- TransactionFeePaid: {
297
- who: 'AccountId32',
298
- actualFee: 'u128',
299
- tip: 'u128'
300
- }
301
- }
302
- },
303
- /**
304
- * Lookup39: pallet_sudo::pallet::Event<T>
305
- **/
306
- PalletSudoEvent: {
307
- _enum: {
308
- Sudid: {
309
- sudoResult: 'Result<Null, SpRuntimeDispatchError>',
310
- },
311
- KeyChanged: {
312
- oldSudoer: 'Option<AccountId32>',
313
- },
314
- SudoAsDone: {
315
- sudoResult: 'Result<Null, SpRuntimeDispatchError>'
316
- }
317
- }
318
- },
319
- /**
320
- * Lookup43: pallet_scheduler::pallet::Event<T>
321
- **/
322
- PalletSchedulerEvent: {
323
- _enum: {
324
- Scheduled: {
325
- when: 'u32',
326
- index: 'u32',
327
- },
328
- Canceled: {
329
- when: 'u32',
330
- index: 'u32',
331
- },
332
- Dispatched: {
333
- task: '(u32,u32)',
334
- id: 'Option<[u8;32]>',
335
- result: 'Result<Null, SpRuntimeDispatchError>',
336
- },
337
- CallUnavailable: {
338
- task: '(u32,u32)',
339
- id: 'Option<[u8;32]>',
340
- },
341
- PeriodicFailed: {
342
- task: '(u32,u32)',
343
- id: 'Option<[u8;32]>',
344
- },
345
- PermanentlyOverweight: {
346
- task: '(u32,u32)',
347
- id: 'Option<[u8;32]>'
348
- }
349
- }
350
- },
351
- /**
352
- * Lookup46: pallet_collective::pallet::Event<T, I>
353
- **/
354
- PalletCollectiveEvent: {
355
- _enum: {
356
- Proposed: {
357
- account: 'AccountId32',
358
- proposalIndex: 'u32',
359
- proposalHash: 'H256',
360
- threshold: 'u32',
361
- },
362
- Voted: {
363
- account: 'AccountId32',
364
- proposalHash: 'H256',
365
- voted: 'bool',
366
- yes: 'u32',
367
- no: 'u32',
368
- },
369
- Approved: {
370
- proposalHash: 'H256',
371
- },
372
- Disapproved: {
373
- proposalHash: 'H256',
374
- },
375
- Executed: {
376
- proposalHash: 'H256',
377
- result: 'Result<Null, SpRuntimeDispatchError>',
378
- },
379
- MemberExecuted: {
380
- proposalHash: 'H256',
381
- result: 'Result<Null, SpRuntimeDispatchError>',
382
- },
383
- Closed: {
384
- proposalHash: 'H256',
385
- yes: 'u32',
386
- no: 'u32'
387
- }
388
- }
389
- },
390
- /**
391
- * Lookup48: pallet_session::pallet::Event
392
- **/
393
- PalletSessionEvent: {
394
- _enum: {
395
- NewSession: {
396
- sessionIndex: 'u32'
397
- }
398
- }
399
- },
400
- /**
401
- * Lookup49: pallet_im_online::pallet::Event<T>
402
- **/
403
- PalletImOnlineEvent: {
404
- _enum: {
405
- HeartbeatReceived: {
406
- authorityId: 'PalletImOnlineSr25519AppSr25519Public',
407
- },
408
- AllGood: 'Null',
409
- SomeOffline: {
410
- offline: 'Vec<(AccountId32,AccountId32)>'
411
- }
412
- }
413
- },
414
- /**
415
- * Lookup50: pallet_im_online::sr25519::app_sr25519::Public
416
- **/
417
- PalletImOnlineSr25519AppSr25519Public: 'SpCoreSr25519Public',
418
- /**
419
- * Lookup51: sp_core::sr25519::Public
420
- **/
421
- SpCoreSr25519Public: '[u8;32]',
422
- /**
423
- * Lookup54: sugarfunge_asset::pallet::Event<T>
424
- **/
425
- SugarfungeAssetEvent: {
426
- _enum: {
427
- ClassCreated: {
428
- classId: 'u64',
429
- who: 'AccountId32',
430
- },
431
- AssetCreated: {
432
- classId: 'u64',
433
- assetId: 'u64',
434
- who: 'AccountId32',
435
- },
436
- AssetMetadataUpdated: {
437
- classId: 'u64',
438
- assetId: 'u64',
439
- who: 'AccountId32',
440
- metadata: 'Bytes',
441
- },
442
- Mint: {
443
- who: 'AccountId32',
444
- to: 'AccountId32',
445
- classId: 'u64',
446
- assetId: 'u64',
447
- amount: 'u128',
448
- },
449
- BatchMint: {
450
- who: 'AccountId32',
451
- to: 'AccountId32',
452
- classId: 'u64',
453
- assetIds: 'Vec<u64>',
454
- amounts: 'Vec<u128>',
455
- },
456
- Burn: {
457
- who: 'AccountId32',
458
- from: 'AccountId32',
459
- classId: 'u64',
460
- assetId: 'u64',
461
- amount: 'u128',
462
- },
463
- BatchBurn: {
464
- who: 'AccountId32',
465
- from: 'AccountId32',
466
- classId: 'u64',
467
- assetIds: 'Vec<u64>',
468
- amounts: 'Vec<u128>',
469
- },
470
- Transferred: {
471
- who: 'AccountId32',
472
- from: 'AccountId32',
473
- to: 'AccountId32',
474
- classId: 'u64',
475
- assetId: 'u64',
476
- amount: 'u128',
477
- },
478
- BatchTransferred: {
479
- who: 'AccountId32',
480
- from: 'AccountId32',
481
- to: 'AccountId32',
482
- classId: 'u64',
483
- assetIds: 'Vec<u64>',
484
- amounts: 'Vec<u128>',
485
- },
486
- OperatorApprovalForAll: {
487
- who: 'AccountId32',
488
- operator: 'AccountId32',
489
- classId: 'u64',
490
- approved: 'bool'
491
- }
492
- }
493
- },
494
- /**
495
- * Lookup57: sugarfunge_dao::pallet::Event<T>
496
- **/
497
- SugarfungeDaoEvent: {
498
- _enum: {
499
- SomethingStored: '(u32,AccountId32)'
500
- }
501
- },
502
- /**
503
- * Lookup58: sugarfunge_bundle::pallet::Event<T>
504
- **/
505
- SugarfungeBundleEvent: {
506
- _enum: {
507
- Register: {
508
- bundleId: 'H256',
509
- who: 'AccountId32',
510
- classId: 'u64',
511
- assetId: 'u64',
512
- },
513
- Mint: {
514
- bundleId: 'H256',
515
- who: 'AccountId32',
516
- from: 'AccountId32',
517
- to: 'AccountId32',
518
- amount: 'u128',
519
- },
520
- Burn: {
521
- bundleId: 'H256',
522
- who: 'AccountId32',
523
- from: 'AccountId32',
524
- to: 'AccountId32',
525
- amount: 'u128'
526
- }
527
- }
528
- },
529
- /**
530
- * Lookup59: sugarfunge_bag::pallet::Event<T>
531
- **/
532
- SugarfungeBagEvent: {
533
- _enum: {
534
- Register: {
535
- who: 'AccountId32',
536
- classId: 'u64',
537
- },
538
- Created: {
539
- bag: 'AccountId32',
540
- who: 'AccountId32',
541
- classId: 'u64',
542
- assetId: 'u64',
543
- owners: 'Vec<AccountId32>',
544
- },
545
- Deposit: {
546
- bag: 'AccountId32',
547
- who: 'AccountId32',
548
- },
549
- Sweep: {
550
- bag: 'AccountId32',
551
- who: 'AccountId32',
552
- to: 'AccountId32'
553
- }
554
- }
555
- },
556
- /**
557
- * Lookup61: sugarfunge_exgine::pallet::Event<T>
558
- **/
559
- SugarfungeExgineEvent: {
560
- _enum: {
561
- SomethingStored: '(u32,AccountId32)'
562
- }
563
- },
564
- /**
565
- * Lookup62: sugarfunge_market::pallet::Event<T>
566
- **/
567
- SugarfungeMarketEvent: {
568
- _enum: {
569
- Created: {
570
- marketId: 'u64',
571
- who: 'AccountId32',
572
- },
573
- RateCreated: {
574
- marketId: 'u64',
575
- marketRateId: 'u64',
576
- who: 'AccountId32',
577
- },
578
- LiquidityAdded: {
579
- who: 'AccountId32',
580
- marketId: 'u64',
581
- marketRateId: 'u64',
582
- classIds: 'Vec<u64>',
583
- assetIds: 'Vec<Vec<u64>>',
584
- amounts: 'Vec<Vec<u128>>',
585
- },
586
- LiquidityRemoved: {
587
- who: 'AccountId32',
588
- marketId: 'u64',
589
- marketRateId: 'u64',
590
- classIds: 'Vec<u64>',
591
- assetIds: 'Vec<Vec<u64>>',
592
- amounts: 'Vec<Vec<u128>>',
593
- },
594
- Deposit: {
595
- who: 'AccountId32',
596
- marketId: 'u64',
597
- marketRateId: 'u64',
598
- amount: 'u128',
599
- balances: 'Vec<SugarfungeMarketRateBalance>',
600
- success: 'bool',
601
- },
602
- Exchanged: {
603
- buyer: 'AccountId32',
604
- marketId: 'u64',
605
- marketRateId: 'u64',
606
- amount: 'u128',
607
- balances: 'Vec<SugarfungeMarketRateBalance>',
608
- success: 'bool'
609
- }
610
- }
611
- },
612
- /**
613
- * Lookup66: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
614
- **/
615
- SugarfungeMarketRateBalance: {
616
- rate: 'SugarfungeMarketAssetRate',
617
- balance: 'i128'
618
- },
619
- /**
620
- * Lookup67: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
621
- **/
622
- SugarfungeMarketAssetRate: {
623
- classId: 'u64',
624
- assetId: 'u64',
625
- action: 'SugarfungeMarketRateAction',
626
- from: 'SugarfungeMarketRateAccount',
627
- to: 'SugarfungeMarketRateAccount'
628
- },
629
- /**
630
- * Lookup68: sugarfunge_market::RateAction<ClassId, AssetId>
631
- **/
632
- SugarfungeMarketRateAction: {
633
- _enum: {
634
- Transfer: 'i128',
635
- MarketTransfer: '(SugarfungeMarketAmm,u64,u64)',
636
- Mint: 'i128',
637
- Burn: 'i128',
638
- Has: '(SugarfungeMarketAmountOp,i128)'
639
- }
640
- },
641
- /**
642
- * Lookup70: sugarfunge_market::AMM
643
- **/
644
- SugarfungeMarketAmm: {
645
- _enum: ['Constant']
646
- },
647
- /**
648
- * Lookup71: sugarfunge_market::AmountOp
649
- **/
650
- SugarfungeMarketAmountOp: {
651
- _enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
652
- },
653
- /**
654
- * Lookup72: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
655
- **/
656
- SugarfungeMarketRateAccount: {
657
- _enum: {
658
- Market: 'Null',
659
- Account: 'AccountId32',
660
- Buyer: 'Null'
661
- }
662
- },
663
- /**
664
- * Lookup73: functionland_fula::pallet::Event<T>
665
- **/
666
- FunctionlandFulaEvent: {
667
- _enum: {
668
- ManifestOutput: {
669
- uploader: 'AccountId32',
670
- storer: 'Vec<AccountId32>',
671
- poolId: 'u32',
672
- manifest: 'Bytes',
673
- },
674
- StorageManifestOutput: {
675
- storer: 'AccountId32',
676
- poolId: 'u32',
677
- cid: 'Bytes',
678
- },
679
- RemoveStorerOutput: {
680
- storer: 'Option<AccountId32>',
681
- poolId: 'u32',
682
- cid: 'Bytes',
683
- },
684
- ManifestRemoved: {
685
- uploader: 'AccountId32',
686
- poolId: 'u32',
687
- cid: 'Bytes',
688
- },
689
- ManifestStorageUpdated: {
690
- storer: 'AccountId32',
691
- poolId: 'u32',
692
- cid: 'Bytes',
693
- activeCycles: 'u16',
694
- missedCycles: 'u16',
695
- activeDays: 'i32',
696
- },
697
- BatchManifestOutput: {
698
- uploader: 'AccountId32',
699
- poolIds: 'Vec<u32>',
700
- manifests: 'Vec<Bytes>',
701
- },
702
- BatchStorageManifestOutput: {
703
- storer: 'AccountId32',
704
- poolId: 'u32',
705
- cids: 'Vec<Bytes>',
706
- },
707
- BatchRemoveStorerOutput: {
708
- storer: 'AccountId32',
709
- poolId: 'u32',
710
- cids: 'Vec<Bytes>',
711
- },
712
- BatchManifestRemoved: {
713
- uploader: 'AccountId32',
714
- poolIds: 'Vec<u32>',
715
- cids: 'Vec<Bytes>',
716
- },
717
- VerifiedStorerManifests: {
718
- storer: 'AccountId32',
719
- validCids: 'Vec<Bytes>',
720
- invalidCids: 'Vec<Bytes>',
721
- },
722
- UpdateFileSizeOutput: {
723
- _alias: {
724
- size_: 'size',
725
- },
726
- account: 'AccountId32',
727
- poolId: 'u32',
728
- cid: 'Bytes',
729
- size_: 'u64',
730
- },
731
- UpdateFileSizesOutput: {
732
- account: 'AccountId32',
733
- poolId: 'u32',
734
- cids: 'Vec<Bytes>',
735
- sizes: 'Vec<u64>',
736
- },
737
- GetManifests: {
738
- manifests: 'Vec<FunctionlandFulaManifestWithPoolId>',
739
- },
740
- GetAvailableManifests: {
741
- manifests: 'Vec<FunctionlandFulaManifestAvailable>',
742
- },
743
- GetManifestsStorerData: {
744
- manifests: 'Vec<FunctionlandFulaStorerData>',
745
- },
746
- Challenge: {
747
- challenger: 'AccountId32',
748
- challenged: 'AccountId32',
749
- cid: 'Bytes',
750
- state: 'FunctionlandFulaChallengeState',
751
- },
752
- VerifiedChallenges: {
753
- challenged: 'AccountId32',
754
- successful: 'Vec<Bytes>',
755
- failed: 'Vec<Bytes>',
756
- },
757
- MintedLaborTokens: {
758
- account: 'AccountId32',
759
- classId: 'u64',
760
- assetId: 'u64',
761
- amount: 'u128',
762
- calculatedAmount: 'u128'
763
- }
764
- }
765
- },
766
- /**
767
- * Lookup79: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
768
- **/
769
- FunctionlandFulaManifestWithPoolId: {
770
- _alias: {
771
- size_: 'size'
772
- },
773
- poolId: 'u32',
774
- usersData: 'Vec<FunctionlandFulaUploaderData>',
775
- manifestMetadata: 'Bytes',
776
- size_: 'Option<u64>'
777
- },
778
- /**
779
- * Lookup82: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
780
- **/
781
- FunctionlandFulaUploaderData: {
782
- uploader: 'AccountId32',
783
- storers: 'Vec<AccountId32>',
784
- replicationFactor: 'u16'
785
- },
786
- /**
787
- * Lookup85: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
788
- **/
789
- FunctionlandFulaManifestAvailable: {
790
- poolId: 'u32',
791
- replicationFactor: 'u16',
792
- manifestMetadata: 'Bytes'
793
- },
794
- /**
795
- * Lookup87: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
796
- **/
797
- FunctionlandFulaStorerData: {
798
- poolId: 'u32',
799
- cid: 'Bytes',
800
- account: 'AccountId32',
801
- manifestData: 'FunctionlandFulaManifestStorageData'
802
- },
803
- /**
804
- * Lookup89: functionland_fula::ManifestStorageData
805
- **/
806
- FunctionlandFulaManifestStorageData: {
807
- activeCycles: 'u16',
808
- missedCycles: 'u16',
809
- activeDays: 'i32',
810
- challengeState: 'FunctionlandFulaChallengeState'
811
- },
812
- /**
813
- * Lookup90: functionland_fula::ChallengeState
814
- **/
815
- FunctionlandFulaChallengeState: {
816
- _enum: ['Open', 'Successful', 'Failed']
817
- },
818
- /**
819
- * Lookup91: fula_pool::pallet::Event<T>
820
- **/
821
- FulaPoolEvent: {
822
- _enum: {
823
- PoolCreated: {
824
- owner: 'Option<AccountId32>',
825
- poolId: 'u32',
826
- },
827
- JoinRequested: {
828
- account: 'AccountId32',
829
- poolId: 'u32',
830
- },
831
- RequestWithdrawn: {
832
- account: 'AccountId32',
833
- poolId: 'u32',
834
- },
835
- VotingResult: {
836
- account: 'AccountId32',
837
- poolId: 'u32',
838
- result: 'Bytes',
839
- },
840
- CapacityReached: {
841
- poolId: 'u32',
842
- },
843
- ParticipantLeft: {
844
- account: 'AccountId32',
845
- poolId: 'u32'
846
- }
847
- }
848
- },
849
- /**
850
- * Lookup92: pallet_utility::pallet::Event
851
- **/
852
- PalletUtilityEvent: {
853
- _enum: {
854
- BatchInterrupted: {
855
- index: 'u32',
856
- error: 'SpRuntimeDispatchError',
857
- },
858
- BatchCompleted: 'Null',
859
- BatchCompletedWithErrors: 'Null',
860
- ItemCompleted: 'Null',
861
- ItemFailed: {
862
- error: 'SpRuntimeDispatchError',
863
- },
864
- DispatchedAs: {
865
- result: 'Result<Null, SpRuntimeDispatchError>'
866
- }
867
- }
868
- },
869
- /**
870
- * Lookup93: frame_system::Phase
871
- **/
872
- FrameSystemPhase: {
873
- _enum: {
874
- ApplyExtrinsic: 'u32',
875
- Finalization: 'Null',
876
- Initialization: 'Null'
877
- }
878
- },
879
- /**
880
- * Lookup96: frame_system::LastRuntimeUpgradeInfo
881
- **/
882
- FrameSystemLastRuntimeUpgradeInfo: {
883
- specVersion: 'Compact<u32>',
884
- specName: 'Text'
885
- },
886
- /**
887
- * Lookup99: frame_system::pallet::Call<T>
888
- **/
889
- FrameSystemCall: {
890
- _enum: {
891
- remark: {
892
- remark: 'Bytes',
893
- },
894
- set_heap_pages: {
895
- pages: 'u64',
896
- },
897
- set_code: {
898
- code: 'Bytes',
899
- },
900
- set_code_without_checks: {
901
- code: 'Bytes',
902
- },
903
- set_storage: {
904
- items: 'Vec<(Bytes,Bytes)>',
905
- },
906
- kill_storage: {
907
- _alias: {
908
- keys_: 'keys',
909
- },
910
- keys_: 'Vec<Bytes>',
911
- },
912
- kill_prefix: {
913
- prefix: 'Bytes',
914
- subkeys: 'u32',
915
- },
916
- remark_with_event: {
917
- remark: 'Bytes'
918
- }
919
- }
920
- },
921
- /**
922
- * Lookup102: frame_system::limits::BlockWeights
923
- **/
924
- FrameSystemLimitsBlockWeights: {
925
- baseBlock: 'SpWeightsWeightV2Weight',
926
- maxBlock: 'SpWeightsWeightV2Weight',
927
- perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
928
- },
929
- /**
930
- * Lookup103: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
931
- **/
932
- FrameSupportDispatchPerDispatchClassWeightsPerClass: {
933
- normal: 'FrameSystemLimitsWeightsPerClass',
934
- operational: 'FrameSystemLimitsWeightsPerClass',
935
- mandatory: 'FrameSystemLimitsWeightsPerClass'
936
- },
937
- /**
938
- * Lookup104: frame_system::limits::WeightsPerClass
939
- **/
940
- FrameSystemLimitsWeightsPerClass: {
941
- baseExtrinsic: 'SpWeightsWeightV2Weight',
942
- maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
943
- maxTotal: 'Option<SpWeightsWeightV2Weight>',
944
- reserved: 'Option<SpWeightsWeightV2Weight>'
945
- },
946
- /**
947
- * Lookup106: frame_system::limits::BlockLength
948
- **/
949
- FrameSystemLimitsBlockLength: {
950
- max: 'FrameSupportDispatchPerDispatchClassU32'
951
- },
952
- /**
953
- * Lookup107: frame_support::dispatch::PerDispatchClass<T>
954
- **/
955
- FrameSupportDispatchPerDispatchClassU32: {
956
- normal: 'u32',
957
- operational: 'u32',
958
- mandatory: 'u32'
959
- },
960
- /**
961
- * Lookup108: sp_weights::RuntimeDbWeight
962
- **/
963
- SpWeightsRuntimeDbWeight: {
964
- read: 'u64',
965
- write: 'u64'
966
- },
967
- /**
968
- * Lookup109: sp_version::RuntimeVersion
969
- **/
970
- SpVersionRuntimeVersion: {
971
- specName: 'Text',
972
- implName: 'Text',
973
- authoringVersion: 'u32',
974
- specVersion: 'u32',
975
- implVersion: 'u32',
976
- apis: 'Vec<([u8;8],u32)>',
977
- transactionVersion: 'u32',
978
- stateVersion: 'u8'
979
- },
980
- /**
981
- * Lookup114: frame_system::pallet::Error<T>
982
- **/
983
- FrameSystemError: {
984
- _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
985
- },
986
- /**
987
- * Lookup115: pallet_timestamp::pallet::Call<T>
988
- **/
989
- PalletTimestampCall: {
990
- _enum: {
991
- set: {
992
- now: 'Compact<u64>'
993
- }
994
- }
995
- },
996
- /**
997
- * Lookup117: pallet_balances::types::BalanceLock<Balance>
998
- **/
999
- PalletBalancesBalanceLock: {
1000
- id: '[u8;8]',
1001
- amount: 'u128',
1002
- reasons: 'PalletBalancesReasons'
1003
- },
1004
- /**
1005
- * Lookup118: pallet_balances::types::Reasons
1006
- **/
1007
- PalletBalancesReasons: {
1008
- _enum: ['Fee', 'Misc', 'All']
1009
- },
1010
- /**
1011
- * Lookup121: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1012
- **/
1013
- PalletBalancesReserveData: {
1014
- id: '[u8;8]',
1015
- amount: 'u128'
1016
- },
1017
- /**
1018
- * Lookup124: pallet_balances::types::IdAmount<Id, Balance>
1019
- **/
1020
- PalletBalancesIdAmount: {
1021
- id: 'Null',
1022
- amount: 'u128'
1023
- },
1024
- /**
1025
- * Lookup126: pallet_balances::pallet::Call<T, I>
1026
- **/
1027
- PalletBalancesCall: {
1028
- _enum: {
1029
- transfer_allow_death: {
1030
- dest: 'MultiAddress',
1031
- value: 'Compact<u128>',
1032
- },
1033
- set_balance_deprecated: {
1034
- who: 'MultiAddress',
1035
- newFree: 'Compact<u128>',
1036
- oldReserved: 'Compact<u128>',
1037
- },
1038
- force_transfer: {
1039
- source: 'MultiAddress',
1040
- dest: 'MultiAddress',
1041
- value: 'Compact<u128>',
1042
- },
1043
- transfer_keep_alive: {
1044
- dest: 'MultiAddress',
1045
- value: 'Compact<u128>',
1046
- },
1047
- transfer_all: {
1048
- dest: 'MultiAddress',
1049
- keepAlive: 'bool',
1050
- },
1051
- force_unreserve: {
1052
- who: 'MultiAddress',
1053
- amount: 'u128',
1054
- },
1055
- upgrade_accounts: {
1056
- who: 'Vec<AccountId32>',
1057
- },
1058
- transfer: {
1059
- dest: 'MultiAddress',
1060
- value: 'Compact<u128>',
1061
- },
1062
- force_set_balance: {
1063
- who: 'MultiAddress',
1064
- newFree: 'Compact<u128>'
1065
- }
1066
- }
1067
- },
1068
- /**
1069
- * Lookup131: pallet_balances::pallet::Error<T, I>
1070
- **/
1071
- PalletBalancesError: {
1072
- _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
1073
- },
1074
- /**
1075
- * Lookup133: sugarfunge_validator_set::pallet::Call<T>
1076
- **/
1077
- SugarfungeValidatorSetCall: {
1078
- _enum: {
1079
- add_validator: {
1080
- validatorId: 'AccountId32',
1081
- },
1082
- remove_validator: {
1083
- validatorId: 'AccountId32',
1084
- },
1085
- add_validator_again: {
1086
- validatorId: 'AccountId32'
1087
- }
1088
- }
1089
- },
1090
- /**
1091
- * Lookup134: sugarfunge_validator_set::pallet::Error<T>
1092
- **/
1093
- SugarfungeValidatorSetError: {
1094
- _enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
1095
- },
1096
- /**
1097
- * Lookup135: pallet_grandpa::StoredState<N>
1098
- **/
1099
- PalletGrandpaStoredState: {
1100
- _enum: {
1101
- Live: 'Null',
1102
- PendingPause: {
1103
- scheduledAt: 'u32',
1104
- delay: 'u32',
1105
- },
1106
- Paused: 'Null',
1107
- PendingResume: {
1108
- scheduledAt: 'u32',
1109
- delay: 'u32'
1110
- }
1111
- }
1112
- },
1113
- /**
1114
- * Lookup136: pallet_grandpa::StoredPendingChange<N, Limit>
1115
- **/
1116
- PalletGrandpaStoredPendingChange: {
1117
- scheduledAt: 'u32',
1118
- delay: 'u32',
1119
- nextAuthorities: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
1120
- forced: 'Option<u32>'
1121
- },
1122
- /**
1123
- * Lookup139: pallet_grandpa::pallet::Call<T>
1124
- **/
1125
- PalletGrandpaCall: {
1126
- _enum: {
1127
- report_equivocation: {
1128
- equivocationProof: 'SpConsensusGrandpaEquivocationProof',
1129
- keyOwnerProof: 'SpCoreVoid',
1130
- },
1131
- report_equivocation_unsigned: {
1132
- equivocationProof: 'SpConsensusGrandpaEquivocationProof',
1133
- keyOwnerProof: 'SpCoreVoid',
1134
- },
1135
- note_stalled: {
1136
- delay: 'u32',
1137
- bestFinalizedBlockNumber: 'u32'
1138
- }
1139
- }
1140
- },
1141
- /**
1142
- * Lookup140: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1143
- **/
1144
- SpConsensusGrandpaEquivocationProof: {
1145
- setId: 'u64',
1146
- equivocation: 'SpConsensusGrandpaEquivocation'
1147
- },
1148
- /**
1149
- * Lookup141: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1150
- **/
1151
- SpConsensusGrandpaEquivocation: {
1152
- _enum: {
1153
- Prevote: 'FinalityGrandpaEquivocationPrevote',
1154
- Precommit: 'FinalityGrandpaEquivocationPrecommit'
1155
- }
1156
- },
1157
- /**
1158
- * Lookup142: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1159
- **/
1160
- FinalityGrandpaEquivocationPrevote: {
1161
- roundNumber: 'u64',
1162
- identity: 'SpConsensusGrandpaAppPublic',
1163
- first: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
1164
- second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
1165
- },
1166
- /**
1167
- * Lookup143: finality_grandpa::Prevote<primitive_types::H256, N>
1168
- **/
1169
- FinalityGrandpaPrevote: {
1170
- targetHash: 'H256',
1171
- targetNumber: 'u32'
1172
- },
1173
- /**
1174
- * Lookup144: sp_consensus_grandpa::app::Signature
1175
- **/
1176
- SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
1177
- /**
1178
- * Lookup145: sp_core::ed25519::Signature
1179
- **/
1180
- SpCoreEd25519Signature: '[u8;64]',
1181
- /**
1182
- * Lookup148: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1183
- **/
1184
- FinalityGrandpaEquivocationPrecommit: {
1185
- roundNumber: 'u64',
1186
- identity: 'SpConsensusGrandpaAppPublic',
1187
- first: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
1188
- second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
1189
- },
1190
- /**
1191
- * Lookup149: finality_grandpa::Precommit<primitive_types::H256, N>
1192
- **/
1193
- FinalityGrandpaPrecommit: {
1194
- targetHash: 'H256',
1195
- targetNumber: 'u32'
1196
- },
1197
- /**
1198
- * Lookup151: sp_core::Void
1199
- **/
1200
- SpCoreVoid: 'Null',
1201
- /**
1202
- * Lookup152: pallet_grandpa::pallet::Error<T>
1203
- **/
1204
- PalletGrandpaError: {
1205
- _enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
1206
- },
1207
- /**
1208
- * Lookup154: pallet_transaction_payment::Releases
1209
- **/
1210
- PalletTransactionPaymentReleases: {
1211
- _enum: ['V1Ancient', 'V2']
1212
- },
1213
- /**
1214
- * Lookup155: pallet_sudo::pallet::Call<T>
1215
- **/
1216
- PalletSudoCall: {
1217
- _enum: {
1218
- sudo: {
1219
- call: 'Call',
1220
- },
1221
- sudo_unchecked_weight: {
1222
- call: 'Call',
1223
- weight: 'SpWeightsWeightV2Weight',
1224
- },
1225
- set_key: {
1226
- _alias: {
1227
- new_: 'new',
1228
- },
1229
- new_: 'MultiAddress',
1230
- },
1231
- sudo_as: {
1232
- who: 'MultiAddress',
1233
- call: 'Call'
1234
- }
1235
- }
1236
- },
1237
- /**
1238
- * Lookup157: pallet_scheduler::pallet::Call<T>
1239
- **/
1240
- PalletSchedulerCall: {
1241
- _enum: {
1242
- schedule: {
1243
- when: 'u32',
1244
- maybePeriodic: 'Option<(u32,u32)>',
1245
- priority: 'u8',
1246
- call: 'Call',
1247
- },
1248
- cancel: {
1249
- when: 'u32',
1250
- index: 'u32',
1251
- },
1252
- schedule_named: {
1253
- id: '[u8;32]',
1254
- when: 'u32',
1255
- maybePeriodic: 'Option<(u32,u32)>',
1256
- priority: 'u8',
1257
- call: 'Call',
1258
- },
1259
- cancel_named: {
1260
- id: '[u8;32]',
1261
- },
1262
- schedule_after: {
1263
- after: 'u32',
1264
- maybePeriodic: 'Option<(u32,u32)>',
1265
- priority: 'u8',
1266
- call: 'Call',
1267
- },
1268
- schedule_named_after: {
1269
- id: '[u8;32]',
1270
- after: 'u32',
1271
- maybePeriodic: 'Option<(u32,u32)>',
1272
- priority: 'u8',
1273
- call: 'Call'
1274
- }
1275
- }
1276
- },
1277
- /**
1278
- * Lookup159: pallet_collective::pallet::Call<T, I>
1279
- **/
1280
- PalletCollectiveCall: {
1281
- _enum: {
1282
- set_members: {
1283
- newMembers: 'Vec<AccountId32>',
1284
- prime: 'Option<AccountId32>',
1285
- oldCount: 'u32',
1286
- },
1287
- execute: {
1288
- proposal: 'Call',
1289
- lengthBound: 'Compact<u32>',
1290
- },
1291
- propose: {
1292
- threshold: 'Compact<u32>',
1293
- proposal: 'Call',
1294
- lengthBound: 'Compact<u32>',
1295
- },
1296
- vote: {
1297
- proposal: 'H256',
1298
- index: 'Compact<u32>',
1299
- approve: 'bool',
1300
- },
1301
- __Unused4: 'Null',
1302
- disapprove_proposal: {
1303
- proposalHash: 'H256',
1304
- },
1305
- close: {
1306
- proposalHash: 'H256',
1307
- index: 'Compact<u32>',
1308
- proposalWeightBound: 'SpWeightsWeightV2Weight',
1309
- lengthBound: 'Compact<u32>'
1310
- }
1311
- }
1312
- },
1313
- /**
1314
- * Lookup160: pallet_session::pallet::Call<T>
1315
- **/
1316
- PalletSessionCall: {
1317
- _enum: {
1318
- set_keys: {
1319
- _alias: {
1320
- keys_: 'keys',
1321
- },
1322
- keys_: 'SugarfungeRuntimeOpaqueSessionKeys',
1323
- proof: 'Bytes',
1324
- },
1325
- purge_keys: 'Null'
1326
- }
1327
- },
1328
- /**
1329
- * Lookup161: sugarfunge_runtime::opaque::SessionKeys
1330
- **/
1331
- SugarfungeRuntimeOpaqueSessionKeys: {
1332
- aura: 'SpConsensusAuraSr25519AppSr25519Public',
1333
- grandpa: 'SpConsensusGrandpaAppPublic',
1334
- imOnline: 'PalletImOnlineSr25519AppSr25519Public'
1335
- },
1336
- /**
1337
- * Lookup162: sp_consensus_aura::sr25519::app_sr25519::Public
1338
- **/
1339
- SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1340
- /**
1341
- * Lookup163: pallet_im_online::pallet::Call<T>
1342
- **/
1343
- PalletImOnlineCall: {
1344
- _enum: {
1345
- heartbeat: {
1346
- heartbeat: 'PalletImOnlineHeartbeat',
1347
- signature: 'PalletImOnlineSr25519AppSr25519Signature'
1348
- }
1349
- }
1350
- },
1351
- /**
1352
- * Lookup164: pallet_im_online::Heartbeat<BlockNumber>
1353
- **/
1354
- PalletImOnlineHeartbeat: {
1355
- blockNumber: 'u32',
1356
- networkState: 'SpCoreOffchainOpaqueNetworkState',
1357
- sessionIndex: 'u32',
1358
- authorityIndex: 'u32',
1359
- validatorsLen: 'u32'
1360
- },
1361
- /**
1362
- * Lookup165: sp_core::offchain::OpaqueNetworkState
1363
- **/
1364
- SpCoreOffchainOpaqueNetworkState: {
1365
- peerId: 'OpaquePeerId',
1366
- externalAddresses: 'Vec<OpaqueMultiaddr>'
1367
- },
1368
- /**
1369
- * Lookup169: pallet_im_online::sr25519::app_sr25519::Signature
1370
- **/
1371
- PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
1372
- /**
1373
- * Lookup170: sp_core::sr25519::Signature
1374
- **/
1375
- SpCoreSr25519Signature: '[u8;64]',
1376
- /**
1377
- * Lookup171: sugarfunge_asset::pallet::Call<T>
1378
- **/
1379
- SugarfungeAssetCall: {
1380
- _enum: {
1381
- create_class: {
1382
- owner: 'AccountId32',
1383
- classId: 'u64',
1384
- metadata: 'Bytes',
1385
- },
1386
- create_asset: {
1387
- classId: 'u64',
1388
- assetId: 'u64',
1389
- metadata: 'Bytes',
1390
- },
1391
- transfer_from: {
1392
- from: 'AccountId32',
1393
- to: 'AccountId32',
1394
- classId: 'u64',
1395
- assetId: 'u64',
1396
- amount: 'u128',
1397
- },
1398
- batch_transfer_from: {
1399
- from: 'AccountId32',
1400
- to: 'AccountId32',
1401
- classId: 'u64',
1402
- assetIds: 'Vec<u64>',
1403
- amounts: 'Vec<u128>',
1404
- },
1405
- mint: {
1406
- to: 'AccountId32',
1407
- classId: 'u64',
1408
- assetId: 'u64',
1409
- amount: 'u128',
1410
- },
1411
- batch_mint: {
1412
- to: 'AccountId32',
1413
- classId: 'u64',
1414
- assetIds: 'Vec<u64>',
1415
- amounts: 'Vec<u128>',
1416
- },
1417
- burn: {
1418
- from: 'AccountId32',
1419
- classId: 'u64',
1420
- assetId: 'u64',
1421
- amount: 'u128',
1422
- },
1423
- batch_burn: {
1424
- from: 'AccountId32',
1425
- classId: 'u64',
1426
- assetIds: 'Vec<u64>',
1427
- amounts: 'Vec<u128>',
1428
- },
1429
- update_class_metadata: {
1430
- classId: 'u64',
1431
- metadata: 'Bytes',
1432
- },
1433
- update_asset_metadata: {
1434
- classId: 'u64',
1435
- assetId: 'u64',
1436
- metadata: 'Bytes'
1437
- }
1438
- }
1439
- },
1440
- /**
1441
- * Lookup174: sugarfunge_dao::pallet::Call<T>
1442
- **/
1443
- SugarfungeDaoCall: {
1444
- _enum: {
1445
- do_something: {
1446
- something: 'u32',
1447
- },
1448
- cause_error: 'Null'
1449
- }
1450
- },
1451
- /**
1452
- * Lookup175: sugarfunge_bundle::pallet::Call<T>
1453
- **/
1454
- SugarfungeBundleCall: {
1455
- _enum: {
1456
- register_bundle: {
1457
- classId: 'u64',
1458
- assetId: 'u64',
1459
- bundleId: 'H256',
1460
- schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1461
- metadata: 'Bytes',
1462
- },
1463
- mint_bundle: {
1464
- from: 'AccountId32',
1465
- to: 'AccountId32',
1466
- bundleId: 'H256',
1467
- amount: 'u128',
1468
- },
1469
- burn_bundle: {
1470
- from: 'AccountId32',
1471
- to: 'AccountId32',
1472
- bundleId: 'H256',
1473
- amount: 'u128'
1474
- }
1475
- }
1476
- },
1477
- /**
1478
- * Lookup183: sugarfunge_bag::pallet::Call<T>
1479
- **/
1480
- SugarfungeBagCall: {
1481
- _enum: {
1482
- register: {
1483
- classId: 'u64',
1484
- metadata: 'Bytes',
1485
- },
1486
- create: {
1487
- classId: 'u64',
1488
- owners: 'Vec<AccountId32>',
1489
- shares: 'Vec<u128>',
1490
- },
1491
- deposit: {
1492
- bag: 'AccountId32',
1493
- classIds: 'Vec<u64>',
1494
- assetIds: 'Vec<Vec<u64>>',
1495
- amounts: 'Vec<Vec<u128>>',
1496
- },
1497
- sweep: {
1498
- to: 'AccountId32',
1499
- bag: 'AccountId32'
1500
- }
1501
- }
1502
- },
1503
- /**
1504
- * Lookup184: sugarfunge_exgine::pallet::Call<T>
1505
- **/
1506
- SugarfungeExgineCall: {
1507
- _enum: {
1508
- do_something: {
1509
- something: 'u32',
1510
- },
1511
- cause_error: 'Null'
1512
- }
1513
- },
1514
- /**
1515
- * Lookup185: sugarfunge_market::pallet::Call<T>
1516
- **/
1517
- SugarfungeMarketCall: {
1518
- _enum: {
1519
- create_market: {
1520
- marketId: 'u64',
1521
- },
1522
- create_market_rate: {
1523
- marketId: 'u64',
1524
- marketRateId: 'u64',
1525
- rates: 'Vec<SugarfungeMarketAssetRate>',
1526
- },
1527
- deposit: {
1528
- marketId: 'u64',
1529
- marketRateId: 'u64',
1530
- amount: 'u128',
1531
- },
1532
- exchange_assets: {
1533
- marketId: 'u64',
1534
- marketRateId: 'u64',
1535
- amount: 'u128'
1536
- }
1537
- }
1538
- },
1539
- /**
1540
- * Lookup188: functionland_fula::pallet::Call<T>
1541
- **/
1542
- FunctionlandFulaCall: {
1543
- _enum: {
1544
- update_manifest: {
1545
- cid: 'Bytes',
1546
- poolId: 'u32',
1547
- activeCycles: 'u16',
1548
- missedCycles: 'u16',
1549
- activeDays: 'i32',
1550
- },
1551
- upload_manifest: {
1552
- manifest: 'Bytes',
1553
- cid: 'Bytes',
1554
- poolId: 'u32',
1555
- replicationFactor: 'u16',
1556
- },
1557
- batch_upload_manifest: {
1558
- manifest: 'Vec<Bytes>',
1559
- cids: 'Vec<Bytes>',
1560
- poolId: 'Vec<u32>',
1561
- replicationFactor: 'Vec<u16>',
1562
- },
1563
- storage_manifest: {
1564
- cid: 'Bytes',
1565
- poolId: 'u32',
1566
- },
1567
- batch_storage_manifest: {
1568
- cids: 'Vec<Bytes>',
1569
- poolId: 'u32',
1570
- },
1571
- remove_stored_manifest: {
1572
- cid: 'Bytes',
1573
- poolId: 'u32',
1574
- },
1575
- batch_remove_stored_manifest: {
1576
- cids: 'Vec<Bytes>',
1577
- poolId: 'u32',
1578
- },
1579
- remove_manifest: {
1580
- cid: 'Bytes',
1581
- poolId: 'u32',
1582
- },
1583
- batch_remove_manifest: {
1584
- cids: 'Vec<Bytes>',
1585
- poolIds: 'Vec<u32>',
1586
- },
1587
- verify_manifests: 'Null',
1588
- get_manifests: {
1589
- poolId: 'Option<u32>',
1590
- uploader: 'Option<AccountId32>',
1591
- storer: 'Option<AccountId32>',
1592
- },
1593
- get_available_manifests: {
1594
- poolId: 'Option<u32>',
1595
- },
1596
- get_manifests_storer_data: {
1597
- poolId: 'Option<u32>',
1598
- storer: 'Option<AccountId32>',
1599
- },
1600
- generate_challenge: 'Null',
1601
- verify_challenge: {
1602
- poolId: 'u32',
1603
- cids: 'Vec<Bytes>',
1604
- classId: 'u64',
1605
- assetId: 'u64',
1606
- },
1607
- mint_labor_tokens: {
1608
- classId: 'u64',
1609
- assetId: 'u64',
1610
- amount: 'u128',
1611
- },
1612
- update_file_size: {
1613
- _alias: {
1614
- size_: 'size',
1615
- },
1616
- cid: 'Bytes',
1617
- poolId: 'u32',
1618
- size_: 'u64',
1619
- },
1620
- update_file_sizes: {
1621
- cids: 'Vec<Bytes>',
1622
- poolId: 'u32',
1623
- sizes: 'Vec<u64>'
1624
- }
1625
- }
1626
- },
1627
- /**
1628
- * Lookup192: fula_pool::pallet::Call<T>
1629
- **/
1630
- FulaPoolCall: {
1631
- _enum: {
1632
- create: {
1633
- name: 'Bytes',
1634
- region: 'Bytes',
1635
- peerId: 'Bytes',
1636
- },
1637
- leave_pool: {
1638
- poolId: 'u32',
1639
- targetAccount: 'Option<AccountId32>',
1640
- },
1641
- join: {
1642
- poolId: 'u32',
1643
- peerId: 'Bytes',
1644
- },
1645
- cancel_join: {
1646
- poolId: 'u32',
1647
- targetAccount: 'Option<AccountId32>',
1648
- },
1649
- vote: {
1650
- poolId: 'u32',
1651
- account: 'AccountId32',
1652
- positive: 'bool',
1653
- peerId: 'Bytes'
1654
- }
1655
- }
1656
- },
1657
- /**
1658
- * Lookup194: pallet_utility::pallet::Call<T>
1659
- **/
1660
- PalletUtilityCall: {
1661
- _enum: {
1662
- batch: {
1663
- calls: 'Vec<Call>',
1664
- },
1665
- as_derivative: {
1666
- index: 'u16',
1667
- call: 'Call',
1668
- },
1669
- batch_all: {
1670
- calls: 'Vec<Call>',
1671
- },
1672
- dispatch_as: {
1673
- asOrigin: 'SugarfungeRuntimeOriginCaller',
1674
- call: 'Call',
1675
- },
1676
- force_batch: {
1677
- calls: 'Vec<Call>',
1678
- },
1679
- with_weight: {
1680
- call: 'Call',
1681
- weight: 'SpWeightsWeightV2Weight'
1682
- }
1683
- }
1684
- },
1685
- /**
1686
- * Lookup196: sugarfunge_runtime::OriginCaller
1687
- **/
1688
- SugarfungeRuntimeOriginCaller: {
1689
- _enum: {
1690
- system: 'FrameSupportDispatchRawOrigin',
1691
- __Unused1: 'Null',
1692
- Void: 'SpCoreVoid',
1693
- __Unused3: 'Null',
1694
- __Unused4: 'Null',
1695
- __Unused5: 'Null',
1696
- __Unused6: 'Null',
1697
- __Unused7: 'Null',
1698
- __Unused8: 'Null',
1699
- __Unused9: 'Null',
1700
- Council: 'PalletCollectiveRawOrigin'
1701
- }
1702
- },
1703
- /**
1704
- * Lookup197: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1705
- **/
1706
- FrameSupportDispatchRawOrigin: {
1707
- _enum: {
1708
- Root: 'Null',
1709
- Signed: 'AccountId32',
1710
- None: 'Null'
1711
- }
1712
- },
1713
- /**
1714
- * Lookup198: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1715
- **/
1716
- PalletCollectiveRawOrigin: {
1717
- _enum: {
1718
- Members: '(u32,u32)',
1719
- Member: 'AccountId32',
1720
- _Phantom: 'Null'
1721
- }
1722
- },
1723
- /**
1724
- * Lookup199: pallet_sudo::pallet::Error<T>
1725
- **/
1726
- PalletSudoError: {
1727
- _enum: ['RequireSudo']
1728
- },
1729
- /**
1730
- * Lookup202: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1731
- **/
1732
- PalletSchedulerScheduled: {
1733
- maybeId: 'Option<[u8;32]>',
1734
- priority: 'u8',
1735
- call: 'FrameSupportPreimagesBounded',
1736
- maybePeriodic: 'Option<(u32,u32)>',
1737
- origin: 'SugarfungeRuntimeOriginCaller'
1738
- },
1739
- /**
1740
- * Lookup203: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
1741
- **/
1742
- FrameSupportPreimagesBounded: {
1743
- _enum: {
1744
- Legacy: {
1745
- _alias: {
1746
- hash_: 'hash',
1747
- },
1748
- hash_: 'H256',
1749
- },
1750
- Inline: 'Bytes',
1751
- Lookup: {
1752
- _alias: {
1753
- hash_: 'hash',
1754
- },
1755
- hash_: 'H256',
1756
- len: 'u32'
1757
- }
1758
- }
1759
- },
1760
- /**
1761
- * Lookup206: pallet_scheduler::pallet::Error<T>
1762
- **/
1763
- PalletSchedulerError: {
1764
- _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
1765
- },
1766
- /**
1767
- * Lookup208: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1768
- **/
1769
- PalletCollectiveVotes: {
1770
- index: 'u32',
1771
- threshold: 'u32',
1772
- ayes: 'Vec<AccountId32>',
1773
- nays: 'Vec<AccountId32>',
1774
- end: 'u32'
1775
- },
1776
- /**
1777
- * Lookup209: pallet_collective::pallet::Error<T, I>
1778
- **/
1779
- PalletCollectiveError: {
1780
- _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
1781
- },
1782
- /**
1783
- * Lookup213: sp_core::crypto::KeyTypeId
1784
- **/
1785
- SpCoreCryptoKeyTypeId: '[u8;4]',
1786
- /**
1787
- * Lookup214: pallet_session::pallet::Error<T>
1788
- **/
1789
- PalletSessionError: {
1790
- _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1791
- },
1792
- /**
1793
- * Lookup218: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
1794
- **/
1795
- PalletImOnlineBoundedOpaqueNetworkState: {
1796
- peerId: 'Bytes',
1797
- externalAddresses: 'Vec<Bytes>'
1798
- },
1799
- /**
1800
- * Lookup223: pallet_im_online::pallet::Error<T>
1801
- **/
1802
- PalletImOnlineError: {
1803
- _enum: ['InvalidKey', 'DuplicatedHeartbeat']
1804
- },
1805
- /**
1806
- * Lookup224: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1807
- **/
1808
- SugarfungeAssetClass: {
1809
- owner: 'AccountId32',
1810
- metadata: 'Bytes'
1811
- },
1812
- /**
1813
- * Lookup226: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1814
- **/
1815
- SugarfungeAssetAsset: {
1816
- classId: 'u64',
1817
- creator: 'AccountId32',
1818
- metadata: 'Bytes'
1819
- },
1820
- /**
1821
- * Lookup228: sugarfunge_asset::pallet::Error<T>
1822
- **/
1823
- SugarfungeAssetError: {
1824
- _enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
1825
- },
1826
- /**
1827
- * Lookup229: sugarfunge_dao::pallet::Error<T>
1828
- **/
1829
- SugarfungeDaoError: {
1830
- _enum: ['NoneValue', 'StorageOverflow']
1831
- },
1832
- /**
1833
- * Lookup230: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1834
- **/
1835
- SugarfungeBundleBundle: {
1836
- creator: 'AccountId32',
1837
- classId: 'u64',
1838
- assetId: 'u64',
1839
- metadata: 'Bytes',
1840
- schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1841
- vault: 'AccountId32'
1842
- },
1843
- /**
1844
- * Lookup231: frame_support::PalletId
1845
- **/
1846
- FrameSupportPalletId: '[u8;8]',
1847
- /**
1848
- * Lookup232: sugarfunge_bundle::pallet::Error<T>
1849
- **/
1850
- SugarfungeBundleError: {
1851
- _enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance', 'AssetExists', 'AccountNotOwner']
1852
- },
1853
- /**
1854
- * Lookup233: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1855
- **/
1856
- SugarfungeBagBagClass: {
1857
- operator: 'AccountId32',
1858
- classId: 'u64'
1859
- },
1860
- /**
1861
- * Lookup234: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1862
- **/
1863
- SugarfungeBagBag: {
1864
- operator: 'AccountId32',
1865
- classId: 'u64',
1866
- assetId: 'u64',
1867
- totalShares: 'u128'
1868
- },
1869
- /**
1870
- * Lookup235: sugarfunge_bag::pallet::Error<T>
1871
- **/
1872
- SugarfungeBagError: {
1873
- _enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
1874
- },
1875
- /**
1876
- * Lookup236: sugarfunge_exgine::pallet::Error<T>
1877
- **/
1878
- SugarfungeExgineError: {
1879
- _enum: ['NoneValue', 'StorageOverflow']
1880
- },
1881
- /**
1882
- * Lookup237: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1883
- **/
1884
- SugarfungeMarketMarket: {
1885
- owner: 'AccountId32',
1886
- vault: 'AccountId32'
1887
- },
1888
- /**
1889
- * Lookup239: sugarfunge_market::pallet::Error<T>
1890
- **/
1891
- SugarfungeMarketError: {
1892
- _enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
1893
- },
1894
- /**
1895
- * Lookup241: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1896
- **/
1897
- FunctionlandFulaManifest: {
1898
- _alias: {
1899
- size_: 'size'
1900
- },
1901
- usersData: 'Vec<FunctionlandFulaUploaderData>',
1902
- manifestMetadata: 'Bytes',
1903
- size_: 'Option<u64>'
1904
- },
1905
- /**
1906
- * Lookup244: functionland_fula::Challenge<sp_core::crypto::AccountId32>
1907
- **/
1908
- FunctionlandFulaChallenge: {
1909
- challenger: 'AccountId32',
1910
- challengeState: 'FunctionlandFulaChallengeState'
1911
- },
1912
- /**
1913
- * Lookup245: functionland_fula::ClaimData
1914
- **/
1915
- FunctionlandFulaClaimData: {
1916
- mintedLaborTokens: 'u128',
1917
- expectedLaborTokens: 'u128',
1918
- challengeTokens: 'u128'
1919
- },
1920
- /**
1921
- * Lookup246: functionland_fula::pallet::Error<T>
1922
- **/
1923
- FunctionlandFulaError: {
1924
- _enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'AccountNotUploader', 'AccountNotFound', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored', 'InvalidArrayLength', 'ErrorPickingCIDToChallenge', 'ErrorPickingAccountToChallenge', 'ManifestStorerDataNotFound', 'NoFileSizeProvided', 'NoAccountsToChallenge', 'FileAlreadyUploadedbyUser']
1925
- },
1926
- /**
1927
- * Lookup247: fula_pool::Pool<T>
1928
- **/
1929
- FulaPoolPool: {
1930
- name: 'Bytes',
1931
- owner: 'Option<AccountId32>',
1932
- parent: 'Option<u32>',
1933
- participants: 'Vec<AccountId32>',
1934
- requestNumber: 'u8',
1935
- region: 'Bytes'
1936
- },
1937
- /**
1938
- * Lookup249: fula_pool::PoolRequest<T>
1939
- **/
1940
- FulaPoolPoolRequest: {
1941
- voted: 'Vec<AccountId32>',
1942
- positiveVotes: 'u16',
1943
- peerId: 'Bytes'
1944
- },
1945
- /**
1946
- * Lookup250: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
1947
- **/
1948
- FulaPoolUser: {
1949
- poolId: 'Option<u32>',
1950
- requestPoolId: 'Option<u32>',
1951
- peerId: 'Bytes'
1952
- },
1953
- /**
1954
- * Lookup251: fula_pool::pallet::Error<T>
1955
- **/
1956
- FulaPoolError: {
1957
- _enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
1958
- },
1959
- /**
1960
- * Lookup252: pallet_utility::pallet::Error<T>
1961
- **/
1962
- PalletUtilityError: {
1963
- _enum: ['TooManyCalls']
1964
- },
1965
- /**
1966
- * Lookup254: sp_runtime::MultiSignature
1967
- **/
1968
- SpRuntimeMultiSignature: {
1969
- _enum: {
1970
- Ed25519: 'SpCoreEd25519Signature',
1971
- Sr25519: 'SpCoreSr25519Signature',
1972
- Ecdsa: 'SpCoreEcdsaSignature'
1973
- }
1974
- },
1975
- /**
1976
- * Lookup255: sp_core::ecdsa::Signature
1977
- **/
1978
- SpCoreEcdsaSignature: '[u8;65]',
1979
- /**
1980
- * Lookup258: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1981
- **/
1982
- FrameSystemExtensionsCheckNonZeroSender: 'Null',
1983
- /**
1984
- * Lookup259: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1985
- **/
1986
- FrameSystemExtensionsCheckSpecVersion: 'Null',
1987
- /**
1988
- * Lookup260: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1989
- **/
1990
- FrameSystemExtensionsCheckTxVersion: 'Null',
1991
- /**
1992
- * Lookup261: frame_system::extensions::check_genesis::CheckGenesis<T>
1993
- **/
1994
- FrameSystemExtensionsCheckGenesis: 'Null',
1995
- /**
1996
- * Lookup264: frame_system::extensions::check_nonce::CheckNonce<T>
1997
- **/
1998
- FrameSystemExtensionsCheckNonce: 'Compact<u32>',
1999
- /**
2000
- * Lookup265: frame_system::extensions::check_weight::CheckWeight<T>
2001
- **/
2002
- FrameSystemExtensionsCheckWeight: 'Null',
2003
- /**
2004
- * Lookup266: pallet_transaction_payment::ChargeTransactionPayment<T>
2005
- **/
2006
- PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
2007
- /**
2008
- * Lookup267: sugarfunge_runtime::Runtime
2009
- **/
2010
- SugarfungeRuntimeRuntime: 'Null'
2011
- };
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ /* eslint-disable sort-keys */
5
+
6
+ export default {
7
+ /**
8
+ * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
9
+ **/
10
+ FrameSystemAccountInfo: {
11
+ nonce: 'u32',
12
+ consumers: 'u32',
13
+ providers: 'u32',
14
+ sufficients: 'u32',
15
+ data: 'PalletBalancesAccountData'
16
+ },
17
+ /**
18
+ * Lookup5: pallet_balances::types::AccountData<Balance>
19
+ **/
20
+ PalletBalancesAccountData: {
21
+ free: 'u128',
22
+ reserved: 'u128',
23
+ frozen: 'u128',
24
+ flags: 'u128'
25
+ },
26
+ /**
27
+ * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
28
+ **/
29
+ FrameSupportDispatchPerDispatchClassWeight: {
30
+ normal: 'SpWeightsWeightV2Weight',
31
+ operational: 'SpWeightsWeightV2Weight',
32
+ mandatory: 'SpWeightsWeightV2Weight'
33
+ },
34
+ /**
35
+ * Lookup9: sp_weights::weight_v2::Weight
36
+ **/
37
+ SpWeightsWeightV2Weight: {
38
+ refTime: 'Compact<u64>',
39
+ proofSize: 'Compact<u64>'
40
+ },
41
+ /**
42
+ * Lookup14: sp_runtime::generic::digest::Digest
43
+ **/
44
+ SpRuntimeDigest: {
45
+ logs: 'Vec<SpRuntimeDigestDigestItem>'
46
+ },
47
+ /**
48
+ * Lookup16: sp_runtime::generic::digest::DigestItem
49
+ **/
50
+ SpRuntimeDigestDigestItem: {
51
+ _enum: {
52
+ Other: 'Bytes',
53
+ __Unused1: 'Null',
54
+ __Unused2: 'Null',
55
+ __Unused3: 'Null',
56
+ Consensus: '([u8;4],Bytes)',
57
+ Seal: '([u8;4],Bytes)',
58
+ PreRuntime: '([u8;4],Bytes)',
59
+ __Unused7: 'Null',
60
+ RuntimeEnvironmentUpdated: 'Null'
61
+ }
62
+ },
63
+ /**
64
+ * Lookup19: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
65
+ **/
66
+ FrameSystemEventRecord: {
67
+ phase: 'FrameSystemPhase',
68
+ event: 'Event',
69
+ topics: 'Vec<H256>'
70
+ },
71
+ /**
72
+ * Lookup21: frame_system::pallet::Event<T>
73
+ **/
74
+ FrameSystemEvent: {
75
+ _enum: {
76
+ ExtrinsicSuccess: {
77
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
78
+ },
79
+ ExtrinsicFailed: {
80
+ dispatchError: 'SpRuntimeDispatchError',
81
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
82
+ },
83
+ CodeUpdated: 'Null',
84
+ NewAccount: {
85
+ account: 'AccountId32',
86
+ },
87
+ KilledAccount: {
88
+ account: 'AccountId32',
89
+ },
90
+ Remarked: {
91
+ _alias: {
92
+ hash_: 'hash',
93
+ },
94
+ sender: 'AccountId32',
95
+ hash_: 'H256'
96
+ }
97
+ }
98
+ },
99
+ /**
100
+ * Lookup22: frame_support::dispatch::DispatchInfo
101
+ **/
102
+ FrameSupportDispatchDispatchInfo: {
103
+ weight: 'SpWeightsWeightV2Weight',
104
+ class: 'FrameSupportDispatchDispatchClass',
105
+ paysFee: 'FrameSupportDispatchPays'
106
+ },
107
+ /**
108
+ * Lookup23: frame_support::dispatch::DispatchClass
109
+ **/
110
+ FrameSupportDispatchDispatchClass: {
111
+ _enum: ['Normal', 'Operational', 'Mandatory']
112
+ },
113
+ /**
114
+ * Lookup24: frame_support::dispatch::Pays
115
+ **/
116
+ FrameSupportDispatchPays: {
117
+ _enum: ['Yes', 'No']
118
+ },
119
+ /**
120
+ * Lookup25: sp_runtime::DispatchError
121
+ **/
122
+ SpRuntimeDispatchError: {
123
+ _enum: {
124
+ Other: 'Null',
125
+ CannotLookup: 'Null',
126
+ BadOrigin: 'Null',
127
+ Module: 'SpRuntimeModuleError',
128
+ ConsumerRemaining: 'Null',
129
+ NoProviders: 'Null',
130
+ TooManyConsumers: 'Null',
131
+ Token: 'SpRuntimeTokenError',
132
+ Arithmetic: 'SpArithmeticArithmeticError',
133
+ Transactional: 'SpRuntimeTransactionalError',
134
+ Exhausted: 'Null',
135
+ Corruption: 'Null',
136
+ Unavailable: 'Null',
137
+ RootNotAllowed: 'Null'
138
+ }
139
+ },
140
+ /**
141
+ * Lookup26: sp_runtime::ModuleError
142
+ **/
143
+ SpRuntimeModuleError: {
144
+ index: 'u8',
145
+ error: '[u8;4]'
146
+ },
147
+ /**
148
+ * Lookup27: sp_runtime::TokenError
149
+ **/
150
+ SpRuntimeTokenError: {
151
+ _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked']
152
+ },
153
+ /**
154
+ * Lookup28: sp_arithmetic::ArithmeticError
155
+ **/
156
+ SpArithmeticArithmeticError: {
157
+ _enum: ['Underflow', 'Overflow', 'DivisionByZero']
158
+ },
159
+ /**
160
+ * Lookup29: sp_runtime::TransactionalError
161
+ **/
162
+ SpRuntimeTransactionalError: {
163
+ _enum: ['LimitReached', 'NoLayer']
164
+ },
165
+ /**
166
+ * Lookup30: pallet_balances::pallet::Event<T, I>
167
+ **/
168
+ PalletBalancesEvent: {
169
+ _enum: {
170
+ Endowed: {
171
+ account: 'AccountId32',
172
+ freeBalance: 'u128',
173
+ },
174
+ DustLost: {
175
+ account: 'AccountId32',
176
+ amount: 'u128',
177
+ },
178
+ Transfer: {
179
+ from: 'AccountId32',
180
+ to: 'AccountId32',
181
+ amount: 'u128',
182
+ },
183
+ BalanceSet: {
184
+ who: 'AccountId32',
185
+ free: 'u128',
186
+ },
187
+ Reserved: {
188
+ who: 'AccountId32',
189
+ amount: 'u128',
190
+ },
191
+ Unreserved: {
192
+ who: 'AccountId32',
193
+ amount: 'u128',
194
+ },
195
+ ReserveRepatriated: {
196
+ from: 'AccountId32',
197
+ to: 'AccountId32',
198
+ amount: 'u128',
199
+ destinationStatus: 'FrameSupportTokensMiscBalanceStatus',
200
+ },
201
+ Deposit: {
202
+ who: 'AccountId32',
203
+ amount: 'u128',
204
+ },
205
+ Withdraw: {
206
+ who: 'AccountId32',
207
+ amount: 'u128',
208
+ },
209
+ Slashed: {
210
+ who: 'AccountId32',
211
+ amount: 'u128',
212
+ },
213
+ Minted: {
214
+ who: 'AccountId32',
215
+ amount: 'u128',
216
+ },
217
+ Burned: {
218
+ who: 'AccountId32',
219
+ amount: 'u128',
220
+ },
221
+ Suspended: {
222
+ who: 'AccountId32',
223
+ amount: 'u128',
224
+ },
225
+ Restored: {
226
+ who: 'AccountId32',
227
+ amount: 'u128',
228
+ },
229
+ Upgraded: {
230
+ who: 'AccountId32',
231
+ },
232
+ Issued: {
233
+ amount: 'u128',
234
+ },
235
+ Rescinded: {
236
+ amount: 'u128',
237
+ },
238
+ Locked: {
239
+ who: 'AccountId32',
240
+ amount: 'u128',
241
+ },
242
+ Unlocked: {
243
+ who: 'AccountId32',
244
+ amount: 'u128',
245
+ },
246
+ Frozen: {
247
+ who: 'AccountId32',
248
+ amount: 'u128',
249
+ },
250
+ Thawed: {
251
+ who: 'AccountId32',
252
+ amount: 'u128'
253
+ }
254
+ }
255
+ },
256
+ /**
257
+ * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
258
+ **/
259
+ FrameSupportTokensMiscBalanceStatus: {
260
+ _enum: ['Free', 'Reserved']
261
+ },
262
+ /**
263
+ * Lookup32: sugarfunge_validator_set::pallet::Event<T>
264
+ **/
265
+ SugarfungeValidatorSetEvent: {
266
+ _enum: {
267
+ ValidatorAdditionInitiated: 'AccountId32',
268
+ ValidatorRemovalInitiated: 'AccountId32'
269
+ }
270
+ },
271
+ /**
272
+ * Lookup33: pallet_grandpa::pallet::Event
273
+ **/
274
+ PalletGrandpaEvent: {
275
+ _enum: {
276
+ NewAuthorities: {
277
+ authoritySet: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
278
+ },
279
+ Paused: 'Null',
280
+ Resumed: 'Null'
281
+ }
282
+ },
283
+ /**
284
+ * Lookup36: sp_consensus_grandpa::app::Public
285
+ **/
286
+ SpConsensusGrandpaAppPublic: 'SpCoreEd25519Public',
287
+ /**
288
+ * Lookup37: sp_core::ed25519::Public
289
+ **/
290
+ SpCoreEd25519Public: '[u8;32]',
291
+ /**
292
+ * Lookup38: pallet_transaction_payment::pallet::Event<T>
293
+ **/
294
+ PalletTransactionPaymentEvent: {
295
+ _enum: {
296
+ TransactionFeePaid: {
297
+ who: 'AccountId32',
298
+ actualFee: 'u128',
299
+ tip: 'u128'
300
+ }
301
+ }
302
+ },
303
+ /**
304
+ * Lookup39: pallet_sudo::pallet::Event<T>
305
+ **/
306
+ PalletSudoEvent: {
307
+ _enum: {
308
+ Sudid: {
309
+ sudoResult: 'Result<Null, SpRuntimeDispatchError>',
310
+ },
311
+ KeyChanged: {
312
+ oldSudoer: 'Option<AccountId32>',
313
+ },
314
+ SudoAsDone: {
315
+ sudoResult: 'Result<Null, SpRuntimeDispatchError>'
316
+ }
317
+ }
318
+ },
319
+ /**
320
+ * Lookup43: pallet_scheduler::pallet::Event<T>
321
+ **/
322
+ PalletSchedulerEvent: {
323
+ _enum: {
324
+ Scheduled: {
325
+ when: 'u32',
326
+ index: 'u32',
327
+ },
328
+ Canceled: {
329
+ when: 'u32',
330
+ index: 'u32',
331
+ },
332
+ Dispatched: {
333
+ task: '(u32,u32)',
334
+ id: 'Option<[u8;32]>',
335
+ result: 'Result<Null, SpRuntimeDispatchError>',
336
+ },
337
+ CallUnavailable: {
338
+ task: '(u32,u32)',
339
+ id: 'Option<[u8;32]>',
340
+ },
341
+ PeriodicFailed: {
342
+ task: '(u32,u32)',
343
+ id: 'Option<[u8;32]>',
344
+ },
345
+ PermanentlyOverweight: {
346
+ task: '(u32,u32)',
347
+ id: 'Option<[u8;32]>'
348
+ }
349
+ }
350
+ },
351
+ /**
352
+ * Lookup46: pallet_collective::pallet::Event<T, I>
353
+ **/
354
+ PalletCollectiveEvent: {
355
+ _enum: {
356
+ Proposed: {
357
+ account: 'AccountId32',
358
+ proposalIndex: 'u32',
359
+ proposalHash: 'H256',
360
+ threshold: 'u32',
361
+ },
362
+ Voted: {
363
+ account: 'AccountId32',
364
+ proposalHash: 'H256',
365
+ voted: 'bool',
366
+ yes: 'u32',
367
+ no: 'u32',
368
+ },
369
+ Approved: {
370
+ proposalHash: 'H256',
371
+ },
372
+ Disapproved: {
373
+ proposalHash: 'H256',
374
+ },
375
+ Executed: {
376
+ proposalHash: 'H256',
377
+ result: 'Result<Null, SpRuntimeDispatchError>',
378
+ },
379
+ MemberExecuted: {
380
+ proposalHash: 'H256',
381
+ result: 'Result<Null, SpRuntimeDispatchError>',
382
+ },
383
+ Closed: {
384
+ proposalHash: 'H256',
385
+ yes: 'u32',
386
+ no: 'u32'
387
+ }
388
+ }
389
+ },
390
+ /**
391
+ * Lookup48: pallet_session::pallet::Event
392
+ **/
393
+ PalletSessionEvent: {
394
+ _enum: {
395
+ NewSession: {
396
+ sessionIndex: 'u32'
397
+ }
398
+ }
399
+ },
400
+ /**
401
+ * Lookup49: pallet_im_online::pallet::Event<T>
402
+ **/
403
+ PalletImOnlineEvent: {
404
+ _enum: {
405
+ HeartbeatReceived: {
406
+ authorityId: 'PalletImOnlineSr25519AppSr25519Public',
407
+ },
408
+ AllGood: 'Null',
409
+ SomeOffline: {
410
+ offline: 'Vec<(AccountId32,AccountId32)>'
411
+ }
412
+ }
413
+ },
414
+ /**
415
+ * Lookup50: pallet_im_online::sr25519::app_sr25519::Public
416
+ **/
417
+ PalletImOnlineSr25519AppSr25519Public: 'SpCoreSr25519Public',
418
+ /**
419
+ * Lookup51: sp_core::sr25519::Public
420
+ **/
421
+ SpCoreSr25519Public: '[u8;32]',
422
+ /**
423
+ * Lookup54: sugarfunge_asset::pallet::Event<T>
424
+ **/
425
+ SugarfungeAssetEvent: {
426
+ _enum: {
427
+ ClassCreated: {
428
+ classId: 'u64',
429
+ who: 'AccountId32',
430
+ },
431
+ AssetCreated: {
432
+ classId: 'u64',
433
+ assetId: 'u64',
434
+ who: 'AccountId32',
435
+ },
436
+ AssetMetadataUpdated: {
437
+ classId: 'u64',
438
+ assetId: 'u64',
439
+ who: 'AccountId32',
440
+ metadata: 'Bytes',
441
+ },
442
+ Mint: {
443
+ who: 'AccountId32',
444
+ to: 'AccountId32',
445
+ classId: 'u64',
446
+ assetId: 'u64',
447
+ amount: 'u128',
448
+ },
449
+ BatchMint: {
450
+ who: 'AccountId32',
451
+ to: 'AccountId32',
452
+ classId: 'u64',
453
+ assetIds: 'Vec<u64>',
454
+ amounts: 'Vec<u128>',
455
+ },
456
+ Burn: {
457
+ who: 'AccountId32',
458
+ from: 'AccountId32',
459
+ classId: 'u64',
460
+ assetId: 'u64',
461
+ amount: 'u128',
462
+ },
463
+ BatchBurn: {
464
+ who: 'AccountId32',
465
+ from: 'AccountId32',
466
+ classId: 'u64',
467
+ assetIds: 'Vec<u64>',
468
+ amounts: 'Vec<u128>',
469
+ },
470
+ Transferred: {
471
+ who: 'AccountId32',
472
+ from: 'AccountId32',
473
+ to: 'AccountId32',
474
+ classId: 'u64',
475
+ assetId: 'u64',
476
+ amount: 'u128',
477
+ },
478
+ BatchTransferred: {
479
+ who: 'AccountId32',
480
+ from: 'AccountId32',
481
+ to: 'AccountId32',
482
+ classId: 'u64',
483
+ assetIds: 'Vec<u64>',
484
+ amounts: 'Vec<u128>',
485
+ },
486
+ OperatorApprovalForAll: {
487
+ who: 'AccountId32',
488
+ operator: 'AccountId32',
489
+ classId: 'u64',
490
+ approved: 'bool'
491
+ }
492
+ }
493
+ },
494
+ /**
495
+ * Lookup57: sugarfunge_dao::pallet::Event<T>
496
+ **/
497
+ SugarfungeDaoEvent: {
498
+ _enum: {
499
+ SomethingStored: '(u32,AccountId32)'
500
+ }
501
+ },
502
+ /**
503
+ * Lookup58: sugarfunge_bundle::pallet::Event<T>
504
+ **/
505
+ SugarfungeBundleEvent: {
506
+ _enum: {
507
+ Register: {
508
+ bundleId: 'H256',
509
+ who: 'AccountId32',
510
+ classId: 'u64',
511
+ assetId: 'u64',
512
+ },
513
+ Mint: {
514
+ bundleId: 'H256',
515
+ who: 'AccountId32',
516
+ from: 'AccountId32',
517
+ to: 'AccountId32',
518
+ amount: 'u128',
519
+ },
520
+ Burn: {
521
+ bundleId: 'H256',
522
+ who: 'AccountId32',
523
+ from: 'AccountId32',
524
+ to: 'AccountId32',
525
+ amount: 'u128'
526
+ }
527
+ }
528
+ },
529
+ /**
530
+ * Lookup59: sugarfunge_bag::pallet::Event<T>
531
+ **/
532
+ SugarfungeBagEvent: {
533
+ _enum: {
534
+ Register: {
535
+ who: 'AccountId32',
536
+ classId: 'u64',
537
+ },
538
+ Created: {
539
+ bag: 'AccountId32',
540
+ who: 'AccountId32',
541
+ classId: 'u64',
542
+ assetId: 'u64',
543
+ owners: 'Vec<AccountId32>',
544
+ },
545
+ Deposit: {
546
+ bag: 'AccountId32',
547
+ who: 'AccountId32',
548
+ },
549
+ Sweep: {
550
+ bag: 'AccountId32',
551
+ who: 'AccountId32',
552
+ to: 'AccountId32'
553
+ }
554
+ }
555
+ },
556
+ /**
557
+ * Lookup61: sugarfunge_exgine::pallet::Event<T>
558
+ **/
559
+ SugarfungeExgineEvent: {
560
+ _enum: {
561
+ SomethingStored: '(u32,AccountId32)'
562
+ }
563
+ },
564
+ /**
565
+ * Lookup62: sugarfunge_market::pallet::Event<T>
566
+ **/
567
+ SugarfungeMarketEvent: {
568
+ _enum: {
569
+ Created: {
570
+ marketId: 'u64',
571
+ who: 'AccountId32',
572
+ },
573
+ RateCreated: {
574
+ marketId: 'u64',
575
+ marketRateId: 'u64',
576
+ who: 'AccountId32',
577
+ },
578
+ LiquidityAdded: {
579
+ who: 'AccountId32',
580
+ marketId: 'u64',
581
+ marketRateId: 'u64',
582
+ classIds: 'Vec<u64>',
583
+ assetIds: 'Vec<Vec<u64>>',
584
+ amounts: 'Vec<Vec<u128>>',
585
+ },
586
+ LiquidityRemoved: {
587
+ who: 'AccountId32',
588
+ marketId: 'u64',
589
+ marketRateId: 'u64',
590
+ classIds: 'Vec<u64>',
591
+ assetIds: 'Vec<Vec<u64>>',
592
+ amounts: 'Vec<Vec<u128>>',
593
+ },
594
+ Deposit: {
595
+ who: 'AccountId32',
596
+ marketId: 'u64',
597
+ marketRateId: 'u64',
598
+ amount: 'u128',
599
+ balances: 'Vec<SugarfungeMarketRateBalance>',
600
+ success: 'bool',
601
+ },
602
+ Exchanged: {
603
+ buyer: 'AccountId32',
604
+ marketId: 'u64',
605
+ marketRateId: 'u64',
606
+ amount: 'u128',
607
+ balances: 'Vec<SugarfungeMarketRateBalance>',
608
+ success: 'bool'
609
+ }
610
+ }
611
+ },
612
+ /**
613
+ * Lookup66: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
614
+ **/
615
+ SugarfungeMarketRateBalance: {
616
+ rate: 'SugarfungeMarketAssetRate',
617
+ balance: 'i128'
618
+ },
619
+ /**
620
+ * Lookup67: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
621
+ **/
622
+ SugarfungeMarketAssetRate: {
623
+ classId: 'u64',
624
+ assetId: 'u64',
625
+ action: 'SugarfungeMarketRateAction',
626
+ from: 'SugarfungeMarketRateAccount',
627
+ to: 'SugarfungeMarketRateAccount'
628
+ },
629
+ /**
630
+ * Lookup68: sugarfunge_market::RateAction<ClassId, AssetId>
631
+ **/
632
+ SugarfungeMarketRateAction: {
633
+ _enum: {
634
+ Transfer: 'i128',
635
+ MarketTransfer: '(SugarfungeMarketAmm,u64,u64)',
636
+ Mint: 'i128',
637
+ Burn: 'i128',
638
+ Has: '(SugarfungeMarketAmountOp,i128)'
639
+ }
640
+ },
641
+ /**
642
+ * Lookup70: sugarfunge_market::AMM
643
+ **/
644
+ SugarfungeMarketAmm: {
645
+ _enum: ['Constant']
646
+ },
647
+ /**
648
+ * Lookup71: sugarfunge_market::AmountOp
649
+ **/
650
+ SugarfungeMarketAmountOp: {
651
+ _enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
652
+ },
653
+ /**
654
+ * Lookup72: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
655
+ **/
656
+ SugarfungeMarketRateAccount: {
657
+ _enum: {
658
+ Market: 'Null',
659
+ Account: 'AccountId32',
660
+ Buyer: 'Null'
661
+ }
662
+ },
663
+ /**
664
+ * Lookup73: functionland_fula::pallet::Event<T>
665
+ **/
666
+ FunctionlandFulaEvent: {
667
+ _enum: {
668
+ ManifestOutput: {
669
+ uploader: 'AccountId32',
670
+ storer: 'Vec<AccountId32>',
671
+ poolId: 'u32',
672
+ manifest: 'Bytes',
673
+ },
674
+ StorageManifestOutput: {
675
+ storer: 'AccountId32',
676
+ poolId: 'u32',
677
+ cid: 'Bytes',
678
+ },
679
+ RemoveStorerOutput: {
680
+ storer: 'Option<AccountId32>',
681
+ poolId: 'u32',
682
+ cid: 'Bytes',
683
+ },
684
+ ManifestRemoved: {
685
+ uploader: 'AccountId32',
686
+ poolId: 'u32',
687
+ cid: 'Bytes',
688
+ },
689
+ ManifestStorageUpdated: {
690
+ storer: 'AccountId32',
691
+ poolId: 'u32',
692
+ cid: 'Bytes',
693
+ activeCycles: 'u16',
694
+ missedCycles: 'u16',
695
+ activeDays: 'i32',
696
+ },
697
+ BatchManifestOutput: {
698
+ uploader: 'AccountId32',
699
+ poolIds: 'Vec<u32>',
700
+ manifests: 'Vec<Bytes>',
701
+ },
702
+ BatchStorageManifestOutput: {
703
+ storer: 'AccountId32',
704
+ poolId: 'u32',
705
+ cids: 'Vec<Bytes>',
706
+ },
707
+ BatchRemoveStorerOutput: {
708
+ storer: 'AccountId32',
709
+ poolId: 'u32',
710
+ cids: 'Vec<Bytes>',
711
+ },
712
+ BatchManifestRemoved: {
713
+ uploader: 'AccountId32',
714
+ poolIds: 'Vec<u32>',
715
+ cids: 'Vec<Bytes>',
716
+ },
717
+ VerifiedStorerManifests: {
718
+ storer: 'AccountId32',
719
+ validCids: 'Vec<Bytes>',
720
+ invalidCids: 'Vec<Bytes>',
721
+ },
722
+ UpdateFileSizeOutput: {
723
+ _alias: {
724
+ size_: 'size',
725
+ },
726
+ account: 'AccountId32',
727
+ poolId: 'u32',
728
+ cid: 'Bytes',
729
+ size_: 'u64',
730
+ },
731
+ UpdateFileSizesOutput: {
732
+ account: 'AccountId32',
733
+ poolId: 'u32',
734
+ cids: 'Vec<Bytes>',
735
+ sizes: 'Vec<u64>',
736
+ },
737
+ GetManifests: {
738
+ manifests: 'Vec<FunctionlandFulaManifestWithPoolId>',
739
+ },
740
+ GetAvailableManifests: {
741
+ manifests: 'Vec<FunctionlandFulaManifestAvailable>',
742
+ },
743
+ GetManifestsStorerData: {
744
+ manifests: 'Vec<FunctionlandFulaStorerData>',
745
+ },
746
+ Challenge: {
747
+ challenger: 'AccountId32',
748
+ challenged: 'AccountId32',
749
+ cid: 'Bytes',
750
+ state: 'FunctionlandFulaChallengeState',
751
+ },
752
+ VerifiedChallenges: {
753
+ challenged: 'AccountId32',
754
+ successful: 'Vec<Bytes>',
755
+ failed: 'Vec<Bytes>',
756
+ },
757
+ MintedLaborTokens: {
758
+ account: 'AccountId32',
759
+ classId: 'u64',
760
+ assetId: 'u64',
761
+ amount: 'u128',
762
+ calculatedAmount: 'u128'
763
+ }
764
+ }
765
+ },
766
+ /**
767
+ * Lookup79: functionland_fula::ManifestWithPoolId<PoolId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
768
+ **/
769
+ FunctionlandFulaManifestWithPoolId: {
770
+ _alias: {
771
+ size_: 'size'
772
+ },
773
+ poolId: 'u32',
774
+ usersData: 'Vec<FunctionlandFulaUploaderData>',
775
+ manifestMetadata: 'Bytes',
776
+ size_: 'Option<u64>'
777
+ },
778
+ /**
779
+ * Lookup82: functionland_fula::UploaderData<sp_core::crypto::AccountId32>
780
+ **/
781
+ FunctionlandFulaUploaderData: {
782
+ uploader: 'AccountId32',
783
+ storers: 'Vec<AccountId32>',
784
+ replicationFactor: 'u16'
785
+ },
786
+ /**
787
+ * Lookup85: functionland_fula::ManifestAvailable<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>>
788
+ **/
789
+ FunctionlandFulaManifestAvailable: {
790
+ poolId: 'u32',
791
+ replicationFactor: 'u16',
792
+ manifestMetadata: 'Bytes'
793
+ },
794
+ /**
795
+ * Lookup87: functionland_fula::StorerData<PoolId, bounded_collections::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
796
+ **/
797
+ FunctionlandFulaStorerData: {
798
+ poolId: 'u32',
799
+ cid: 'Bytes',
800
+ account: 'AccountId32',
801
+ manifestData: 'FunctionlandFulaManifestStorageData'
802
+ },
803
+ /**
804
+ * Lookup89: functionland_fula::ManifestStorageData
805
+ **/
806
+ FunctionlandFulaManifestStorageData: {
807
+ activeCycles: 'u16',
808
+ missedCycles: 'u16',
809
+ activeDays: 'i32',
810
+ challengeState: 'FunctionlandFulaChallengeState'
811
+ },
812
+ /**
813
+ * Lookup90: functionland_fula::ChallengeState
814
+ **/
815
+ FunctionlandFulaChallengeState: {
816
+ _enum: ['Open', 'Successful', 'Failed']
817
+ },
818
+ /**
819
+ * Lookup91: fula_pool::pallet::Event<T>
820
+ **/
821
+ FulaPoolEvent: {
822
+ _enum: {
823
+ PoolCreated: {
824
+ owner: 'Option<AccountId32>',
825
+ poolId: 'u32',
826
+ },
827
+ JoinRequested: {
828
+ account: 'AccountId32',
829
+ poolId: 'u32',
830
+ },
831
+ RequestWithdrawn: {
832
+ account: 'AccountId32',
833
+ poolId: 'u32',
834
+ },
835
+ VotingResult: {
836
+ account: 'AccountId32',
837
+ poolId: 'u32',
838
+ result: 'Bytes',
839
+ },
840
+ CapacityReached: {
841
+ poolId: 'u32',
842
+ },
843
+ ParticipantLeft: {
844
+ account: 'AccountId32',
845
+ poolId: 'u32'
846
+ }
847
+ }
848
+ },
849
+ /**
850
+ * Lookup92: pallet_utility::pallet::Event
851
+ **/
852
+ PalletUtilityEvent: {
853
+ _enum: {
854
+ BatchInterrupted: {
855
+ index: 'u32',
856
+ error: 'SpRuntimeDispatchError',
857
+ },
858
+ BatchCompleted: 'Null',
859
+ BatchCompletedWithErrors: 'Null',
860
+ ItemCompleted: 'Null',
861
+ ItemFailed: {
862
+ error: 'SpRuntimeDispatchError',
863
+ },
864
+ DispatchedAs: {
865
+ result: 'Result<Null, SpRuntimeDispatchError>'
866
+ }
867
+ }
868
+ },
869
+ /**
870
+ * Lookup93: frame_system::Phase
871
+ **/
872
+ FrameSystemPhase: {
873
+ _enum: {
874
+ ApplyExtrinsic: 'u32',
875
+ Finalization: 'Null',
876
+ Initialization: 'Null'
877
+ }
878
+ },
879
+ /**
880
+ * Lookup96: frame_system::LastRuntimeUpgradeInfo
881
+ **/
882
+ FrameSystemLastRuntimeUpgradeInfo: {
883
+ specVersion: 'Compact<u32>',
884
+ specName: 'Text'
885
+ },
886
+ /**
887
+ * Lookup99: frame_system::pallet::Call<T>
888
+ **/
889
+ FrameSystemCall: {
890
+ _enum: {
891
+ remark: {
892
+ remark: 'Bytes',
893
+ },
894
+ set_heap_pages: {
895
+ pages: 'u64',
896
+ },
897
+ set_code: {
898
+ code: 'Bytes',
899
+ },
900
+ set_code_without_checks: {
901
+ code: 'Bytes',
902
+ },
903
+ set_storage: {
904
+ items: 'Vec<(Bytes,Bytes)>',
905
+ },
906
+ kill_storage: {
907
+ _alias: {
908
+ keys_: 'keys',
909
+ },
910
+ keys_: 'Vec<Bytes>',
911
+ },
912
+ kill_prefix: {
913
+ prefix: 'Bytes',
914
+ subkeys: 'u32',
915
+ },
916
+ remark_with_event: {
917
+ remark: 'Bytes'
918
+ }
919
+ }
920
+ },
921
+ /**
922
+ * Lookup102: frame_system::limits::BlockWeights
923
+ **/
924
+ FrameSystemLimitsBlockWeights: {
925
+ baseBlock: 'SpWeightsWeightV2Weight',
926
+ maxBlock: 'SpWeightsWeightV2Weight',
927
+ perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
928
+ },
929
+ /**
930
+ * Lookup103: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
931
+ **/
932
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
933
+ normal: 'FrameSystemLimitsWeightsPerClass',
934
+ operational: 'FrameSystemLimitsWeightsPerClass',
935
+ mandatory: 'FrameSystemLimitsWeightsPerClass'
936
+ },
937
+ /**
938
+ * Lookup104: frame_system::limits::WeightsPerClass
939
+ **/
940
+ FrameSystemLimitsWeightsPerClass: {
941
+ baseExtrinsic: 'SpWeightsWeightV2Weight',
942
+ maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
943
+ maxTotal: 'Option<SpWeightsWeightV2Weight>',
944
+ reserved: 'Option<SpWeightsWeightV2Weight>'
945
+ },
946
+ /**
947
+ * Lookup106: frame_system::limits::BlockLength
948
+ **/
949
+ FrameSystemLimitsBlockLength: {
950
+ max: 'FrameSupportDispatchPerDispatchClassU32'
951
+ },
952
+ /**
953
+ * Lookup107: frame_support::dispatch::PerDispatchClass<T>
954
+ **/
955
+ FrameSupportDispatchPerDispatchClassU32: {
956
+ normal: 'u32',
957
+ operational: 'u32',
958
+ mandatory: 'u32'
959
+ },
960
+ /**
961
+ * Lookup108: sp_weights::RuntimeDbWeight
962
+ **/
963
+ SpWeightsRuntimeDbWeight: {
964
+ read: 'u64',
965
+ write: 'u64'
966
+ },
967
+ /**
968
+ * Lookup109: sp_version::RuntimeVersion
969
+ **/
970
+ SpVersionRuntimeVersion: {
971
+ specName: 'Text',
972
+ implName: 'Text',
973
+ authoringVersion: 'u32',
974
+ specVersion: 'u32',
975
+ implVersion: 'u32',
976
+ apis: 'Vec<([u8;8],u32)>',
977
+ transactionVersion: 'u32',
978
+ stateVersion: 'u8'
979
+ },
980
+ /**
981
+ * Lookup114: frame_system::pallet::Error<T>
982
+ **/
983
+ FrameSystemError: {
984
+ _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
985
+ },
986
+ /**
987
+ * Lookup115: pallet_timestamp::pallet::Call<T>
988
+ **/
989
+ PalletTimestampCall: {
990
+ _enum: {
991
+ set: {
992
+ now: 'Compact<u64>'
993
+ }
994
+ }
995
+ },
996
+ /**
997
+ * Lookup117: pallet_balances::types::BalanceLock<Balance>
998
+ **/
999
+ PalletBalancesBalanceLock: {
1000
+ id: '[u8;8]',
1001
+ amount: 'u128',
1002
+ reasons: 'PalletBalancesReasons'
1003
+ },
1004
+ /**
1005
+ * Lookup118: pallet_balances::types::Reasons
1006
+ **/
1007
+ PalletBalancesReasons: {
1008
+ _enum: ['Fee', 'Misc', 'All']
1009
+ },
1010
+ /**
1011
+ * Lookup121: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1012
+ **/
1013
+ PalletBalancesReserveData: {
1014
+ id: '[u8;8]',
1015
+ amount: 'u128'
1016
+ },
1017
+ /**
1018
+ * Lookup124: pallet_balances::types::IdAmount<Id, Balance>
1019
+ **/
1020
+ PalletBalancesIdAmount: {
1021
+ id: 'Null',
1022
+ amount: 'u128'
1023
+ },
1024
+ /**
1025
+ * Lookup126: pallet_balances::pallet::Call<T, I>
1026
+ **/
1027
+ PalletBalancesCall: {
1028
+ _enum: {
1029
+ transfer_allow_death: {
1030
+ dest: 'MultiAddress',
1031
+ value: 'Compact<u128>',
1032
+ },
1033
+ set_balance_deprecated: {
1034
+ who: 'MultiAddress',
1035
+ newFree: 'Compact<u128>',
1036
+ oldReserved: 'Compact<u128>',
1037
+ },
1038
+ force_transfer: {
1039
+ source: 'MultiAddress',
1040
+ dest: 'MultiAddress',
1041
+ value: 'Compact<u128>',
1042
+ },
1043
+ transfer_keep_alive: {
1044
+ dest: 'MultiAddress',
1045
+ value: 'Compact<u128>',
1046
+ },
1047
+ transfer_all: {
1048
+ dest: 'MultiAddress',
1049
+ keepAlive: 'bool',
1050
+ },
1051
+ force_unreserve: {
1052
+ who: 'MultiAddress',
1053
+ amount: 'u128',
1054
+ },
1055
+ upgrade_accounts: {
1056
+ who: 'Vec<AccountId32>',
1057
+ },
1058
+ transfer: {
1059
+ dest: 'MultiAddress',
1060
+ value: 'Compact<u128>',
1061
+ },
1062
+ force_set_balance: {
1063
+ who: 'MultiAddress',
1064
+ newFree: 'Compact<u128>'
1065
+ }
1066
+ }
1067
+ },
1068
+ /**
1069
+ * Lookup131: pallet_balances::pallet::Error<T, I>
1070
+ **/
1071
+ PalletBalancesError: {
1072
+ _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
1073
+ },
1074
+ /**
1075
+ * Lookup133: sugarfunge_validator_set::pallet::Call<T>
1076
+ **/
1077
+ SugarfungeValidatorSetCall: {
1078
+ _enum: {
1079
+ add_validator: {
1080
+ validatorId: 'AccountId32',
1081
+ },
1082
+ remove_validator: {
1083
+ validatorId: 'AccountId32',
1084
+ },
1085
+ add_validator_again: {
1086
+ validatorId: 'AccountId32'
1087
+ }
1088
+ }
1089
+ },
1090
+ /**
1091
+ * Lookup134: sugarfunge_validator_set::pallet::Error<T>
1092
+ **/
1093
+ SugarfungeValidatorSetError: {
1094
+ _enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
1095
+ },
1096
+ /**
1097
+ * Lookup135: pallet_grandpa::StoredState<N>
1098
+ **/
1099
+ PalletGrandpaStoredState: {
1100
+ _enum: {
1101
+ Live: 'Null',
1102
+ PendingPause: {
1103
+ scheduledAt: 'u32',
1104
+ delay: 'u32',
1105
+ },
1106
+ Paused: 'Null',
1107
+ PendingResume: {
1108
+ scheduledAt: 'u32',
1109
+ delay: 'u32'
1110
+ }
1111
+ }
1112
+ },
1113
+ /**
1114
+ * Lookup136: pallet_grandpa::StoredPendingChange<N, Limit>
1115
+ **/
1116
+ PalletGrandpaStoredPendingChange: {
1117
+ scheduledAt: 'u32',
1118
+ delay: 'u32',
1119
+ nextAuthorities: 'Vec<(SpConsensusGrandpaAppPublic,u64)>',
1120
+ forced: 'Option<u32>'
1121
+ },
1122
+ /**
1123
+ * Lookup139: pallet_grandpa::pallet::Call<T>
1124
+ **/
1125
+ PalletGrandpaCall: {
1126
+ _enum: {
1127
+ report_equivocation: {
1128
+ equivocationProof: 'SpConsensusGrandpaEquivocationProof',
1129
+ keyOwnerProof: 'SpCoreVoid',
1130
+ },
1131
+ report_equivocation_unsigned: {
1132
+ equivocationProof: 'SpConsensusGrandpaEquivocationProof',
1133
+ keyOwnerProof: 'SpCoreVoid',
1134
+ },
1135
+ note_stalled: {
1136
+ delay: 'u32',
1137
+ bestFinalizedBlockNumber: 'u32'
1138
+ }
1139
+ }
1140
+ },
1141
+ /**
1142
+ * Lookup140: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1143
+ **/
1144
+ SpConsensusGrandpaEquivocationProof: {
1145
+ setId: 'u64',
1146
+ equivocation: 'SpConsensusGrandpaEquivocation'
1147
+ },
1148
+ /**
1149
+ * Lookup141: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1150
+ **/
1151
+ SpConsensusGrandpaEquivocation: {
1152
+ _enum: {
1153
+ Prevote: 'FinalityGrandpaEquivocationPrevote',
1154
+ Precommit: 'FinalityGrandpaEquivocationPrecommit'
1155
+ }
1156
+ },
1157
+ /**
1158
+ * Lookup142: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1159
+ **/
1160
+ FinalityGrandpaEquivocationPrevote: {
1161
+ roundNumber: 'u64',
1162
+ identity: 'SpConsensusGrandpaAppPublic',
1163
+ first: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
1164
+ second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
1165
+ },
1166
+ /**
1167
+ * Lookup143: finality_grandpa::Prevote<primitive_types::H256, N>
1168
+ **/
1169
+ FinalityGrandpaPrevote: {
1170
+ targetHash: 'H256',
1171
+ targetNumber: 'u32'
1172
+ },
1173
+ /**
1174
+ * Lookup144: sp_consensus_grandpa::app::Signature
1175
+ **/
1176
+ SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
1177
+ /**
1178
+ * Lookup145: sp_core::ed25519::Signature
1179
+ **/
1180
+ SpCoreEd25519Signature: '[u8;64]',
1181
+ /**
1182
+ * Lookup148: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1183
+ **/
1184
+ FinalityGrandpaEquivocationPrecommit: {
1185
+ roundNumber: 'u64',
1186
+ identity: 'SpConsensusGrandpaAppPublic',
1187
+ first: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
1188
+ second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
1189
+ },
1190
+ /**
1191
+ * Lookup149: finality_grandpa::Precommit<primitive_types::H256, N>
1192
+ **/
1193
+ FinalityGrandpaPrecommit: {
1194
+ targetHash: 'H256',
1195
+ targetNumber: 'u32'
1196
+ },
1197
+ /**
1198
+ * Lookup151: sp_core::Void
1199
+ **/
1200
+ SpCoreVoid: 'Null',
1201
+ /**
1202
+ * Lookup152: pallet_grandpa::pallet::Error<T>
1203
+ **/
1204
+ PalletGrandpaError: {
1205
+ _enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
1206
+ },
1207
+ /**
1208
+ * Lookup154: pallet_transaction_payment::Releases
1209
+ **/
1210
+ PalletTransactionPaymentReleases: {
1211
+ _enum: ['V1Ancient', 'V2']
1212
+ },
1213
+ /**
1214
+ * Lookup155: pallet_sudo::pallet::Call<T>
1215
+ **/
1216
+ PalletSudoCall: {
1217
+ _enum: {
1218
+ sudo: {
1219
+ call: 'Call',
1220
+ },
1221
+ sudo_unchecked_weight: {
1222
+ call: 'Call',
1223
+ weight: 'SpWeightsWeightV2Weight',
1224
+ },
1225
+ set_key: {
1226
+ _alias: {
1227
+ new_: 'new',
1228
+ },
1229
+ new_: 'MultiAddress',
1230
+ },
1231
+ sudo_as: {
1232
+ who: 'MultiAddress',
1233
+ call: 'Call'
1234
+ }
1235
+ }
1236
+ },
1237
+ /**
1238
+ * Lookup157: pallet_scheduler::pallet::Call<T>
1239
+ **/
1240
+ PalletSchedulerCall: {
1241
+ _enum: {
1242
+ schedule: {
1243
+ when: 'u32',
1244
+ maybePeriodic: 'Option<(u32,u32)>',
1245
+ priority: 'u8',
1246
+ call: 'Call',
1247
+ },
1248
+ cancel: {
1249
+ when: 'u32',
1250
+ index: 'u32',
1251
+ },
1252
+ schedule_named: {
1253
+ id: '[u8;32]',
1254
+ when: 'u32',
1255
+ maybePeriodic: 'Option<(u32,u32)>',
1256
+ priority: 'u8',
1257
+ call: 'Call',
1258
+ },
1259
+ cancel_named: {
1260
+ id: '[u8;32]',
1261
+ },
1262
+ schedule_after: {
1263
+ after: 'u32',
1264
+ maybePeriodic: 'Option<(u32,u32)>',
1265
+ priority: 'u8',
1266
+ call: 'Call',
1267
+ },
1268
+ schedule_named_after: {
1269
+ id: '[u8;32]',
1270
+ after: 'u32',
1271
+ maybePeriodic: 'Option<(u32,u32)>',
1272
+ priority: 'u8',
1273
+ call: 'Call'
1274
+ }
1275
+ }
1276
+ },
1277
+ /**
1278
+ * Lookup159: pallet_collective::pallet::Call<T, I>
1279
+ **/
1280
+ PalletCollectiveCall: {
1281
+ _enum: {
1282
+ set_members: {
1283
+ newMembers: 'Vec<AccountId32>',
1284
+ prime: 'Option<AccountId32>',
1285
+ oldCount: 'u32',
1286
+ },
1287
+ execute: {
1288
+ proposal: 'Call',
1289
+ lengthBound: 'Compact<u32>',
1290
+ },
1291
+ propose: {
1292
+ threshold: 'Compact<u32>',
1293
+ proposal: 'Call',
1294
+ lengthBound: 'Compact<u32>',
1295
+ },
1296
+ vote: {
1297
+ proposal: 'H256',
1298
+ index: 'Compact<u32>',
1299
+ approve: 'bool',
1300
+ },
1301
+ __Unused4: 'Null',
1302
+ disapprove_proposal: {
1303
+ proposalHash: 'H256',
1304
+ },
1305
+ close: {
1306
+ proposalHash: 'H256',
1307
+ index: 'Compact<u32>',
1308
+ proposalWeightBound: 'SpWeightsWeightV2Weight',
1309
+ lengthBound: 'Compact<u32>'
1310
+ }
1311
+ }
1312
+ },
1313
+ /**
1314
+ * Lookup160: pallet_session::pallet::Call<T>
1315
+ **/
1316
+ PalletSessionCall: {
1317
+ _enum: {
1318
+ set_keys: {
1319
+ _alias: {
1320
+ keys_: 'keys',
1321
+ },
1322
+ keys_: 'SugarfungeRuntimeOpaqueSessionKeys',
1323
+ proof: 'Bytes',
1324
+ },
1325
+ purge_keys: 'Null'
1326
+ }
1327
+ },
1328
+ /**
1329
+ * Lookup161: sugarfunge_runtime::opaque::SessionKeys
1330
+ **/
1331
+ SugarfungeRuntimeOpaqueSessionKeys: {
1332
+ aura: 'SpConsensusAuraSr25519AppSr25519Public',
1333
+ grandpa: 'SpConsensusGrandpaAppPublic',
1334
+ imOnline: 'PalletImOnlineSr25519AppSr25519Public'
1335
+ },
1336
+ /**
1337
+ * Lookup162: sp_consensus_aura::sr25519::app_sr25519::Public
1338
+ **/
1339
+ SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1340
+ /**
1341
+ * Lookup163: pallet_im_online::pallet::Call<T>
1342
+ **/
1343
+ PalletImOnlineCall: {
1344
+ _enum: {
1345
+ heartbeat: {
1346
+ heartbeat: 'PalletImOnlineHeartbeat',
1347
+ signature: 'PalletImOnlineSr25519AppSr25519Signature'
1348
+ }
1349
+ }
1350
+ },
1351
+ /**
1352
+ * Lookup164: pallet_im_online::Heartbeat<BlockNumber>
1353
+ **/
1354
+ PalletImOnlineHeartbeat: {
1355
+ blockNumber: 'u32',
1356
+ networkState: 'SpCoreOffchainOpaqueNetworkState',
1357
+ sessionIndex: 'u32',
1358
+ authorityIndex: 'u32',
1359
+ validatorsLen: 'u32'
1360
+ },
1361
+ /**
1362
+ * Lookup165: sp_core::offchain::OpaqueNetworkState
1363
+ **/
1364
+ SpCoreOffchainOpaqueNetworkState: {
1365
+ peerId: 'OpaquePeerId',
1366
+ externalAddresses: 'Vec<OpaqueMultiaddr>'
1367
+ },
1368
+ /**
1369
+ * Lookup169: pallet_im_online::sr25519::app_sr25519::Signature
1370
+ **/
1371
+ PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
1372
+ /**
1373
+ * Lookup170: sp_core::sr25519::Signature
1374
+ **/
1375
+ SpCoreSr25519Signature: '[u8;64]',
1376
+ /**
1377
+ * Lookup171: sugarfunge_asset::pallet::Call<T>
1378
+ **/
1379
+ SugarfungeAssetCall: {
1380
+ _enum: {
1381
+ create_class: {
1382
+ owner: 'AccountId32',
1383
+ classId: 'u64',
1384
+ metadata: 'Bytes',
1385
+ },
1386
+ create_asset: {
1387
+ classId: 'u64',
1388
+ assetId: 'u64',
1389
+ metadata: 'Bytes',
1390
+ },
1391
+ transfer_from: {
1392
+ from: 'AccountId32',
1393
+ to: 'AccountId32',
1394
+ classId: 'u64',
1395
+ assetId: 'u64',
1396
+ amount: 'u128',
1397
+ },
1398
+ batch_transfer_from: {
1399
+ from: 'AccountId32',
1400
+ to: 'AccountId32',
1401
+ classId: 'u64',
1402
+ assetIds: 'Vec<u64>',
1403
+ amounts: 'Vec<u128>',
1404
+ },
1405
+ mint: {
1406
+ to: 'AccountId32',
1407
+ classId: 'u64',
1408
+ assetId: 'u64',
1409
+ amount: 'u128',
1410
+ },
1411
+ batch_mint: {
1412
+ to: 'AccountId32',
1413
+ classId: 'u64',
1414
+ assetIds: 'Vec<u64>',
1415
+ amounts: 'Vec<u128>',
1416
+ },
1417
+ burn: {
1418
+ from: 'AccountId32',
1419
+ classId: 'u64',
1420
+ assetId: 'u64',
1421
+ amount: 'u128',
1422
+ },
1423
+ batch_burn: {
1424
+ from: 'AccountId32',
1425
+ classId: 'u64',
1426
+ assetIds: 'Vec<u64>',
1427
+ amounts: 'Vec<u128>',
1428
+ },
1429
+ update_class_metadata: {
1430
+ classId: 'u64',
1431
+ metadata: 'Bytes',
1432
+ },
1433
+ update_asset_metadata: {
1434
+ classId: 'u64',
1435
+ assetId: 'u64',
1436
+ metadata: 'Bytes'
1437
+ }
1438
+ }
1439
+ },
1440
+ /**
1441
+ * Lookup174: sugarfunge_dao::pallet::Call<T>
1442
+ **/
1443
+ SugarfungeDaoCall: {
1444
+ _enum: {
1445
+ do_something: {
1446
+ something: 'u32',
1447
+ },
1448
+ cause_error: 'Null'
1449
+ }
1450
+ },
1451
+ /**
1452
+ * Lookup175: sugarfunge_bundle::pallet::Call<T>
1453
+ **/
1454
+ SugarfungeBundleCall: {
1455
+ _enum: {
1456
+ register_bundle: {
1457
+ classId: 'u64',
1458
+ assetId: 'u64',
1459
+ bundleId: 'H256',
1460
+ schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1461
+ metadata: 'Bytes',
1462
+ },
1463
+ mint_bundle: {
1464
+ from: 'AccountId32',
1465
+ to: 'AccountId32',
1466
+ bundleId: 'H256',
1467
+ amount: 'u128',
1468
+ },
1469
+ burn_bundle: {
1470
+ from: 'AccountId32',
1471
+ to: 'AccountId32',
1472
+ bundleId: 'H256',
1473
+ amount: 'u128'
1474
+ }
1475
+ }
1476
+ },
1477
+ /**
1478
+ * Lookup183: sugarfunge_bag::pallet::Call<T>
1479
+ **/
1480
+ SugarfungeBagCall: {
1481
+ _enum: {
1482
+ register: {
1483
+ classId: 'u64',
1484
+ metadata: 'Bytes',
1485
+ },
1486
+ create: {
1487
+ classId: 'u64',
1488
+ owners: 'Vec<AccountId32>',
1489
+ shares: 'Vec<u128>',
1490
+ },
1491
+ deposit: {
1492
+ bag: 'AccountId32',
1493
+ classIds: 'Vec<u64>',
1494
+ assetIds: 'Vec<Vec<u64>>',
1495
+ amounts: 'Vec<Vec<u128>>',
1496
+ },
1497
+ sweep: {
1498
+ to: 'AccountId32',
1499
+ bag: 'AccountId32'
1500
+ }
1501
+ }
1502
+ },
1503
+ /**
1504
+ * Lookup184: sugarfunge_exgine::pallet::Call<T>
1505
+ **/
1506
+ SugarfungeExgineCall: {
1507
+ _enum: {
1508
+ do_something: {
1509
+ something: 'u32',
1510
+ },
1511
+ cause_error: 'Null'
1512
+ }
1513
+ },
1514
+ /**
1515
+ * Lookup185: sugarfunge_market::pallet::Call<T>
1516
+ **/
1517
+ SugarfungeMarketCall: {
1518
+ _enum: {
1519
+ create_market: {
1520
+ marketId: 'u64',
1521
+ },
1522
+ create_market_rate: {
1523
+ marketId: 'u64',
1524
+ marketRateId: 'u64',
1525
+ rates: 'Vec<SugarfungeMarketAssetRate>',
1526
+ },
1527
+ deposit: {
1528
+ marketId: 'u64',
1529
+ marketRateId: 'u64',
1530
+ amount: 'u128',
1531
+ },
1532
+ exchange_assets: {
1533
+ marketId: 'u64',
1534
+ marketRateId: 'u64',
1535
+ amount: 'u128'
1536
+ }
1537
+ }
1538
+ },
1539
+ /**
1540
+ * Lookup188: functionland_fula::pallet::Call<T>
1541
+ **/
1542
+ FunctionlandFulaCall: {
1543
+ _enum: {
1544
+ update_manifest: {
1545
+ cid: 'Bytes',
1546
+ poolId: 'u32',
1547
+ activeCycles: 'u16',
1548
+ missedCycles: 'u16',
1549
+ activeDays: 'i32',
1550
+ },
1551
+ upload_manifest: {
1552
+ manifest: 'Bytes',
1553
+ cid: 'Bytes',
1554
+ poolId: 'u32',
1555
+ replicationFactor: 'u16',
1556
+ },
1557
+ batch_upload_manifest: {
1558
+ manifest: 'Vec<Bytes>',
1559
+ cids: 'Vec<Bytes>',
1560
+ poolId: 'Vec<u32>',
1561
+ replicationFactor: 'Vec<u16>',
1562
+ },
1563
+ storage_manifest: {
1564
+ cid: 'Bytes',
1565
+ poolId: 'u32',
1566
+ },
1567
+ batch_storage_manifest: {
1568
+ cids: 'Vec<Bytes>',
1569
+ poolId: 'u32',
1570
+ },
1571
+ remove_stored_manifest: {
1572
+ cid: 'Bytes',
1573
+ poolId: 'u32',
1574
+ },
1575
+ batch_remove_stored_manifest: {
1576
+ cids: 'Vec<Bytes>',
1577
+ poolId: 'u32',
1578
+ },
1579
+ remove_manifest: {
1580
+ cid: 'Bytes',
1581
+ poolId: 'u32',
1582
+ },
1583
+ batch_remove_manifest: {
1584
+ cids: 'Vec<Bytes>',
1585
+ poolIds: 'Vec<u32>',
1586
+ },
1587
+ verify_manifests: 'Null',
1588
+ get_manifests: {
1589
+ poolId: 'Option<u32>',
1590
+ uploader: 'Option<AccountId32>',
1591
+ storer: 'Option<AccountId32>',
1592
+ },
1593
+ get_available_manifests: {
1594
+ poolId: 'Option<u32>',
1595
+ },
1596
+ get_manifests_storer_data: {
1597
+ poolId: 'Option<u32>',
1598
+ storer: 'Option<AccountId32>',
1599
+ },
1600
+ generate_challenge: 'Null',
1601
+ verify_challenge: {
1602
+ poolId: 'u32',
1603
+ cids: 'Vec<Bytes>',
1604
+ classId: 'u64',
1605
+ assetId: 'u64',
1606
+ },
1607
+ mint_labor_tokens: {
1608
+ classId: 'u64',
1609
+ assetId: 'u64',
1610
+ amount: 'u128',
1611
+ },
1612
+ update_file_size: {
1613
+ _alias: {
1614
+ size_: 'size',
1615
+ },
1616
+ cid: 'Bytes',
1617
+ poolId: 'u32',
1618
+ size_: 'u64',
1619
+ },
1620
+ update_file_sizes: {
1621
+ cids: 'Vec<Bytes>',
1622
+ poolId: 'u32',
1623
+ sizes: 'Vec<u64>'
1624
+ }
1625
+ }
1626
+ },
1627
+ /**
1628
+ * Lookup192: fula_pool::pallet::Call<T>
1629
+ **/
1630
+ FulaPoolCall: {
1631
+ _enum: {
1632
+ create: {
1633
+ name: 'Bytes',
1634
+ region: 'Bytes',
1635
+ peerId: 'Bytes',
1636
+ },
1637
+ leave_pool: {
1638
+ poolId: 'u32',
1639
+ targetAccount: 'Option<AccountId32>',
1640
+ },
1641
+ join: {
1642
+ poolId: 'u32',
1643
+ peerId: 'Bytes',
1644
+ },
1645
+ cancel_join: {
1646
+ poolId: 'u32',
1647
+ targetAccount: 'Option<AccountId32>',
1648
+ },
1649
+ vote: {
1650
+ poolId: 'u32',
1651
+ account: 'AccountId32',
1652
+ positive: 'bool',
1653
+ peerId: 'Bytes'
1654
+ }
1655
+ }
1656
+ },
1657
+ /**
1658
+ * Lookup194: pallet_utility::pallet::Call<T>
1659
+ **/
1660
+ PalletUtilityCall: {
1661
+ _enum: {
1662
+ batch: {
1663
+ calls: 'Vec<Call>',
1664
+ },
1665
+ as_derivative: {
1666
+ index: 'u16',
1667
+ call: 'Call',
1668
+ },
1669
+ batch_all: {
1670
+ calls: 'Vec<Call>',
1671
+ },
1672
+ dispatch_as: {
1673
+ asOrigin: 'SugarfungeRuntimeOriginCaller',
1674
+ call: 'Call',
1675
+ },
1676
+ force_batch: {
1677
+ calls: 'Vec<Call>',
1678
+ },
1679
+ with_weight: {
1680
+ call: 'Call',
1681
+ weight: 'SpWeightsWeightV2Weight'
1682
+ }
1683
+ }
1684
+ },
1685
+ /**
1686
+ * Lookup196: sugarfunge_runtime::OriginCaller
1687
+ **/
1688
+ SugarfungeRuntimeOriginCaller: {
1689
+ _enum: {
1690
+ system: 'FrameSupportDispatchRawOrigin',
1691
+ __Unused1: 'Null',
1692
+ Void: 'SpCoreVoid',
1693
+ __Unused3: 'Null',
1694
+ __Unused4: 'Null',
1695
+ __Unused5: 'Null',
1696
+ __Unused6: 'Null',
1697
+ __Unused7: 'Null',
1698
+ __Unused8: 'Null',
1699
+ __Unused9: 'Null',
1700
+ Council: 'PalletCollectiveRawOrigin'
1701
+ }
1702
+ },
1703
+ /**
1704
+ * Lookup197: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1705
+ **/
1706
+ FrameSupportDispatchRawOrigin: {
1707
+ _enum: {
1708
+ Root: 'Null',
1709
+ Signed: 'AccountId32',
1710
+ None: 'Null'
1711
+ }
1712
+ },
1713
+ /**
1714
+ * Lookup198: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1715
+ **/
1716
+ PalletCollectiveRawOrigin: {
1717
+ _enum: {
1718
+ Members: '(u32,u32)',
1719
+ Member: 'AccountId32',
1720
+ _Phantom: 'Null'
1721
+ }
1722
+ },
1723
+ /**
1724
+ * Lookup199: pallet_sudo::pallet::Error<T>
1725
+ **/
1726
+ PalletSudoError: {
1727
+ _enum: ['RequireSudo']
1728
+ },
1729
+ /**
1730
+ * Lookup202: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1731
+ **/
1732
+ PalletSchedulerScheduled: {
1733
+ maybeId: 'Option<[u8;32]>',
1734
+ priority: 'u8',
1735
+ call: 'FrameSupportPreimagesBounded',
1736
+ maybePeriodic: 'Option<(u32,u32)>',
1737
+ origin: 'SugarfungeRuntimeOriginCaller'
1738
+ },
1739
+ /**
1740
+ * Lookup203: frame_support::traits::preimages::Bounded<sugarfunge_runtime::RuntimeCall>
1741
+ **/
1742
+ FrameSupportPreimagesBounded: {
1743
+ _enum: {
1744
+ Legacy: {
1745
+ _alias: {
1746
+ hash_: 'hash',
1747
+ },
1748
+ hash_: 'H256',
1749
+ },
1750
+ Inline: 'Bytes',
1751
+ Lookup: {
1752
+ _alias: {
1753
+ hash_: 'hash',
1754
+ },
1755
+ hash_: 'H256',
1756
+ len: 'u32'
1757
+ }
1758
+ }
1759
+ },
1760
+ /**
1761
+ * Lookup206: pallet_scheduler::pallet::Error<T>
1762
+ **/
1763
+ PalletSchedulerError: {
1764
+ _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
1765
+ },
1766
+ /**
1767
+ * Lookup208: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1768
+ **/
1769
+ PalletCollectiveVotes: {
1770
+ index: 'u32',
1771
+ threshold: 'u32',
1772
+ ayes: 'Vec<AccountId32>',
1773
+ nays: 'Vec<AccountId32>',
1774
+ end: 'u32'
1775
+ },
1776
+ /**
1777
+ * Lookup209: pallet_collective::pallet::Error<T, I>
1778
+ **/
1779
+ PalletCollectiveError: {
1780
+ _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
1781
+ },
1782
+ /**
1783
+ * Lookup213: sp_core::crypto::KeyTypeId
1784
+ **/
1785
+ SpCoreCryptoKeyTypeId: '[u8;4]',
1786
+ /**
1787
+ * Lookup214: pallet_session::pallet::Error<T>
1788
+ **/
1789
+ PalletSessionError: {
1790
+ _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1791
+ },
1792
+ /**
1793
+ * Lookup218: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
1794
+ **/
1795
+ PalletImOnlineBoundedOpaqueNetworkState: {
1796
+ peerId: 'Bytes',
1797
+ externalAddresses: 'Vec<Bytes>'
1798
+ },
1799
+ /**
1800
+ * Lookup223: pallet_im_online::pallet::Error<T>
1801
+ **/
1802
+ PalletImOnlineError: {
1803
+ _enum: ['InvalidKey', 'DuplicatedHeartbeat']
1804
+ },
1805
+ /**
1806
+ * Lookup224: sugarfunge_asset::Class<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1807
+ **/
1808
+ SugarfungeAssetClass: {
1809
+ owner: 'AccountId32',
1810
+ metadata: 'Bytes'
1811
+ },
1812
+ /**
1813
+ * Lookup226: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1814
+ **/
1815
+ SugarfungeAssetAsset: {
1816
+ classId: 'u64',
1817
+ creator: 'AccountId32',
1818
+ metadata: 'Bytes'
1819
+ },
1820
+ /**
1821
+ * Lookup228: sugarfunge_asset::pallet::Error<T>
1822
+ **/
1823
+ SugarfungeAssetError: {
1824
+ _enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
1825
+ },
1826
+ /**
1827
+ * Lookup229: sugarfunge_dao::pallet::Error<T>
1828
+ **/
1829
+ SugarfungeDaoError: {
1830
+ _enum: ['NoneValue', 'StorageOverflow']
1831
+ },
1832
+ /**
1833
+ * Lookup230: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1834
+ **/
1835
+ SugarfungeBundleBundle: {
1836
+ creator: 'AccountId32',
1837
+ classId: 'u64',
1838
+ assetId: 'u64',
1839
+ metadata: 'Bytes',
1840
+ schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1841
+ vault: 'AccountId32'
1842
+ },
1843
+ /**
1844
+ * Lookup231: frame_support::PalletId
1845
+ **/
1846
+ FrameSupportPalletId: '[u8;8]',
1847
+ /**
1848
+ * Lookup232: sugarfunge_bundle::pallet::Error<T>
1849
+ **/
1850
+ SugarfungeBundleError: {
1851
+ _enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance', 'AssetExists', 'AccountNotOwner']
1852
+ },
1853
+ /**
1854
+ * Lookup233: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1855
+ **/
1856
+ SugarfungeBagBagClass: {
1857
+ operator: 'AccountId32',
1858
+ classId: 'u64'
1859
+ },
1860
+ /**
1861
+ * Lookup234: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1862
+ **/
1863
+ SugarfungeBagBag: {
1864
+ operator: 'AccountId32',
1865
+ classId: 'u64',
1866
+ assetId: 'u64',
1867
+ totalShares: 'u128'
1868
+ },
1869
+ /**
1870
+ * Lookup235: sugarfunge_bag::pallet::Error<T>
1871
+ **/
1872
+ SugarfungeBagError: {
1873
+ _enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
1874
+ },
1875
+ /**
1876
+ * Lookup236: sugarfunge_exgine::pallet::Error<T>
1877
+ **/
1878
+ SugarfungeExgineError: {
1879
+ _enum: ['NoneValue', 'StorageOverflow']
1880
+ },
1881
+ /**
1882
+ * Lookup237: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1883
+ **/
1884
+ SugarfungeMarketMarket: {
1885
+ owner: 'AccountId32',
1886
+ vault: 'AccountId32'
1887
+ },
1888
+ /**
1889
+ * Lookup239: sugarfunge_market::pallet::Error<T>
1890
+ **/
1891
+ SugarfungeMarketError: {
1892
+ _enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
1893
+ },
1894
+ /**
1895
+ * Lookup241: functionland_fula::Manifest<sp_core::crypto::AccountId32, bounded_collections::bounded_vec::BoundedVec<T, S>>
1896
+ **/
1897
+ FunctionlandFulaManifest: {
1898
+ _alias: {
1899
+ size_: 'size'
1900
+ },
1901
+ usersData: 'Vec<FunctionlandFulaUploaderData>',
1902
+ manifestMetadata: 'Bytes',
1903
+ size_: 'Option<u64>'
1904
+ },
1905
+ /**
1906
+ * Lookup244: functionland_fula::Challenge<sp_core::crypto::AccountId32>
1907
+ **/
1908
+ FunctionlandFulaChallenge: {
1909
+ challenger: 'AccountId32',
1910
+ challengeState: 'FunctionlandFulaChallengeState'
1911
+ },
1912
+ /**
1913
+ * Lookup245: functionland_fula::ClaimData
1914
+ **/
1915
+ FunctionlandFulaClaimData: {
1916
+ mintedLaborTokens: 'u128',
1917
+ expectedLaborTokens: 'u128',
1918
+ challengeTokens: 'u128'
1919
+ },
1920
+ /**
1921
+ * Lookup246: functionland_fula::pallet::Error<T>
1922
+ **/
1923
+ FunctionlandFulaError: {
1924
+ _enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'AccountNotUploader', 'AccountNotFound', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored', 'InvalidArrayLength', 'ErrorPickingCIDToChallenge', 'ErrorPickingAccountToChallenge', 'ManifestStorerDataNotFound', 'NoFileSizeProvided', 'NoAccountsToChallenge', 'FileAlreadyUploadedbyUser']
1925
+ },
1926
+ /**
1927
+ * Lookup247: fula_pool::Pool<T>
1928
+ **/
1929
+ FulaPoolPool: {
1930
+ name: 'Bytes',
1931
+ owner: 'Option<AccountId32>',
1932
+ parent: 'Option<u32>',
1933
+ participants: 'Vec<AccountId32>',
1934
+ requestNumber: 'u8',
1935
+ region: 'Bytes'
1936
+ },
1937
+ /**
1938
+ * Lookup249: fula_pool::PoolRequest<T>
1939
+ **/
1940
+ FulaPoolPoolRequest: {
1941
+ voted: 'Vec<AccountId32>',
1942
+ positiveVotes: 'u16',
1943
+ peerId: 'Bytes'
1944
+ },
1945
+ /**
1946
+ * Lookup250: fula_pool::User<bounded_collections::bounded_vec::BoundedVec<T, S>>
1947
+ **/
1948
+ FulaPoolUser: {
1949
+ poolId: 'Option<u32>',
1950
+ requestPoolId: 'Option<u32>',
1951
+ peerId: 'Bytes'
1952
+ },
1953
+ /**
1954
+ * Lookup251: fula_pool::pallet::Error<T>
1955
+ **/
1956
+ FulaPoolError: {
1957
+ _enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
1958
+ },
1959
+ /**
1960
+ * Lookup252: pallet_utility::pallet::Error<T>
1961
+ **/
1962
+ PalletUtilityError: {
1963
+ _enum: ['TooManyCalls']
1964
+ },
1965
+ /**
1966
+ * Lookup254: sp_runtime::MultiSignature
1967
+ **/
1968
+ SpRuntimeMultiSignature: {
1969
+ _enum: {
1970
+ Ed25519: 'SpCoreEd25519Signature',
1971
+ Sr25519: 'SpCoreSr25519Signature',
1972
+ Ecdsa: 'SpCoreEcdsaSignature'
1973
+ }
1974
+ },
1975
+ /**
1976
+ * Lookup255: sp_core::ecdsa::Signature
1977
+ **/
1978
+ SpCoreEcdsaSignature: '[u8;65]',
1979
+ /**
1980
+ * Lookup258: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1981
+ **/
1982
+ FrameSystemExtensionsCheckNonZeroSender: 'Null',
1983
+ /**
1984
+ * Lookup259: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1985
+ **/
1986
+ FrameSystemExtensionsCheckSpecVersion: 'Null',
1987
+ /**
1988
+ * Lookup260: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1989
+ **/
1990
+ FrameSystemExtensionsCheckTxVersion: 'Null',
1991
+ /**
1992
+ * Lookup261: frame_system::extensions::check_genesis::CheckGenesis<T>
1993
+ **/
1994
+ FrameSystemExtensionsCheckGenesis: 'Null',
1995
+ /**
1996
+ * Lookup264: frame_system::extensions::check_nonce::CheckNonce<T>
1997
+ **/
1998
+ FrameSystemExtensionsCheckNonce: 'Compact<u32>',
1999
+ /**
2000
+ * Lookup265: frame_system::extensions::check_weight::CheckWeight<T>
2001
+ **/
2002
+ FrameSystemExtensionsCheckWeight: 'Null',
2003
+ /**
2004
+ * Lookup266: pallet_transaction_payment::ChargeTransactionPayment<T>
2005
+ **/
2006
+ PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
2007
+ /**
2008
+ * Lookup267: sugarfunge_runtime::Runtime
2009
+ **/
2010
+ SugarfungeRuntimeRuntime: 'Null'
2011
+ };