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