@functionland/react-native-fula 1.14.1 → 1.14.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/LICENSE +20 -21
  2. package/android/build.gradle +90 -50
  3. package/android/gradle.properties +5 -1
  4. package/android/src/main/AndroidManifest.xml +3 -4
  5. package/android/src/main/AndroidManifestNew.xml +2 -0
  6. package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
  7. package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
  8. package/android/src/main/java/land/fx/fula/FulaModule.java +1 -1
  9. package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
  10. package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
  11. package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
  12. package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
  13. package/ios/Cryptography.swift +36 -0
  14. package/ios/Fula-Bridging-Header.h +3 -0
  15. package/ios/Fula.mm +199 -0
  16. package/ios/Fula.swift +1152 -0
  17. package/ios/{FulaModule.xcodeproj → Fula.xcodeproj}/project.pbxproj +38 -16
  18. package/ios/Fula.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  19. package/ios/Fula.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  20. package/ios/Fula.xcodeproj/project.xcworkspace/xcuserdata/user246549.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  21. package/ios/Fula.xcodeproj/xcuserdata/user246549.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  22. package/ios/UserDataHelper.swift +143 -0
  23. package/lib/commonjs/index.js.map +1 -1
  24. package/lib/commonjs/interfaces/api-lookup.js +266 -266
  25. package/lib/commonjs/interfaces/api-lookup.js.map +1 -1
  26. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  27. package/lib/commonjs/protocols/blockchain.js +64 -64
  28. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  29. package/lib/commonjs/protocols/chain-api.js +10 -0
  30. package/lib/commonjs/protocols/chain-api.js.map +1 -1
  31. package/lib/commonjs/protocols/fula.js +99 -99
  32. package/lib/commonjs/protocols/fula.js.map +1 -1
  33. package/lib/commonjs/protocols/fxblox.js +3 -3
  34. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  35. package/lib/commonjs/types/blockchain.js.map +1 -1
  36. package/lib/commonjs/types/fxblox.js.map +1 -1
  37. package/lib/module/index.js +4 -8
  38. package/lib/module/index.js.map +1 -1
  39. package/lib/module/interfaces/api-lookup.js +266 -266
  40. package/lib/module/interfaces/api-lookup.js.map +1 -1
  41. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  42. package/lib/module/protocols/blockchain.js +64 -64
  43. package/lib/module/protocols/blockchain.js.map +1 -1
  44. package/lib/module/protocols/chain-api.js +8 -0
  45. package/lib/module/protocols/chain-api.js.map +1 -1
  46. package/lib/module/protocols/fula.js +99 -99
  47. package/lib/module/protocols/fula.js.map +1 -1
  48. package/lib/module/protocols/fxblox.js +3 -3
  49. package/lib/module/protocols/fxblox.js.map +1 -1
  50. package/lib/module/types/blockchain.js.map +1 -1
  51. package/lib/module/types/fxblox.js.map +1 -1
  52. package/lib/typescript/index.d.ts +5 -4
  53. package/lib/typescript/index.d.ts.map +1 -0
  54. package/lib/typescript/interfaces/api-lookup.d.ts +1644 -1643
  55. package/lib/typescript/interfaces/api-lookup.d.ts.map +1 -0
  56. package/lib/typescript/interfaces/fulaNativeModule.d.ts +62 -61
  57. package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -0
  58. package/lib/typescript/protocols/blockchain.d.ts +18 -17
  59. package/lib/typescript/protocols/blockchain.d.ts.map +1 -0
  60. package/lib/typescript/protocols/chain-api.d.ts +7 -6
  61. package/lib/typescript/protocols/chain-api.d.ts.map +1 -0
  62. package/lib/typescript/protocols/fula.d.ts +132 -131
  63. package/lib/typescript/protocols/fula.d.ts.map +1 -0
  64. package/lib/typescript/protocols/fxblox.d.ts +8 -7
  65. package/lib/typescript/protocols/fxblox.d.ts.map +1 -0
  66. package/lib/typescript/types/blockchain.d.ts +69 -68
  67. package/lib/typescript/types/blockchain.d.ts.map +1 -0
  68. package/lib/typescript/types/fxblox.d.ts +9 -8
  69. package/lib/typescript/types/fxblox.d.ts.map +1 -0
  70. package/package.json +43 -28
  71. package/react-native-fula.podspec +47 -19
  72. package/src/index.tsx +4 -4
  73. package/src/interfaces/api-lookup.ts +1647 -1647
  74. package/src/interfaces/fulaNativeModule.ts +122 -122
  75. package/src/protocols/blockchain.ts +504 -504
  76. package/src/protocols/chain-api.ts +8 -0
  77. package/src/protocols/fula.ts +314 -314
  78. package/src/protocols/fxblox.ts +49 -49
  79. package/src/types/blockchain.ts +80 -80
  80. package/src/types/fxblox.ts +8 -8
  81. package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  82. package/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
  83. package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
  84. package/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  85. package/android/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
  86. package/android/.gradle/7.5.1/executionHistory/executionHistory.bin +0 -0
  87. package/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
  88. package/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  89. package/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
  90. package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  91. package/android/.gradle/7.5.1/fileHashes/resourceHashesCache.bin +0 -0
  92. package/android/.gradle/7.5.1/gc.properties +0 -0
  93. package/android/.gradle/7.6/checksums/checksums.lock +0 -0
  94. package/android/.gradle/7.6/checksums/md5-checksums.bin +0 -0
  95. package/android/.gradle/7.6/checksums/sha1-checksums.bin +0 -0
  96. package/android/.gradle/7.6/dependencies-accessors/dependencies-accessors.lock +0 -0
  97. package/android/.gradle/7.6/dependencies-accessors/gc.properties +0 -0
  98. package/android/.gradle/7.6/executionHistory/executionHistory.bin +0 -0
  99. package/android/.gradle/7.6/executionHistory/executionHistory.lock +0 -0
  100. package/android/.gradle/7.6/fileChanges/last-build.bin +0 -0
  101. package/android/.gradle/7.6/fileHashes/fileHashes.bin +0 -0
  102. package/android/.gradle/7.6/fileHashes/fileHashes.lock +0 -0
  103. package/android/.gradle/7.6/fileHashes/resourceHashesCache.bin +0 -0
  104. package/android/.gradle/7.6/gc.properties +0 -0
  105. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  106. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  107. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  108. package/android/.gradle/file-system.probe +0 -0
  109. package/android/.gradle/vcs-1/gc.properties +0 -0
  110. package/android/.idea/compiler.xml +0 -6
  111. package/android/.idea/gradle.xml +0 -20
  112. package/android/.idea/jarRepositories.xml +0 -50
  113. package/android/.idea/misc.xml +0 -10
  114. package/android/.idea/sonarlint/issuestore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +0 -0
  115. package/android/.idea/sonarlint/issuestore/2/e/2e09eb0f0df666781fdff057a0af6101364ebe2f +0 -0
  116. package/android/.idea/sonarlint/issuestore/6/2/62149c3f7c3a14d7a77778e558d274e8c00a5585 +0 -0
  117. package/android/.idea/sonarlint/issuestore/8/0/80a78d662b0659428eb880336106c3c5fc3f0714 +0 -0
  118. package/android/.idea/sonarlint/issuestore/d/2/d2865ef8fc01c40e9fd82977fde2c8378fad0b12 +0 -0
  119. package/android/.idea/sonarlint/issuestore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +0 -0
  120. package/android/.idea/sonarlint/issuestore/index.pb +0 -13
  121. package/android/.idea/sonarlint/securityhotspotstore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +0 -0
  122. package/android/.idea/sonarlint/securityhotspotstore/2/e/2e09eb0f0df666781fdff057a0af6101364ebe2f +0 -0
  123. package/android/.idea/sonarlint/securityhotspotstore/6/2/62149c3f7c3a14d7a77778e558d274e8c00a5585 +0 -0
  124. package/android/.idea/sonarlint/securityhotspotstore/8/0/80a78d662b0659428eb880336106c3c5fc3f0714 +0 -0
  125. package/android/.idea/sonarlint/securityhotspotstore/d/2/d2865ef8fc01c40e9fd82977fde2c8378fad0b12 +0 -0
  126. package/android/.idea/sonarlint/securityhotspotstore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +0 -0
  127. package/android/.idea/sonarlint/securityhotspotstore/index.pb +0 -13
  128. package/android/.idea/vcs.xml +0 -6
  129. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  130. package/android/gradle/wrapper/gradle-wrapper.properties +0 -7
  131. package/android/gradlew +0 -291
  132. package/android/gradlew.bat +0 -91
  133. package/android/local.properties +0 -8
  134. package/ios/FulaModule.h +0 -10
  135. package/ios/FulaModule.m +0 -149
