@functionland/react-native-fula 1.14.1 → 1.14.4

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 (135) hide show
  1. package/LICENSE +20 -21
  2. package/android/build.gradle +90 -50
  3. package/android/gradle.properties +5 -1
  4. package/android/src/main/AndroidManifest.xml +3 -4
  5. package/android/src/main/AndroidManifestNew.xml +2 -0
  6. package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
  7. package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
  8. package/android/src/main/java/land/fx/fula/FulaModule.java +1 -1
  9. package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
  10. package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
  11. package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
  12. package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
  13. package/ios/Cryptography.swift +36 -0
  14. package/ios/Fula-Bridging-Header.h +3 -0
  15. package/ios/Fula.mm +199 -0
  16. package/ios/Fula.swift +1152 -0
  17. package/ios/{FulaModule.xcodeproj → Fula.xcodeproj}/project.pbxproj +38 -16
  18. package/ios/Fula.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  19. package/ios/Fula.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  20. package/ios/Fula.xcodeproj/project.xcworkspace/xcuserdata/user246549.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  21. package/ios/Fula.xcodeproj/xcuserdata/user246549.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  22. package/ios/UserDataHelper.swift +143 -0
  23. package/lib/commonjs/index.js.map +1 -1
  24. package/lib/commonjs/interfaces/api-lookup.js +266 -266
  25. package/lib/commonjs/interfaces/api-lookup.js.map +1 -1
  26. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  27. package/lib/commonjs/protocols/blockchain.js +64 -64
  28. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  29. package/lib/commonjs/protocols/chain-api.js +10 -0
  30. package/lib/commonjs/protocols/chain-api.js.map +1 -1
  31. package/lib/commonjs/protocols/fula.js +99 -99
  32. package/lib/commonjs/protocols/fula.js.map +1 -1
  33. package/lib/commonjs/protocols/fxblox.js +3 -3
  34. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  35. package/lib/commonjs/types/blockchain.js.map +1 -1
  36. package/lib/commonjs/types/fxblox.js.map +1 -1
  37. package/lib/module/index.js +4 -8
  38. package/lib/module/index.js.map +1 -1
  39. package/lib/module/interfaces/api-lookup.js +266 -266
  40. package/lib/module/interfaces/api-lookup.js.map +1 -1
  41. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  42. package/lib/module/protocols/blockchain.js +64 -64
  43. package/lib/module/protocols/blockchain.js.map +1 -1
  44. package/lib/module/protocols/chain-api.js +8 -0
  45. package/lib/module/protocols/chain-api.js.map +1 -1
  46. package/lib/module/protocols/fula.js +99 -99
  47. package/lib/module/protocols/fula.js.map +1 -1
  48. package/lib/module/protocols/fxblox.js +3 -3
  49. package/lib/module/protocols/fxblox.js.map +1 -1
  50. package/lib/module/types/blockchain.js.map +1 -1
  51. package/lib/module/types/fxblox.js.map +1 -1
  52. package/lib/typescript/index.d.ts +5 -4
  53. package/lib/typescript/index.d.ts.map +1 -0
  54. package/lib/typescript/interfaces/api-lookup.d.ts +1644 -1643
  55. package/lib/typescript/interfaces/api-lookup.d.ts.map +1 -0
  56. package/lib/typescript/interfaces/fulaNativeModule.d.ts +62 -61
  57. package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -0
  58. package/lib/typescript/protocols/blockchain.d.ts +18 -17
  59. package/lib/typescript/protocols/blockchain.d.ts.map +1 -0
  60. package/lib/typescript/protocols/chain-api.d.ts +7 -6
  61. package/lib/typescript/protocols/chain-api.d.ts.map +1 -0
  62. package/lib/typescript/protocols/fula.d.ts +132 -131
  63. package/lib/typescript/protocols/fula.d.ts.map +1 -0
  64. package/lib/typescript/protocols/fxblox.d.ts +8 -7
  65. package/lib/typescript/protocols/fxblox.d.ts.map +1 -0
  66. package/lib/typescript/types/blockchain.d.ts +69 -68
  67. package/lib/typescript/types/blockchain.d.ts.map +1 -0
  68. package/lib/typescript/types/fxblox.d.ts +9 -8
  69. package/lib/typescript/types/fxblox.d.ts.map +1 -0
  70. package/package.json +43 -28
  71. package/react-native-fula.podspec +47 -19
  72. package/src/index.tsx +4 -4
  73. package/src/interfaces/api-lookup.ts +1647 -1647
  74. package/src/interfaces/fulaNativeModule.ts +122 -122
  75. package/src/protocols/blockchain.ts +504 -504
  76. package/src/protocols/chain-api.ts +8 -0
  77. package/src/protocols/fula.ts +314 -314
  78. package/src/protocols/fxblox.ts +49 -49
  79. package/src/types/blockchain.ts +80 -80
  80. package/src/types/fxblox.ts +8 -8
  81. package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  82. package/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
  83. package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
  84. package/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  85. package/android/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
  86. package/android/.gradle/7.5.1/executionHistory/executionHistory.bin +0 -0
  87. package/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
  88. package/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  89. package/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
  90. package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  91. package/android/.gradle/7.5.1/fileHashes/resourceHashesCache.bin +0 -0
  92. package/android/.gradle/7.5.1/gc.properties +0 -0
  93. package/android/.gradle/7.6/checksums/checksums.lock +0 -0
  94. package/android/.gradle/7.6/checksums/md5-checksums.bin +0 -0
  95. package/android/.gradle/7.6/checksums/sha1-checksums.bin +0 -0
  96. package/android/.gradle/7.6/dependencies-accessors/dependencies-accessors.lock +0 -0
  97. package/android/.gradle/7.6/dependencies-accessors/gc.properties +0 -0
  98. package/android/.gradle/7.6/executionHistory/executionHistory.bin +0 -0
  99. package/android/.gradle/7.6/executionHistory/executionHistory.lock +0 -0
  100. package/android/.gradle/7.6/fileChanges/last-build.bin +0 -0
  101. package/android/.gradle/7.6/fileHashes/fileHashes.bin +0 -0
  102. package/android/.gradle/7.6/fileHashes/fileHashes.lock +0 -0
  103. package/android/.gradle/7.6/fileHashes/resourceHashesCache.bin +0 -0
  104. package/android/.gradle/7.6/gc.properties +0 -0
  105. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  106. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  107. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  108. package/android/.gradle/file-system.probe +0 -0
  109. package/android/.gradle/vcs-1/gc.properties +0 -0
  110. package/android/.idea/compiler.xml +0 -6
  111. package/android/.idea/gradle.xml +0 -20
  112. package/android/.idea/jarRepositories.xml +0 -50
  113. package/android/.idea/misc.xml +0 -10
  114. package/android/.idea/sonarlint/issuestore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +0 -0
  115. package/android/.idea/sonarlint/issuestore/2/e/2e09eb0f0df666781fdff057a0af6101364ebe2f +0 -0
  116. package/android/.idea/sonarlint/issuestore/6/2/62149c3f7c3a14d7a77778e558d274e8c00a5585 +0 -0
  117. package/android/.idea/sonarlint/issuestore/8/0/80a78d662b0659428eb880336106c3c5fc3f0714 +0 -0
  118. package/android/.idea/sonarlint/issuestore/d/2/d2865ef8fc01c40e9fd82977fde2c8378fad0b12 +0 -0
  119. package/android/.idea/sonarlint/issuestore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +0 -0
  120. package/android/.idea/sonarlint/issuestore/index.pb +0 -13
  121. package/android/.idea/sonarlint/securityhotspotstore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +0 -0
  122. package/android/.idea/sonarlint/securityhotspotstore/2/e/2e09eb0f0df666781fdff057a0af6101364ebe2f +0 -0
  123. package/android/.idea/sonarlint/securityhotspotstore/6/2/62149c3f7c3a14d7a77778e558d274e8c00a5585 +0 -0
  124. package/android/.idea/sonarlint/securityhotspotstore/8/0/80a78d662b0659428eb880336106c3c5fc3f0714 +0 -0
  125. package/android/.idea/sonarlint/securityhotspotstore/d/2/d2865ef8fc01c40e9fd82977fde2c8378fad0b12 +0 -0
  126. package/android/.idea/sonarlint/securityhotspotstore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +0 -0
  127. package/android/.idea/sonarlint/securityhotspotstore/index.pb +0 -13
  128. package/android/.idea/vcs.xml +0 -6
  129. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  130. package/android/gradle/wrapper/gradle-wrapper.properties +0 -7
  131. package/android/gradlew +0 -291
  132. package/android/gradlew.bat +0 -91
  133. package/android/local.properties +0 -8
  134. package/ios/FulaModule.h +0 -10
  135. package/ios/FulaModule.m +0 -149
