@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
@@ -4,8 +4,8 @@
4
4
  /* eslint-disable sort-keys */
5
5
 
6
6
  export default {
7
- /**
8
- * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
7
+ /**
8
+ * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
9
9
  **/
10
10
  FrameSystemAccountInfo: {
11
11
  nonce: 'u32',
@@ -14,8 +14,8 @@ export default {
14
14
  sufficients: 'u32',
15
15
  data: 'PalletBalancesAccountData'
16
16
  },
17
- /**
18
- * Lookup5: pallet_balances::AccountData<Balance>
17
+ /**
18
+ * Lookup5: pallet_balances::AccountData<Balance>
19
19
  **/
20
20
  PalletBalancesAccountData: {
21
21
  free: 'u128',
@@ -23,22 +23,22 @@ export default {
23
23
  miscFrozen: 'u128',
24
24
  feeFrozen: 'u128'
25
25
  },
26
- /**
27
- * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
26
+ /**
27
+ * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
28
28
  **/
29
29
  FrameSupportDispatchPerDispatchClassWeight: {
30
30
  normal: 'Weight',
31
31
  operational: 'Weight',
32
32
  mandatory: 'Weight'
33
33
  },
34
- /**
35
- * Lookup12: sp_runtime::generic::digest::Digest
34
+ /**
35
+ * Lookup12: sp_runtime::generic::digest::Digest
36
36
  **/
37
37
  SpRuntimeDigest: {
38
38
  logs: 'Vec<SpRuntimeDigestDigestItem>'
39
39
  },
40
- /**
41
- * Lookup14: sp_runtime::generic::digest::DigestItem
40
+ /**
41
+ * Lookup14: sp_runtime::generic::digest::DigestItem
42
42
  **/
43
43
  SpRuntimeDigestDigestItem: {
44
44
  _enum: {
@@ -53,16 +53,16 @@ export default {
53
53
  RuntimeEnvironmentUpdated: 'Null'
54
54
  }
55
55
  },
56
- /**
57
- * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
56
+ /**
57
+ * Lookup17: frame_system::EventRecord<sugarfunge_runtime::RuntimeEvent, primitive_types::H256>
58
58
  **/
59
59
  FrameSystemEventRecord: {
60
60
  phase: 'FrameSystemPhase',
61
61
  event: 'Event',
62
62
  topics: 'Vec<H256>'
63
63
  },
64
- /**
65
- * Lookup19: frame_system::pallet::Event<T>
64
+ /**
65
+ * Lookup19: frame_system::pallet::Event<T>
66
66
  **/
67
67
  FrameSystemEvent: {
68
68
  _enum: {
@@ -89,28 +89,28 @@ export default {
89
89
  }
90
90
  }
91
91
  },
92
- /**
93
- * Lookup20: frame_support::dispatch::DispatchInfo
92
+ /**
93
+ * Lookup20: frame_support::dispatch::DispatchInfo
94
94
  **/
95
95
  FrameSupportDispatchDispatchInfo: {
96
96
  weight: 'Weight',
97
97
  class: 'FrameSupportDispatchDispatchClass',
98
98
  paysFee: 'FrameSupportDispatchPays'
99
99
  },
100
- /**
101
- * Lookup21: frame_support::dispatch::DispatchClass
100
+ /**
101
+ * Lookup21: frame_support::dispatch::DispatchClass
102
102
  **/
103
103
  FrameSupportDispatchDispatchClass: {
104
104
  _enum: ['Normal', 'Operational', 'Mandatory']
105
105
  },
106
- /**
107
- * Lookup22: frame_support::dispatch::Pays
106
+ /**
107
+ * Lookup22: frame_support::dispatch::Pays
108
108
  **/
109
109
  FrameSupportDispatchPays: {
110
110
  _enum: ['Yes', 'No']
111
111
  },
112
- /**
113
- * Lookup23: sp_runtime::DispatchError
112
+ /**
113
+ * Lookup23: sp_runtime::DispatchError
114
114
  **/
115
115
  SpRuntimeDispatchError: {
116
116
  _enum: {
@@ -126,33 +126,33 @@ export default {
126
126
  Transactional: 'SpRuntimeTransactionalError'
127
127
  }
128
128
  },
129
- /**
130
- * Lookup24: sp_runtime::ModuleError
129
+ /**
130
+ * Lookup24: sp_runtime::ModuleError
131
131
  **/
132
132
  SpRuntimeModuleError: {
133
133
  index: 'u8',
134
134
  error: '[u8;4]'
135
135
  },
136
- /**
137
- * Lookup25: sp_runtime::TokenError
136
+ /**
137
+ * Lookup25: sp_runtime::TokenError
138
138
  **/
139
139
  SpRuntimeTokenError: {
140
140
  _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
141
141
  },
142
- /**
143
- * Lookup26: sp_runtime::ArithmeticError
142
+ /**
143
+ * Lookup26: sp_runtime::ArithmeticError
144
144
  **/
145
145
  SpRuntimeArithmeticError: {
146
146
  _enum: ['Underflow', 'Overflow', 'DivisionByZero']
147
147
  },
148
- /**
149
- * Lookup27: sp_runtime::TransactionalError
148
+ /**
149
+ * Lookup27: sp_runtime::TransactionalError
150
150
  **/
151
151
  SpRuntimeTransactionalError: {
152
152
  _enum: ['LimitReached', 'NoLayer']
153
153
  },
154
- /**
155
- * Lookup28: pallet_grandpa::pallet::Event
154
+ /**
155
+ * Lookup28: pallet_grandpa::pallet::Event
156
156
  **/
157
157
  PalletGrandpaEvent: {
158
158
  _enum: {
@@ -163,16 +163,16 @@ export default {
163
163
  Resumed: 'Null'
164
164
  }
165
165
  },
166
- /**
167
- * Lookup31: sp_finality_grandpa::app::Public
166
+ /**
167
+ * Lookup31: sp_finality_grandpa::app::Public
168
168
  **/
169
169
  SpFinalityGrandpaAppPublic: 'SpCoreEd25519Public',
170
- /**
171
- * Lookup32: sp_core::ed25519::Public
170
+ /**
171
+ * Lookup32: sp_core::ed25519::Public
172
172
  **/
173
173
  SpCoreEd25519Public: '[u8;32]',
174
- /**
175
- * Lookup33: pallet_balances::pallet::Event<T, I>
174
+ /**
175
+ * Lookup33: pallet_balances::pallet::Event<T, I>
176
176
  **/
177
177
  PalletBalancesEvent: {
178
178
  _enum: {
@@ -222,14 +222,14 @@ export default {
222
222
  }
223
223
  }
224
224
  },
225
- /**
226
- * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
225
+ /**
226
+ * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
227
227
  **/
228
228
  FrameSupportTokensMiscBalanceStatus: {
229
229
  _enum: ['Free', 'Reserved']
230
230
  },
231
- /**
232
- * Lookup35: pallet_transaction_payment::pallet::Event<T>
231
+ /**
232
+ * Lookup35: pallet_transaction_payment::pallet::Event<T>
233
233
  **/
234
234
  PalletTransactionPaymentEvent: {
235
235
  _enum: {
@@ -240,8 +240,8 @@ export default {
240
240
  }
241
241
  }
242
242
  },
243
- /**
244
- * Lookup36: pallet_sudo::pallet::Event<T>
243
+ /**
244
+ * Lookup36: pallet_sudo::pallet::Event<T>
245
245
  **/
246
246
  PalletSudoEvent: {
247
247
  _enum: {
@@ -256,8 +256,8 @@ export default {
256
256
  }
257
257
  }
258
258
  },
259
- /**
260
- * Lookup40: pallet_scheduler::pallet::Event<T>
259
+ /**
260
+ * Lookup40: pallet_scheduler::pallet::Event<T>
261
261
  **/
262
262
  PalletSchedulerEvent: {
263
263
  _enum: {
@@ -281,14 +281,14 @@ export default {
281
281
  }
282
282
  }
283
283
  },
284
- /**
285
- * Lookup43: frame_support::traits::schedule::LookupError
284
+ /**
285
+ * Lookup43: frame_support::traits::schedule::LookupError
286
286
  **/
287
287
  FrameSupportScheduleLookupError: {
288
288
  _enum: ['Unknown', 'BadFormat']
289
289
  },
290
- /**
291
- * Lookup44: pallet_collective::pallet::Event<T, I>
290
+ /**
291
+ * Lookup44: pallet_collective::pallet::Event<T, I>
292
292
  **/
293
293
  PalletCollectiveEvent: {
294
294
  _enum: {
@@ -326,8 +326,8 @@ export default {
326
326
  }
327
327
  }
328
328
  },
329
- /**
330
- * Lookup46: sugarfunge_validator_set::pallet::Event<T>
329
+ /**
330
+ * Lookup46: sugarfunge_validator_set::pallet::Event<T>
331
331
  **/
332
332
  SugarfungeValidatorSetEvent: {
333
333
  _enum: {
@@ -335,8 +335,8 @@ export default {
335
335
  ValidatorRemovalInitiated: 'AccountId32'
336
336
  }
337
337
  },
338
- /**
339
- * Lookup47: pallet_session::pallet::Event
338
+ /**
339
+ * Lookup47: pallet_session::pallet::Event
340
340
  **/
341
341
  PalletSessionEvent: {
342
342
  _enum: {
@@ -345,8 +345,8 @@ export default {
345
345
  }
346
346
  }
347
347
  },
348
- /**
349
- * Lookup48: sugarfunge_asset::pallet::Event<T>
348
+ /**
349
+ * Lookup48: sugarfunge_asset::pallet::Event<T>
350
350
  **/
351
351
  SugarfungeAssetEvent: {
352
352
  _enum: {
@@ -417,16 +417,16 @@ export default {
417
417
  }
418
418
  }
419
419
  },
420
- /**
421
- * Lookup51: sugarfunge_dao::pallet::Event<T>
420
+ /**
421
+ * Lookup51: sugarfunge_dao::pallet::Event<T>
422
422
  **/
423
423
  SugarfungeDaoEvent: {
424
424
  _enum: {
425
425
  SomethingStored: '(u32,AccountId32)'
426
426
  }
427
427
  },
428
- /**
429
- * Lookup52: sugarfunge_bundle::pallet::Event<T>
428
+ /**
429
+ * Lookup52: sugarfunge_bundle::pallet::Event<T>
430
430
  **/
431
431
  SugarfungeBundleEvent: {
432
432
  _enum: {
@@ -452,8 +452,8 @@ export default {
452
452
  }
453
453
  }
454
454
  },
455
- /**
456
- * Lookup53: sugarfunge_bag::pallet::Event<T>
455
+ /**
456
+ * Lookup53: sugarfunge_bag::pallet::Event<T>
457
457
  **/
458
458
  SugarfungeBagEvent: {
459
459
  _enum: {
@@ -479,16 +479,16 @@ export default {
479
479
  }
480
480
  }
481
481
  },
482
- /**
483
- * Lookup55: sugarfunge_exgine::pallet::Event<T>
482
+ /**
483
+ * Lookup55: sugarfunge_exgine::pallet::Event<T>
484
484
  **/
485
485
  SugarfungeExgineEvent: {
486
486
  _enum: {
487
487
  SomethingStored: '(u32,AccountId32)'
488
488
  }
489
489
  },
490
- /**
491
- * Lookup56: sugarfunge_market::pallet::Event<T>
490
+ /**
491
+ * Lookup56: sugarfunge_market::pallet::Event<T>
492
492
  **/
493
493
  SugarfungeMarketEvent: {
494
494
  _enum: {
@@ -535,15 +535,15 @@ export default {
535
535
  }
536
536
  }
537
537
  },
538
- /**
539
- * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
538
+ /**
539
+ * Lookup60: sugarfunge_market::RateBalance<sp_core::crypto::AccountId32, ClassId, AssetId>
540
540
  **/
541
541
  SugarfungeMarketRateBalance: {
542
542
  rate: 'SugarfungeMarketAssetRate',
543
543
  balance: 'i128'
544
544
  },
545
- /**
546
- * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
545
+ /**
546
+ * Lookup61: sugarfunge_market::AssetRate<sp_core::crypto::AccountId32, ClassId, AssetId>
547
547
  **/
548
548
  SugarfungeMarketAssetRate: {
549
549
  classId: 'u64',
@@ -552,8 +552,8 @@ export default {
552
552
  from: 'SugarfungeMarketRateAccount',
553
553
  to: 'SugarfungeMarketRateAccount'
554
554
  },
555
- /**
556
- * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
555
+ /**
556
+ * Lookup62: sugarfunge_market::RateAction<ClassId, AssetId>
557
557
  **/
558
558
  SugarfungeMarketRateAction: {
559
559
  _enum: {
@@ -564,20 +564,20 @@ export default {
564
564
  Has: '(SugarfungeMarketAmountOp,i128)'
565
565
  }
566
566
  },
567
- /**
568
- * Lookup64: sugarfunge_market::AMM
567
+ /**
568
+ * Lookup64: sugarfunge_market::AMM
569
569
  **/
570
570
  SugarfungeMarketAmm: {
571
571
  _enum: ['Constant']
572
572
  },
573
- /**
574
- * Lookup65: sugarfunge_market::AmountOp
573
+ /**
574
+ * Lookup65: sugarfunge_market::AmountOp
575
575
  **/
576
576
  SugarfungeMarketAmountOp: {
577
577
  _enum: ['Equal', 'LessThan', 'LessEqualThan', 'GreaterThan', 'GreaterEqualThan']
578
578
  },
579
- /**
580
- * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
579
+ /**
580
+ * Lookup66: sugarfunge_market::RateAccount<sp_core::crypto::AccountId32>
581
581
  **/
582
582
  SugarfungeMarketRateAccount: {
583
583
  _enum: {
@@ -586,8 +586,8 @@ export default {
586
586
  Buyer: 'Null'
587
587
  }
588
588
  },
589
- /**
590
- * Lookup67: functionland_fula::pallet::Event<T>
589
+ /**
590
+ * Lookup67: functionland_fula::pallet::Event<T>
591
591
  **/
592
592
  FunctionlandFulaEvent: {
593
593
  _enum: {
@@ -624,8 +624,8 @@ export default {
624
624
  }
625
625
  }
626
626
  },
627
- /**
628
- * Lookup70: fula_pool::pallet::Event<T>
627
+ /**
628
+ * Lookup70: fula_pool::pallet::Event<T>
629
629
  **/
630
630
  FulaPoolEvent: {
631
631
  _enum: {
@@ -658,8 +658,8 @@ export default {
658
658
  }
659
659
  }
660
660
  },
661
- /**
662
- * Lookup71: frame_system::Phase
661
+ /**
662
+ * Lookup71: frame_system::Phase
663
663
  **/
664
664
  FrameSystemPhase: {
665
665
  _enum: {
@@ -668,15 +668,15 @@ export default {
668
668
  Initialization: 'Null'
669
669
  }
670
670
  },
671
- /**
672
- * Lookup74: frame_system::LastRuntimeUpgradeInfo
671
+ /**
672
+ * Lookup74: frame_system::LastRuntimeUpgradeInfo
673
673
  **/
674
674
  FrameSystemLastRuntimeUpgradeInfo: {
675
675
  specVersion: 'Compact<u32>',
676
676
  specName: 'Text'
677
677
  },
678
- /**
679
- * Lookup77: frame_system::pallet::Call<T>
678
+ /**
679
+ * Lookup77: frame_system::pallet::Call<T>
680
680
  **/
681
681
  FrameSystemCall: {
682
682
  _enum: {
@@ -713,24 +713,24 @@ export default {
713
713
  }
714
714
  }
715
715
  },
716
- /**
717
- * Lookup82: frame_system::limits::BlockWeights
716
+ /**
717
+ * Lookup82: frame_system::limits::BlockWeights
718
718
  **/
719
719
  FrameSystemLimitsBlockWeights: {
720
720
  baseBlock: 'Weight',
721
721
  maxBlock: 'Weight',
722
722
  perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
723
723
  },
724
- /**
725
- * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
724
+ /**
725
+ * Lookup83: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
726
726
  **/
727
727
  FrameSupportDispatchPerDispatchClassWeightsPerClass: {
728
728
  normal: 'FrameSystemLimitsWeightsPerClass',
729
729
  operational: 'FrameSystemLimitsWeightsPerClass',
730
730
  mandatory: 'FrameSystemLimitsWeightsPerClass'
731
731
  },
732
- /**
733
- * Lookup84: frame_system::limits::WeightsPerClass
732
+ /**
733
+ * Lookup84: frame_system::limits::WeightsPerClass
734
734
  **/
735
735
  FrameSystemLimitsWeightsPerClass: {
736
736
  baseExtrinsic: 'Weight',
@@ -738,29 +738,29 @@ export default {
738
738
  maxTotal: 'Option<Weight>',
739
739
  reserved: 'Option<Weight>'
740
740
  },
741
- /**
742
- * Lookup86: frame_system::limits::BlockLength
741
+ /**
742
+ * Lookup86: frame_system::limits::BlockLength
743
743
  **/
744
744
  FrameSystemLimitsBlockLength: {
745
745
  max: 'FrameSupportDispatchPerDispatchClassU32'
746
746
  },
747
- /**
748
- * Lookup87: frame_support::dispatch::PerDispatchClass<T>
747
+ /**
748
+ * Lookup87: frame_support::dispatch::PerDispatchClass<T>
749
749
  **/
750
750
  FrameSupportDispatchPerDispatchClassU32: {
751
751
  normal: 'u32',
752
752
  operational: 'u32',
753
753
  mandatory: 'u32'
754
754
  },
755
- /**
756
- * Lookup88: sp_weights::RuntimeDbWeight
755
+ /**
756
+ * Lookup88: sp_weights::RuntimeDbWeight
757
757
  **/
758
758
  SpWeightsRuntimeDbWeight: {
759
759
  read: 'u64',
760
760
  write: 'u64'
761
761
  },
762
- /**
763
- * Lookup89: sp_version::RuntimeVersion
762
+ /**
763
+ * Lookup89: sp_version::RuntimeVersion
764
764
  **/
765
765
  SpVersionRuntimeVersion: {
766
766
  specName: 'Text',
@@ -772,14 +772,14 @@ export default {
772
772
  transactionVersion: 'u32',
773
773
  stateVersion: 'u8'
774
774
  },
775
- /**
776
- * Lookup94: frame_system::pallet::Error<T>
775
+ /**
776
+ * Lookup94: frame_system::pallet::Error<T>
777
777
  **/
778
778
  FrameSystemError: {
779
779
  _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
780
780
  },
781
- /**
782
- * Lookup96: pallet_timestamp::pallet::Call<T>
781
+ /**
782
+ * Lookup96: pallet_timestamp::pallet::Call<T>
783
783
  **/
784
784
  PalletTimestampCall: {
785
785
  _enum: {
@@ -788,8 +788,8 @@ export default {
788
788
  }
789
789
  }
790
790
  },
791
- /**
792
- * Lookup98: pallet_grandpa::StoredState<N>
791
+ /**
792
+ * Lookup98: pallet_grandpa::StoredState<N>
793
793
  **/
794
794
  PalletGrandpaStoredState: {
795
795
  _enum: {
@@ -805,8 +805,8 @@ export default {
805
805
  }
806
806
  }
807
807
  },
808
- /**
809
- * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
808
+ /**
809
+ * Lookup99: pallet_grandpa::StoredPendingChange<N, Limit>
810
810
  **/
811
811
  PalletGrandpaStoredPendingChange: {
812
812
  scheduledAt: 'u32',
@@ -814,8 +814,8 @@ export default {
814
814
  nextAuthorities: 'Vec<(SpFinalityGrandpaAppPublic,u64)>',
815
815
  forced: 'Option<u32>'
816
816
  },
817
- /**
818
- * Lookup102: pallet_grandpa::pallet::Call<T>
817
+ /**
818
+ * Lookup102: pallet_grandpa::pallet::Call<T>
819
819
  **/
820
820
  PalletGrandpaCall: {
821
821
  _enum: {
@@ -833,15 +833,15 @@ export default {
833
833
  }
834
834
  }
835
835
  },
836
- /**
837
- * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
836
+ /**
837
+ * Lookup103: sp_finality_grandpa::EquivocationProof<primitive_types::H256, N>
838
838
  **/
839
839
  SpFinalityGrandpaEquivocationProof: {
840
840
  setId: 'u64',
841
841
  equivocation: 'SpFinalityGrandpaEquivocation'
842
842
  },
843
- /**
844
- * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
843
+ /**
844
+ * Lookup104: sp_finality_grandpa::Equivocation<primitive_types::H256, N>
845
845
  **/
846
846
  SpFinalityGrandpaEquivocation: {
847
847
  _enum: {
@@ -849,8 +849,8 @@ export default {
849
849
  Precommit: 'FinalityGrandpaEquivocationPrecommit'
850
850
  }
851
851
  },
852
- /**
853
- * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
852
+ /**
853
+ * Lookup105: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
854
854
  **/
855
855
  FinalityGrandpaEquivocationPrevote: {
856
856
  roundNumber: 'u64',
@@ -858,23 +858,23 @@ export default {
858
858
  first: '(FinalityGrandpaPrevote,SpFinalityGrandpaAppSignature)',
859
859
  second: '(FinalityGrandpaPrevote,SpFinalityGrandpaAppSignature)'
860
860
  },
861
- /**
862
- * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
861
+ /**
862
+ * Lookup106: finality_grandpa::Prevote<primitive_types::H256, N>
863
863
  **/
864
864
  FinalityGrandpaPrevote: {
865
865
  targetHash: 'H256',
866
866
  targetNumber: 'u32'
867
867
  },
868
- /**
869
- * Lookup107: sp_finality_grandpa::app::Signature
868
+ /**
869
+ * Lookup107: sp_finality_grandpa::app::Signature
870
870
  **/
871
871
  SpFinalityGrandpaAppSignature: 'SpCoreEd25519Signature',
872
- /**
873
- * Lookup108: sp_core::ed25519::Signature
872
+ /**
873
+ * Lookup108: sp_core::ed25519::Signature
874
874
  **/
875
875
  SpCoreEd25519Signature: '[u8;64]',
876
- /**
877
- * Lookup111: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
876
+ /**
877
+ * Lookup111: finality_grandpa::Equivocation<sp_finality_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_finality_grandpa::app::Signature>
878
878
  **/
879
879
  FinalityGrandpaEquivocationPrecommit: {
880
880
  roundNumber: 'u64',
@@ -882,52 +882,52 @@ export default {
882
882
  first: '(FinalityGrandpaPrecommit,SpFinalityGrandpaAppSignature)',
883
883
  second: '(FinalityGrandpaPrecommit,SpFinalityGrandpaAppSignature)'
884
884
  },
885
- /**
886
- * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
885
+ /**
886
+ * Lookup112: finality_grandpa::Precommit<primitive_types::H256, N>
887
887
  **/
888
888
  FinalityGrandpaPrecommit: {
889
889
  targetHash: 'H256',
890
890
  targetNumber: 'u32'
891
891
  },
892
- /**
893
- * Lookup114: sp_core::Void
892
+ /**
893
+ * Lookup114: sp_core::Void
894
894
  **/
895
895
  SpCoreVoid: 'Null',
896
- /**
897
- * Lookup115: pallet_grandpa::pallet::Error<T>
896
+ /**
897
+ * Lookup115: pallet_grandpa::pallet::Error<T>
898
898
  **/
899
899
  PalletGrandpaError: {
900
900
  _enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
901
901
  },
902
- /**
903
- * Lookup117: pallet_balances::BalanceLock<Balance>
902
+ /**
903
+ * Lookup117: pallet_balances::BalanceLock<Balance>
904
904
  **/
905
905
  PalletBalancesBalanceLock: {
906
906
  id: '[u8;8]',
907
907
  amount: 'u128',
908
908
  reasons: 'PalletBalancesReasons'
909
909
  },
910
- /**
911
- * Lookup118: pallet_balances::Reasons
910
+ /**
911
+ * Lookup118: pallet_balances::Reasons
912
912
  **/
913
913
  PalletBalancesReasons: {
914
914
  _enum: ['Fee', 'Misc', 'All']
915
915
  },
916
- /**
917
- * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
916
+ /**
917
+ * Lookup121: pallet_balances::ReserveData<ReserveIdentifier, Balance>
918
918
  **/
919
919
  PalletBalancesReserveData: {
920
920
  id: '[u8;8]',
921
921
  amount: 'u128'
922
922
  },
923
- /**
924
- * Lookup123: pallet_balances::Releases
923
+ /**
924
+ * Lookup123: pallet_balances::Releases
925
925
  **/
926
926
  PalletBalancesReleases: {
927
927
  _enum: ['V1_0_0', 'V2_0_0']
928
928
  },
929
- /**
930
- * Lookup124: pallet_balances::pallet::Call<T, I>
929
+ /**
930
+ * Lookup124: pallet_balances::pallet::Call<T, I>
931
931
  **/
932
932
  PalletBalancesCall: {
933
933
  _enum: {
@@ -959,20 +959,20 @@ export default {
959
959
  }
960
960
  }
961
961
  },
962
- /**
963
- * Lookup129: pallet_balances::pallet::Error<T, I>
962
+ /**
963
+ * Lookup129: pallet_balances::pallet::Error<T, I>
964
964
  **/
965
965
  PalletBalancesError: {
966
966
  _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
967
967
  },
968
- /**
969
- * Lookup131: pallet_transaction_payment::Releases
968
+ /**
969
+ * Lookup131: pallet_transaction_payment::Releases
970
970
  **/
971
971
  PalletTransactionPaymentReleases: {
972
972
  _enum: ['V1Ancient', 'V2']
973
973
  },
974
- /**
975
- * Lookup132: pallet_sudo::pallet::Call<T>
974
+ /**
975
+ * Lookup132: pallet_sudo::pallet::Call<T>
976
976
  **/
977
977
  PalletSudoCall: {
978
978
  _enum: {
@@ -995,8 +995,8 @@ export default {
995
995
  }
996
996
  }
997
997
  },
998
- /**
999
- * Lookup134: pallet_scheduler::pallet::Call<T>
998
+ /**
999
+ * Lookup134: pallet_scheduler::pallet::Call<T>
1000
1000
  **/
1001
1001
  PalletSchedulerCall: {
1002
1002
  _enum: {
@@ -1035,8 +1035,8 @@ export default {
1035
1035
  }
1036
1036
  }
1037
1037
  },
1038
- /**
1039
- * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1038
+ /**
1039
+ * Lookup136: frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>
1040
1040
  **/
1041
1041
  FrameSupportScheduleMaybeHashed: {
1042
1042
  _enum: {
@@ -1044,8 +1044,8 @@ export default {
1044
1044
  Hash: 'H256'
1045
1045
  }
1046
1046
  },
1047
- /**
1048
- * Lookup137: pallet_collective::pallet::Call<T, I>
1047
+ /**
1048
+ * Lookup137: pallet_collective::pallet::Call<T, I>
1049
1049
  **/
1050
1050
  PalletCollectiveCall: {
1051
1051
  _enum: {
@@ -1079,8 +1079,8 @@ export default {
1079
1079
  }
1080
1080
  }
1081
1081
  },
1082
- /**
1083
- * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1082
+ /**
1083
+ * Lookup139: sugarfunge_validator_set::pallet::Call<T>
1084
1084
  **/
1085
1085
  SugarfungeValidatorSetCall: {
1086
1086
  _enum: {
@@ -1095,8 +1095,8 @@ export default {
1095
1095
  }
1096
1096
  }
1097
1097
  },
1098
- /**
1099
- * Lookup140: pallet_session::pallet::Call<T>
1098
+ /**
1099
+ * Lookup140: pallet_session::pallet::Call<T>
1100
1100
  **/
1101
1101
  PalletSessionCall: {
1102
1102
  _enum: {
@@ -1110,23 +1110,23 @@ export default {
1110
1110
  purge_keys: 'Null'
1111
1111
  }
1112
1112
  },
1113
- /**
1114
- * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1113
+ /**
1114
+ * Lookup141: sugarfunge_runtime::opaque::SessionKeys
1115
1115
  **/
1116
1116
  SugarfungeRuntimeOpaqueSessionKeys: {
1117
1117
  aura: 'SpConsensusAuraSr25519AppSr25519Public',
1118
1118
  grandpa: 'SpFinalityGrandpaAppPublic'
1119
1119
  },
1120
- /**
1121
- * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1120
+ /**
1121
+ * Lookup142: sp_consensus_aura::sr25519::app_sr25519::Public
1122
1122
  **/
1123
1123
  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1124
- /**
1125
- * Lookup143: sp_core::sr25519::Public
1124
+ /**
1125
+ * Lookup143: sp_core::sr25519::Public
1126
1126
  **/
1127
1127
  SpCoreSr25519Public: '[u8;32]',
1128
- /**
1129
- * Lookup144: sugarfunge_asset::pallet::Call<T>
1128
+ /**
1129
+ * Lookup144: sugarfunge_asset::pallet::Call<T>
1130
1130
  **/
1131
1131
  SugarfungeAssetCall: {
1132
1132
  _enum: {
@@ -1189,8 +1189,8 @@ export default {
1189
1189
  }
1190
1190
  }
1191
1191
  },
1192
- /**
1193
- * Lookup147: sugarfunge_dao::pallet::Call<T>
1192
+ /**
1193
+ * Lookup147: sugarfunge_dao::pallet::Call<T>
1194
1194
  **/
1195
1195
  SugarfungeDaoCall: {
1196
1196
  _enum: {
@@ -1200,8 +1200,8 @@ export default {
1200
1200
  cause_error: 'Null'
1201
1201
  }
1202
1202
  },
1203
- /**
1204
- * Lookup148: sugarfunge_bundle::pallet::Call<T>
1203
+ /**
1204
+ * Lookup148: sugarfunge_bundle::pallet::Call<T>
1205
1205
  **/
1206
1206
  SugarfungeBundleCall: {
1207
1207
  _enum: {
@@ -1226,8 +1226,8 @@ export default {
1226
1226
  }
1227
1227
  }
1228
1228
  },
1229
- /**
1230
- * Lookup156: sugarfunge_bag::pallet::Call<T>
1229
+ /**
1230
+ * Lookup156: sugarfunge_bag::pallet::Call<T>
1231
1231
  **/
1232
1232
  SugarfungeBagCall: {
1233
1233
  _enum: {
@@ -1252,8 +1252,8 @@ export default {
1252
1252
  }
1253
1253
  }
1254
1254
  },
1255
- /**
1256
- * Lookup157: sugarfunge_exgine::pallet::Call<T>
1255
+ /**
1256
+ * Lookup157: sugarfunge_exgine::pallet::Call<T>
1257
1257
  **/
1258
1258
  SugarfungeExgineCall: {
1259
1259
  _enum: {
@@ -1263,8 +1263,8 @@ export default {
1263
1263
  cause_error: 'Null'
1264
1264
  }
1265
1265
  },
1266
- /**
1267
- * Lookup158: sugarfunge_market::pallet::Call<T>
1266
+ /**
1267
+ * Lookup158: sugarfunge_market::pallet::Call<T>
1268
1268
  **/
1269
1269
  SugarfungeMarketCall: {
1270
1270
  _enum: {
@@ -1288,8 +1288,8 @@ export default {
1288
1288
  }
1289
1289
  }
1290
1290
  },
1291
- /**
1292
- * Lookup161: functionland_fula::pallet::Call<T>
1291
+ /**
1292
+ * Lookup161: functionland_fula::pallet::Call<T>
1293
1293
  **/
1294
1294
  FunctionlandFulaCall: {
1295
1295
  _enum: {
@@ -1327,8 +1327,8 @@ export default {
1327
1327
  }
1328
1328
  }
1329
1329
  },
1330
- /**
1331
- * Lookup164: fula_pool::pallet::Call<T>
1330
+ /**
1331
+ * Lookup164: fula_pool::pallet::Call<T>
1332
1332
  **/
1333
1333
  FulaPoolCall: {
1334
1334
  _enum: {
@@ -1353,14 +1353,14 @@ export default {
1353
1353
  }
1354
1354
  }
1355
1355
  },
1356
- /**
1357
- * Lookup166: pallet_sudo::pallet::Error<T>
1356
+ /**
1357
+ * Lookup166: pallet_sudo::pallet::Error<T>
1358
1358
  **/
1359
1359
  PalletSudoError: {
1360
1360
  _enum: ['RequireSudo']
1361
1361
  },
1362
- /**
1363
- * Lookup169: pallet_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1362
+ /**
1363
+ * Lookup169: pallet_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<sugarfunge_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, sugarfunge_runtime::OriginCaller, sp_core::crypto::AccountId32>
1364
1364
  **/
1365
1365
  PalletSchedulerScheduledV3: {
1366
1366
  maybeId: 'Option<Bytes>',
@@ -1369,8 +1369,8 @@ export default {
1369
1369
  maybePeriodic: 'Option<(u32,u32)>',
1370
1370
  origin: 'SugarfungeRuntimeOriginCaller'
1371
1371
  },
1372
- /**
1373
- * Lookup170: sugarfunge_runtime::OriginCaller
1372
+ /**
1373
+ * Lookup170: sugarfunge_runtime::OriginCaller
1374
1374
  **/
1375
1375
  SugarfungeRuntimeOriginCaller: {
1376
1376
  _enum: {
@@ -1386,8 +1386,8 @@ export default {
1386
1386
  Council: 'PalletCollectiveRawOrigin'
1387
1387
  }
1388
1388
  },
1389
- /**
1390
- * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1389
+ /**
1390
+ * Lookup171: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
1391
1391
  **/
1392
1392
  FrameSupportDispatchRawOrigin: {
1393
1393
  _enum: {
@@ -1396,8 +1396,8 @@ export default {
1396
1396
  None: 'Null'
1397
1397
  }
1398
1398
  },
1399
- /**
1400
- * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1399
+ /**
1400
+ * Lookup172: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
1401
1401
  **/
1402
1402
  PalletCollectiveRawOrigin: {
1403
1403
  _enum: {
@@ -1406,14 +1406,14 @@ export default {
1406
1406
  _Phantom: 'Null'
1407
1407
  }
1408
1408
  },
1409
- /**
1410
- * Lookup173: pallet_scheduler::pallet::Error<T>
1409
+ /**
1410
+ * Lookup173: pallet_scheduler::pallet::Error<T>
1411
1411
  **/
1412
1412
  PalletSchedulerError: {
1413
1413
  _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
1414
1414
  },
1415
- /**
1416
- * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1415
+ /**
1416
+ * Lookup175: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
1417
1417
  **/
1418
1418
  PalletCollectiveVotes: {
1419
1419
  index: 'u32',
@@ -1422,57 +1422,57 @@ export default {
1422
1422
  nays: 'Vec<AccountId32>',
1423
1423
  end: 'u32'
1424
1424
  },
1425
- /**
1426
- * Lookup176: pallet_collective::pallet::Error<T, I>
1425
+ /**
1426
+ * Lookup176: pallet_collective::pallet::Error<T, I>
1427
1427
  **/
1428
1428
  PalletCollectiveError: {
1429
1429
  _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']
1430
1430
  },
1431
- /**
1432
- * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1431
+ /**
1432
+ * Lookup178: sugarfunge_validator_set::pallet::Error<T>
1433
1433
  **/
1434
1434
  SugarfungeValidatorSetError: {
1435
1435
  _enum: ['TooLowValidatorCount', 'Duplicate', 'ValidatorNotApproved', 'BadOrigin']
1436
1436
  },
1437
- /**
1438
- * Lookup183: sp_core::crypto::KeyTypeId
1437
+ /**
1438
+ * Lookup183: sp_core::crypto::KeyTypeId
1439
1439
  **/
1440
1440
  SpCoreCryptoKeyTypeId: '[u8;4]',
1441
- /**
1442
- * Lookup184: pallet_session::pallet::Error<T>
1441
+ /**
1442
+ * Lookup184: pallet_session::pallet::Error<T>
1443
1443
  **/
1444
1444
  PalletSessionError: {
1445
1445
  _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1446
1446
  },
1447
- /**
1448
- * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1447
+ /**
1448
+ * Lookup185: sugarfunge_asset::Class<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1449
1449
  **/
1450
1450
  SugarfungeAssetClass: {
1451
1451
  owner: 'AccountId32',
1452
1452
  metadata: 'Bytes'
1453
1453
  },
1454
- /**
1455
- * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1454
+ /**
1455
+ * Lookup187: sugarfunge_asset::Asset<ClassId, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1456
1456
  **/
1457
1457
  SugarfungeAssetAsset: {
1458
1458
  classId: 'u64',
1459
1459
  creator: 'AccountId32',
1460
1460
  metadata: 'Bytes'
1461
1461
  },
1462
- /**
1463
- * Lookup189: sugarfunge_asset::pallet::Error<T>
1462
+ /**
1463
+ * Lookup189: sugarfunge_asset::pallet::Error<T>
1464
1464
  **/
1465
1465
  SugarfungeAssetError: {
1466
1466
  _enum: ['Unknown', 'InUse', 'InvalidAssetId', 'InsufficientBalance', 'NumOverflow', 'InvalidArrayLength', 'Overflow', 'InvalidClassId', 'NoPermission', 'ClassNotFound', 'AssetNotFound']
1467
1467
  },
1468
- /**
1469
- * Lookup190: sugarfunge_dao::pallet::Error<T>
1468
+ /**
1469
+ * Lookup190: sugarfunge_dao::pallet::Error<T>
1470
1470
  **/
1471
1471
  SugarfungeDaoError: {
1472
1472
  _enum: ['NoneValue', 'StorageOverflow']
1473
1473
  },
1474
- /**
1475
- * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1474
+ /**
1475
+ * Lookup191: sugarfunge_bundle::Bundle<ClassId, AssetId, BundleSchema, sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1476
1476
  **/
1477
1477
  SugarfungeBundleBundle: {
1478
1478
  creator: 'AccountId32',
@@ -1482,25 +1482,25 @@ export default {
1482
1482
  schema: '(Vec<u64>,Vec<Vec<u64>>,Vec<Vec<u128>>)',
1483
1483
  vault: 'AccountId32'
1484
1484
  },
1485
- /**
1486
- * Lookup192: frame_support::PalletId
1485
+ /**
1486
+ * Lookup192: frame_support::PalletId
1487
1487
  **/
1488
1488
  FrameSupportPalletId: '[u8;8]',
1489
- /**
1490
- * Lookup193: sugarfunge_bundle::pallet::Error<T>
1489
+ /**
1490
+ * Lookup193: sugarfunge_bundle::pallet::Error<T>
1491
1491
  **/
1492
1492
  SugarfungeBundleError: {
1493
1493
  _enum: ['InvalidBundleIdForBundle', 'BundleExists', 'BundleNotFound', 'NumOverflow', 'InvalidArrayLength', 'InsufficientBalance']
1494
1494
  },
1495
- /**
1496
- * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1495
+ /**
1496
+ * Lookup194: sugarfunge_bag::BagClass<sp_core::crypto::AccountId32, ClassId>
1497
1497
  **/
1498
1498
  SugarfungeBagBagClass: {
1499
1499
  operator: 'AccountId32',
1500
1500
  classId: 'u64'
1501
1501
  },
1502
- /**
1503
- * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1502
+ /**
1503
+ * Lookup195: sugarfunge_bag::Bag<sp_core::crypto::AccountId32, ClassId, AssetId>
1504
1504
  **/
1505
1505
  SugarfungeBagBag: {
1506
1506
  operator: 'AccountId32',
@@ -1508,62 +1508,62 @@ export default {
1508
1508
  assetId: 'u64',
1509
1509
  totalShares: 'u128'
1510
1510
  },
1511
- /**
1512
- * Lookup196: sugarfunge_bag::pallet::Error<T>
1511
+ /**
1512
+ * Lookup196: sugarfunge_bag::pallet::Error<T>
1513
1513
  **/
1514
1514
  SugarfungeBagError: {
1515
1515
  _enum: ['BagClassExists', 'BagExists', 'InvalidBagClass', 'InvalidBag', 'InvalidBagOperator', 'InvalidBagOwner', 'InvalidArrayLength', 'InsufficientShares']
1516
1516
  },
1517
- /**
1518
- * Lookup197: sugarfunge_exgine::pallet::Error<T>
1517
+ /**
1518
+ * Lookup197: sugarfunge_exgine::pallet::Error<T>
1519
1519
  **/
1520
1520
  SugarfungeExgineError: {
1521
1521
  _enum: ['NoneValue', 'StorageOverflow']
1522
1522
  },
1523
- /**
1524
- * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1523
+ /**
1524
+ * Lookup198: sugarfunge_market::Market<sp_core::crypto::AccountId32>
1525
1525
  **/
1526
1526
  SugarfungeMarketMarket: {
1527
1527
  owner: 'AccountId32',
1528
1528
  vault: 'AccountId32'
1529
1529
  },
1530
- /**
1531
- * Lookup200: sugarfunge_market::pallet::Error<T>
1530
+ /**
1531
+ * Lookup200: sugarfunge_market::pallet::Error<T>
1532
1532
  **/
1533
1533
  SugarfungeMarketError: {
1534
1534
  _enum: ['Overflow', 'InsufficientAmount', 'InsufficientLiquidity', 'InvalidMarket', 'InvalidMarketRate', 'InvalidMarketOwner', 'NotAuthorizedToMintAsset', 'MarketExists', 'MarketRateExists', 'InvalidAsset', 'InvalidAssetRate', 'InvalidRateAccount', 'InvalidRateAmount', 'InvalidBurnPrice', 'InvalidBurnBalance', 'InvalidTransferPrice', 'InvalidTransferBalance', 'InvalidBuyer', 'InvalidArrayLength']
1535
1535
  },
1536
- /**
1537
- * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1536
+ /**
1537
+ * Lookup203: functionland_fula::Manifest<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1538
1538
  **/
1539
1539
  FunctionlandFulaManifest: {
1540
1540
  storage: 'Vec<AccountId32>',
1541
1541
  replicationFactor: 'u16',
1542
1542
  manifestData: 'FunctionlandFulaManifestData'
1543
1543
  },
1544
- /**
1545
- * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1544
+ /**
1545
+ * Lookup204: functionland_fula::ManifestData<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1546
1546
  **/
1547
1547
  FunctionlandFulaManifestData: {
1548
1548
  uploader: 'AccountId32',
1549
1549
  manifestMetadata: 'Bytes'
1550
1550
  },
1551
- /**
1552
- * Lookup205: functionland_fula::ManifestStorageData
1551
+ /**
1552
+ * Lookup205: functionland_fula::ManifestStorageData
1553
1553
  **/
1554
1554
  FunctionlandFulaManifestStorageData: {
1555
1555
  activeCycles: 'u16',
1556
1556
  missedCycles: 'u16',
1557
1557
  activeDays: 'i32'
1558
1558
  },
1559
- /**
1560
- * Lookup206: functionland_fula::pallet::Error<T>
1559
+ /**
1560
+ * Lookup206: functionland_fula::pallet::Error<T>
1561
1561
  **/
1562
1562
  FunctionlandFulaError: {
1563
1563
  _enum: ['NoneValue', 'StorageOverflow', 'ReplicationFactorLimitReached', 'ReplicationFactorInvalid', 'AccountAlreadyStorer', 'AccountNotStorer', 'AccountNotInPool', 'ManifestAlreadyExist', 'ManifestNotFound', 'ManifestNotStored']
1564
1564
  },
1565
- /**
1566
- * Lookup207: fula_pool::Pool<T>
1565
+ /**
1566
+ * Lookup207: fula_pool::Pool<T>
1567
1567
  **/
1568
1568
  FulaPoolPool: {
1569
1569
  name: 'Bytes',
@@ -1572,30 +1572,30 @@ export default {
1572
1572
  participants: 'Vec<AccountId32>',
1573
1573
  requestNumber: 'u8'
1574
1574
  },
1575
- /**
1576
- * Lookup210: fula_pool::PoolRequest<T>
1575
+ /**
1576
+ * Lookup210: fula_pool::PoolRequest<T>
1577
1577
  **/
1578
1578
  FulaPoolPoolRequest: {
1579
1579
  voted: 'Vec<AccountId32>',
1580
1580
  positiveVotes: 'u16',
1581
1581
  peerId: 'Bytes'
1582
1582
  },
1583
- /**
1584
- * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1583
+ /**
1584
+ * Lookup211: fula_pool::User<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
1585
1585
  **/
1586
1586
  FulaPoolUser: {
1587
1587
  poolId: 'Option<u32>',
1588
1588
  requestPoolId: 'Option<u32>',
1589
1589
  peerId: 'Bytes'
1590
1590
  },
1591
- /**
1592
- * Lookup212: fula_pool::pallet::Error<T>
1591
+ /**
1592
+ * Lookup212: fula_pool::pallet::Error<T>
1593
1593
  **/
1594
1594
  FulaPoolError: {
1595
1595
  _enum: ['UserBusy', 'MaxPools', 'NameTooLong', 'PoolDoesNotExist', 'RequestDoesNotExist', 'CapacityReached', 'UserDoesNotExist', 'AccessDenied', 'InternalError', 'AlreadyVoted']
1596
1596
  },
1597
- /**
1598
- * Lookup214: sp_runtime::MultiSignature
1597
+ /**
1598
+ * Lookup214: sp_runtime::MultiSignature
1599
1599
  **/
1600
1600
  SpRuntimeMultiSignature: {
1601
1601
  _enum: {
@@ -1604,44 +1604,44 @@ export default {
1604
1604
  Ecdsa: 'SpCoreEcdsaSignature'
1605
1605
  }
1606
1606
  },
1607
- /**
1608
- * Lookup215: sp_core::sr25519::Signature
1607
+ /**
1608
+ * Lookup215: sp_core::sr25519::Signature
1609
1609
  **/
1610
1610
  SpCoreSr25519Signature: '[u8;64]',
1611
- /**
1612
- * Lookup216: sp_core::ecdsa::Signature
1611
+ /**
1612
+ * Lookup216: sp_core::ecdsa::Signature
1613
1613
  **/
1614
1614
  SpCoreEcdsaSignature: '[u8;65]',
1615
- /**
1616
- * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1615
+ /**
1616
+ * Lookup219: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
1617
1617
  **/
1618
1618
  FrameSystemExtensionsCheckNonZeroSender: 'Null',
1619
- /**
1620
- * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1619
+ /**
1620
+ * Lookup220: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
1621
1621
  **/
1622
1622
  FrameSystemExtensionsCheckSpecVersion: 'Null',
1623
- /**
1624
- * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1623
+ /**
1624
+ * Lookup221: frame_system::extensions::check_tx_version::CheckTxVersion<T>
1625
1625
  **/
1626
1626
  FrameSystemExtensionsCheckTxVersion: 'Null',
1627
- /**
1628
- * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1627
+ /**
1628
+ * Lookup222: frame_system::extensions::check_genesis::CheckGenesis<T>
1629
1629
  **/
1630
1630
  FrameSystemExtensionsCheckGenesis: 'Null',
1631
- /**
1632
- * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1631
+ /**
1632
+ * Lookup225: frame_system::extensions::check_nonce::CheckNonce<T>
1633
1633
  **/
1634
1634
  FrameSystemExtensionsCheckNonce: 'Compact<u32>',
1635
- /**
1636
- * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1635
+ /**
1636
+ * Lookup226: frame_system::extensions::check_weight::CheckWeight<T>
1637
1637
  **/
1638
1638
  FrameSystemExtensionsCheckWeight: 'Null',
1639
- /**
1640
- * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1639
+ /**
1640
+ * Lookup227: pallet_transaction_payment::ChargeTransactionPayment<T>
1641
1641
  **/
1642
1642
  PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
1643
- /**
1644
- * Lookup228: sugarfunge_runtime::Runtime
1643
+ /**
1644
+ * Lookup228: sugarfunge_runtime::Runtime
1645
1645
  **/
1646
1646
  SugarfungeRuntimeRuntime: 'Null'
1647
1647
  };