@@ -8,8 +8,8 @@ exports.default = void 0;
8
8
  /* eslint-disable */
9
9
  /* eslint-disable sort-keys */
10
10
  var _default = {
11
- /**
12
- * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
11
+ /**
12
+ * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
13
13
  **/
14
14
  FrameSystemAccountInfo: {
15
15
  nonce: 'u32',
@@ -18,8 +18,8 @@ var _default = {
18
18
  sufficients: 'u32',
19
19
  data: 'PalletBalancesAccountData'
20
20
  },
21
- /**
22
- * Lookup5: pallet_balances::AccountData<Balance>
21
+ /**
22
+ * Lookup5: pallet_balances::AccountData<Balance>
23
23
  **/
24
24
  PalletBalancesAccountData: {
25
25
  free: 'u128',
@@ -27,22 +27,22 @@ var _default = {
27
27
  miscFrozen: 'u128',
28
28
  feeFrozen: 'u128'
29
29
  },
30
- /**
31
- * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
30
+ /**
31
+ * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
32
32
  **/
33
33
  FrameSupportDispatchPerDispatchClassWeight: {
34
34
  normal: 'Weight',
35
35
  operational: 'Weight',
36
36
  mandatory: 'Weight'
37
37
  },
38
- /**
39
- * Lookup12: sp_runtime::generic::digest::Digest
38
+ /**
39
+ * Lookup12: sp_runtime::generic::digest::Digest
40
40
  **/
41
41
  SpRuntimeDigest: {
42
42
  logs: 'Vec<SpRuntimeDigestDigestItem>'
43
43
  },
44
- /**
45
- * Lookup14: sp_runtime::generic::digest::DigestItem
44
+ /**
45
+ * Lookup14: sp_runtime::generic::digest::DigestItem
46
46
  **/
47
47
  SpRuntimeDigestDigestItem: {
48
48
  _enum: {
@@ -57,16 +57,16 @@ var _default = {
57
57
  RuntimeEnvironmentUpdated: 'Null'
58
58
  }
59
59
  },
60
- /**
61
- * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
60
+ /**
61
+ * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
62
62
  **/
63
63
  FrameSystemEventRecord: {
64
64
  phase: 'FrameSystemPhase',
65
65
  event: 'Event',
66
66
  topics: 'Vec<H256>'
67
67
  },
68
- /**
69
- * Lookup19: frame_system::pallet::Event<T>
68
+ /**
69
+ * Lookup19: frame_system::pallet::Event<T>
70
70
  **/
71
71
  FrameSystemEvent: {
72
72
  _enum: {
@@ -93,28 +93,28 @@ var _default = {
93
93
  }
94
94
  }
95
95
  },
96
- /**
97
- * Lookup20: frame_support::dispatch::DispatchInfo
96
+ /**
97
+ * Lookup20: frame_support::dispatch::DispatchInfo
98
98
  **/
99
99
  FrameSupportDispatchDispatchInfo: {
100
100
  weight: 'Weight',
101
101
  class: 'FrameSupportDispatchDispatchClass',
102
102
  paysFee: 'FrameSupportDispatchPays'
103
103
  },
104
- /**
105
- * Lookup21: frame_support::dispatch::DispatchClass
104
+ /**
105
+ * Lookup21: frame_support::dispatch::DispatchClass
106
106
  **/
107
107
  FrameSupportDispatchDispatchClass: {
108
108
  _enum: ['Normal', 'Operational', 'Mandatory']
109
109
  },
110
- /**
111
- * Lookup22: frame_support::dispatch::Pays
110
+ /**
111
+ * Lookup22: frame_support::dispatch::Pays
112
112
  **/
113
113
  FrameSupportDispatchPays: {
114
114
  _enum: ['Yes', 'No']
115
115
  },
116
- /**
117
- * Lookup23: sp_runtime::DispatchError
116
+ /**
117
+ * Lookup23: sp_runtime::DispatchError
118
118
  **/
119
119
  SpRuntimeDispatchError: {
120
120
  _enum: {
@@ -130,33 +130,33 @@ var _default = {
130
130
  Transactional: 'SpRuntimeTransactionalError'
131
131
  }
132
132
  },
133
- /**
134
- * Lookup24: sp_runtime::ModuleError
133
+ /**
134
+ * Lookup24: sp_runtime::ModuleError
135
135
  **/
136
136
  SpRuntimeModuleError: {
137
137
  index: 'u8',
138
138
  error: '[u8;4]'
139
139
  },
140
- /**
141
- * Lookup25: sp_runtime::TokenError
140
+ /**
141
+ * Lookup25: sp_runtime::TokenError
142
142
  **/
143
143
  SpRuntimeTokenError: {
144
144
  _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
145
145
  },
146
- /**
147
- * Lookup26: sp_runtime::ArithmeticError
146
+ /**
147
+ * Lookup26: sp_runtime::ArithmeticError
148
148
  **/
149
149
  SpRuntimeArithmeticError: {
150
150
  _enum: ['Underflow', 'Overflow', 'DivisionByZero']
151
151
  },
152
- /**
153
- * Lookup27: sp_runtime::TransactionalError
152
+ /**
153
+ * Lookup27: sp_runtime::TransactionalError
154
154
  **/
155
155
  SpRuntimeTransactionalError: {
156
156
  _enum: ['LimitReached', 'NoLayer']
157
157
  },
158
- /**
159
- * Lookup28: pallet_grandpa::pallet::Event
158
+ /**
159
+ * Lookup28: pallet_grandpa::pallet::Event
160
160
  **/
161
161
  PalletGrandpaEvent: {
162
162
  _enum: {
@@ -167,16 +167,16 @@ var _default = {
167
167
  Resumed: 'Null'
168
168
  }
169
169
  },
170
- /**
171
- * Lookup31: sp_finality_grandpa::app::Public
170
+ /**
171
+ * Lookup31: sp_finality_grandpa::app::Public
172
172
  **/
173
173
  SpFinalityGrandpaAppPublic: 'SpCoreEd25519Public',
174
- /**
175
- * Lookup32: sp_core::ed25519::Public
174
+ /**
175
+ * Lookup32: sp_core::ed25519::Public
176
176
  **/
177
177
  SpCoreEd25519Public: '[u8;32]',
178
- /**
179
- * Lookup33: pallet_balances::pallet::Event<T, I>
178
+ /**
179
+ * Lookup33: pallet_balances::pallet::Event<T, I>
180
180
  **/
181
181
  PalletBalancesEvent: {
182
182
  _enum: {
@@ -226,14 +226,14 @@ var _default = {
226
226
  }
227
227
  }
228
228
  },
229
- /**
230
- * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
229
+ /**
230
+ * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
231
231
  **/
232
232
  FrameSupportTokensMiscBalanceStatus: {
233
233
  _enum: ['Free', 'Reserved']
234
234
  },
235
- /**
236
- * Lookup35: pallet_transaction_payment::pallet::Event<T>
235
+ /**
236
+ * Lookup35: pallet_transaction_payment::pallet::Event<T>
237
237
  **/
238
238
  PalletTransactionPaymentEvent: {
239
239
  _enum: {
@@ -244,8 +244,8 @@ var _default = {
244
244
  }
245
245
  }
246
246
  },
247
- /**
248
- * Lookup36: pallet_sudo::pallet::Event<T>
247
+ /**
248
+ * Lookup36: pallet_sudo::pallet::Event<T>
249
249
  **/
250
250
  PalletSudoEvent: {
251
251
  _enum: {
@@ -260,8 +260,8 @@ var _default = {
260
260
  }
261
261
  }
262
262
  },
263
- /**
264
- * Lookup40: pallet_scheduler::pallet::Event<T>
263
+ /**
264
+ * Lookup40: pallet_scheduler::pallet::Event<T>
265
265
  **/
266
266
  PalletSchedulerEvent: {
267
267
  _enum: {
@@ -285,14 +285,14 @@ var _default = {
285
285
  }
286
286
  }
287
287
  },
288
- /**
289
- * Lookup43: frame_support::traits::schedule::LookupError
288
+ /**
289
+ * Lookup43: frame_support::traits::schedule::LookupError
290
290
  **/
291
291
  FrameSupportScheduleLookupError: {
292
292
  _enum: ['Unknown', 'BadFormat']
293
293
  },
294
- /**
295
- * Lookup44: pallet_collective::pallet::Event<T, I>
294
+ /**
295
+ * Lookup44: pallet_collective::pallet::Event<T, I>
296
296
  **/
297
297
  PalletCollectiveEvent: {
298
298
  _enum: {
@@ -330,8 +330,8 @@ var _default = {
330
330
  }
331
331
  }
332
332
  },
333
- /**
334
- * Lookup46: sugarfunge_validator_set::pallet::Event<T>
333
+ /**
334
+ * Lookup46: sugarfunge_validator_set::pallet::Event<T>
335
335
  **/
336
336
  SugarfungeValidatorSetEvent: {
337
337
  _enum: {
@@ -339,8 +339,8 @@ var _default = {
339
339
  ValidatorRemovalInitiated: 'AccountId32'
340
340
  }
341
341
  },
342
- /**
343
- * Lookup47: pallet_session::pallet::Event
342
+ /**
343
+ * Lookup47: pallet_session::pallet::Event
344
344
  **/
345
345
  PalletSessionEvent: {
346
346
  _enum: {
@@ -349,8 +349,8 @@ var _default = {
349
349
  }
350
350
  }
351
351
  },
352
- /**
353
- * Lookup48: sugarfunge_asset::pallet::Event<T>
352
+ /**
353
+ * Lookup48: sugarfunge_asset::pallet::Event<T>
354
354
  **/
355
355
  SugarfungeAssetEvent: {
356
356
  _enum: {
@@ -421,16 +421,16 @@ var _default = {
421
421
  }
422
422
  }
423
423
  },
424
- /**
425
- * Lookup51: sugarfunge_dao::pallet::Event<T>
424
+ /**
425
+ * Lookup51: sugarfunge_dao::pallet::Event<T>
426
426
  **/
427
427
  SugarfungeDaoEvent: {
428
428
  _enum: {
429
429
  SomethingStored: '(u32,AccountId32)'
430
430
  }
431
431
  },
432
- /**
433
- * Lookup52: sugarfunge_bundle::pallet::Event<T>
432
+ /**
433
+ * Lookup52: sugarfunge_bundle::pallet::Event<T>
434
434
  **/
435
435
  SugarfungeBundleEvent: {
436
436
  _enum: {
@@ -456,8 +456,8 @@ var _default = {
456
456
  }
457
457
  }
458
458
  },
459
- /**
460
- * Lookup53: sugarfunge_bag::pallet::Event<T>
459
+ /**
460
+ * Lookup53: sugarfunge_bag::pallet::Event<T>
461
461
  **/
462
462
  SugarfungeBagEvent: {
463
463
  _enum: {
@@ -483,16 +483,16 @@ var _default = {
483
483
  }
484
484
  }
485
485
  },
486
- /**
487
- * Lookup55: sugarfunge_exgine::pallet::Event<T>
486
+ /**
487
+ * Lookup55: sugarfunge_exgine::pallet::Event<T>
488
488
  **/
489
489
  SugarfungeExgineEvent: {
490
490
  _enum: {
491
491
  SomethingStored: '(u32,AccountId32)'
492
492
  }
493
493
  },
494
- /**
495
- * Lookup56: sugarfunge_market::pallet::Event<T>
494
+ /**
495
+ * Lookup56: sugarfunge_market::pallet::Event<T>
496
496
  **/
497
497
  SugarfungeMarketEvent: {
498
498
  _enum: {
@@ -539,15 +539,15 @@ var _default = {
539
539
  }
540
540
  }
541
541
  },
542
- /**
543
- * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
542
+ /**
543
+ * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
544
544
  **/
545
545
  SugarfungeMarketRateBalance: {
546
546
  rate: 'SugarfungeMarketAssetRate',
547
547
  balance: 'i128'
548
548
  },
549
- /**
550
- * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
549
+ /**
550
+ * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
551
551
  **/
552
552
  SugarfungeMarketAssetRate: {
553
553
  classId: 'u64',
@@ -556,8 +556,8 @@ var _default = {
556
556
  from: 'SugarfungeMarketRateAccount',
557
557
  to: 'SugarfungeMarketRateAccount'
558
558
  },
559
- /**
560
- * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
559
+ /**
560
+ * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
561
561
  **/
562
562
  SugarfungeMarketRateAction: {
563
563
  _enum: {
@@ -568,20 +568,20 @@ var _default = {
568
568
  Has: '(SugarfungeMarketAmountOp,i128)'
569
569
  }
570
570
  },
571
- /**
572
- * Lookup64: sugarfunge_market::AMM
571
+ /**
572
+ * Lookup64: sugarfunge_market::AMM
573
573
  **/
574
574
  SugarfungeMarketAmm: {
575
575
  _enum: ['Constant']
576
576
  },
577
- /**
578
- * Lookup65: sugarfunge_market::AmountOp
577
+ /**
578
+ * Lookup65: sugarfunge_market::AmountOp
579
579
  **/
580
580
  SugarfungeMarketAmountOp: {
581
581
  _enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
582
582
  },
583
- /**
584
- * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
583
+ /**
584
+ * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
585
585
  **/
586
586
  SugarfungeMarketRateAccount: {
587
587
  _enum: {
@@ -590,8 +590,8 @@ var _default = {
590
590
  Buyer: 'Null'
591
591
  }
592
592
  },
593
- /**
594
- * Lookup67: functionland_fula::pallet::Event<T>
593
+ /**
594
+ * Lookup67: functionland_fula::pallet::Event<T>
595
595
  **/
596
596
  FunctionlandFulaEvent: {
597
597
  _enum: {
@@ -628,8 +628,8 @@ var _default = {
628
628
  }
629
629
  }
630
630
  },
631
- /**
632
- * Lookup70: fula_pool::pallet::Event<T>
631
+ /**
632
+ * Lookup70: fula_pool::pallet::Event<T>
633
633
  **/
634
634
  FulaPoolEvent: {
635
635
  _enum: {
@@ -662,8 +662,8 @@ var _default = {
662
662
  }
663
663
  }
664
664
  },
665
- /**
666
- * Lookup71: frame_system::Phase
665
+ /**
666
+ * Lookup71: frame_system::Phase
667
667
  **/
668
668
  FrameSystemPhase: {
669
669
  _enum: {
@@ -672,15 +672,15 @@ var _default = {
672
672
  Initialization: 'Null'
673
673
  }
674
674
  },
675
- /**
676
- * Lookup74: frame_system::LastRuntimeUpgradeInfo
675
+ /**
676
+ * Lookup74: frame_system::LastRuntimeUpgradeInfo
677
677
  **/
678
678
  FrameSystemLastRuntimeUpgradeInfo: {
679
679
  specVersion: 'Compact<u32>',
680
680
  specName: 'Text'
681
681
  },
682
- /**
683
- * Lookup77: frame_system::pallet::Call<T>
682
+ /**
683
+ * Lookup77: frame_system::pallet::Call<T>
684
684
  **/
685
685
  FrameSystemCall: {
686
686
  _enum: {
@@ -717,24 +717,24 @@ var _default = {
717
717
  }
718
718
  }
719
719
  },
720
- /**
721
- * Lookup82: frame_system::limits::BlockWeights
720
+ /**
721
+ * Lookup82: frame_system::limits::BlockWeights
722
722
  **/
723
723
  FrameSystemLimitsBlockWeights: {
724
724
  baseBlock: 'Weight',
725
725
  maxBlock: 'Weight',
726
726
  perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
727
727
  },
728
- /**
729
- * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
728
+ /**
729
+ * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
730
730
  **/
731
731
  FrameSupportDispatchPerDispatchClassWeightsPerClass: {
732
732
  normal: 'FrameSystemLimitsWeightsPerClass',
733
733
  operational: 'FrameSystemLimitsWeightsPerClass',
734
734
  mandatory: 'FrameSystemLimitsWeightsPerClass'
735
735
  },
736
- /**
737
- * Lookup84: frame_system::limits::WeightsPerClass
736
+ /**
737
+ * Lookup84: frame_system::limits::WeightsPerClass
738
738
  **/
739
739
  FrameSystemLimitsWeightsPerClass: {
740
740
  baseExtrinsic: 'Weight',
@@ -742,29 +742,29 @@ var _default = {
742
742
  maxTotal: 'Option<Weight>',
743
743
  reserved: 'Option<Weight>'
744
744
  },
745
- /**
746
- * Lookup86: frame_system::limits::BlockLength
745
+ /**
746
+ * Lookup86: frame_system::limits::BlockLength
747
747
  **/
748
748
  FrameSystemLimitsBlockLength: {
749
749
  max: 'FrameSupportDispatchPerDispatchClassU32'
750
750
  },
751
- /**
752
- * Lookup87: frame_support::dispatch::PerDispatchClass<T>
751
+ /**
752
+ * Lookup87: frame_support::dispatch::PerDispatchClass<T>
753
753
  **/
754
754
  FrameSupportDispatchPerDispatchClassU32: {
755
755
  normal: 'u32',
756
756
  operational: 'u32',
757
757
  mandatory: 'u32'
758
758
  },
759
- /**
760
- * Lookup88: sp_weights::RuntimeDbWeight
759
+ /**
760
+ * Lookup88: sp_weights::RuntimeDbWeight
761
761
  **/
762
762
  SpWeightsRuntimeDbWeight: {
763
763
  read: 'u64',
764
764
  write: 'u64'
765
765
  },
766
- /**
767
- * Lookup89: sp_version::RuntimeVersion
766
+ /**
767
+ * Lookup89: sp_version::RuntimeVersion
768
768
  **/
769
769
  SpVersionRuntimeVersion: {
770
770
  specName: 'Text',
@@ -776,14 +776,14 @@ var _default = {
776
776
  transactionVersion: 'u32',
777
777
  stateVersion: 'u8'
778
778
  },
779
- /**
780
- * Lookup94: frame_system::pallet::Error<T>
779
+ /**
780
+ * Lookup94: frame_system::pallet::Error<T>
781
781
  **/
782
782
  FrameSystemError: {
783
783
  _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
784
784
  },
785
- /**
786
- * Lookup96: pallet_timestamp::pallet::Call<T>
785
+ /**
786
+ * Lookup96: pallet_timestamp::pallet::Call<T>
787
787
  **/
788
788
  PalletTimestampCall: {
789
789
  _enum: {
@@ -792,8 +792,8 @@ var _default = {
792
792
  }
793
793
  }
794
794
  },
795
- /**
796
- * Lookup98: pallet_grandpa::StoredState<N>
795
+ /**
796
+ * Lookup98: pallet_grandpa::StoredState<N>
797
797
  **/
798
798
  PalletGrandpaStoredState: {
799
799
  _enum: {
@@ -809,8 +809,8 @@ var _default = {
809
809
  }
810
810
  }
811
811
  },
812
- /**
813
- * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
812
+ /**
813
+ * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
814
814
  **/
815
815
  PalletGrandpaStoredPendingChange: {
816
816
  scheduledAt: 'u32',
@@ -818,8 +818,8 @@ var _default = {
818
818
  nextAuthorities: 'Vec<(SpFinalityGrandpaAppPublic,u64)>',
819
819
  forced: 'Option<u32>'
820
820
  },
821
- /**
822
- * Lookup102: pallet_grandpa::pallet::Call<T>
821
+ /**
822
+ * Lookup102: pallet_grandpa::pallet::Call<T>
823
823
  **/
824
824
  PalletGrandpaCall: {
825
825
  _enum: {
@@ -837,15 +837,15 @@ var _default = {
837
837
  }
838
838
  }
839
839
  },
840
- /**
841
- * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
840
+ /**
841
+ * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
842
842
  **/
843
843
  SpFinalityGrandpaEquivocationProof: {
844
844
  setId: 'u64',
845
845
  equivocation: 'SpFinalityGrandpaEquivocation'
846
846
  },
847
- /**
848
- * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
847
+ /**
848
+ * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
849
849
  **/
850
850
  SpFinalityGrandpaEquivocation: {
851
851
  _enum: {
@@ -853,8 +853,8 @@ var _default = {
853
853
  Precommit: 'FinalityGrandpaEquivocationPrecommit'
854
854
  }
855
855
  },
856
- /**
857
- * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
856
+ /**
857
+ * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
858
858
  **/
859
859
  FinalityGrandpaEquivocationPrevote: {
860
860
  roundNumber: 'u64',
@@ -862,23 +862,23 @@ var _default = {
862
862
  first: '(FinalityGrandpaPrevote,SpFinalityGrandpaAppSignature)',
863
863
  second: '(FinalityGrandpaPrevote,SpFinalityGrandpaAppSignature)'
864
864
  },
865
- /**
866
- * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
865
+ /**
866
+ * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
867
867
  **/
868
868
  FinalityGrandpaPrevote: {
869
869
  targetHash: 'H256',
870
870
  targetNumber: 'u32'
871
871
  },
872
- /**
873
- * Lookup107: sp_finality_grandpa::app::Signature
872
+ /**
873
+ * Lookup107: sp_finality_grandpa::app::Signature
874
874
  **/
875
875
  SpFinalityGrandpaAppSignature: 'SpCoreEd25519Signature',
876
- /**
877
- * Lookup108: sp_core::ed25519::Signature
876
+ /**
877
+ * Lookup108: sp_core::ed25519::Signature
878
878
  **/
879
879
  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>
880
+ /**
881
+ * Lookup111: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
882
882
  **/
883
883
  FinalityGrandpaEquivocationPrecommit: {
884
884
  roundNumber: 'u64',
@@ -886,52 +886,52 @@ var _default = {
886
886
  first: '(FinalityGrandpaPrecommit,SpFinalityGrandpaAppSignature)',
887
887
  second: '(FinalityGrandpaPrecommit,SpFinalityGrandpaAppSignature)'
888
888
  },
889
- /**
890
- * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
889
+ /**
890
+ * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
891
891
  **/
892
892
  FinalityGrandpaPrecommit: {
893
893
  targetHash: 'H256',
894
894
  targetNumber: 'u32'
895
895
  },
896
- /**
897
- * Lookup114: sp_core::Void
896
+ /**
897
+ * Lookup114: sp_core::Void
898
898
  **/
899
899
  SpCoreVoid: 'Null',
900
- /**
901
- * Lookup115: pallet_grandpa::pallet::Error<T>
900
+ /**
901
+ * Lookup115: pallet_grandpa::pallet::Error<T>
902
902
  **/
903
903
  PalletGrandpaError: {
904
904
  _enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
905
905
  },
906
- /**
907
- * Lookup117: pallet_balances::BalanceLock<Balance>
906
+ /**
907
+ * Lookup117: pallet_balances::BalanceLock<Balance>
908
908
  **/
909
909
  PalletBalancesBalanceLock: {
910
910
  id: '[u8;8]',
911
911
  amount: 'u128',
912
912
  reasons: 'PalletBalancesReasons'
913
913
  },
914
- /**
915
- * Lookup118: pallet_balances::Reasons
914
+ /**
915
+ * Lookup118: pallet_balances::Reasons
916
916
  **/
917
917
  PalletBalancesReasons: {
918
918
  _enum: ['Fee', 'Misc', 'All']
919
919
  },
920
- /**
921
- * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
920
+ /**
921
+ * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
922
922
  **/
923
923
  PalletBalancesReserveData: {
924
924
  id: '[u8;8]',
925
925
  amount: 'u128'
926
926
  },
927
- /**
928
- * Lookup123: pallet_balances::Releases
927
+ /**
928
+ * Lookup123: pallet_balances::Releases
929
929
  **/
930
930
  PalletBalancesReleases: {
931
931
  _enum: ['V1_0_0', 'V2_0_0']
932
932
  },
933
- /**
934
- * Lookup124: pallet_balances::pallet::Call<T, I>
933
+ /**
934
+ * Lookup124: pallet_balances::pallet::Call<T, I>
935
935
  **/
936
936
  PalletBalancesCall: {
937
937
  _enum: {
@@ -963,20 +963,20 @@ var _default = {
963
963
  }
964
964
  }
965
965
  },
966
- /**
967
- * Lookup129: pallet_balances::pallet::Error<T, I>
966
+ /**
967
+ * Lookup129: pallet_balances::pallet::Error<T, I>
968
968
  **/
969
969
  PalletBalancesError: {
970
970
  _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
971
971
  },
972
- /**
973
- * Lookup131: pallet_transaction_payment::Releases
972
+ /**
973
+ * Lookup131: pallet_transaction_payment::Releases
974
974
  **/
975
975
  PalletTransactionPaymentReleases: {
976
976
  _enum: ['V1Ancient', 'V2']
977
977
  },
978
- /**
979
- * Lookup132: pallet_sudo::pallet::Call<T>
978
+ /**
979
+ * Lookup132: pallet_sudo::pallet::Call<T>
980
980
  **/
981
981
  PalletSudoCall: {
982
982
  _enum: {
@@ -999,8 +999,8 @@ var _default = {
999
999
  }
1000
1000
  }
1001
1001
  },
1002
- /**
1003
- * Lookup134: pallet_scheduler::pallet::Call<T>
1002
+ /**
1003
+ * Lookup134: pallet_scheduler::pallet::Call<T>
1004
1004
  **/
1005
1005
  PalletSchedulerCall: {
1006
1006
  _enum: {
@@ -1039,8 +1039,8 @@ var _default = {
1039
1039
  }
1040
1040
  }
1041
1041
  },
1042
- /**
1043
- * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1042
+ /**
1043
+ * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1044
1044
  **/
1045
1045
  FrameSupportScheduleMaybeHashed: {
1046
1046
  _enum: {
@@ -1048,8 +1048,8 @@ var _default = {
1048
1048
  Hash: 'H256'
1049
1049
  }
1050
1050
  },
1051
- /**
1052
- * Lookup137: pallet_collective::pallet::Call<T, I>
1051
+ /**
1052
+ * Lookup137: pallet_collective::pallet::Call<T, I>
1053
1053
  **/
1054
1054
  PalletCollectiveCall: {
1055
1055
  _enum: {
@@ -1083,8 +1083,8 @@ var _default = {
1083
1083
  }
1084
1084
  }
1085
1085
  },
1086
- /**
1087
- * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1086
+ /**
1087
+ * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1088
1088
  **/
1089
1089
  SugarfungeValidatorSetCall: {
1090
1090
  _enum: {
@@ -1099,8 +1099,8 @@ var _default = {
1099
1099
  }
1100
1100
  }
1101
1101
  },
1102
- /**
1103
- * Lookup140: pallet_session::pallet::Call<T>
1102
+ /**
1103
+ * Lookup140: pallet_session::pallet::Call<T>
1104
1104
  **/
1105
1105
  PalletSessionCall: {
1106
1106
  _enum: {
@@ -1114,23 +1114,23 @@ var _default = {
1114
1114
  purge_keys: 'Null'
1115
1115
  }
1116
1116
  },
1117
- /**
1118
- * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1117
+ /**
1118
+ * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1119
1119
  **/
1120
1120
  SugarfungeRuntimeOpaqueSessionKeys: {
1121
1121
  aura: 'SpConsensusAuraSr25519AppSr25519Public',
1122
1122
  grandpa: 'SpFinalityGrandpaAppPublic'
1123
1123
  },
1124
- /**
1125
- * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1124
+ /**
1125
+ * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1126
1126
  **/
1127
1127
  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1128
- /**
1129
- * Lookup143: sp_core::sr25519::Public
1128
+ /**
1129
+ * Lookup143: sp_core::sr25519::Public
1130
1130
  **/
1131
1131
  SpCoreSr25519Public: '[u8;32]',
1132
- /**
1133
- * Lookup144: sugarfunge_asset::pallet::Call<T>
1132
+ /**
1133
+ * Lookup144: sugarfunge_asset::pallet::Call<T>
1134
1134
  **/
1135
1135
  SugarfungeAssetCall: {
1136
1136
  _enum: {
@@ -1193,8 +1193,8 @@ var _default = {
1193
1193
  }
1194
1194
  }
1195
1195
  },
1196
- /**
1197
- * Lookup147: sugarfunge_dao::pallet::Call<T>
1196
+ /**
1197
+ * Lookup147: sugarfunge_dao::pallet::Call<T>
1198
1198
  **/
1199
1199
  SugarfungeDaoCall: {
1200
1200
  _enum: {
@@ -1204,8 +1204,8 @@ var _default = {
1204
1204
  cause_error: 'Null'
1205
1205
  }
1206
1206
  },
1207
- /**
1208
- * Lookup148: sugarfunge_bundle::pallet::Call<T>
1207
+ /**
1208
+ * Lookup148: sugarfunge_bundle::pallet::Call<T>
1209
1209
  **/
1210
1210
  SugarfungeBundleCall: {
1211
1211
  _enum: {
@@ -1230,8 +1230,8 @@ var _default = {
1230
1230
  }
1231
1231
  }
1232
1232
  },
1233
- /**
1234
- * Lookup156: sugarfunge_bag::pallet::Call<T>
1233
+ /**
1234
+ * Lookup156: sugarfunge_bag::pallet::Call<T>
1235
1235
  **/
1236
1236
  SugarfungeBagCall: {
1237
1237
  _enum: {
@@ -1256,8 +1256,8 @@ var _default = {
1256
1256
  }
1257
1257
  }
1258
1258
  },
1259
- /**
1260
- * Lookup157: sugarfunge_exgine::pallet::Call<T>
1259
+ /**
1260
+ * Lookup157: sugarfunge_exgine::pallet::Call<T>
1261
1261
  **/
1262
1262
  SugarfungeExgineCall: {
1263
1263
  _enum: {
@@ -1267,8 +1267,8 @@ var _default = {
1267
1267
  cause_error: 'Null'
1268
1268
  }
1269
1269
  },
1270
- /**
1271
- * Lookup158: sugarfunge_market::pallet::Call<T>
1270
+ /**
1271
+ * Lookup158: sugarfunge_market::pallet::Call<T>
1272
1272
  **/
1273
1273
  SugarfungeMarketCall: {
1274
1274
  _enum: {
@@ -1292,8 +1292,8 @@ var _default = {
1292
1292
  }
1293
1293
  }
1294
1294
  },
1295
- /**
1296
- * Lookup161: functionland_fula::pallet::Call<T>
1295
+ /**
1296
+ * Lookup161: functionland_fula::pallet::Call<T>
1297
1297
  **/
1298
1298
  FunctionlandFulaCall: {
1299
1299
  _enum: {
@@ -1331,8 +1331,8 @@ var _default = {
1331
1331
  }
1332
1332
  }
1333
1333
  },
1334
- /**
1335
- * Lookup164: fula_pool::pallet::Call<T>
1334
+ /**
1335
+ * Lookup164: fula_pool::pallet::Call<T>
1336
1336
  **/
1337
1337
  FulaPoolCall: {
1338
1338
  _enum: {
@@ -1357,14 +1357,14 @@ var _default = {
1357
1357
  }
1358
1358
  }
1359
1359
  },
1360
- /**
1361
- * Lookup166: pallet_sudo::pallet::Error<T>
1360
+ /**
1361
+ * Lookup166: pallet_sudo::pallet::Error<T>
1362
1362
  **/
1363
1363
  PalletSudoError: {
1364
1364
  _enum: ['RequireSudo']
1365
1365
  },
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>
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>
1368
1368
  **/
1369
1369
  PalletSchedulerScheduledV3: {
1370
1370
  maybeId: 'Option<Bytes>',
@@ -1373,8 +1373,8 @@ var _default = {
1373
1373
  maybePeriodic: 'Option<(u32,u32)>',
1374
1374
  origin: 'SugarfungeRuntimeOriginCaller'
1375
1375
  },
1376
- /**
1377
- * Lookup170: sugarfunge_runtime::OriginCaller
1376
+ /**
1377
+ * Lookup170: sugarfunge_runtime::OriginCaller
1378
1378
  **/
1379
1379
  SugarfungeRuntimeOriginCaller: {
1380
1380
  _enum: {
@@ -1390,8 +1390,8 @@ var _default = {
1390
1390
  Council: 'PalletCollectiveRawOrigin'
1391
1391
  }
1392
1392
  },
1393
- /**
1394
- * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1393
+ /**
1394
+ * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1395
1395
  **/
1396
1396
  FrameSupportDispatchRawOrigin: {
1397
1397
  _enum: {
@@ -1400,8 +1400,8 @@ var _default = {
1400
1400
  None: 'Null'
1401
1401
  }
1402
1402
  },
1403
- /**
1404
- * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1403
+ /**
1404
+ * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1405
1405
  **/
1406
1406
  PalletCollectiveRawOrigin: {
1407
1407
  _enum: {
@@ -1410,14 +1410,14 @@ var _default = {
1410
1410
  _Phantom: 'Null'
1411
1411
  }
1412
1412
  },
1413
- /**
1414
- * Lookup173: pallet_scheduler::pallet::Error<T>
1413
+ /**
1414
+ * Lookup173: pallet_scheduler::pallet::Error<T>
1415
1415
  **/
1416
1416
  PalletSchedulerError: {
1417
1417
  _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
1418
1418
  },
1419
- /**
1420
- * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1419
+ /**
1420
+ * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1421
1421
  **/
1422
1422
  PalletCollectiveVotes: {
1423
1423
  index: 'u32',
@@ -1426,57 +1426,57 @@ var _default = {
1426
1426
  nays: 'Vec<AccountId32>',
1427
1427
  end: 'u32'
1428
1428
  },
1429
- /**
1430
- * Lookup176: pallet_collective::pallet::Error<T, I>
1429
+ /**
1430
+ * Lookup176: pallet_collective::pallet::Error<T, I>
1431
1431
  **/
1432
1432
  PalletCollectiveError: {
1433
1433
  _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
1434
1434
  },
1435
- /**
1436
- * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1435
+ /**
1436
+ * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1437
1437
  **/
1438
1438
  SugarfungeValidatorSetError: {
1439
1439
  _enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
1440
1440
  },
1441
- /**
1442
- * Lookup183: sp_core::crypto::KeyTypeId
1441
+ /**
1442
+ * Lookup183: sp_core::crypto::KeyTypeId
1443
1443
  **/
1444
1444
  SpCoreCryptoKeyTypeId: '[u8;4]',
1445
- /**
1446
- * Lookup184: pallet_session::pallet::Error<T>
1445
+ /**
1446
+ * Lookup184: pallet_session::pallet::Error<T>
1447
1447
  **/
1448
1448
  PalletSessionError: {
1449
1449
  _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1450
1450
  },
1451
- /**
1452
- * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1451
+ /**
1452
+ * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1453
1453
  **/
1454
1454
  SugarfungeAssetClass: {
1455
1455
  owner: 'AccountId32',
1456
1456
  metadata: 'Bytes'
1457
1457
  },
1458
- /**
1459
- * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1458
+ /**
1459
+ * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1460
1460
  **/
1461
1461
  SugarfungeAssetAsset: {
1462
1462
  classId: 'u64',
1463
1463
  creator: 'AccountId32',
1464
1464
  metadata: 'Bytes'
1465
1465
  },
1466
- /**
1467
- * Lookup189: sugarfunge_asset::pallet::Error<T>
1466
+ /**
1467
+ * Lookup189: sugarfunge_asset::pallet::Error<T>
1468
1468
  **/
1469
1469
  SugarfungeAssetError: {
1470
1470
  _enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
1471
1471
  },
1472
- /**
1473
- * Lookup190: sugarfunge_dao::pallet::Error<T>
1472
+ /**
1473
+ * Lookup190: sugarfunge_dao::pallet::Error<T>
1474
1474
  **/
1475
1475
  SugarfungeDaoError: {
1476
1476
  _enum: ['NoneValue', 'StorageOverflow']
1477
1477
  },
1478
- /**
1479
- * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1478
+ /**
1479
+ * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1480
1480
  **/
1481
1481
  SugarfungeBundleBundle: {
1482
1482
  creator: 'AccountId32',
@@ -1486,25 +1486,25 @@ var _default = {
1486
1486
  schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1487
1487
  vault: 'AccountId32'
1488
1488
  },
1489
- /**
1490
- * Lookup192: frame_support::PalletId
1489
+ /**
1490
+ * Lookup192: frame_support::PalletId
1491
1491
  **/
1492
1492
  FrameSupportPalletId: '[u8;8]',
1493
- /**
1494
- * Lookup193: sugarfunge_bundle::pallet::Error<T>
1493
+ /**
1494
+ * Lookup193: sugarfunge_bundle::pallet::Error<T>
1495
1495
  **/
1496
1496
  SugarfungeBundleError: {
1497
1497
  _enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance']
1498
1498
  },
1499
- /**
1500
- * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1499
+ /**
1500
+ * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1501
1501
  **/
1502
1502
  SugarfungeBagBagClass: {
1503
1503
  operator: 'AccountId32',
1504
1504
  classId: 'u64'
1505
1505
  },
1506
- /**
1507
- * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1506
+ /**
1507
+ * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1508
1508
  **/
1509
1509
  SugarfungeBagBag: {
1510
1510
  operator: 'AccountId32',
@@ -1512,62 +1512,62 @@ var _default = {
1512
1512
  assetId: 'u64',
1513
1513
  totalShares: 'u128'
1514
1514
  },
1515
- /**
1516
- * Lookup196: sugarfunge_bag::pallet::Error<T>
1515
+ /**
1516
+ * Lookup196: sugarfunge_bag::pallet::Error<T>
1517
1517
  **/
1518
1518
  SugarfungeBagError: {
1519
1519
  _enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
1520
1520
  },
1521
- /**
1522
- * Lookup197: sugarfunge_exgine::pallet::Error<T>
1521
+ /**
1522
+ * Lookup197: sugarfunge_exgine::pallet::Error<T>
1523
1523
  **/
1524
1524
  SugarfungeExgineError: {
1525
1525
  _enum: ['NoneValue', 'StorageOverflow']
1526
1526
  },
1527
- /**
1528
- * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1527
+ /**
1528
+ * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1529
1529
  **/
1530
1530
  SugarfungeMarketMarket: {
1531
1531
  owner: 'AccountId32',
1532
1532
  vault: 'AccountId32'
1533
1533
  },
1534
- /**
1535
- * Lookup200: sugarfunge_market::pallet::Error<T>
1534
+ /**
1535
+ * Lookup200: sugarfunge_market::pallet::Error<T>
1536
1536
  **/
1537
1537
  SugarfungeMarketError: {
1538
1538
  _enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
1539
1539
  },
1540
- /**
1541
- * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1540
+ /**
1541
+ * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1542
1542
  **/
1543
1543
  FunctionlandFulaManifest: {
1544
1544
  storage: 'Vec<AccountId32>',
1545
1545
  replicationFactor: 'u16',
1546
1546
  manifestData: 'FunctionlandFulaManifestData'
1547
1547
  },
1548
- /**
1549
- * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1548
+ /**
1549
+ * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1550
1550
  **/
1551
1551
  FunctionlandFulaManifestData: {
1552
1552
  uploader: 'AccountId32',
1553
1553
  manifestMetadata: 'Bytes'
1554
1554
  },
1555
- /**
1556
- * Lookup205: functionland_fula::ManifestStorageData
1555
+ /**
1556
+ * Lookup205: functionland_fula::ManifestStorageData
1557
1557
  **/
1558
1558
  FunctionlandFulaManifestStorageData: {
1559
1559
  activeCycles: 'u16',
1560
1560
  missedCycles: 'u16',
1561
1561
  activeDays: 'i32'
1562
1562
  },
1563
- /**
1564
- * Lookup206: functionland_fula::pallet::Error<T>
1563
+ /**
1564
+ * Lookup206: functionland_fula::pallet::Error<T>
1565
1565
  **/
1566
1566
  FunctionlandFulaError: {
1567
1567
  _enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored']
1568
1568
  },
1569
- /**
1570
- * Lookup207: fula_pool::Pool<T>
1569
+ /**
1570
+ * Lookup207: fula_pool::Pool<T>
1571
1571
  **/
1572
1572
  FulaPoolPool: {
1573
1573
  name: 'Bytes',
@@ -1576,30 +1576,30 @@ var _default = {
1576
1576
  participants: 'Vec<AccountId32>',
1577
1577
  requestNumber: 'u8'
1578
1578
  },
1579
- /**
1580
- * Lookup210: fula_pool::PoolRequest<T>
1579
+ /**
1580
+ * Lookup210: fula_pool::PoolRequest<T>
1581
1581
  **/
1582
1582
  FulaPoolPoolRequest: {
1583
1583
  voted: 'Vec<AccountId32>',
1584
1584
  positiveVotes: 'u16',
1585
1585
  peerId: 'Bytes'
1586
1586
  },
1587
- /**
1588
- * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1587
+ /**
1588
+ * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1589
1589
  **/
1590
1590
  FulaPoolUser: {
1591
1591
  poolId: 'Option<u32>',
1592
1592
  requestPoolId: 'Option<u32>',
1593
1593
  peerId: 'Bytes'
1594
1594
  },
1595
- /**
1596
- * Lookup212: fula_pool::pallet::Error<T>
1595
+ /**
1596
+ * Lookup212: fula_pool::pallet::Error<T>
1597
1597
  **/
1598
1598
  FulaPoolError: {
1599
1599
  _enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
1600
1600
  },
1601
- /**
1602
- * Lookup214: sp_runtime::MultiSignature
1601
+ /**
1602
+ * Lookup214: sp_runtime::MultiSignature
1603
1603
  **/
1604
1604
  SpRuntimeMultiSignature: {
1605
1605
  _enum: {
@@ -1608,44 +1608,44 @@ var _default = {
1608
1608
  Ecdsa: 'SpCoreEcdsaSignature'
1609
1609
  }
1610
1610
  },
1611
- /**
1612
- * Lookup215: sp_core::sr25519::Signature
1611
+ /**
1612
+ * Lookup215: sp_core::sr25519::Signature
1613
1613
  **/
1614
1614
  SpCoreSr25519Signature: '[u8;64]',
1615
- /**
1616
- * Lookup216: sp_core::ecdsa::Signature
1615
+ /**
1616
+ * Lookup216: sp_core::ecdsa::Signature
1617
1617
  **/
1618
1618
  SpCoreEcdsaSignature: '[u8;65]',
1619
- /**
1620
- * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1619
+ /**
1620
+ * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1621
1621
  **/
1622
1622
  FrameSystemExtensionsCheckNonZeroSender: 'Null',
1623
- /**
1624
- * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1623
+ /**
1624
+ * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1625
1625
  **/
1626
1626
  FrameSystemExtensionsCheckSpecVersion: 'Null',
1627
- /**
1628
- * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1627
+ /**
1628
+ * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1629
1629
  **/
1630
1630
  FrameSystemExtensionsCheckTxVersion: 'Null',
1631
- /**
1632
- * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1631
+ /**
1632
+ * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1633
1633
  **/
1634
1634
  FrameSystemExtensionsCheckGenesis: 'Null',
1635
- /**
1636
- * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1635
+ /**
1636
+ * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1637
1637
  **/
1638
1638
  FrameSystemExtensionsCheckNonce: 'Compact<u32>',
1639
- /**
1640
- * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1639
+ /**
1640
+ * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1641
1641
  **/
1642
1642
  FrameSystemExtensionsCheckWeight: 'Null',
1643
- /**
1644
- * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1643
+ /**
1644
+ * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1645
1645
  **/
1646
1646
  PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
1647
- /**
1648
- * Lookup228: sugarfunge_runtime::Runtime
1647
+ /**
1648
+ * Lookup228: sugarfunge_runtime::Runtime
1649
1649
  **/
1650
1650
  SugarfungeRuntimeRuntime: 'Null'
1651
1651
  };