@@ -1,1643 +1,1644 @@
1
- declare const _default: {
2
- /**
3
- * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
4
- **/
5
- FrameSystemAccountInfo: {
6
- nonce: string;
7
- consumers: string;
8
- providers: string;
9
- sufficients: string;
10
- data: string;
11
- };
12
- /**
13
- * Lookup5: pallet_balances::AccountData<Balance>
14
- **/
15
- PalletBalancesAccountData: {
16
- free: string;
17
- reserved: string;
18
- miscFrozen: string;
19
- feeFrozen: string;
20
- };
21
- /**
22
- * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
23
- **/
24
- FrameSupportDispatchPerDispatchClassWeight: {
25
- normal: string;
26
- operational: string;
27
- mandatory: string;
28
- };
29
- /**
30
- * Lookup12: sp_runtime::generic::digest::Digest
31
- **/
32
- SpRuntimeDigest: {
33
- logs: string;
34
- };
35
- /**
36
- * Lookup14: sp_runtime::generic::digest::DigestItem
37
- **/
38
- SpRuntimeDigestDigestItem: {
39
- _enum: {
40
- Other: string;
41
- __Unused1: string;
42
- __Unused2: string;
43
- __Unused3: string;
44
- Consensus: string;
45
- Seal: string;
46
- PreRuntime: string;
47
- __Unused7: string;
48
- RuntimeEnvironmentUpdated: string;
49
- };
50
- };
51
- /**
52
- * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
53
- **/
54
- FrameSystemEventRecord: {
55
- phase: string;
56
- event: string;
57
- topics: string;
58
- };
59
- /**
60
- * Lookup19: frame_system::pallet::Event<T>
61
- **/
62
- FrameSystemEvent: {
63
- _enum: {
64
- ExtrinsicSuccess: {
65
- dispatchInfo: string;
66
- };
67
- ExtrinsicFailed: {
68
- dispatchError: string;
69
- dispatchInfo: string;
70
- };
71
- CodeUpdated: string;
72
- NewAccount: {
73
- account: string;
74
- };
75
- KilledAccount: {
76
- account: string;
77
- };
78
- Remarked: {
79
- _alias: {
80
- hash_: string;
81
- };
82
- sender: string;
83
- hash_: string;
84
- };
85
- };
86
- };
87
- /**
88
- * Lookup20: frame_support::dispatch::DispatchInfo
89
- **/
90
- FrameSupportDispatchDispatchInfo: {
91
- weight: string;
92
- class: string;
93
- paysFee: string;
94
- };
95
- /**
96
- * Lookup21: frame_support::dispatch::DispatchClass
97
- **/
98
- FrameSupportDispatchDispatchClass: {
99
- _enum: string[];
100
- };
101
- /**
102
- * Lookup22: frame_support::dispatch::Pays
103
- **/
104
- FrameSupportDispatchPays: {
105
- _enum: string[];
106
- };
107
- /**
108
- * Lookup23: sp_runtime::DispatchError
109
- **/
110
- SpRuntimeDispatchError: {
111
- _enum: {
112
- Other: string;
113
- CannotLookup: string;
114
- BadOrigin: string;
115
- Module: string;
116
- ConsumerRemaining: string;
117
- NoProviders: string;
118
- TooManyConsumers: string;
119
- Token: string;
120
- Arithmetic: string;
121
- Transactional: string;
122
- };
123
- };
124
- /**
125
- * Lookup24: sp_runtime::ModuleError
126
- **/
127
- SpRuntimeModuleError: {
128
- index: string;
129
- error: string;
130
- };
131
- /**
132
- * Lookup25: sp_runtime::TokenError
133
- **/
134
- SpRuntimeTokenError: {
135
- _enum: string[];
136
- };
137
- /**
138
- * Lookup26: sp_runtime::ArithmeticError
139
- **/
140
- SpRuntimeArithmeticError: {
141
- _enum: string[];
142
- };
143
- /**
144
- * Lookup27: sp_runtime::TransactionalError
145
- **/
146
- SpRuntimeTransactionalError: {
147
- _enum: string[];
148
- };
149
- /**
150
- * Lookup28: pallet_grandpa::pallet::Event
151
- **/
152
- PalletGrandpaEvent: {
153
- _enum: {
154
- NewAuthorities: {
155
- authoritySet: string;
156
- };
157
- Paused: string;
158
- Resumed: string;
159
- };
160
- };
161
- /**
162
- * Lookup31: sp_finality_grandpa::app::Public
163
- **/
164
- SpFinalityGrandpaAppPublic: string;
165
- /**
166
- * Lookup32: sp_core::ed25519::Public
167
- **/
168
- SpCoreEd25519Public: string;
169
- /**
170
- * Lookup33: pallet_balances::pallet::Event<T, I>
171
- **/
172
- PalletBalancesEvent: {
173
- _enum: {
174
- Endowed: {
175
- account: string;
176
- freeBalance: string;
177
- };
178
- DustLost: {
179
- account: string;
180
- amount: string;
181
- };
182
- Transfer: {
183
- from: string;
184
- to: string;
185
- amount: string;
186
- };
187
- BalanceSet: {
188
- who: string;
189
- free: string;
190
- reserved: string;
191
- };
192
- Reserved: {
193
- who: string;
194
- amount: string;
195
- };
196
- Unreserved: {
197
- who: string;
198
- amount: string;
199
- };
200
- ReserveRepatriated: {
201
- from: string;
202
- to: string;
203
- amount: string;
204
- destinationStatus: string;
205
- };
206
- Deposit: {
207
- who: string;
208
- amount: string;
209
- };
210
- Withdraw: {
211
- who: string;
212
- amount: string;
213
- };
214
- Slashed: {
215
- who: string;
216
- amount: string;
217
- };
218
- };
219
- };
220
- /**
221
- * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
222
- **/
223
- FrameSupportTokensMiscBalanceStatus: {
224
- _enum: string[];
225
- };
226
- /**
227
- * Lookup35: pallet_transaction_payment::pallet::Event<T>
228
- **/
229
- PalletTransactionPaymentEvent: {
230
- _enum: {
231
- TransactionFeePaid: {
232
- who: string;
233
- actualFee: string;
234
- tip: string;
235
- };
236
- };
237
- };
238
- /**
239
- * Lookup36: pallet_sudo::pallet::Event<T>
240
- **/
241
- PalletSudoEvent: {
242
- _enum: {
243
- Sudid: {
244
- sudoResult: string;
245
- };
246
- KeyChanged: {
247
- oldSudoer: string;
248
- };
249
- SudoAsDone: {
250
- sudoResult: string;
251
- };
252
- };
253
- };
254
- /**
255
- * Lookup40: pallet_scheduler::pallet::Event<T>
256
- **/
257
- PalletSchedulerEvent: {
258
- _enum: {
259
- Scheduled: {
260
- when: string;
261
- index: string;
262
- };
263
- Canceled: {
264
- when: string;
265
- index: string;
266
- };
267
- Dispatched: {
268
- task: string;
269
- id: string;
270
- result: string;
271
- };
272
- CallLookupFailed: {
273
- task: string;
274
- id: string;
275
- error: string;
276
- };
277
- };
278
- };
279
- /**
280
- * Lookup43: frame_support::traits::schedule::LookupError
281
- **/
282
- FrameSupportScheduleLookupError: {
283
- _enum: string[];
284
- };
285
- /**
286
- * Lookup44: pallet_collective::pallet::Event<T, I>
287
- **/
288
- PalletCollectiveEvent: {
289
- _enum: {
290
- Proposed: {
291
- account: string;
292
- proposalIndex: string;
293
- proposalHash: string;
294
- threshold: string;
295
- };
296
- Voted: {
297
- account: string;
298
- proposalHash: string;
299
- voted: string;
300
- yes: string;
301
- no: string;
302
- };
303
- Approved: {
304
- proposalHash: string;
305
- };
306
- Disapproved: {
307
- proposalHash: string;
308
- };
309
- Executed: {
310
- proposalHash: string;
311
- result: string;
312
- };
313
- MemberExecuted: {
314
- proposalHash: string;
315
- result: string;
316
- };
317
- Closed: {
318
- proposalHash: string;
319
- yes: string;
320
- no: string;
321
- };
322
- };
323
- };
324
- /**
325
- * Lookup46: sugarfunge_validator_set::pallet::Event<T>
326
- **/
327
- SugarfungeValidatorSetEvent: {
328
- _enum: {
329
- ValidatorAdditionInitiated: string;
330
- ValidatorRemovalInitiated: string;
331
- };
332
- };
333
- /**
334
- * Lookup47: pallet_session::pallet::Event
335
- **/
336
- PalletSessionEvent: {
337
- _enum: {
338
- NewSession: {
339
- sessionIndex: string;
340
- };
341
- };
342
- };
343
- /**
344
- * Lookup48: sugarfunge_asset::pallet::Event<T>
345
- **/
346
- SugarfungeAssetEvent: {
347
- _enum: {
348
- ClassCreated: {
349
- classId: string;
350
- who: string;
351
- };
352
- AssetCreated: {
353
- classId: string;
354
- assetId: string;
355
- who: string;
356
- };
357
- AssetMetadataUpdated: {
358
- classId: string;
359
- assetId: string;
360
- who: string;
361
- metadata: string;
362
- };
363
- Mint: {
364
- who: string;
365
- to: string;
366
- classId: string;
367
- assetId: string;
368
- amount: string;
369
- };
370
- BatchMint: {
371
- who: string;
372
- to: string;
373
- classId: string;
374
- assetIds: string;
375
- amounts: string;
376
- };
377
- Burn: {
378
- who: string;
379
- from: string;
380
- classId: string;
381
- assetId: string;
382
- amount: string;
383
- };
384
- BatchBurn: {
385
- who: string;
386
- from: string;
387
- classId: string;
388
- assetIds: string;
389
- amounts: string;
390
- };
391
- Transferred: {
392
- who: string;
393
- from: string;
394
- to: string;
395
- classId: string;
396
- assetId: string;
397
- amount: string;
398
- };
399
- BatchTransferred: {
400
- who: string;
401
- from: string;
402
- to: string;
403
- classId: string;
404
- assetIds: string;
405
- amounts: string;
406
- };
407
- OperatorApprovalForAll: {
408
- who: string;
409
- operator: string;
410
- classId: string;
411
- approved: string;
412
- };
413
- };
414
- };
415
- /**
416
- * Lookup51: sugarfunge_dao::pallet::Event<T>
417
- **/
418
- SugarfungeDaoEvent: {
419
- _enum: {
420
- SomethingStored: string;
421
- };
422
- };
423
- /**
424
- * Lookup52: sugarfunge_bundle::pallet::Event<T>
425
- **/
426
- SugarfungeBundleEvent: {
427
- _enum: {
428
- Register: {
429
- bundleId: string;
430
- who: string;
431
- classId: string;
432
- assetId: string;
433
- };
434
- Mint: {
435
- bundleId: string;
436
- who: string;
437
- from: string;
438
- to: string;
439
- amount: string;
440
- };
441
- Burn: {
442
- bundleId: string;
443
- who: string;
444
- from: string;
445
- to: string;
446
- amount: string;
447
- };
448
- };
449
- };
450
- /**
451
- * Lookup53: sugarfunge_bag::pallet::Event<T>
452
- **/
453
- SugarfungeBagEvent: {
454
- _enum: {
455
- Register: {
456
- who: string;
457
- classId: string;
458
- };
459
- Created: {
460
- bag: string;
461
- who: string;
462
- classId: string;
463
- assetId: string;
464
- owners: string;
465
- };
466
- Deposit: {
467
- bag: string;
468
- who: string;
469
- };
470
- Sweep: {
471
- bag: string;
472
- who: string;
473
- to: string;
474
- };
475
- };
476
- };
477
- /**
478
- * Lookup55: sugarfunge_exgine::pallet::Event<T>
479
- **/
480
- SugarfungeExgineEvent: {
481
- _enum: {
482
- SomethingStored: string;
483
- };
484
- };
485
- /**
486
- * Lookup56: sugarfunge_market::pallet::Event<T>
487
- **/
488
- SugarfungeMarketEvent: {
489
- _enum: {
490
- Created: {
491
- marketId: string;
492
- who: string;
493
- };
494
- RateCreated: {
495
- marketId: string;
496
- marketRateId: string;
497
- who: string;
498
- };
499
- LiquidityAdded: {
500
- who: string;
501
- marketId: string;
502
- marketRateId: string;
503
- classIds: string;
504
- assetIds: string;
505
- amounts: string;
506
- };
507
- LiquidityRemoved: {
508
- who: string;
509
- marketId: string;
510
- marketRateId: string;
511
- classIds: string;
512
- assetIds: string;
513
- amounts: string;
514
- };
515
- Deposit: {
516
- who: string;
517
- marketId: string;
518
- marketRateId: string;
519
- amount: string;
520
- balances: string;
521
- success: string;
522
- };
523
- Exchanged: {
524
- buyer: string;
525
- marketId: string;
526
- marketRateId: string;
527
- amount: string;
528
- balances: string;
529
- success: string;
530
- };
531
- };
532
- };
533
- /**
534
- * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
535
- **/
536
- SugarfungeMarketRateBalance: {
537
- rate: string;
538
- balance: string;
539
- };
540
- /**
541
- * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
542
- **/
543
- SugarfungeMarketAssetRate: {
544
- classId: string;
545
- assetId: string;
546
- action: string;
547
- from: string;
548
- to: string;
549
- };
550
- /**
551
- * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
552
- **/
553
- SugarfungeMarketRateAction: {
554
- _enum: {
555
- Transfer: string;
556
- MarketTransfer: string;
557
- Mint: string;
558
- Burn: string;
559
- Has: string;
560
- };
561
- };
562
- /**
563
- * Lookup64: sugarfunge_market::AMM
564
- **/
565
- SugarfungeMarketAmm: {
566
- _enum: string[];
567
- };
568
- /**
569
- * Lookup65: sugarfunge_market::AmountOp
570
- **/
571
- SugarfungeMarketAmountOp: {
572
- _enum: string[];
573
- };
574
- /**
575
- * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
576
- **/
577
- SugarfungeMarketRateAccount: {
578
- _enum: {
579
- Market: string;
580
- Account: string;
581
- Buyer: string;
582
- };
583
- };
584
- /**
585
- * Lookup67: functionland_fula::pallet::Event<T>
586
- **/
587
- FunctionlandFulaEvent: {
588
- _enum: {
589
- ManifestOutput: {
590
- uploader: string;
591
- storage: string;
592
- manifest: string;
593
- poolId: string;
594
- };
595
- StorageManifestOutput: {
596
- uploader: string;
597
- storage: string;
598
- cid: string;
599
- poolId: string;
600
- };
601
- RemoveStorerOutput: {
602
- uploader: string;
603
- storage: string;
604
- cid: string;
605
- poolId: string;
606
- };
607
- ManifestRemoved: {
608
- uploader: string;
609
- cid: string;
610
- poolId: string;
611
- };
612
- ManifestStorageUpdated: {
613
- storer: string;
614
- poolId: string;
615
- cid: string;
616
- activeCycles: string;
617
- missedCycles: string;
618
- activeDays: string;
619
- };
620
- };
621
- };
622
- /**
623
- * Lookup70: fula_pool::pallet::Event<T>
624
- **/
625
- FulaPoolEvent: {
626
- _enum: {
627
- PoolCreated: {
628
- owner: string;
629
- poolId: string;
630
- };
631
- JoinRequested: {
632
- account: string;
633
- poolId: string;
634
- };
635
- RequestWithdrawn: {
636
- account: string;
637
- poolId: string;
638
- };
639
- Accepted: {
640
- account: string;
641
- poolId: string;
642
- };
643
- Denied: {
644
- account: string;
645
- poolId: string;
646
- };
647
- CapacityReached: {
648
- poolId: string;
649
- };
650
- ParticipantLeft: {
651
- account: string;
652
- poolId: string;
653
- };
654
- };
655
- };
656
- /**
657
- * Lookup71: frame_system::Phase
658
- **/
659
- FrameSystemPhase: {
660
- _enum: {
661
- ApplyExtrinsic: string;
662
- Finalization: string;
663
- Initialization: string;
664
- };
665
- };
666
- /**
667
- * Lookup74: frame_system::LastRuntimeUpgradeInfo
668
- **/
669
- FrameSystemLastRuntimeUpgradeInfo: {
670
- specVersion: string;
671
- specName: string;
672
- };
673
- /**
674
- * Lookup77: frame_system::pallet::Call<T>
675
- **/
676
- FrameSystemCall: {
677
- _enum: {
678
- fill_block: {
679
- ratio: string;
680
- };
681
- remark: {
682
- remark: string;
683
- };
684
- set_heap_pages: {
685
- pages: string;
686
- };
687
- set_code: {
688
- code: string;
689
- };
690
- set_code_without_checks: {
691
- code: string;
692
- };
693
- set_storage: {
694
- items: string;
695
- };
696
- kill_storage: {
697
- _alias: {
698
- keys_: string;
699
- };
700
- keys_: string;
701
- };
702
- kill_prefix: {
703
- prefix: string;
704
- subkeys: string;
705
- };
706
- remark_with_event: {
707
- remark: string;
708
- };
709
- };
710
- };
711
- /**
712
- * Lookup82: frame_system::limits::BlockWeights
713
- **/
714
- FrameSystemLimitsBlockWeights: {
715
- baseBlock: string;
716
- maxBlock: string;
717
- perClass: string;
718
- };
719
- /**
720
- * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
721
- **/
722
- FrameSupportDispatchPerDispatchClassWeightsPerClass: {
723
- normal: string;
724
- operational: string;
725
- mandatory: string;
726
- };
727
- /**
728
- * Lookup84: frame_system::limits::WeightsPerClass
729
- **/
730
- FrameSystemLimitsWeightsPerClass: {
731
- baseExtrinsic: string;
732
- maxExtrinsic: string;
733
- maxTotal: string;
734
- reserved: string;
735
- };
736
- /**
737
- * Lookup86: frame_system::limits::BlockLength
738
- **/
739
- FrameSystemLimitsBlockLength: {
740
- max: string;
741
- };
742
- /**
743
- * Lookup87: frame_support::dispatch::PerDispatchClass<T>
744
- **/
745
- FrameSupportDispatchPerDispatchClassU32: {
746
- normal: string;
747
- operational: string;
748
- mandatory: string;
749
- };
750
- /**
751
- * Lookup88: sp_weights::RuntimeDbWeight
752
- **/
753
- SpWeightsRuntimeDbWeight: {
754
- read: string;
755
- write: string;
756
- };
757
- /**
758
- * Lookup89: sp_version::RuntimeVersion
759
- **/
760
- SpVersionRuntimeVersion: {
761
- specName: string;
762
- implName: string;
763
- authoringVersion: string;
764
- specVersion: string;
765
- implVersion: string;
766
- apis: string;
767
- transactionVersion: string;
768
- stateVersion: string;
769
- };
770
- /**
771
- * Lookup94: frame_system::pallet::Error<T>
772
- **/
773
- FrameSystemError: {
774
- _enum: string[];
775
- };
776
- /**
777
- * Lookup96: pallet_timestamp::pallet::Call<T>
778
- **/
779
- PalletTimestampCall: {
780
- _enum: {
781
- set: {
782
- now: string;
783
- };
784
- };
785
- };
786
- /**
787
- * Lookup98: pallet_grandpa::StoredState<N>
788
- **/
789
- PalletGrandpaStoredState: {
790
- _enum: {
791
- Live: string;
792
- PendingPause: {
793
- scheduledAt: string;
794
- delay: string;
795
- };
796
- Paused: string;
797
- PendingResume: {
798
- scheduledAt: string;
799
- delay: string;
800
- };
801
- };
802
- };
803
- /**
804
- * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
805
- **/
806
- PalletGrandpaStoredPendingChange: {
807
- scheduledAt: string;
808
- delay: string;
809
- nextAuthorities: string;
810
- forced: string;
811
- };
812
- /**
813
- * Lookup102: pallet_grandpa::pallet::Call<T>
814
- **/
815
- PalletGrandpaCall: {
816
- _enum: {
817
- report_equivocation: {
818
- equivocationProof: string;
819
- keyOwnerProof: string;
820
- };
821
- report_equivocation_unsigned: {
822
- equivocationProof: string;
823
- keyOwnerProof: string;
824
- };
825
- note_stalled: {
826
- delay: string;
827
- bestFinalizedBlockNumber: string;
828
- };
829
- };
830
- };
831
- /**
832
- * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
833
- **/
834
- SpFinalityGrandpaEquivocationProof: {
835
- setId: string;
836
- equivocation: string;
837
- };
838
- /**
839
- * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
840
- **/
841
- SpFinalityGrandpaEquivocation: {
842
- _enum: {
843
- Prevote: string;
844
- Precommit: string;
845
- };
846
- };
847
- /**
848
- * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
849
- **/
850
- FinalityGrandpaEquivocationPrevote: {
851
- roundNumber: string;
852
- identity: string;
853
- first: string;
854
- second: string;
855
- };
856
- /**
857
- * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
858
- **/
859
- FinalityGrandpaPrevote: {
860
- targetHash: string;
861
- targetNumber: string;
862
- };
863
- /**
864
- * Lookup107: sp_finality_grandpa::app::Signature
865
- **/
866
- SpFinalityGrandpaAppSignature: string;
867
- /**
868
- * Lookup108: sp_core::ed25519::Signature
869
- **/
870
- SpCoreEd25519Signature: string;
871
- /**
872
- * Lookup111: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
873
- **/
874
- FinalityGrandpaEquivocationPrecommit: {
875
- roundNumber: string;
876
- identity: string;
877
- first: string;
878
- second: string;
879
- };
880
- /**
881
- * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
882
- **/
883
- FinalityGrandpaPrecommit: {
884
- targetHash: string;
885
- targetNumber: string;
886
- };
887
- /**
888
- * Lookup114: sp_core::Void
889
- **/
890
- SpCoreVoid: string;
891
- /**
892
- * Lookup115: pallet_grandpa::pallet::Error<T>
893
- **/
894
- PalletGrandpaError: {
895
- _enum: string[];
896
- };
897
- /**
898
- * Lookup117: pallet_balances::BalanceLock<Balance>
899
- **/
900
- PalletBalancesBalanceLock: {
901
- id: string;
902
- amount: string;
903
- reasons: string;
904
- };
905
- /**
906
- * Lookup118: pallet_balances::Reasons
907
- **/
908
- PalletBalancesReasons: {
909
- _enum: string[];
910
- };
911
- /**
912
- * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
913
- **/
914
- PalletBalancesReserveData: {
915
- id: string;
916
- amount: string;
917
- };
918
- /**
919
- * Lookup123: pallet_balances::Releases
920
- **/
921
- PalletBalancesReleases: {
922
- _enum: string[];
923
- };
924
- /**
925
- * Lookup124: pallet_balances::pallet::Call<T, I>
926
- **/
927
- PalletBalancesCall: {
928
- _enum: {
929
- transfer: {
930
- dest: string;
931
- value: string;
932
- };
933
- set_balance: {
934
- who: string;
935
- newFree: string;
936
- newReserved: string;
937
- };
938
- force_transfer: {
939
- source: string;
940
- dest: string;
941
- value: string;
942
- };
943
- transfer_keep_alive: {
944
- dest: string;
945
- value: string;
946
- };
947
- transfer_all: {
948
- dest: string;
949
- keepAlive: string;
950
- };
951
- force_unreserve: {
952
- who: string;
953
- amount: string;
954
- };
955
- };
956
- };
957
- /**
958
- * Lookup129: pallet_balances::pallet::Error<T, I>
959
- **/
960
- PalletBalancesError: {
961
- _enum: string[];
962
- };
963
- /**
964
- * Lookup131: pallet_transaction_payment::Releases
965
- **/
966
- PalletTransactionPaymentReleases: {
967
- _enum: string[];
968
- };
969
- /**
970
- * Lookup132: pallet_sudo::pallet::Call<T>
971
- **/
972
- PalletSudoCall: {
973
- _enum: {
974
- sudo: {
975
- call: string;
976
- };
977
- sudo_unchecked_weight: {
978
- call: string;
979
- weight: string;
980
- };
981
- set_key: {
982
- _alias: {
983
- new_: string;
984
- };
985
- new_: string;
986
- };
987
- sudo_as: {
988
- who: string;
989
- call: string;
990
- };
991
- };
992
- };
993
- /**
994
- * Lookup134: pallet_scheduler::pallet::Call<T>
995
- **/
996
- PalletSchedulerCall: {
997
- _enum: {
998
- schedule: {
999
- when: string;
1000
- maybePeriodic: string;
1001
- priority: string;
1002
- call: string;
1003
- };
1004
- cancel: {
1005
- when: string;
1006
- index: string;
1007
- };
1008
- schedule_named: {
1009
- id: string;
1010
- when: string;
1011
- maybePeriodic: string;
1012
- priority: string;
1013
- call: string;
1014
- };
1015
- cancel_named: {
1016
- id: string;
1017
- };
1018
- schedule_after: {
1019
- after: string;
1020
- maybePeriodic: string;
1021
- priority: string;
1022
- call: string;
1023
- };
1024
- schedule_named_after: {
1025
- id: string;
1026
- after: string;
1027
- maybePeriodic: string;
1028
- priority: string;
1029
- call: string;
1030
- };
1031
- };
1032
- };
1033
- /**
1034
- * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1035
- **/
1036
- FrameSupportScheduleMaybeHashed: {
1037
- _enum: {
1038
- Value: string;
1039
- Hash: string;
1040
- };
1041
- };
1042
- /**
1043
- * Lookup137: pallet_collective::pallet::Call<T, I>
1044
- **/
1045
- PalletCollectiveCall: {
1046
- _enum: {
1047
- set_members: {
1048
- newMembers: string;
1049
- prime: string;
1050
- oldCount: string;
1051
- };
1052
- execute: {
1053
- proposal: string;
1054
- lengthBound: string;
1055
- };
1056
- propose: {
1057
- threshold: string;
1058
- proposal: string;
1059
- lengthBound: string;
1060
- };
1061
- vote: {
1062
- proposal: string;
1063
- index: string;
1064
- approve: string;
1065
- };
1066
- close: {
1067
- proposalHash: string;
1068
- index: string;
1069
- proposalWeightBound: string;
1070
- lengthBound: string;
1071
- };
1072
- disapprove_proposal: {
1073
- proposalHash: string;
1074
- };
1075
- };
1076
- };
1077
- /**
1078
- * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1079
- **/
1080
- SugarfungeValidatorSetCall: {
1081
- _enum: {
1082
- add_validator: {
1083
- validatorId: string;
1084
- };
1085
- remove_validator: {
1086
- validatorId: string;
1087
- };
1088
- add_validator_again: {
1089
- validatorId: string;
1090
- };
1091
- };
1092
- };
1093
- /**
1094
- * Lookup140: pallet_session::pallet::Call<T>
1095
- **/
1096
- PalletSessionCall: {
1097
- _enum: {
1098
- set_keys: {
1099
- _alias: {
1100
- keys_: string;
1101
- };
1102
- keys_: string;
1103
- proof: string;
1104
- };
1105
- purge_keys: string;
1106
- };
1107
- };
1108
- /**
1109
- * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1110
- **/
1111
- SugarfungeRuntimeOpaqueSessionKeys: {
1112
- aura: string;
1113
- grandpa: string;
1114
- };
1115
- /**
1116
- * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1117
- **/
1118
- SpConsensusAuraSr25519AppSr25519Public: string;
1119
- /**
1120
- * Lookup143: sp_core::sr25519::Public
1121
- **/
1122
- SpCoreSr25519Public: string;
1123
- /**
1124
- * Lookup144: sugarfunge_asset::pallet::Call<T>
1125
- **/
1126
- SugarfungeAssetCall: {
1127
- _enum: {
1128
- create_class: {
1129
- owner: string;
1130
- classId: string;
1131
- metadata: string;
1132
- };
1133
- create_asset: {
1134
- classId: string;
1135
- assetId: string;
1136
- metadata: string;
1137
- };
1138
- transfer_from: {
1139
- from: string;
1140
- to: string;
1141
- classId: string;
1142
- assetId: string;
1143
- amount: string;
1144
- };
1145
- batch_transfer_from: {
1146
- from: string;
1147
- to: string;
1148
- classId: string;
1149
- assetIds: string;
1150
- amounts: string;
1151
- };
1152
- mint: {
1153
- to: string;
1154
- classId: string;
1155
- assetId: string;
1156
- amount: string;
1157
- };
1158
- batch_mint: {
1159
- to: string;
1160
- classId: string;
1161
- assetIds: string;
1162
- amounts: string;
1163
- };
1164
- burn: {
1165
- from: string;
1166
- classId: string;
1167
- assetId: string;
1168
- amount: string;
1169
- };
1170
- batch_burn: {
1171
- from: string;
1172
- classId: string;
1173
- assetIds: string;
1174
- amounts: string;
1175
- };
1176
- update_class_metadata: {
1177
- classId: string;
1178
- metadata: string;
1179
- };
1180
- update_asset_metadata: {
1181
- classId: string;
1182
- assetId: string;
1183
- metadata: string;
1184
- };
1185
- };
1186
- };
1187
- /**
1188
- * Lookup147: sugarfunge_dao::pallet::Call<T>
1189
- **/
1190
- SugarfungeDaoCall: {
1191
- _enum: {
1192
- do_something: {
1193
- something: string;
1194
- };
1195
- cause_error: string;
1196
- };
1197
- };
1198
- /**
1199
- * Lookup148: sugarfunge_bundle::pallet::Call<T>
1200
- **/
1201
- SugarfungeBundleCall: {
1202
- _enum: {
1203
- register_bundle: {
1204
- classId: string;
1205
- assetId: string;
1206
- bundleId: string;
1207
- schema: string;
1208
- metadata: string;
1209
- };
1210
- mint_bundle: {
1211
- from: string;
1212
- to: string;
1213
- bundleId: string;
1214
- amount: string;
1215
- };
1216
- burn_bundle: {
1217
- from: string;
1218
- to: string;
1219
- bundleId: string;
1220
- amount: string;
1221
- };
1222
- };
1223
- };
1224
- /**
1225
- * Lookup156: sugarfunge_bag::pallet::Call<T>
1226
- **/
1227
- SugarfungeBagCall: {
1228
- _enum: {
1229
- register: {
1230
- classId: string;
1231
- metadata: string;
1232
- };
1233
- create: {
1234
- classId: string;
1235
- owners: string;
1236
- shares: string;
1237
- };
1238
- deposit: {
1239
- bag: string;
1240
- classIds: string;
1241
- assetIds: string;
1242
- amounts: string;
1243
- };
1244
- sweep: {
1245
- to: string;
1246
- bag: string;
1247
- };
1248
- };
1249
- };
1250
- /**
1251
- * Lookup157: sugarfunge_exgine::pallet::Call<T>
1252
- **/
1253
- SugarfungeExgineCall: {
1254
- _enum: {
1255
- do_something: {
1256
- something: string;
1257
- };
1258
- cause_error: string;
1259
- };
1260
- };
1261
- /**
1262
- * Lookup158: sugarfunge_market::pallet::Call<T>
1263
- **/
1264
- SugarfungeMarketCall: {
1265
- _enum: {
1266
- create_market: {
1267
- marketId: string;
1268
- };
1269
- create_market_rate: {
1270
- marketId: string;
1271
- marketRateId: string;
1272
- rates: string;
1273
- };
1274
- deposit: {
1275
- marketId: string;
1276
- marketRateId: string;
1277
- amount: string;
1278
- };
1279
- exchange_assets: {
1280
- marketId: string;
1281
- marketRateId: string;
1282
- amount: string;
1283
- };
1284
- };
1285
- };
1286
- /**
1287
- * Lookup161: functionland_fula::pallet::Call<T>
1288
- **/
1289
- FunctionlandFulaCall: {
1290
- _enum: {
1291
- update_manifest: {
1292
- cid: string;
1293
- poolId: string;
1294
- activeCycles: string;
1295
- missedCycles: string;
1296
- activeDays: string;
1297
- };
1298
- upload_manifest: {
1299
- manifest: string;
1300
- cid: string;
1301
- poolId: string;
1302
- replicationFactor: string;
1303
- };
1304
- storage_manifest: {
1305
- uploader: string;
1306
- cid: string;
1307
- poolId: string;
1308
- };
1309
- remove_storer: {
1310
- storage: string;
1311
- cid: string;
1312
- poolId: string;
1313
- };
1314
- remove_stored_manifest: {
1315
- uploader: string;
1316
- cid: string;
1317
- poolId: string;
1318
- };
1319
- remove_manifest: {
1320
- cid: string;
1321
- poolId: string;
1322
- };
1323
- };
1324
- };
1325
- /**
1326
- * Lookup164: fula_pool::pallet::Call<T>
1327
- **/
1328
- FulaPoolCall: {
1329
- _enum: {
1330
- create: {
1331
- name: string;
1332
- peerId: string;
1333
- };
1334
- leave_pool: {
1335
- poolId: string;
1336
- };
1337
- join: {
1338
- poolId: string;
1339
- peerId: string;
1340
- };
1341
- cancel_join: {
1342
- poolId: string;
1343
- };
1344
- vote: {
1345
- poolId: string;
1346
- account: string;
1347
- positive: string;
1348
- };
1349
- };
1350
- };
1351
- /**
1352
- * Lookup166: pallet_sudo::pallet::Error<T>
1353
- **/
1354
- PalletSudoError: {
1355
- _enum: string[];
1356
- };
1357
- /**
1358
- * Lookup169: pallet_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1359
- **/
1360
- PalletSchedulerScheduledV3: {
1361
- maybeId: string;
1362
- priority: string;
1363
- call: string;
1364
- maybePeriodic: string;
1365
- origin: string;
1366
- };
1367
- /**
1368
- * Lookup170: sugarfunge_runtime::OriginCaller
1369
- **/
1370
- SugarfungeRuntimeOriginCaller: {
1371
- _enum: {
1372
- system: string;
1373
- __Unused1: string;
1374
- Void: string;
1375
- __Unused3: string;
1376
- __Unused4: string;
1377
- __Unused5: string;
1378
- __Unused6: string;
1379
- __Unused7: string;
1380
- __Unused8: string;
1381
- Council: string;
1382
- };
1383
- };
1384
- /**
1385
- * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1386
- **/
1387
- FrameSupportDispatchRawOrigin: {
1388
- _enum: {
1389
- Root: string;
1390
- Signed: string;
1391
- None: string;
1392
- };
1393
- };
1394
- /**
1395
- * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1396
- **/
1397
- PalletCollectiveRawOrigin: {
1398
- _enum: {
1399
- Members: string;
1400
- Member: string;
1401
- _Phantom: string;
1402
- };
1403
- };
1404
- /**
1405
- * Lookup173: pallet_scheduler::pallet::Error<T>
1406
- **/
1407
- PalletSchedulerError: {
1408
- _enum: string[];
1409
- };
1410
- /**
1411
- * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1412
- **/
1413
- PalletCollectiveVotes: {
1414
- index: string;
1415
- threshold: string;
1416
- ayes: string;
1417
- nays: string;
1418
- end: string;
1419
- };
1420
- /**
1421
- * Lookup176: pallet_collective::pallet::Error<T, I>
1422
- **/
1423
- PalletCollectiveError: {
1424
- _enum: string[];
1425
- };
1426
- /**
1427
- * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1428
- **/
1429
- SugarfungeValidatorSetError: {
1430
- _enum: string[];
1431
- };
1432
- /**
1433
- * Lookup183: sp_core::crypto::KeyTypeId
1434
- **/
1435
- SpCoreCryptoKeyTypeId: string;
1436
- /**
1437
- * Lookup184: pallet_session::pallet::Error<T>
1438
- **/
1439
- PalletSessionError: {
1440
- _enum: string[];
1441
- };
1442
- /**
1443
- * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1444
- **/
1445
- SugarfungeAssetClass: {
1446
- owner: string;
1447
- metadata: string;
1448
- };
1449
- /**
1450
- * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1451
- **/
1452
- SugarfungeAssetAsset: {
1453
- classId: string;
1454
- creator: string;
1455
- metadata: string;
1456
- };
1457
- /**
1458
- * Lookup189: sugarfunge_asset::pallet::Error<T>
1459
- **/
1460
- SugarfungeAssetError: {
1461
- _enum: string[];
1462
- };
1463
- /**
1464
- * Lookup190: sugarfunge_dao::pallet::Error<T>
1465
- **/
1466
- SugarfungeDaoError: {
1467
- _enum: string[];
1468
- };
1469
- /**
1470
- * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1471
- **/
1472
- SugarfungeBundleBundle: {
1473
- creator: string;
1474
- classId: string;
1475
- assetId: string;
1476
- metadata: string;
1477
- schema: string;
1478
- vault: string;
1479
- };
1480
- /**
1481
- * Lookup192: frame_support::PalletId
1482
- **/
1483
- FrameSupportPalletId: string;
1484
- /**
1485
- * Lookup193: sugarfunge_bundle::pallet::Error<T>
1486
- **/
1487
- SugarfungeBundleError: {
1488
- _enum: string[];
1489
- };
1490
- /**
1491
- * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1492
- **/
1493
- SugarfungeBagBagClass: {
1494
- operator: string;
1495
- classId: string;
1496
- };
1497
- /**
1498
- * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1499
- **/
1500
- SugarfungeBagBag: {
1501
- operator: string;
1502
- classId: string;
1503
- assetId: string;
1504
- totalShares: string;
1505
- };
1506
- /**
1507
- * Lookup196: sugarfunge_bag::pallet::Error<T>
1508
- **/
1509
- SugarfungeBagError: {
1510
- _enum: string[];
1511
- };
1512
- /**
1513
- * Lookup197: sugarfunge_exgine::pallet::Error<T>
1514
- **/
1515
- SugarfungeExgineError: {
1516
- _enum: string[];
1517
- };
1518
- /**
1519
- * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1520
- **/
1521
- SugarfungeMarketMarket: {
1522
- owner: string;
1523
- vault: string;
1524
- };
1525
- /**
1526
- * Lookup200: sugarfunge_market::pallet::Error<T>
1527
- **/
1528
- SugarfungeMarketError: {
1529
- _enum: string[];
1530
- };
1531
- /**
1532
- * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1533
- **/
1534
- FunctionlandFulaManifest: {
1535
- storage: string;
1536
- replicationFactor: string;
1537
- manifestData: string;
1538
- };
1539
- /**
1540
- * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1541
- **/
1542
- FunctionlandFulaManifestData: {
1543
- uploader: string;
1544
- manifestMetadata: string;
1545
- };
1546
- /**
1547
- * Lookup205: functionland_fula::ManifestStorageData
1548
- **/
1549
- FunctionlandFulaManifestStorageData: {
1550
- activeCycles: string;
1551
- missedCycles: string;
1552
- activeDays: string;
1553
- };
1554
- /**
1555
- * Lookup206: functionland_fula::pallet::Error<T>
1556
- **/
1557
- FunctionlandFulaError: {
1558
- _enum: string[];
1559
- };
1560
- /**
1561
- * Lookup207: fula_pool::Pool<T>
1562
- **/
1563
- FulaPoolPool: {
1564
- name: string;
1565
- owner: string;
1566
- parent: string;
1567
- participants: string;
1568
- requestNumber: string;
1569
- };
1570
- /**
1571
- * Lookup210: fula_pool::PoolRequest<T>
1572
- **/
1573
- FulaPoolPoolRequest: {
1574
- voted: string;
1575
- positiveVotes: string;
1576
- peerId: string;
1577
- };
1578
- /**
1579
- * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1580
- **/
1581
- FulaPoolUser: {
1582
- poolId: string;
1583
- requestPoolId: string;
1584
- peerId: string;
1585
- };
1586
- /**
1587
- * Lookup212: fula_pool::pallet::Error<T>
1588
- **/
1589
- FulaPoolError: {
1590
- _enum: string[];
1591
- };
1592
- /**
1593
- * Lookup214: sp_runtime::MultiSignature
1594
- **/
1595
- SpRuntimeMultiSignature: {
1596
- _enum: {
1597
- Ed25519: string;
1598
- Sr25519: string;
1599
- Ecdsa: string;
1600
- };
1601
- };
1602
- /**
1603
- * Lookup215: sp_core::sr25519::Signature
1604
- **/
1605
- SpCoreSr25519Signature: string;
1606
- /**
1607
- * Lookup216: sp_core::ecdsa::Signature
1608
- **/
1609
- SpCoreEcdsaSignature: string;
1610
- /**
1611
- * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1612
- **/
1613
- FrameSystemExtensionsCheckNonZeroSender: string;
1614
- /**
1615
- * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1616
- **/
1617
- FrameSystemExtensionsCheckSpecVersion: string;
1618
- /**
1619
- * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1620
- **/
1621
- FrameSystemExtensionsCheckTxVersion: string;
1622
- /**
1623
- * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1624
- **/
1625
- FrameSystemExtensionsCheckGenesis: string;
1626
- /**
1627
- * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1628
- **/
1629
- FrameSystemExtensionsCheckNonce: string;
1630
- /**
1631
- * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1632
- **/
1633
- FrameSystemExtensionsCheckWeight: string;
1634
- /**
1635
- * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1636
- **/
1637
- PalletTransactionPaymentChargeTransactionPayment: string;
1638
- /**
1639
- * Lookup228: sugarfunge_runtime::Runtime
1640
- **/
1641
- SugarfungeRuntimeRuntime: string;
1642
- };
1643
- export default _default;
1
+ declare const _default: {
2
+ /**
3
+ * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
4
+ **/
5
+ FrameSystemAccountInfo: {
6
+ nonce: string;
7
+ consumers: string;
8
+ providers: string;
9
+ sufficients: string;
10
+ data: string;
11
+ };
12
+ /**
13
+ * Lookup5: pallet_balances::AccountData<Balance>
14
+ **/
15
+ PalletBalancesAccountData: {
16
+ free: string;
17
+ reserved: string;
18
+ miscFrozen: string;
19
+ feeFrozen: string;
20
+ };
21
+ /**
22
+ * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
23
+ **/
24
+ FrameSupportDispatchPerDispatchClassWeight: {
25
+ normal: string;
26
+ operational: string;
27
+ mandatory: string;
28
+ };
29
+ /**
30
+ * Lookup12: sp_runtime::generic::digest::Digest
31
+ **/
32
+ SpRuntimeDigest: {
33
+ logs: string;
34
+ };
35
+ /**
36
+ * Lookup14: sp_runtime::generic::digest::DigestItem
37
+ **/
38
+ SpRuntimeDigestDigestItem: {
39
+ _enum: {
40
+ Other: string;
41
+ __Unused1: string;
42
+ __Unused2: string;
43
+ __Unused3: string;
44
+ Consensus: string;
45
+ Seal: string;
46
+ PreRuntime: string;
47
+ __Unused7: string;
48
+ RuntimeEnvironmentUpdated: string;
49
+ };
50
+ };
51
+ /**
52
+ * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
53
+ **/
54
+ FrameSystemEventRecord: {
55
+ phase: string;
56
+ event: string;
57
+ topics: string;
58
+ };
59
+ /**
60
+ * Lookup19: frame_system::pallet::Event<T>
61
+ **/
62
+ FrameSystemEvent: {
63
+ _enum: {
64
+ ExtrinsicSuccess: {
65
+ dispatchInfo: string;
66
+ };
67
+ ExtrinsicFailed: {
68
+ dispatchError: string;
69
+ dispatchInfo: string;
70
+ };
71
+ CodeUpdated: string;
72
+ NewAccount: {
73
+ account: string;
74
+ };
75
+ KilledAccount: {
76
+ account: string;
77
+ };
78
+ Remarked: {
79
+ _alias: {
80
+ hash_: string;
81
+ };
82
+ sender: string;
83
+ hash_: string;
84
+ };
85
+ };
86
+ };
87
+ /**
88
+ * Lookup20: frame_support::dispatch::DispatchInfo
89
+ **/
90
+ FrameSupportDispatchDispatchInfo: {
91
+ weight: string;
92
+ class: string;
93
+ paysFee: string;
94
+ };
95
+ /**
96
+ * Lookup21: frame_support::dispatch::DispatchClass
97
+ **/
98
+ FrameSupportDispatchDispatchClass: {
99
+ _enum: string[];
100
+ };
101
+ /**
102
+ * Lookup22: frame_support::dispatch::Pays
103
+ **/
104
+ FrameSupportDispatchPays: {
105
+ _enum: string[];
106
+ };
107
+ /**
108
+ * Lookup23: sp_runtime::DispatchError
109
+ **/
110
+ SpRuntimeDispatchError: {
111
+ _enum: {
112
+ Other: string;
113
+ CannotLookup: string;
114
+ BadOrigin: string;
115
+ Module: string;
116
+ ConsumerRemaining: string;
117
+ NoProviders: string;
118
+ TooManyConsumers: string;
119
+ Token: string;
120
+ Arithmetic: string;
121
+ Transactional: string;
122
+ };
123
+ };
124
+ /**
125
+ * Lookup24: sp_runtime::ModuleError
126
+ **/
127
+ SpRuntimeModuleError: {
128
+ index: string;
129
+ error: string;
130
+ };
131
+ /**
132
+ * Lookup25: sp_runtime::TokenError
133
+ **/
134
+ SpRuntimeTokenError: {
135
+ _enum: string[];
136
+ };
137
+ /**
138
+ * Lookup26: sp_runtime::ArithmeticError
139
+ **/
140
+ SpRuntimeArithmeticError: {
141
+ _enum: string[];
142
+ };
143
+ /**
144
+ * Lookup27: sp_runtime::TransactionalError
145
+ **/
146
+ SpRuntimeTransactionalError: {
147
+ _enum: string[];
148
+ };
149
+ /**
150
+ * Lookup28: pallet_grandpa::pallet::Event
151
+ **/
152
+ PalletGrandpaEvent: {
153
+ _enum: {
154
+ NewAuthorities: {
155
+ authoritySet: string;
156
+ };
157
+ Paused: string;
158
+ Resumed: string;
159
+ };
160
+ };
161
+ /**
162
+ * Lookup31: sp_finality_grandpa::app::Public
163
+ **/
164
+ SpFinalityGrandpaAppPublic: string;
165
+ /**
166
+ * Lookup32: sp_core::ed25519::Public
167
+ **/
168
+ SpCoreEd25519Public: string;
169
+ /**
170
+ * Lookup33: pallet_balances::pallet::Event<T, I>
171
+ **/
172
+ PalletBalancesEvent: {
173
+ _enum: {
174
+ Endowed: {
175
+ account: string;
176
+ freeBalance: string;
177
+ };
178
+ DustLost: {
179
+ account: string;
180
+ amount: string;
181
+ };
182
+ Transfer: {
183
+ from: string;
184
+ to: string;
185
+ amount: string;
186
+ };
187
+ BalanceSet: {
188
+ who: string;
189
+ free: string;
190
+ reserved: string;
191
+ };
192
+ Reserved: {
193
+ who: string;
194
+ amount: string;
195
+ };
196
+ Unreserved: {
197
+ who: string;
198
+ amount: string;
199
+ };
200
+ ReserveRepatriated: {
201
+ from: string;
202
+ to: string;
203
+ amount: string;
204
+ destinationStatus: string;
205
+ };
206
+ Deposit: {
207
+ who: string;
208
+ amount: string;
209
+ };
210
+ Withdraw: {
211
+ who: string;
212
+ amount: string;
213
+ };
214
+ Slashed: {
215
+ who: string;
216
+ amount: string;
217
+ };
218
+ };
219
+ };
220
+ /**
221
+ * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
222
+ **/
223
+ FrameSupportTokensMiscBalanceStatus: {
224
+ _enum: string[];
225
+ };
226
+ /**
227
+ * Lookup35: pallet_transaction_payment::pallet::Event<T>
228
+ **/
229
+ PalletTransactionPaymentEvent: {
230
+ _enum: {
231
+ TransactionFeePaid: {
232
+ who: string;
233
+ actualFee: string;
234
+ tip: string;
235
+ };
236
+ };
237
+ };
238
+ /**
239
+ * Lookup36: pallet_sudo::pallet::Event<T>
240
+ **/
241
+ PalletSudoEvent: {
242
+ _enum: {
243
+ Sudid: {
244
+ sudoResult: string;
245
+ };
246
+ KeyChanged: {
247
+ oldSudoer: string;
248
+ };
249
+ SudoAsDone: {
250
+ sudoResult: string;
251
+ };
252
+ };
253
+ };
254
+ /**
255
+ * Lookup40: pallet_scheduler::pallet::Event<T>
256
+ **/
257
+ PalletSchedulerEvent: {
258
+ _enum: {
259
+ Scheduled: {
260
+ when: string;
261
+ index: string;
262
+ };
263
+ Canceled: {
264
+ when: string;
265
+ index: string;
266
+ };
267
+ Dispatched: {
268
+ task: string;
269
+ id: string;
270
+ result: string;
271
+ };
272
+ CallLookupFailed: {
273
+ task: string;
274
+ id: string;
275
+ error: string;
276
+ };
277
+ };
278
+ };
279
+ /**
280
+ * Lookup43: frame_support::traits::schedule::LookupError
281
+ **/
282
+ FrameSupportScheduleLookupError: {
283
+ _enum: string[];
284
+ };
285
+ /**
286
+ * Lookup44: pallet_collective::pallet::Event<T, I>
287
+ **/
288
+ PalletCollectiveEvent: {
289
+ _enum: {
290
+ Proposed: {
291
+ account: string;
292
+ proposalIndex: string;
293
+ proposalHash: string;
294
+ threshold: string;
295
+ };
296
+ Voted: {
297
+ account: string;
298
+ proposalHash: string;
299
+ voted: string;
300
+ yes: string;
301
+ no: string;
302
+ };
303
+ Approved: {
304
+ proposalHash: string;
305
+ };
306
+ Disapproved: {
307
+ proposalHash: string;
308
+ };
309
+ Executed: {
310
+ proposalHash: string;
311
+ result: string;
312
+ };
313
+ MemberExecuted: {
314
+ proposalHash: string;
315
+ result: string;
316
+ };
317
+ Closed: {
318
+ proposalHash: string;
319
+ yes: string;
320
+ no: string;
321
+ };
322
+ };
323
+ };
324
+ /**
325
+ * Lookup46: sugarfunge_validator_set::pallet::Event<T>
326
+ **/
327
+ SugarfungeValidatorSetEvent: {
328
+ _enum: {
329
+ ValidatorAdditionInitiated: string;
330
+ ValidatorRemovalInitiated: string;
331
+ };
332
+ };
333
+ /**
334
+ * Lookup47: pallet_session::pallet::Event
335
+ **/
336
+ PalletSessionEvent: {
337
+ _enum: {
338
+ NewSession: {
339
+ sessionIndex: string;
340
+ };
341
+ };
342
+ };
343
+ /**
344
+ * Lookup48: sugarfunge_asset::pallet::Event<T>
345
+ **/
346
+ SugarfungeAssetEvent: {
347
+ _enum: {
348
+ ClassCreated: {
349
+ classId: string;
350
+ who: string;
351
+ };
352
+ AssetCreated: {
353
+ classId: string;
354
+ assetId: string;
355
+ who: string;
356
+ };
357
+ AssetMetadataUpdated: {
358
+ classId: string;
359
+ assetId: string;
360
+ who: string;
361
+ metadata: string;
362
+ };
363
+ Mint: {
364
+ who: string;
365
+ to: string;
366
+ classId: string;
367
+ assetId: string;
368
+ amount: string;
369
+ };
370
+ BatchMint: {
371
+ who: string;
372
+ to: string;
373
+ classId: string;
374
+ assetIds: string;
375
+ amounts: string;
376
+ };
377
+ Burn: {
378
+ who: string;
379
+ from: string;
380
+ classId: string;
381
+ assetId: string;
382
+ amount: string;
383
+ };
384
+ BatchBurn: {
385
+ who: string;
386
+ from: string;
387
+ classId: string;
388
+ assetIds: string;
389
+ amounts: string;
390
+ };
391
+ Transferred: {
392
+ who: string;
393
+ from: string;
394
+ to: string;
395
+ classId: string;
396
+ assetId: string;
397
+ amount: string;
398
+ };
399
+ BatchTransferred: {
400
+ who: string;
401
+ from: string;
402
+ to: string;
403
+ classId: string;
404
+ assetIds: string;
405
+ amounts: string;
406
+ };
407
+ OperatorApprovalForAll: {
408
+ who: string;
409
+ operator: string;
410
+ classId: string;
411
+ approved: string;
412
+ };
413
+ };
414
+ };
415
+ /**
416
+ * Lookup51: sugarfunge_dao::pallet::Event<T>
417
+ **/
418
+ SugarfungeDaoEvent: {
419
+ _enum: {
420
+ SomethingStored: string;
421
+ };
422
+ };
423
+ /**
424
+ * Lookup52: sugarfunge_bundle::pallet::Event<T>
425
+ **/
426
+ SugarfungeBundleEvent: {
427
+ _enum: {
428
+ Register: {
429
+ bundleId: string;
430
+ who: string;
431
+ classId: string;
432
+ assetId: string;
433
+ };
434
+ Mint: {
435
+ bundleId: string;
436
+ who: string;
437
+ from: string;
438
+ to: string;
439
+ amount: string;
440
+ };
441
+ Burn: {
442
+ bundleId: string;
443
+ who: string;
444
+ from: string;
445
+ to: string;
446
+ amount: string;
447
+ };
448
+ };
449
+ };
450
+ /**
451
+ * Lookup53: sugarfunge_bag::pallet::Event<T>
452
+ **/
453
+ SugarfungeBagEvent: {
454
+ _enum: {
455
+ Register: {
456
+ who: string;
457
+ classId: string;
458
+ };
459
+ Created: {
460
+ bag: string;
461
+ who: string;
462
+ classId: string;
463
+ assetId: string;
464
+ owners: string;
465
+ };
466
+ Deposit: {
467
+ bag: string;
468
+ who: string;
469
+ };
470
+ Sweep: {
471
+ bag: string;
472
+ who: string;
473
+ to: string;
474
+ };
475
+ };
476
+ };
477
+ /**
478
+ * Lookup55: sugarfunge_exgine::pallet::Event<T>
479
+ **/
480
+ SugarfungeExgineEvent: {
481
+ _enum: {
482
+ SomethingStored: string;
483
+ };
484
+ };
485
+ /**
486
+ * Lookup56: sugarfunge_market::pallet::Event<T>
487
+ **/
488
+ SugarfungeMarketEvent: {
489
+ _enum: {
490
+ Created: {
491
+ marketId: string;
492
+ who: string;
493
+ };
494
+ RateCreated: {
495
+ marketId: string;
496
+ marketRateId: string;
497
+ who: string;
498
+ };
499
+ LiquidityAdded: {
500
+ who: string;
501
+ marketId: string;
502
+ marketRateId: string;
503
+ classIds: string;
504
+ assetIds: string;
505
+ amounts: string;
506
+ };
507
+ LiquidityRemoved: {
508
+ who: string;
509
+ marketId: string;
510
+ marketRateId: string;
511
+ classIds: string;
512
+ assetIds: string;
513
+ amounts: string;
514
+ };
515
+ Deposit: {
516
+ who: string;
517
+ marketId: string;
518
+ marketRateId: string;
519
+ amount: string;
520
+ balances: string;
521
+ success: string;
522
+ };
523
+ Exchanged: {
524
+ buyer: string;
525
+ marketId: string;
526
+ marketRateId: string;
527
+ amount: string;
528
+ balances: string;
529
+ success: string;
530
+ };
531
+ };
532
+ };
533
+ /**
534
+ * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
535
+ **/
536
+ SugarfungeMarketRateBalance: {
537
+ rate: string;
538
+ balance: string;
539
+ };
540
+ /**
541
+ * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
542
+ **/
543
+ SugarfungeMarketAssetRate: {
544
+ classId: string;
545
+ assetId: string;
546
+ action: string;
547
+ from: string;
548
+ to: string;
549
+ };
550
+ /**
551
+ * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
552
+ **/
553
+ SugarfungeMarketRateAction: {
554
+ _enum: {
555
+ Transfer: string;
556
+ MarketTransfer: string;
557
+ Mint: string;
558
+ Burn: string;
559
+ Has: string;
560
+ };
561
+ };
562
+ /**
563
+ * Lookup64: sugarfunge_market::AMM
564
+ **/
565
+ SugarfungeMarketAmm: {
566
+ _enum: string[];
567
+ };
568
+ /**
569
+ * Lookup65: sugarfunge_market::AmountOp
570
+ **/
571
+ SugarfungeMarketAmountOp: {
572
+ _enum: string[];
573
+ };
574
+ /**
575
+ * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
576
+ **/
577
+ SugarfungeMarketRateAccount: {
578
+ _enum: {
579
+ Market: string;
580
+ Account: string;
581
+ Buyer: string;
582
+ };
583
+ };
584
+ /**
585
+ * Lookup67: functionland_fula::pallet::Event<T>
586
+ **/
587
+ FunctionlandFulaEvent: {
588
+ _enum: {
589
+ ManifestOutput: {
590
+ uploader: string;
591
+ storage: string;
592
+ manifest: string;
593
+ poolId: string;
594
+ };
595
+ StorageManifestOutput: {
596
+ uploader: string;
597
+ storage: string;
598
+ cid: string;
599
+ poolId: string;
600
+ };
601
+ RemoveStorerOutput: {
602
+ uploader: string;
603
+ storage: string;
604
+ cid: string;
605
+ poolId: string;
606
+ };
607
+ ManifestRemoved: {
608
+ uploader: string;
609
+ cid: string;
610
+ poolId: string;
611
+ };
612
+ ManifestStorageUpdated: {
613
+ storer: string;
614
+ poolId: string;
615
+ cid: string;
616
+ activeCycles: string;
617
+ missedCycles: string;
618
+ activeDays: string;
619
+ };
620
+ };
621
+ };
622
+ /**
623
+ * Lookup70: fula_pool::pallet::Event<T>
624
+ **/
625
+ FulaPoolEvent: {
626
+ _enum: {
627
+ PoolCreated: {
628
+ owner: string;
629
+ poolId: string;
630
+ };
631
+ JoinRequested: {
632
+ account: string;
633
+ poolId: string;
634
+ };
635
+ RequestWithdrawn: {
636
+ account: string;
637
+ poolId: string;
638
+ };
639
+ Accepted: {
640
+ account: string;
641
+ poolId: string;
642
+ };
643
+ Denied: {
644
+ account: string;
645
+ poolId: string;
646
+ };
647
+ CapacityReached: {
648
+ poolId: string;
649
+ };
650
+ ParticipantLeft: {
651
+ account: string;
652
+ poolId: string;
653
+ };
654
+ };
655
+ };
656
+ /**
657
+ * Lookup71: frame_system::Phase
658
+ **/
659
+ FrameSystemPhase: {
660
+ _enum: {
661
+ ApplyExtrinsic: string;
662
+ Finalization: string;
663
+ Initialization: string;
664
+ };
665
+ };
666
+ /**
667
+ * Lookup74: frame_system::LastRuntimeUpgradeInfo
668
+ **/
669
+ FrameSystemLastRuntimeUpgradeInfo: {
670
+ specVersion: string;
671
+ specName: string;
672
+ };
673
+ /**
674
+ * Lookup77: frame_system::pallet::Call<T>
675
+ **/
676
+ FrameSystemCall: {
677
+ _enum: {
678
+ fill_block: {
679
+ ratio: string;
680
+ };
681
+ remark: {
682
+ remark: string;
683
+ };
684
+ set_heap_pages: {
685
+ pages: string;
686
+ };
687
+ set_code: {
688
+ code: string;
689
+ };
690
+ set_code_without_checks: {
691
+ code: string;
692
+ };
693
+ set_storage: {
694
+ items: string;
695
+ };
696
+ kill_storage: {
697
+ _alias: {
698
+ keys_: string;
699
+ };
700
+ keys_: string;
701
+ };
702
+ kill_prefix: {
703
+ prefix: string;
704
+ subkeys: string;
705
+ };
706
+ remark_with_event: {
707
+ remark: string;
708
+ };
709
+ };
710
+ };
711
+ /**
712
+ * Lookup82: frame_system::limits::BlockWeights
713
+ **/
714
+ FrameSystemLimitsBlockWeights: {
715
+ baseBlock: string;
716
+ maxBlock: string;
717
+ perClass: string;
718
+ };
719
+ /**
720
+ * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
721
+ **/
722
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
723
+ normal: string;
724
+ operational: string;
725
+ mandatory: string;
726
+ };
727
+ /**
728
+ * Lookup84: frame_system::limits::WeightsPerClass
729
+ **/
730
+ FrameSystemLimitsWeightsPerClass: {
731
+ baseExtrinsic: string;
732
+ maxExtrinsic: string;
733
+ maxTotal: string;
734
+ reserved: string;
735
+ };
736
+ /**
737
+ * Lookup86: frame_system::limits::BlockLength
738
+ **/
739
+ FrameSystemLimitsBlockLength: {
740
+ max: string;
741
+ };
742
+ /**
743
+ * Lookup87: frame_support::dispatch::PerDispatchClass<T>
744
+ **/
745
+ FrameSupportDispatchPerDispatchClassU32: {
746
+ normal: string;
747
+ operational: string;
748
+ mandatory: string;
749
+ };
750
+ /**
751
+ * Lookup88: sp_weights::RuntimeDbWeight
752
+ **/
753
+ SpWeightsRuntimeDbWeight: {
754
+ read: string;
755
+ write: string;
756
+ };
757
+ /**
758
+ * Lookup89: sp_version::RuntimeVersion
759
+ **/
760
+ SpVersionRuntimeVersion: {
761
+ specName: string;
762
+ implName: string;
763
+ authoringVersion: string;
764
+ specVersion: string;
765
+ implVersion: string;
766
+ apis: string;
767
+ transactionVersion: string;
768
+ stateVersion: string;
769
+ };
770
+ /**
771
+ * Lookup94: frame_system::pallet::Error<T>
772
+ **/
773
+ FrameSystemError: {
774
+ _enum: string[];
775
+ };
776
+ /**
777
+ * Lookup96: pallet_timestamp::pallet::Call<T>
778
+ **/
779
+ PalletTimestampCall: {
780
+ _enum: {
781
+ set: {
782
+ now: string;
783
+ };
784
+ };
785
+ };
786
+ /**
787
+ * Lookup98: pallet_grandpa::StoredState<N>
788
+ **/
789
+ PalletGrandpaStoredState: {
790
+ _enum: {
791
+ Live: string;
792
+ PendingPause: {
793
+ scheduledAt: string;
794
+ delay: string;
795
+ };
796
+ Paused: string;
797
+ PendingResume: {
798
+ scheduledAt: string;
799
+ delay: string;
800
+ };
801
+ };
802
+ };
803
+ /**
804
+ * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
805
+ **/
806
+ PalletGrandpaStoredPendingChange: {
807
+ scheduledAt: string;
808
+ delay: string;
809
+ nextAuthorities: string;
810
+ forced: string;
811
+ };
812
+ /**
813
+ * Lookup102: pallet_grandpa::pallet::Call<T>
814
+ **/
815
+ PalletGrandpaCall: {
816
+ _enum: {
817
+ report_equivocation: {
818
+ equivocationProof: string;
819
+ keyOwnerProof: string;
820
+ };
821
+ report_equivocation_unsigned: {
822
+ equivocationProof: string;
823
+ keyOwnerProof: string;
824
+ };
825
+ note_stalled: {
826
+ delay: string;
827
+ bestFinalizedBlockNumber: string;
828
+ };
829
+ };
830
+ };
831
+ /**
832
+ * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
833
+ **/
834
+ SpFinalityGrandpaEquivocationProof: {
835
+ setId: string;
836
+ equivocation: string;
837
+ };
838
+ /**
839
+ * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
840
+ **/
841
+ SpFinalityGrandpaEquivocation: {
842
+ _enum: {
843
+ Prevote: string;
844
+ Precommit: string;
845
+ };
846
+ };
847
+ /**
848
+ * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
849
+ **/
850
+ FinalityGrandpaEquivocationPrevote: {
851
+ roundNumber: string;
852
+ identity: string;
853
+ first: string;
854
+ second: string;
855
+ };
856
+ /**
857
+ * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
858
+ **/
859
+ FinalityGrandpaPrevote: {
860
+ targetHash: string;
861
+ targetNumber: string;
862
+ };
863
+ /**
864
+ * Lookup107: sp_finality_grandpa::app::Signature
865
+ **/
866
+ SpFinalityGrandpaAppSignature: string;
867
+ /**
868
+ * Lookup108: sp_core::ed25519::Signature
869
+ **/
870
+ SpCoreEd25519Signature: string;
871
+ /**
872
+ * Lookup111: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
873
+ **/
874
+ FinalityGrandpaEquivocationPrecommit: {
875
+ roundNumber: string;
876
+ identity: string;
877
+ first: string;
878
+ second: string;
879
+ };
880
+ /**
881
+ * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
882
+ **/
883
+ FinalityGrandpaPrecommit: {
884
+ targetHash: string;
885
+ targetNumber: string;
886
+ };
887
+ /**
888
+ * Lookup114: sp_core::Void
889
+ **/
890
+ SpCoreVoid: string;
891
+ /**
892
+ * Lookup115: pallet_grandpa::pallet::Error<T>
893
+ **/
894
+ PalletGrandpaError: {
895
+ _enum: string[];
896
+ };
897
+ /**
898
+ * Lookup117: pallet_balances::BalanceLock<Balance>
899
+ **/
900
+ PalletBalancesBalanceLock: {
901
+ id: string;
902
+ amount: string;
903
+ reasons: string;
904
+ };
905
+ /**
906
+ * Lookup118: pallet_balances::Reasons
907
+ **/
908
+ PalletBalancesReasons: {
909
+ _enum: string[];
910
+ };
911
+ /**
912
+ * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
913
+ **/
914
+ PalletBalancesReserveData: {
915
+ id: string;
916
+ amount: string;
917
+ };
918
+ /**
919
+ * Lookup123: pallet_balances::Releases
920
+ **/
921
+ PalletBalancesReleases: {
922
+ _enum: string[];
923
+ };
924
+ /**
925
+ * Lookup124: pallet_balances::pallet::Call<T, I>
926
+ **/
927
+ PalletBalancesCall: {
928
+ _enum: {
929
+ transfer: {
930
+ dest: string;
931
+ value: string;
932
+ };
933
+ set_balance: {
934
+ who: string;
935
+ newFree: string;
936
+ newReserved: string;
937
+ };
938
+ force_transfer: {
939
+ source: string;
940
+ dest: string;
941
+ value: string;
942
+ };
943
+ transfer_keep_alive: {
944
+ dest: string;
945
+ value: string;
946
+ };
947
+ transfer_all: {
948
+ dest: string;
949
+ keepAlive: string;
950
+ };
951
+ force_unreserve: {
952
+ who: string;
953
+ amount: string;
954
+ };
955
+ };
956
+ };
957
+ /**
958
+ * Lookup129: pallet_balances::pallet::Error<T, I>
959
+ **/
960
+ PalletBalancesError: {
961
+ _enum: string[];
962
+ };
963
+ /**
964
+ * Lookup131: pallet_transaction_payment::Releases
965
+ **/
966
+ PalletTransactionPaymentReleases: {
967
+ _enum: string[];
968
+ };
969
+ /**
970
+ * Lookup132: pallet_sudo::pallet::Call<T>
971
+ **/
972
+ PalletSudoCall: {
973
+ _enum: {
974
+ sudo: {
975
+ call: string;
976
+ };
977
+ sudo_unchecked_weight: {
978
+ call: string;
979
+ weight: string;
980
+ };
981
+ set_key: {
982
+ _alias: {
983
+ new_: string;
984
+ };
985
+ new_: string;
986
+ };
987
+ sudo_as: {
988
+ who: string;
989
+ call: string;
990
+ };
991
+ };
992
+ };
993
+ /**
994
+ * Lookup134: pallet_scheduler::pallet::Call<T>
995
+ **/
996
+ PalletSchedulerCall: {
997
+ _enum: {
998
+ schedule: {
999
+ when: string;
1000
+ maybePeriodic: string;
1001
+ priority: string;
1002
+ call: string;
1003
+ };
1004
+ cancel: {
1005
+ when: string;
1006
+ index: string;
1007
+ };
1008
+ schedule_named: {
1009
+ id: string;
1010
+ when: string;
1011
+ maybePeriodic: string;
1012
+ priority: string;
1013
+ call: string;
1014
+ };
1015
+ cancel_named: {
1016
+ id: string;
1017
+ };
1018
+ schedule_after: {
1019
+ after: string;
1020
+ maybePeriodic: string;
1021
+ priority: string;
1022
+ call: string;
1023
+ };
1024
+ schedule_named_after: {
1025
+ id: string;
1026
+ after: string;
1027
+ maybePeriodic: string;
1028
+ priority: string;
1029
+ call: string;
1030
+ };
1031
+ };
1032
+ };
1033
+ /**
1034
+ * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1035
+ **/
1036
+ FrameSupportScheduleMaybeHashed: {
1037
+ _enum: {
1038
+ Value: string;
1039
+ Hash: string;
1040
+ };
1041
+ };
1042
+ /**
1043
+ * Lookup137: pallet_collective::pallet::Call<T, I>
1044
+ **/
1045
+ PalletCollectiveCall: {
1046
+ _enum: {
1047
+ set_members: {
1048
+ newMembers: string;
1049
+ prime: string;
1050
+ oldCount: string;
1051
+ };
1052
+ execute: {
1053
+ proposal: string;
1054
+ lengthBound: string;
1055
+ };
1056
+ propose: {
1057
+ threshold: string;
1058
+ proposal: string;
1059
+ lengthBound: string;
1060
+ };
1061
+ vote: {
1062
+ proposal: string;
1063
+ index: string;
1064
+ approve: string;
1065
+ };
1066
+ close: {
1067
+ proposalHash: string;
1068
+ index: string;
1069
+ proposalWeightBound: string;
1070
+ lengthBound: string;
1071
+ };
1072
+ disapprove_proposal: {
1073
+ proposalHash: string;
1074
+ };
1075
+ };
1076
+ };
1077
+ /**
1078
+ * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1079
+ **/
1080
+ SugarfungeValidatorSetCall: {
1081
+ _enum: {
1082
+ add_validator: {
1083
+ validatorId: string;
1084
+ };
1085
+ remove_validator: {
1086
+ validatorId: string;
1087
+ };
1088
+ add_validator_again: {
1089
+ validatorId: string;
1090
+ };
1091
+ };
1092
+ };
1093
+ /**
1094
+ * Lookup140: pallet_session::pallet::Call<T>
1095
+ **/
1096
+ PalletSessionCall: {
1097
+ _enum: {
1098
+ set_keys: {
1099
+ _alias: {
1100
+ keys_: string;
1101
+ };
1102
+ keys_: string;
1103
+ proof: string;
1104
+ };
1105
+ purge_keys: string;
1106
+ };
1107
+ };
1108
+ /**
1109
+ * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1110
+ **/
1111
+ SugarfungeRuntimeOpaqueSessionKeys: {
1112
+ aura: string;
1113
+ grandpa: string;
1114
+ };
1115
+ /**
1116
+ * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1117
+ **/
1118
+ SpConsensusAuraSr25519AppSr25519Public: string;
1119
+ /**
1120
+ * Lookup143: sp_core::sr25519::Public
1121
+ **/
1122
+ SpCoreSr25519Public: string;
1123
+ /**
1124
+ * Lookup144: sugarfunge_asset::pallet::Call<T>
1125
+ **/
1126
+ SugarfungeAssetCall: {
1127
+ _enum: {
1128
+ create_class: {
1129
+ owner: string;
1130
+ classId: string;
1131
+ metadata: string;
1132
+ };
1133
+ create_asset: {
1134
+ classId: string;
1135
+ assetId: string;
1136
+ metadata: string;
1137
+ };
1138
+ transfer_from: {
1139
+ from: string;
1140
+ to: string;
1141
+ classId: string;
1142
+ assetId: string;
1143
+ amount: string;
1144
+ };
1145
+ batch_transfer_from: {
1146
+ from: string;
1147
+ to: string;
1148
+ classId: string;
1149
+ assetIds: string;
1150
+ amounts: string;
1151
+ };
1152
+ mint: {
1153
+ to: string;
1154
+ classId: string;
1155
+ assetId: string;
1156
+ amount: string;
1157
+ };
1158
+ batch_mint: {
1159
+ to: string;
1160
+ classId: string;
1161
+ assetIds: string;
1162
+ amounts: string;
1163
+ };
1164
+ burn: {
1165
+ from: string;
1166
+ classId: string;
1167
+ assetId: string;
1168
+ amount: string;
1169
+ };
1170
+ batch_burn: {
1171
+ from: string;
1172
+ classId: string;
1173
+ assetIds: string;
1174
+ amounts: string;
1175
+ };
1176
+ update_class_metadata: {
1177
+ classId: string;
1178
+ metadata: string;
1179
+ };
1180
+ update_asset_metadata: {
1181
+ classId: string;
1182
+ assetId: string;
1183
+ metadata: string;
1184
+ };
1185
+ };
1186
+ };
1187
+ /**
1188
+ * Lookup147: sugarfunge_dao::pallet::Call<T>
1189
+ **/
1190
+ SugarfungeDaoCall: {
1191
+ _enum: {
1192
+ do_something: {
1193
+ something: string;
1194
+ };
1195
+ cause_error: string;
1196
+ };
1197
+ };
1198
+ /**
1199
+ * Lookup148: sugarfunge_bundle::pallet::Call<T>
1200
+ **/
1201
+ SugarfungeBundleCall: {
1202
+ _enum: {
1203
+ register_bundle: {
1204
+ classId: string;
1205
+ assetId: string;
1206
+ bundleId: string;
1207
+ schema: string;
1208
+ metadata: string;
1209
+ };
1210
+ mint_bundle: {
1211
+ from: string;
1212
+ to: string;
1213
+ bundleId: string;
1214
+ amount: string;
1215
+ };
1216
+ burn_bundle: {
1217
+ from: string;
1218
+ to: string;
1219
+ bundleId: string;
1220
+ amount: string;
1221
+ };
1222
+ };
1223
+ };
1224
+ /**
1225
+ * Lookup156: sugarfunge_bag::pallet::Call<T>
1226
+ **/
1227
+ SugarfungeBagCall: {
1228
+ _enum: {
1229
+ register: {
1230
+ classId: string;
1231
+ metadata: string;
1232
+ };
1233
+ create: {
1234
+ classId: string;
1235
+ owners: string;
1236
+ shares: string;
1237
+ };
1238
+ deposit: {
1239
+ bag: string;
1240
+ classIds: string;
1241
+ assetIds: string;
1242
+ amounts: string;
1243
+ };
1244
+ sweep: {
1245
+ to: string;
1246
+ bag: string;
1247
+ };
1248
+ };
1249
+ };
1250
+ /**
1251
+ * Lookup157: sugarfunge_exgine::pallet::Call<T>
1252
+ **/
1253
+ SugarfungeExgineCall: {
1254
+ _enum: {
1255
+ do_something: {
1256
+ something: string;
1257
+ };
1258
+ cause_error: string;
1259
+ };
1260
+ };
1261
+ /**
1262
+ * Lookup158: sugarfunge_market::pallet::Call<T>
1263
+ **/
1264
+ SugarfungeMarketCall: {
1265
+ _enum: {
1266
+ create_market: {
1267
+ marketId: string;
1268
+ };
1269
+ create_market_rate: {
1270
+ marketId: string;
1271
+ marketRateId: string;
1272
+ rates: string;
1273
+ };
1274
+ deposit: {
1275
+ marketId: string;
1276
+ marketRateId: string;
1277
+ amount: string;
1278
+ };
1279
+ exchange_assets: {
1280
+ marketId: string;
1281
+ marketRateId: string;
1282
+ amount: string;
1283
+ };
1284
+ };
1285
+ };
1286
+ /**
1287
+ * Lookup161: functionland_fula::pallet::Call<T>
1288
+ **/
1289
+ FunctionlandFulaCall: {
1290
+ _enum: {
1291
+ update_manifest: {
1292
+ cid: string;
1293
+ poolId: string;
1294
+ activeCycles: string;
1295
+ missedCycles: string;
1296
+ activeDays: string;
1297
+ };
1298
+ upload_manifest: {
1299
+ manifest: string;
1300
+ cid: string;
1301
+ poolId: string;
1302
+ replicationFactor: string;
1303
+ };
1304
+ storage_manifest: {
1305
+ uploader: string;
1306
+ cid: string;
1307
+ poolId: string;
1308
+ };
1309
+ remove_storer: {
1310
+ storage: string;
1311
+ cid: string;
1312
+ poolId: string;
1313
+ };
1314
+ remove_stored_manifest: {
1315
+ uploader: string;
1316
+ cid: string;
1317
+ poolId: string;
1318
+ };
1319
+ remove_manifest: {
1320
+ cid: string;
1321
+ poolId: string;
1322
+ };
1323
+ };
1324
+ };
1325
+ /**
1326
+ * Lookup164: fula_pool::pallet::Call<T>
1327
+ **/
1328
+ FulaPoolCall: {
1329
+ _enum: {
1330
+ create: {
1331
+ name: string;
1332
+ peerId: string;
1333
+ };
1334
+ leave_pool: {
1335
+ poolId: string;
1336
+ };
1337
+ join: {
1338
+ poolId: string;
1339
+ peerId: string;
1340
+ };
1341
+ cancel_join: {
1342
+ poolId: string;
1343
+ };
1344
+ vote: {
1345
+ poolId: string;
1346
+ account: string;
1347
+ positive: string;
1348
+ };
1349
+ };
1350
+ };
1351
+ /**
1352
+ * Lookup166: pallet_sudo::pallet::Error<T>
1353
+ **/
1354
+ PalletSudoError: {
1355
+ _enum: string[];
1356
+ };
1357
+ /**
1358
+ * Lookup169: pallet_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1359
+ **/
1360
+ PalletSchedulerScheduledV3: {
1361
+ maybeId: string;
1362
+ priority: string;
1363
+ call: string;
1364
+ maybePeriodic: string;
1365
+ origin: string;
1366
+ };
1367
+ /**
1368
+ * Lookup170: sugarfunge_runtime::OriginCaller
1369
+ **/
1370
+ SugarfungeRuntimeOriginCaller: {
1371
+ _enum: {
1372
+ system: string;
1373
+ __Unused1: string;
1374
+ Void: string;
1375
+ __Unused3: string;
1376
+ __Unused4: string;
1377
+ __Unused5: string;
1378
+ __Unused6: string;
1379
+ __Unused7: string;
1380
+ __Unused8: string;
1381
+ Council: string;
1382
+ };
1383
+ };
1384
+ /**
1385
+ * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1386
+ **/
1387
+ FrameSupportDispatchRawOrigin: {
1388
+ _enum: {
1389
+ Root: string;
1390
+ Signed: string;
1391
+ None: string;
1392
+ };
1393
+ };
1394
+ /**
1395
+ * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1396
+ **/
1397
+ PalletCollectiveRawOrigin: {
1398
+ _enum: {
1399
+ Members: string;
1400
+ Member: string;
1401
+ _Phantom: string;
1402
+ };
1403
+ };
1404
+ /**
1405
+ * Lookup173: pallet_scheduler::pallet::Error<T>
1406
+ **/
1407
+ PalletSchedulerError: {
1408
+ _enum: string[];
1409
+ };
1410
+ /**
1411
+ * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1412
+ **/
1413
+ PalletCollectiveVotes: {
1414
+ index: string;
1415
+ threshold: string;
1416
+ ayes: string;
1417
+ nays: string;
1418
+ end: string;
1419
+ };
1420
+ /**
1421
+ * Lookup176: pallet_collective::pallet::Error<T, I>
1422
+ **/
1423
+ PalletCollectiveError: {
1424
+ _enum: string[];
1425
+ };
1426
+ /**
1427
+ * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1428
+ **/
1429
+ SugarfungeValidatorSetError: {
1430
+ _enum: string[];
1431
+ };
1432
+ /**
1433
+ * Lookup183: sp_core::crypto::KeyTypeId
1434
+ **/
1435
+ SpCoreCryptoKeyTypeId: string;
1436
+ /**
1437
+ * Lookup184: pallet_session::pallet::Error<T>
1438
+ **/
1439
+ PalletSessionError: {
1440
+ _enum: string[];
1441
+ };
1442
+ /**
1443
+ * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1444
+ **/
1445
+ SugarfungeAssetClass: {
1446
+ owner: string;
1447
+ metadata: string;
1448
+ };
1449
+ /**
1450
+ * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1451
+ **/
1452
+ SugarfungeAssetAsset: {
1453
+ classId: string;
1454
+ creator: string;
1455
+ metadata: string;
1456
+ };
1457
+ /**
1458
+ * Lookup189: sugarfunge_asset::pallet::Error<T>
1459
+ **/
1460
+ SugarfungeAssetError: {
1461
+ _enum: string[];
1462
+ };
1463
+ /**
1464
+ * Lookup190: sugarfunge_dao::pallet::Error<T>
1465
+ **/
1466
+ SugarfungeDaoError: {
1467
+ _enum: string[];
1468
+ };
1469
+ /**
1470
+ * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1471
+ **/
1472
+ SugarfungeBundleBundle: {
1473
+ creator: string;
1474
+ classId: string;
1475
+ assetId: string;
1476
+ metadata: string;
1477
+ schema: string;
1478
+ vault: string;
1479
+ };
1480
+ /**
1481
+ * Lookup192: frame_support::PalletId
1482
+ **/
1483
+ FrameSupportPalletId: string;
1484
+ /**
1485
+ * Lookup193: sugarfunge_bundle::pallet::Error<T>
1486
+ **/
1487
+ SugarfungeBundleError: {
1488
+ _enum: string[];
1489
+ };
1490
+ /**
1491
+ * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1492
+ **/
1493
+ SugarfungeBagBagClass: {
1494
+ operator: string;
1495
+ classId: string;
1496
+ };
1497
+ /**
1498
+ * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1499
+ **/
1500
+ SugarfungeBagBag: {
1501
+ operator: string;
1502
+ classId: string;
1503
+ assetId: string;
1504
+ totalShares: string;
1505
+ };
1506
+ /**
1507
+ * Lookup196: sugarfunge_bag::pallet::Error<T>
1508
+ **/
1509
+ SugarfungeBagError: {
1510
+ _enum: string[];
1511
+ };
1512
+ /**
1513
+ * Lookup197: sugarfunge_exgine::pallet::Error<T>
1514
+ **/
1515
+ SugarfungeExgineError: {
1516
+ _enum: string[];
1517
+ };
1518
+ /**
1519
+ * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1520
+ **/
1521
+ SugarfungeMarketMarket: {
1522
+ owner: string;
1523
+ vault: string;
1524
+ };
1525
+ /**
1526
+ * Lookup200: sugarfunge_market::pallet::Error<T>
1527
+ **/
1528
+ SugarfungeMarketError: {
1529
+ _enum: string[];
1530
+ };
1531
+ /**
1532
+ * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1533
+ **/
1534
+ FunctionlandFulaManifest: {
1535
+ storage: string;
1536
+ replicationFactor: string;
1537
+ manifestData: string;
1538
+ };
1539
+ /**
1540
+ * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1541
+ **/
1542
+ FunctionlandFulaManifestData: {
1543
+ uploader: string;
1544
+ manifestMetadata: string;
1545
+ };
1546
+ /**
1547
+ * Lookup205: functionland_fula::ManifestStorageData
1548
+ **/
1549
+ FunctionlandFulaManifestStorageData: {
1550
+ activeCycles: string;
1551
+ missedCycles: string;
1552
+ activeDays: string;
1553
+ };
1554
+ /**
1555
+ * Lookup206: functionland_fula::pallet::Error<T>
1556
+ **/
1557
+ FunctionlandFulaError: {
1558
+ _enum: string[];
1559
+ };
1560
+ /**
1561
+ * Lookup207: fula_pool::Pool<T>
1562
+ **/
1563
+ FulaPoolPool: {
1564
+ name: string;
1565
+ owner: string;
1566
+ parent: string;
1567
+ participants: string;
1568
+ requestNumber: string;
1569
+ };
1570
+ /**
1571
+ * Lookup210: fula_pool::PoolRequest<T>
1572
+ **/
1573
+ FulaPoolPoolRequest: {
1574
+ voted: string;
1575
+ positiveVotes: string;
1576
+ peerId: string;
1577
+ };
1578
+ /**
1579
+ * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1580
+ **/
1581
+ FulaPoolUser: {
1582
+ poolId: string;
1583
+ requestPoolId: string;
1584
+ peerId: string;
1585
+ };
1586
+ /**
1587
+ * Lookup212: fula_pool::pallet::Error<T>
1588
+ **/
1589
+ FulaPoolError: {
1590
+ _enum: string[];
1591
+ };
1592
+ /**
1593
+ * Lookup214: sp_runtime::MultiSignature
1594
+ **/
1595
+ SpRuntimeMultiSignature: {
1596
+ _enum: {
1597
+ Ed25519: string;
1598
+ Sr25519: string;
1599
+ Ecdsa: string;
1600
+ };
1601
+ };
1602
+ /**
1603
+ * Lookup215: sp_core::sr25519::Signature
1604
+ **/
1605
+ SpCoreSr25519Signature: string;
1606
+ /**
1607
+ * Lookup216: sp_core::ecdsa::Signature
1608
+ **/
1609
+ SpCoreEcdsaSignature: string;
1610
+ /**
1611
+ * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1612
+ **/
1613
+ FrameSystemExtensionsCheckNonZeroSender: string;
1614
+ /**
1615
+ * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1616
+ **/
1617
+ FrameSystemExtensionsCheckSpecVersion: string;
1618
+ /**
1619
+ * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1620
+ **/
1621
+ FrameSystemExtensionsCheckTxVersion: string;
1622
+ /**
1623
+ * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1624
+ **/
1625
+ FrameSystemExtensionsCheckGenesis: string;
1626
+ /**
1627
+ * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1628
+ **/
1629
+ FrameSystemExtensionsCheckNonce: string;
1630
+ /**
1631
+ * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1632
+ **/
1633
+ FrameSystemExtensionsCheckWeight: string;
1634
+ /**
1635
+ * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1636
+ **/
1637
+ PalletTransactionPaymentChargeTransactionPayment: string;
1638
+ /**
1639
+ * Lookup228: sugarfunge_runtime::Runtime
1640
+ **/
1641
+ SugarfungeRuntimeRuntime: string;
1642
+ };
1643
+ export default _default;
1644
+ //# sourceMappingURL=api-lookup.d.ts.map