@functionland/react-native-fula 1.14.8 → 1.20.0

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