@pezkuwi/api-contract 16.5.5

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 (162) hide show
  1. package/README.md +3 -0
  2. package/build/Abi/index.d.ts +31 -0
  3. package/build/Abi/toLatestCompatible.d.ts +15 -0
  4. package/build/Abi/toV1.d.ts +3 -0
  5. package/build/Abi/toV2.d.ts +3 -0
  6. package/build/Abi/toV3.d.ts +3 -0
  7. package/build/Abi/toV4.d.ts +3 -0
  8. package/build/augment.d.ts +1 -0
  9. package/build/base/Base.d.ts +13 -0
  10. package/build/base/Blueprint.d.ts +24 -0
  11. package/build/base/Code.d.ts +22 -0
  12. package/build/base/Contract.d.ts +25 -0
  13. package/build/base/index.d.ts +3 -0
  14. package/build/base/mock.d.ts +3 -0
  15. package/build/base/types.d.ts +25 -0
  16. package/build/base/util.d.ts +16 -0
  17. package/build/bundle.d.ts +4 -0
  18. package/build/index.d.ts +2 -0
  19. package/build/packageDetect.d.ts +1 -0
  20. package/build/packageInfo.d.ts +6 -0
  21. package/build/promise/index.d.ts +13 -0
  22. package/build/promise/types.d.ts +3 -0
  23. package/build/rx/index.d.ts +13 -0
  24. package/build/rx/types.d.ts +3 -0
  25. package/build/types.d.ts +79 -0
  26. package/build/util.d.ts +5 -0
  27. package/package.json +39 -0
  28. package/src/Abi/Abi.spec.ts +235 -0
  29. package/src/Abi/index.ts +477 -0
  30. package/src/Abi/toLatestCompatible.spec.ts +219 -0
  31. package/src/Abi/toLatestCompatible.ts +52 -0
  32. package/src/Abi/toV1.ts +35 -0
  33. package/src/Abi/toV2.ts +58 -0
  34. package/src/Abi/toV3.ts +18 -0
  35. package/src/Abi/toV4.ts +21 -0
  36. package/src/augment.ts +4 -0
  37. package/src/base/Base.ts +52 -0
  38. package/src/base/Blueprint.ts +90 -0
  39. package/src/base/Code.spec.ts +47 -0
  40. package/src/base/Code.ts +142 -0
  41. package/src/base/Contract.ts +197 -0
  42. package/src/base/index.ts +6 -0
  43. package/src/base/mock.ts +48 -0
  44. package/src/base/types.ts +40 -0
  45. package/src/base/util.ts +56 -0
  46. package/src/bundle.ts +10 -0
  47. package/src/checkTypes.manual.ts +45 -0
  48. package/src/index.ts +6 -0
  49. package/src/mod.ts +4 -0
  50. package/src/packageDetect.ts +13 -0
  51. package/src/packageInfo.ts +6 -0
  52. package/src/promise/index.ts +28 -0
  53. package/src/promise/types.ts +7 -0
  54. package/src/rx/index.ts +28 -0
  55. package/src/rx/types.ts +7 -0
  56. package/src/test/compare/ink_v0_delegator.test.json +47 -0
  57. package/src/test/compare/ink_v0_dns.test.json +232 -0
  58. package/src/test/compare/ink_v0_erc20.test.json +253 -0
  59. package/src/test/compare/ink_v0_erc721.test.json +415 -0
  60. package/src/test/compare/ink_v0_flipper.test.json +9 -0
  61. package/src/test/compare/ink_v0_flipperBundle.test.json +9 -0
  62. package/src/test/compare/ink_v0_incrementer.test.json +9 -0
  63. package/src/test/compare/ink_v0_multisigPlain.test.json +562 -0
  64. package/src/test/compare/ink_v1_flipper.test.json +9 -0
  65. package/src/test/compare/ink_v1_psp22.test.json +531 -0
  66. package/src/test/compare/ink_v2_erc20.test.json +205 -0
  67. package/src/test/compare/ink_v2_flipper.test.json +9 -0
  68. package/src/test/compare/ink_v3_flipper.test.json +9 -0
  69. package/src/test/compare/ink_v3_traitErc20.test.json +205 -0
  70. package/src/test/compare/ink_v4_erc20Contract.test.json +253 -0
  71. package/src/test/compare/ink_v4_erc20Metadata.test.json +253 -0
  72. package/src/test/compare/ink_v4_flipperContract.test.json +155 -0
  73. package/src/test/compare/ink_v4_flipperMetadata.test.json +155 -0
  74. package/src/test/compare/ink_v5_erc20.test.json +370 -0
  75. package/src/test/compare/ink_v5_erc20AnonymousTransferMetadata.test.json +370 -0
  76. package/src/test/compare/ink_v5_erc20Contract.test.json +370 -0
  77. package/src/test/compare/ink_v5_erc20Metadata.test.json +370 -0
  78. package/src/test/compare/ink_v5_flipperContract.test.json +174 -0
  79. package/src/test/compare/ink_v5_flipperMetadata.test.json +174 -0
  80. package/src/test/compare/ink_v6_erc20Contract.test.json +418 -0
  81. package/src/test/compare/ink_v6_erc20Metadata.test.json +418 -0
  82. package/src/test/compare/solang_v0_ints256.test.json +9 -0
  83. package/src/test/compare/user_v0_assetTransfer.test.json +54 -0
  84. package/src/test/compare/user_v0_enumExample.test.json +303 -0
  85. package/src/test/compare/user_v0_recursive.test.json +27 -0
  86. package/src/test/compare/user_v0_withString.test.json +260 -0
  87. package/src/test/compare/user_v3_ask.test.json +71 -0
  88. package/src/test/compare/user_v4_events.test.json +1328 -0
  89. package/src/test/contracts/index.ts +20 -0
  90. package/src/test/contracts/ink/index.ts +13 -0
  91. package/src/test/contracts/ink/v0/accumulator.wasm +0 -0
  92. package/src/test/contracts/ink/v0/adder.wasm +0 -0
  93. package/src/test/contracts/ink/v0/delegator.json +252 -0
  94. package/src/test/contracts/ink/v0/delegator.wasm +0 -0
  95. package/src/test/contracts/ink/v0/dns.json +713 -0
  96. package/src/test/contracts/ink/v0/dns.wasm +0 -0
  97. package/src/test/contracts/ink/v0/erc20.json +704 -0
  98. package/src/test/contracts/ink/v0/erc20.wasm +0 -0
  99. package/src/test/contracts/ink/v0/erc721.json +1197 -0
  100. package/src/test/contracts/ink/v0/erc721.wasm +0 -0
  101. package/src/test/contracts/ink/v0/flipper.contract.json +107 -0
  102. package/src/test/contracts/ink/v0/flipper.json +106 -0
  103. package/src/test/contracts/ink/v0/flipper.wasm +0 -0
  104. package/src/test/contracts/ink/v0/incrementer.json +108 -0
  105. package/src/test/contracts/ink/v0/incrementer.wasm +0 -0
  106. package/src/test/contracts/ink/v0/index.ts +11 -0
  107. package/src/test/contracts/ink/v0/multisig_plain.json +1466 -0
  108. package/src/test/contracts/ink/v0/multisig_plain.wasm +0 -0
  109. package/src/test/contracts/ink/v0/subber.wasm +0 -0
  110. package/src/test/contracts/ink/v0/trait-flipper.json +103 -0
  111. package/src/test/contracts/ink/v0/trait-flipper.wasm +0 -0
  112. package/src/test/contracts/ink/v1/flipper.contract.json +111 -0
  113. package/src/test/contracts/ink/v1/index.ts +6 -0
  114. package/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json +1722 -0
  115. package/src/test/contracts/ink/v2/erc20.contract.json +630 -0
  116. package/src/test/contracts/ink/v2/flipper.contract.json +103 -0
  117. package/src/test/contracts/ink/v2/index.ts +5 -0
  118. package/src/test/contracts/ink/v3/flipper.contract.json +105 -0
  119. package/src/test/contracts/ink/v3/index.ts +6 -0
  120. package/src/test/contracts/ink/v3/trait_erc20.contract.json +631 -0
  121. package/src/test/contracts/ink/v4/erc20.contract.json +1 -0
  122. package/src/test/contracts/ink/v4/erc20.json +821 -0
  123. package/src/test/contracts/ink/v4/erc20.wasm +0 -0
  124. package/src/test/contracts/ink/v4/flipper.contract.json +1 -0
  125. package/src/test/contracts/ink/v4/flipper.json +396 -0
  126. package/src/test/contracts/ink/v4/flipper.wasm +0 -0
  127. package/src/test/contracts/ink/v4/index.ts +7 -0
  128. package/src/test/contracts/ink/v5/erc20.contract.json +1 -0
  129. package/src/test/contracts/ink/v5/erc20.json +1025 -0
  130. package/src/test/contracts/ink/v5/erc20.wasm +0 -0
  131. package/src/test/contracts/ink/v5/erc20_anonymous_transfer.json +1025 -0
  132. package/src/test/contracts/ink/v5/flipper.contract.json +1 -0
  133. package/src/test/contracts/ink/v5/flipper.json +420 -0
  134. package/src/test/contracts/ink/v5/flipper.wasm +0 -0
  135. package/src/test/contracts/ink/v5/index.ts +8 -0
  136. package/src/test/contracts/ink/v6/erc20.contract.json +1 -0
  137. package/src/test/contracts/ink/v6/erc20.json +1081 -0
  138. package/src/test/contracts/ink/v6/erc20.polkavm +0 -0
  139. package/src/test/contracts/ink/v6/index.ts +5 -0
  140. package/src/test/contracts/solang/index.ts +7 -0
  141. package/src/test/contracts/solang/v0/index.ts +4 -0
  142. package/src/test/contracts/solang/v0/ints256.json +113 -0
  143. package/src/test/contracts/solang/v0/ints256.sol +13 -0
  144. package/src/test/contracts/solang/v0/ints256.wasm +0 -0
  145. package/src/test/contracts/user/index.ts +9 -0
  146. package/src/test/contracts/user/v0/assetTransfer.json +299 -0
  147. package/src/test/contracts/user/v0/assetTransfer.wasm +0 -0
  148. package/src/test/contracts/user/v0/enumExample.json +528 -0
  149. package/src/test/contracts/user/v0/enumExample.wasm +0 -0
  150. package/src/test/contracts/user/v0/index.ts +7 -0
  151. package/src/test/contracts/user/v0/recursive.contract.json +1 -0
  152. package/src/test/contracts/user/v0/withString.json +777 -0
  153. package/src/test/contracts/user/v3/ask.json +550 -0
  154. package/src/test/contracts/user/v3/index.ts +4 -0
  155. package/src/test/contracts/user/v4/events.contract.json +2990 -0
  156. package/src/test/contracts/user/v4/index.ts +4 -0
  157. package/src/test/contracts/util.ts +14 -0
  158. package/src/types.ts +98 -0
  159. package/src/util.ts +20 -0
  160. package/tsconfig.build.json +22 -0
  161. package/tsconfig.build.tsbuildinfo +1 -0
  162. package/tsconfig.spec.json +26 -0
