@functionland/react-native-fula 1.14.7 → 1.19.0

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