@@ -0,0 +1,415 @@
1
+ [
2
+ {
3
+ "info": "Struct",
4
+ "lookupIndex": 1,
5
+ "lookupName": "InkStorageCollectionsStashHeader",
6
+ "type": "{\"lastVacant\":\"u32\",\"len\":\"u32\",\"lenEntries\":\"u32\"}",
7
+ "docs": [],
8
+ "namespace": "ink_storage::collections::stash::Header",
9
+ "sub": [
10
+ {
11
+ "info": "Plain",
12
+ "lookupIndex": 2,
13
+ "type": "u32",
14
+ "docs": [],
15
+ "namespace": "",
16
+ "name": "lastVacant"
17
+ },
18
+ {
19
+ "info": "Plain",
20
+ "lookupIndex": 2,
21
+ "type": "u32",
22
+ "docs": [],
23
+ "namespace": "",
24
+ "name": "len"
25
+ },
26
+ {
27
+ "info": "Plain",
28
+ "lookupIndex": 2,
29
+ "type": "u32",
30
+ "docs": [],
31
+ "namespace": "",
32
+ "name": "lenEntries"
33
+ }
34
+ ]
35
+ },
36
+ {
37
+ "info": "Plain",
38
+ "lookupIndex": 2,
39
+ "type": "u32",
40
+ "docs": [],
41
+ "namespace": ""
42
+ },
43
+ {
44
+ "info": "Enum",
45
+ "lookupIndex": 3,
46
+ "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"u32\"}}",
47
+ "docs": [],
48
+ "namespace": "ink_storage::collections::stash::Entry",
49
+ "sub": [
50
+ {
51
+ "docs": [],
52
+ "info": "Si",
53
+ "lookupIndex": 4,
54
+ "lookupName": "InkStorageCollectionsStashVacantEntry",
55
+ "type": "Lookup4",
56
+ "index": 0,
57
+ "name": "Vacant"
58
+ },
59
+ {
60
+ "info": "Plain",
61
+ "lookupIndex": 2,
62
+ "type": "u32",
63
+ "docs": [],
64
+ "namespace": "",
65
+ "index": 1,
66
+ "name": "Occupied"
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "info": "Struct",
72
+ "lookupIndex": 4,
73
+ "lookupName": "InkStorageCollectionsStashVacantEntry",
74
+ "type": "{\"next\":\"u32\",\"prev\":\"u32\"}",
75
+ "docs": [],
76
+ "namespace": "ink_storage::collections::stash::VacantEntry",
77
+ "sub": [
78
+ {
79
+ "info": "Plain",
80
+ "lookupIndex": 2,
81
+ "type": "u32",
82
+ "docs": [],
83
+ "namespace": "",
84
+ "name": "next"
85
+ },
86
+ {
87
+ "info": "Plain",
88
+ "lookupIndex": 2,
89
+ "type": "u32",
90
+ "docs": [],
91
+ "namespace": "",
92
+ "name": "prev"
93
+ }
94
+ ]
95
+ },
96
+ {
97
+ "info": "Struct",
98
+ "lookupIndex": 5,
99
+ "type": "{\"value\":\"AccountId\",\"keyIndex\":\"u32\"}",
100
+ "docs": [],
101
+ "namespace": "ink_storage::collections::hashmap::ValueEntry",
102
+ "sub": [
103
+ {
104
+ "info": "Plain",
105
+ "lookupIndex": 6,
106
+ "type": "AccountId",
107
+ "docs": [],
108
+ "namespace": "ink_env::types::AccountId",
109
+ "lookupNameRoot": "InkEnvAccountId",
110
+ "name": "value"
111
+ },
112
+ {
113
+ "info": "Plain",
114
+ "lookupIndex": 2,
115
+ "type": "u32",
116
+ "docs": [],
117
+ "namespace": "",
118
+ "name": "keyIndex"
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "info": "Plain",
124
+ "lookupIndex": 6,
125
+ "type": "AccountId",
126
+ "docs": [],
127
+ "namespace": "ink_env::types::AccountId",
128
+ "lookupNameRoot": "InkEnvAccountId"
129
+ },
130
+ {
131
+ "info": "VecFixed",
132
+ "lookupIndex": 7,
133
+ "type": "[u8;32]",
134
+ "docs": [],
135
+ "namespace": "",
136
+ "length": 32,
137
+ "sub": {
138
+ "info": "Plain",
139
+ "lookupIndex": 8,
140
+ "type": "u8",
141
+ "docs": [],
142
+ "namespace": ""
143
+ }
144
+ },
145
+ {
146
+ "info": "Plain",
147
+ "lookupIndex": 8,
148
+ "type": "u8",
149
+ "docs": [],
150
+ "namespace": ""
151
+ },
152
+ {
153
+ "info": "Enum",
154
+ "lookupIndex": 9,
155
+ "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"AccountId\"}}",
156
+ "docs": [],
157
+ "namespace": "ink_storage::collections::stash::Entry",
158
+ "sub": [
159
+ {
160
+ "docs": [],
161
+ "info": "Si",
162
+ "lookupIndex": 4,
163
+ "lookupName": "InkStorageCollectionsStashVacantEntry",
164
+ "type": "Lookup4",
165
+ "index": 0,
166
+ "name": "Vacant"
167
+ },
168
+ {
169
+ "info": "Plain",
170
+ "lookupIndex": 6,
171
+ "type": "AccountId",
172
+ "docs": [],
173
+ "namespace": "ink_env::types::AccountId",
174
+ "lookupNameRoot": "InkEnvAccountId",
175
+ "index": 1,
176
+ "name": "Occupied"
177
+ }
178
+ ]
179
+ },
180
+ {
181
+ "info": "Struct",
182
+ "lookupIndex": 10,
183
+ "lookupName": "InkStorageCollectionsHashmapValueEntryEntry",
184
+ "type": "{\"value\":\"u32\",\"keyIndex\":\"u32\"}",
185
+ "docs": [],
186
+ "namespace": "ink_storage::collections::hashmap::ValueEntry",
187
+ "sub": [
188
+ {
189
+ "info": "Plain",
190
+ "lookupIndex": 2,
191
+ "type": "u32",
192
+ "docs": [],
193
+ "namespace": "",
194
+ "name": "value"
195
+ },
196
+ {
197
+ "info": "Plain",
198
+ "lookupIndex": 2,
199
+ "type": "u32",
200
+ "docs": [],
201
+ "namespace": "",
202
+ "name": "keyIndex"
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "info": "Enum",
208
+ "lookupIndex": 11,
209
+ "lookupName": "InkStorageCollectionsStashEntry",
210
+ "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"(AccountId,AccountId)\"}}",
211
+ "docs": [],
212
+ "namespace": "ink_storage::collections::stash::Entry",
213
+ "sub": [
214
+ {
215
+ "docs": [],
216
+ "info": "Si",
217
+ "lookupIndex": 4,
218
+ "lookupName": "InkStorageCollectionsStashVacantEntry",
219
+ "type": "Lookup4",
220
+ "index": 0,
221
+ "name": "Vacant"
222
+ },
223
+ {
224
+ "info": "Tuple",
225
+ "lookupIndex": 12,
226
+ "type": "(AccountId,AccountId)",
227
+ "docs": [],
228
+ "namespace": "",
229
+ "sub": [
230
+ {
231
+ "info": "Plain",
232
+ "lookupIndex": 6,
233
+ "type": "AccountId",
234
+ "docs": [],
235
+ "namespace": "ink_env::types::AccountId",
236
+ "lookupNameRoot": "InkEnvAccountId"
237
+ },
238
+ {
239
+ "info": "Plain",
240
+ "lookupIndex": 6,
241
+ "type": "AccountId",
242
+ "docs": [],
243
+ "namespace": "ink_env::types::AccountId",
244
+ "lookupNameRoot": "InkEnvAccountId"
245
+ }
246
+ ],
247
+ "index": 1,
248
+ "name": "Occupied"
249
+ }
250
+ ]
251
+ },
252
+ {
253
+ "info": "Tuple",
254
+ "lookupIndex": 12,
255
+ "type": "(AccountId,AccountId)",
256
+ "docs": [],
257
+ "namespace": "",
258
+ "sub": [
259
+ {
260
+ "info": "Plain",
261
+ "lookupIndex": 6,
262
+ "type": "AccountId",
263
+ "docs": [],
264
+ "namespace": "ink_env::types::AccountId",
265
+ "lookupNameRoot": "InkEnvAccountId"
266
+ },
267
+ {
268
+ "info": "Plain",
269
+ "lookupIndex": 6,
270
+ "type": "AccountId",
271
+ "docs": [],
272
+ "namespace": "ink_env::types::AccountId",
273
+ "lookupNameRoot": "InkEnvAccountId"
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "info": "Struct",
279
+ "lookupIndex": 13,
280
+ "lookupName": "InkStorageCollectionsHashmapValueEntryOption",
281
+ "type": "{\"value\":\"bool\",\"keyIndex\":\"u32\"}",
282
+ "docs": [],
283
+ "namespace": "ink_storage::collections::hashmap::ValueEntry",
284
+ "sub": [
285
+ {
286
+ "info": "Plain",
287
+ "lookupIndex": 14,
288
+ "type": "bool",
289
+ "docs": [],
290
+ "namespace": "",
291
+ "name": "value"
292
+ },
293
+ {
294
+ "info": "Plain",
295
+ "lookupIndex": 2,
296
+ "type": "u32",
297
+ "docs": [],
298
+ "namespace": "",
299
+ "name": "keyIndex"
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "info": "Plain",
305
+ "lookupIndex": 14,
306
+ "type": "bool",
307
+ "docs": [],
308
+ "namespace": ""
309
+ },
310
+ {
311
+ "info": "Option",
312
+ "lookupIndex": 15,
313
+ "type": "Option<AccountId>",
314
+ "docs": [],
315
+ "namespace": "Option",
316
+ "sub": {
317
+ "info": "Plain",
318
+ "lookupIndex": 6,
319
+ "type": "AccountId",
320
+ "docs": [],
321
+ "namespace": "ink_env::types::AccountId",
322
+ "lookupNameRoot": "InkEnvAccountId"
323
+ }
324
+ },
325
+ {
326
+ "info": "Result",
327
+ "lookupIndex": 16,
328
+ "type": "Result<Null, Erc721Error>",
329
+ "docs": [],
330
+ "namespace": "Result",
331
+ "sub": [
332
+ {
333
+ "name": "Ok",
334
+ "info": "Null",
335
+ "lookupIndex": 17,
336
+ "type": "Null",
337
+ "docs": [],
338
+ "namespace": ""
339
+ },
340
+ {
341
+ "name": "Error",
342
+ "docs": [],
343
+ "info": "Si",
344
+ "lookupIndex": 18,
345
+ "lookupName": "Erc721Error",
346
+ "type": "Lookup18"
347
+ }
348
+ ]
349
+ },
350
+ {
351
+ "info": "Null",
352
+ "lookupIndex": 17,
353
+ "type": "Null",
354
+ "docs": [],
355
+ "namespace": ""
356
+ },
357
+ {
358
+ "info": "Enum",
359
+ "lookupIndex": 18,
360
+ "lookupName": "Erc721Error",
361
+ "type": "{\"_enum\":[\"NotOwner\",\"NotApproved\",\"TokenExists\",\"TokenNotFound\",\"CannotInsert\",\"CannotRemove\",\"CannotFetchValue\",\"NotAllowed\"]}",
362
+ "docs": [],
363
+ "namespace": "erc721::erc721::Error",
364
+ "sub": [
365
+ {
366
+ "info": "Null",
367
+ "type": "Null",
368
+ "index": 0,
369
+ "name": "NotOwner"
370
+ },
371
+ {
372
+ "info": "Null",
373
+ "type": "Null",
374
+ "index": 1,
375
+ "name": "NotApproved"
376
+ },
377
+ {
378
+ "info": "Null",
379
+ "type": "Null",
380
+ "index": 2,
381
+ "name": "TokenExists"
382
+ },
383
+ {
384
+ "info": "Null",
385
+ "type": "Null",
386
+ "index": 3,
387
+ "name": "TokenNotFound"
388
+ },
389
+ {
390
+ "info": "Null",
391
+ "type": "Null",
392
+ "index": 4,
393
+ "name": "CannotInsert"
394
+ },
395
+ {
396
+ "info": "Null",
397
+ "type": "Null",
398
+ "index": 5,
399
+ "name": "CannotRemove"
400
+ },
401
+ {
402
+ "info": "Null",
403
+ "type": "Null",
404
+ "index": 6,
405
+ "name": "CannotFetchValue"
406
+ },
407
+ {
408
+ "info": "Null",
409
+ "type": "Null",
410
+ "index": 7,
411
+ "name": "NotAllowed"
412
+ }
413
+ ]
414
+ }
415
+ ]
@@ -0,0 +1,9 @@
1
+ [
2
+ {
3
+ "info": "Plain",
4
+ "lookupIndex": 1,
5
+ "type": "bool",
6
+ "docs": [],
7
+ "namespace": ""
8
+ }
9
+ ]
@@ -0,0 +1,9 @@
1
+ [
2
+ {
3
+ "info": "Plain",
4
+ "lookupIndex": 1,
5
+ "type": "bool",
6
+ "docs": [],
7
+ "namespace": ""
8
+ }
9
+ ]
@@ -0,0 +1,9 @@
1
+ [
2
+ {
3
+ "info": "Plain",
4
+ "lookupIndex": 1,
5
+ "type": "i32",
6
+ "docs": [],
7
+ "namespace": ""
8
+ }
9
+ ]