@pezkuwi/api 16.5.6 → 16.5.8

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 (379) hide show
  1. package/build/LICENSE +201 -0
  2. package/build/README.md +100 -0
  3. package/build/augment.d.ts +1 -0
  4. package/build/augment.js +1 -0
  5. package/build/base/Decorate.d.ts +143 -0
  6. package/build/base/Decorate.js +752 -0
  7. package/build/base/Events.d.ts +67 -0
  8. package/build/base/Events.js +78 -0
  9. package/build/base/Getters.d.ts +163 -0
  10. package/build/base/Getters.js +207 -0
  11. package/build/base/Init.d.ts +44 -0
  12. package/build/base/Init.js +400 -0
  13. package/build/base/find.d.ts +3 -0
  14. package/build/base/find.js +7 -0
  15. package/build/base/index.d.ts +47 -0
  16. package/build/base/index.js +57 -0
  17. package/build/base/types.d.ts +15 -0
  18. package/build/base/types.js +1 -0
  19. package/build/bundle-pezkuwi-api.js +26247 -0
  20. package/build/bundle.d.ts +7 -0
  21. package/build/bundle.js +7 -0
  22. package/build/cjs/augment.d.ts +1 -0
  23. package/build/cjs/augment.js +3 -0
  24. package/build/cjs/base/Decorate.d.ts +143 -0
  25. package/build/cjs/base/Decorate.js +756 -0
  26. package/build/cjs/base/Events.d.ts +67 -0
  27. package/build/cjs/base/Events.js +82 -0
  28. package/build/cjs/base/Getters.d.ts +163 -0
  29. package/build/cjs/base/Getters.js +211 -0
  30. package/build/cjs/base/Init.d.ts +44 -0
  31. package/build/cjs/base/Init.js +404 -0
  32. package/build/cjs/base/find.d.ts +3 -0
  33. package/build/cjs/base/find.js +11 -0
  34. package/build/cjs/base/index.d.ts +47 -0
  35. package/build/cjs/base/index.js +61 -0
  36. package/build/cjs/base/types.d.ts +15 -0
  37. package/build/cjs/base/types.js +2 -0
  38. package/build/cjs/bundle.d.ts +7 -0
  39. package/build/cjs/bundle.js +17 -0
  40. package/build/cjs/index.d.ts +2 -0
  41. package/build/cjs/index.js +5 -0
  42. package/build/cjs/package.json +3 -0
  43. package/build/cjs/packageDetect.d.ts +1 -0
  44. package/build/cjs/packageDetect.js +10 -0
  45. package/build/cjs/packageInfo.d.ts +6 -0
  46. package/build/cjs/packageInfo.js +4 -0
  47. package/build/cjs/promise/Api.d.ts +158 -0
  48. package/build/cjs/promise/Api.js +195 -0
  49. package/build/cjs/promise/Combinator.d.ts +12 -0
  50. package/build/cjs/promise/Combinator.js +72 -0
  51. package/build/cjs/promise/decorateMethod.d.ts +14 -0
  52. package/build/cjs/promise/decorateMethod.js +75 -0
  53. package/build/cjs/promise/index.d.ts +2 -0
  54. package/build/cjs/promise/index.js +7 -0
  55. package/build/cjs/promise/types.d.ts +5 -0
  56. package/build/cjs/promise/types.js +2 -0
  57. package/build/cjs/rx/Api.d.ts +155 -0
  58. package/build/cjs/rx/Api.js +173 -0
  59. package/build/cjs/rx/decorateMethod.d.ts +3 -0
  60. package/build/cjs/rx/decorateMethod.js +6 -0
  61. package/build/cjs/rx/index.d.ts +2 -0
  62. package/build/cjs/rx/index.js +7 -0
  63. package/build/cjs/submittable/Result.d.ts +31 -0
  64. package/build/cjs/submittable/Result.js +84 -0
  65. package/build/cjs/submittable/createClass.d.ts +12 -0
  66. package/build/cjs/submittable/createClass.js +277 -0
  67. package/build/cjs/submittable/createSubmittable.d.ts +8 -0
  68. package/build/cjs/submittable/createSubmittable.js +8 -0
  69. package/build/cjs/submittable/index.d.ts +2 -0
  70. package/build/cjs/submittable/index.js +7 -0
  71. package/build/cjs/submittable/types.d.ts +1 -0
  72. package/build/cjs/submittable/types.js +2 -0
  73. package/build/cjs/types/calls.d.ts +1 -0
  74. package/build/cjs/types/calls.js +4 -0
  75. package/build/cjs/types/consts.d.ts +1 -0
  76. package/build/cjs/types/consts.js +4 -0
  77. package/build/cjs/types/errors.d.ts +1 -0
  78. package/build/cjs/types/errors.js +4 -0
  79. package/build/cjs/types/events.d.ts +1 -0
  80. package/build/cjs/types/events.js +4 -0
  81. package/build/cjs/types/index.d.ts +114 -0
  82. package/build/cjs/types/index.js +13 -0
  83. package/build/cjs/types/storage.d.ts +1 -0
  84. package/build/cjs/types/storage.js +4 -0
  85. package/build/cjs/types/submittable.d.ts +1 -0
  86. package/build/cjs/types/submittable.js +4 -0
  87. package/build/cjs/util/augmentObject.d.ts +9 -0
  88. package/build/cjs/util/augmentObject.js +84 -0
  89. package/build/cjs/util/decorate.d.ts +16 -0
  90. package/build/cjs/util/decorate.js +17 -0
  91. package/build/cjs/util/filterEvents.d.ts +6 -0
  92. package/build/cjs/util/filterEvents.js +25 -0
  93. package/build/cjs/util/index.d.ts +4 -0
  94. package/build/cjs/util/index.js +11 -0
  95. package/build/cjs/util/isKeyringPair.d.ts +3 -0
  96. package/build/cjs/util/isKeyringPair.js +7 -0
  97. package/build/cjs/util/logging.d.ts +1 -0
  98. package/build/cjs/util/logging.js +5 -0
  99. package/build/cjs/util/validate.d.ts +3 -0
  100. package/build/cjs/util/validate.js +26 -0
  101. package/build/index.d.ts +2 -0
  102. package/build/index.js +2 -0
  103. package/build/package.json +612 -0
  104. package/build/packageDetect.d.ts +1 -0
  105. package/build/packageDetect.js +8 -0
  106. package/build/packageInfo.d.ts +6 -0
  107. package/build/packageInfo.js +1 -0
  108. package/build/promise/Api.d.ts +158 -0
  109. package/build/promise/Api.js +191 -0
  110. package/build/promise/Combinator.d.ts +12 -0
  111. package/build/promise/Combinator.js +68 -0
  112. package/build/promise/decorateMethod.d.ts +14 -0
  113. package/build/promise/decorateMethod.js +71 -0
  114. package/build/promise/index.d.ts +2 -0
  115. package/build/promise/index.js +2 -0
  116. package/build/promise/types.d.ts +5 -0
  117. package/build/promise/types.js +1 -0
  118. package/build/rx/Api.d.ts +155 -0
  119. package/build/rx/Api.js +169 -0
  120. package/build/rx/decorateMethod.d.ts +3 -0
  121. package/build/rx/decorateMethod.js +3 -0
  122. package/build/rx/index.d.ts +2 -0
  123. package/build/rx/index.js +2 -0
  124. package/build/submittable/Result.d.ts +31 -0
  125. package/build/submittable/Result.js +80 -0
  126. package/build/submittable/createClass.d.ts +12 -0
  127. package/build/submittable/createClass.js +274 -0
  128. package/build/submittable/createSubmittable.d.ts +8 -0
  129. package/build/submittable/createSubmittable.js +5 -0
  130. package/build/submittable/index.d.ts +2 -0
  131. package/build/submittable/index.js +2 -0
  132. package/build/submittable/types.d.ts +1 -0
  133. package/build/submittable/types.js +1 -0
  134. package/build/types/calls.d.ts +1 -0
  135. package/build/types/calls.js +1 -0
  136. package/build/types/consts.d.ts +1 -0
  137. package/build/types/consts.js +1 -0
  138. package/build/types/errors.d.ts +1 -0
  139. package/build/types/errors.js +1 -0
  140. package/build/types/events.d.ts +1 -0
  141. package/build/types/events.js +1 -0
  142. package/build/types/index.d.ts +114 -0
  143. package/build/types/index.js +8 -0
  144. package/build/types/storage.d.ts +1 -0
  145. package/build/types/storage.js +1 -0
  146. package/build/types/submittable.d.ts +1 -0
  147. package/build/types/submittable.js +1 -0
  148. package/build/util/augmentObject.d.ts +9 -0
  149. package/build/util/augmentObject.js +81 -0
  150. package/build/util/decorate.d.ts +16 -0
  151. package/build/util/decorate.js +14 -0
  152. package/build/util/filterEvents.d.ts +6 -0
  153. package/build/util/filterEvents.js +22 -0
  154. package/build/util/index.d.ts +4 -0
  155. package/build/util/index.js +4 -0
  156. package/build/util/isKeyringPair.d.ts +3 -0
  157. package/build/util/isKeyringPair.js +4 -0
  158. package/build/util/logging.d.ts +1 -0
  159. package/build/util/logging.js +2 -0
  160. package/build/util/validate.d.ts +3 -0
  161. package/build/util/validate.js +23 -0
  162. package/build-deno/README.md +95 -0
  163. package/build-deno/augment.ts +2 -0
  164. package/build-deno/base/Decorate.ts +1100 -0
  165. package/build-deno/base/Events.ts +89 -0
  166. package/build-deno/base/Getters.ts +243 -0
  167. package/build-deno/base/Init.ts +523 -0
  168. package/build-deno/base/find.ts +12 -0
  169. package/build-deno/base/index.ts +83 -0
  170. package/build-deno/base/types.ts +17 -0
  171. package/build-deno/bundle.ts +11 -0
  172. package/build-deno/checkTypes.manual.ts +320 -0
  173. package/build-deno/index.ts +4 -0
  174. package/build-deno/mod.ts +2 -0
  175. package/build-deno/packageDetect.ts +12 -0
  176. package/build-deno/packageInfo.ts +3 -0
  177. package/build-deno/promise/Api.ts +212 -0
  178. package/build-deno/promise/Combinator.ts +89 -0
  179. package/build-deno/promise/decorateMethod.ts +111 -0
  180. package/build-deno/promise/index.ts +3 -0
  181. package/build-deno/promise/types.ts +7 -0
  182. package/build-deno/rx/Api.ts +184 -0
  183. package/build-deno/rx/decorateMethod.ts +7 -0
  184. package/build-deno/rx/index.ts +3 -0
  185. package/build-deno/submittable/Result.ts +109 -0
  186. package/build-deno/submittable/createClass.ts +436 -0
  187. package/build-deno/submittable/createSubmittable.ts +17 -0
  188. package/build-deno/submittable/index.ts +3 -0
  189. package/build-deno/submittable/types.ts +2 -0
  190. package/build-deno/test/SingleAccountSigner.ts +51 -0
  191. package/build-deno/test/index.ts +3 -0
  192. package/build-deno/test/logEvents.ts +21 -0
  193. package/build-deno/types/calls.ts +2 -0
  194. package/build-deno/types/consts.ts +2 -0
  195. package/build-deno/types/errors.ts +2 -0
  196. package/build-deno/types/events.ts +2 -0
  197. package/build-deno/types/index.ts +124 -0
  198. package/build-deno/types/storage.ts +2 -0
  199. package/build-deno/types/submittable.ts +2 -0
  200. package/build-deno/util/augmentObject.ts +109 -0
  201. package/build-deno/util/decorate.ts +38 -0
  202. package/build-deno/util/filterEvents.ts +32 -0
  203. package/build-deno/util/index.ts +6 -0
  204. package/build-deno/util/isKeyringPair.ts +9 -0
  205. package/build-deno/util/logging.ts +4 -0
  206. package/build-deno/util/validate.ts +32 -0
  207. package/build-tsc/augment.d.ts +1 -0
  208. package/build-tsc/base/Decorate.d.ts +143 -0
  209. package/build-tsc/base/Events.d.ts +67 -0
  210. package/build-tsc/base/Getters.d.ts +163 -0
  211. package/build-tsc/base/Init.d.ts +44 -0
  212. package/build-tsc/base/find.d.ts +3 -0
  213. package/build-tsc/base/index.d.ts +47 -0
  214. package/build-tsc/base/types.d.ts +15 -0
  215. package/build-tsc/bundle.d.ts +7 -0
  216. package/build-tsc/index.d.ts +2 -0
  217. package/build-tsc/packageDetect.d.ts +1 -0
  218. package/build-tsc/packageInfo.d.ts +6 -0
  219. package/build-tsc/promise/Api.d.ts +158 -0
  220. package/build-tsc/promise/Combinator.d.ts +12 -0
  221. package/build-tsc/promise/decorateMethod.d.ts +14 -0
  222. package/build-tsc/promise/index.d.ts +2 -0
  223. package/build-tsc/promise/types.d.ts +5 -0
  224. package/build-tsc/rx/Api.d.ts +155 -0
  225. package/build-tsc/rx/decorateMethod.d.ts +3 -0
  226. package/build-tsc/rx/index.d.ts +2 -0
  227. package/build-tsc/submittable/Result.d.ts +31 -0
  228. package/build-tsc/submittable/createClass.d.ts +12 -0
  229. package/build-tsc/submittable/createSubmittable.d.ts +8 -0
  230. package/build-tsc/submittable/index.d.ts +2 -0
  231. package/build-tsc/submittable/types.d.ts +1 -0
  232. package/build-tsc/types/calls.d.ts +1 -0
  233. package/build-tsc/types/consts.d.ts +1 -0
  234. package/build-tsc/types/errors.d.ts +1 -0
  235. package/build-tsc/types/events.d.ts +1 -0
  236. package/build-tsc/types/index.d.ts +114 -0
  237. package/build-tsc/types/storage.d.ts +1 -0
  238. package/build-tsc/types/submittable.d.ts +1 -0
  239. package/build-tsc/util/augmentObject.d.ts +9 -0
  240. package/build-tsc/util/decorate.d.ts +16 -0
  241. package/build-tsc/util/filterEvents.d.ts +6 -0
  242. package/build-tsc/util/index.d.ts +4 -0
  243. package/build-tsc/util/isKeyringPair.d.ts +3 -0
  244. package/build-tsc/util/logging.d.ts +1 -0
  245. package/build-tsc/util/validate.d.ts +3 -0
  246. package/build-tsc-cjs/augment.js +3 -0
  247. package/build-tsc-cjs/base/Decorate.js +756 -0
  248. package/build-tsc-cjs/base/Events.js +82 -0
  249. package/build-tsc-cjs/base/Getters.js +211 -0
  250. package/build-tsc-cjs/base/Init.js +404 -0
  251. package/build-tsc-cjs/base/find.js +11 -0
  252. package/build-tsc-cjs/base/index.js +61 -0
  253. package/build-tsc-cjs/base/types.js +2 -0
  254. package/build-tsc-cjs/bundle.js +17 -0
  255. package/build-tsc-cjs/index.js +5 -0
  256. package/build-tsc-cjs/packageDetect.js +10 -0
  257. package/build-tsc-cjs/packageInfo.js +4 -0
  258. package/build-tsc-cjs/promise/Api.js +195 -0
  259. package/build-tsc-cjs/promise/Combinator.js +72 -0
  260. package/build-tsc-cjs/promise/decorateMethod.js +75 -0
  261. package/build-tsc-cjs/promise/index.js +7 -0
  262. package/build-tsc-cjs/promise/types.js +2 -0
  263. package/build-tsc-cjs/rx/Api.js +173 -0
  264. package/build-tsc-cjs/rx/decorateMethod.js +6 -0
  265. package/build-tsc-cjs/rx/index.js +7 -0
  266. package/build-tsc-cjs/submittable/Result.js +84 -0
  267. package/build-tsc-cjs/submittable/createClass.js +277 -0
  268. package/build-tsc-cjs/submittable/createSubmittable.js +8 -0
  269. package/build-tsc-cjs/submittable/index.js +7 -0
  270. package/build-tsc-cjs/submittable/types.js +2 -0
  271. package/build-tsc-cjs/types/calls.js +4 -0
  272. package/build-tsc-cjs/types/consts.js +4 -0
  273. package/build-tsc-cjs/types/errors.js +4 -0
  274. package/build-tsc-cjs/types/events.js +4 -0
  275. package/build-tsc-cjs/types/index.js +13 -0
  276. package/build-tsc-cjs/types/storage.js +4 -0
  277. package/build-tsc-cjs/types/submittable.js +4 -0
  278. package/build-tsc-cjs/util/augmentObject.js +84 -0
  279. package/build-tsc-cjs/util/decorate.js +17 -0
  280. package/build-tsc-cjs/util/filterEvents.js +25 -0
  281. package/build-tsc-cjs/util/index.js +11 -0
  282. package/build-tsc-cjs/util/isKeyringPair.js +7 -0
  283. package/build-tsc-cjs/util/logging.js +5 -0
  284. package/build-tsc-cjs/util/validate.js +26 -0
  285. package/build-tsc-esm/augment.js +1 -0
  286. package/build-tsc-esm/base/Decorate.js +752 -0
  287. package/build-tsc-esm/base/Events.js +78 -0
  288. package/build-tsc-esm/base/Getters.js +207 -0
  289. package/build-tsc-esm/base/Init.js +400 -0
  290. package/build-tsc-esm/base/find.js +7 -0
  291. package/build-tsc-esm/base/index.js +57 -0
  292. package/build-tsc-esm/base/types.js +1 -0
  293. package/build-tsc-esm/bundle.js +7 -0
  294. package/build-tsc-esm/index.js +2 -0
  295. package/build-tsc-esm/packageDetect.js +8 -0
  296. package/build-tsc-esm/packageInfo.js +1 -0
  297. package/build-tsc-esm/promise/Api.js +191 -0
  298. package/build-tsc-esm/promise/Combinator.js +68 -0
  299. package/build-tsc-esm/promise/decorateMethod.js +71 -0
  300. package/build-tsc-esm/promise/index.js +2 -0
  301. package/build-tsc-esm/promise/types.js +1 -0
  302. package/build-tsc-esm/rx/Api.js +169 -0
  303. package/build-tsc-esm/rx/decorateMethod.js +3 -0
  304. package/build-tsc-esm/rx/index.js +2 -0
  305. package/build-tsc-esm/submittable/Result.js +80 -0
  306. package/build-tsc-esm/submittable/createClass.js +274 -0
  307. package/build-tsc-esm/submittable/createSubmittable.js +5 -0
  308. package/build-tsc-esm/submittable/index.js +2 -0
  309. package/build-tsc-esm/submittable/types.js +1 -0
  310. package/build-tsc-esm/types/calls.js +1 -0
  311. package/build-tsc-esm/types/consts.js +1 -0
  312. package/build-tsc-esm/types/errors.js +1 -0
  313. package/build-tsc-esm/types/events.js +1 -0
  314. package/build-tsc-esm/types/index.js +8 -0
  315. package/build-tsc-esm/types/storage.js +1 -0
  316. package/build-tsc-esm/types/submittable.js +1 -0
  317. package/build-tsc-esm/util/augmentObject.js +81 -0
  318. package/build-tsc-esm/util/decorate.js +14 -0
  319. package/build-tsc-esm/util/filterEvents.js +22 -0
  320. package/build-tsc-esm/util/index.js +4 -0
  321. package/build-tsc-esm/util/isKeyringPair.js +4 -0
  322. package/build-tsc-esm/util/logging.js +2 -0
  323. package/build-tsc-esm/util/validate.js +23 -0
  324. package/bundle-pezkuwi-api.js +26240 -26231
  325. package/cjs/packageInfo.js +1 -1
  326. package/package.json +12 -12
  327. package/packageInfo.js +1 -1
  328. package/src/augment.ts +4 -0
  329. package/src/base/Decorate.ts +1103 -0
  330. package/src/base/Events.ts +91 -0
  331. package/src/base/Getters.ts +245 -0
  332. package/src/base/Init.ts +525 -0
  333. package/src/base/find.ts +14 -0
  334. package/src/base/index.ts +85 -0
  335. package/src/base/types.ts +19 -0
  336. package/src/bundle.ts +16 -0
  337. package/src/checkTypes.manual.ts +323 -0
  338. package/src/index.ts +6 -0
  339. package/src/mod.ts +4 -0
  340. package/src/packageDetect.ts +16 -0
  341. package/src/packageInfo.ts +6 -0
  342. package/src/promise/Api.ts +214 -0
  343. package/src/promise/Combinator.ts +91 -0
  344. package/src/promise/Combinators.spec.ts +109 -0
  345. package/src/promise/decorateMethod.ts +118 -0
  346. package/src/promise/index.spec.ts +167 -0
  347. package/src/promise/index.ts +5 -0
  348. package/src/promise/types.ts +9 -0
  349. package/src/rx/Api.ts +186 -0
  350. package/src/rx/decorateMethod.ts +9 -0
  351. package/src/rx/index.ts +5 -0
  352. package/src/submittable/Result.ts +111 -0
  353. package/src/submittable/createClass.ts +438 -0
  354. package/src/submittable/createSubmittable.ts +19 -0
  355. package/src/submittable/index.ts +5 -0
  356. package/src/submittable/types.ts +4 -0
  357. package/src/test/SingleAccountSigner.ts +53 -0
  358. package/src/test/index.ts +5 -0
  359. package/src/test/logEvents.ts +24 -0
  360. package/src/types/calls.ts +4 -0
  361. package/src/types/consts.ts +4 -0
  362. package/src/types/errors.ts +4 -0
  363. package/src/types/events.ts +4 -0
  364. package/src/types/index.ts +137 -0
  365. package/src/types/storage.ts +4 -0
  366. package/src/types/submittable.ts +4 -0
  367. package/src/util/augmentObject.spec.ts +54 -0
  368. package/src/util/augmentObject.ts +112 -0
  369. package/src/util/decorate.ts +43 -0
  370. package/src/util/filterEvents.ts +34 -0
  371. package/src/util/index.ts +10 -0
  372. package/src/util/isKeyringPair.ts +11 -0
  373. package/src/util/logging.ts +6 -0
  374. package/src/util/validate.spec.ts +72 -0
  375. package/src/util/validate.ts +36 -0
  376. package/tsconfig.build.json +25 -0
  377. package/tsconfig.build.tsbuildinfo +1 -0
  378. package/tsconfig.spec.json +26 -0
  379. package/tsconfig.spec.tsbuildinfo +1 -0
@@ -0,0 +1,400 @@
1
+ import { firstValueFrom, map, of, switchMap } from 'rxjs';
2
+ import { Metadata, TypeRegistry } from '@pezkuwi/types';
3
+ import { LATEST_EXTRINSIC_VERSION } from '@pezkuwi/types/extrinsic/constants';
4
+ import { getSpecAlias, getSpecExtensions, getSpecHasher, getSpecRpc, getSpecTypes, getUpgradeVersion } from '@pezkuwi/types-known';
5
+ import { assertReturn, BN_ZERO, isUndefined, logger, noop, objectSpread, u8aEq, u8aToHex, u8aToU8a } from '@pezkuwi/util';
6
+ import { blake2AsHex, cryptoWaitReady } from '@pezkuwi/util-crypto';
7
+ import { Decorate } from './Decorate.js';
8
+ const KEEPALIVE_INTERVAL = 10000;
9
+ const WITH_VERSION_SHORTCUT = false;
10
+ const SUPPORTED_METADATA_VERSIONS = [16, 15, 14];
11
+ const l = logger('api/init');
12
+ function textToString(t) {
13
+ return t.toString();
14
+ }
15
+ export class Init extends Decorate {
16
+ #atLast = null;
17
+ #healthTimer = null;
18
+ #registries = [];
19
+ #updateSub = null;
20
+ #waitingRegistries = {};
21
+ constructor(options, type, decorateMethod) {
22
+ super(options, type, decorateMethod);
23
+ // all injected types added to the registry for overrides
24
+ this.registry.setKnownTypes(options);
25
+ // We only register the types (global) if this is not a cloned instance.
26
+ // Do right up-front, so we get in the user types before we are actually
27
+ // doing anything on-chain, this ensures we have the overrides in-place
28
+ if (!options.source) {
29
+ this.registerTypes(options.types);
30
+ }
31
+ else {
32
+ this.#registries = options.source.#registries;
33
+ }
34
+ this._rpc = this._decorateRpc(this._rpcCore, this._decorateMethod);
35
+ this._rx.rpc = this._decorateRpc(this._rpcCore, this._rxDecorateMethod);
36
+ if (this.supportMulti) {
37
+ this._queryMulti = this._decorateMulti(this._decorateMethod);
38
+ this._rx.queryMulti = this._decorateMulti(this._rxDecorateMethod);
39
+ }
40
+ this._rx.signer = options.signer;
41
+ this._rpcCore.setRegistrySwap((blockHash) => this.getBlockRegistry(blockHash));
42
+ this._rpcCore.setResolveBlockHash((blockNumber) => firstValueFrom(this._rpcCore.chain.getBlockHash(blockNumber)));
43
+ if (this.hasSubscriptions) {
44
+ this._rpcCore.provider.on('disconnected', () => this.#onProviderDisconnect());
45
+ this._rpcCore.provider.on('error', (e) => this.#onProviderError(e));
46
+ this._rpcCore.provider.on('connected', () => this.#onProviderConnect());
47
+ }
48
+ else if (!this._options.noInitWarn) {
49
+ l.warn('Api will be available in a limited mode since the provider does not support subscriptions');
50
+ }
51
+ // If the provider was instantiated earlier, and has already emitted a
52
+ // 'connected' event, then the `on('connected')` won't fire anymore. To
53
+ // cater for this case, we call manually `this._onProviderConnect`.
54
+ if (this._rpcCore.provider.isConnected) {
55
+ this.#onProviderConnect().catch(noop);
56
+ }
57
+ }
58
+ /**
59
+ * @description Decorates a registry based on the runtime version
60
+ */
61
+ _initRegistry(registry, chain, version, metadata, chainProps) {
62
+ registry.clearCache();
63
+ registry.setChainProperties(chainProps || this.registry.getChainProperties());
64
+ registry.setKnownTypes(this._options);
65
+ registry.register(getSpecTypes(registry, chain, version.specName, version.specVersion));
66
+ registry.setHasher(getSpecHasher(registry, chain, version.specName));
67
+ // for bundled types, pull through the aliases defined
68
+ if (registry.knownTypes.typesBundle) {
69
+ registry.knownTypes.typesAlias = getSpecAlias(registry, chain, version.specName);
70
+ }
71
+ registry.setMetadata(metadata, undefined, objectSpread({}, getSpecExtensions(registry, chain, version.specName), this._options.signedExtensions), this._options.noInitWarn);
72
+ }
73
+ /**
74
+ * @description Returns the default versioned registry
75
+ */
76
+ _getDefaultRegistry() {
77
+ return assertReturn(this.#registries.find(({ isDefault }) => isDefault), 'Initialization error, cannot find the default registry');
78
+ }
79
+ /**
80
+ * @description Returns a decorated API instance at a specific point in time
81
+ */
82
+ async at(blockHash, knownVersion) {
83
+ const u8aHash = u8aToU8a(blockHash);
84
+ const u8aHex = u8aToHex(u8aHash);
85
+ const registry = await this.getBlockRegistry(u8aHash, knownVersion);
86
+ if (!this.#atLast || this.#atLast[0] !== u8aHex) {
87
+ // always create a new decoration - since we are pointing to a specific hash, this
88
+ // means that all queries needs to use that hash (not a previous one already existing)
89
+ this.#atLast = [u8aHex, this._createDecorated(registry, true, null, u8aHash).decoratedApi];
90
+ }
91
+ return this.#atLast[1];
92
+ }
93
+ async _createBlockRegistry(blockHash, header, version) {
94
+ const registry = new TypeRegistry(blockHash);
95
+ const metadata = await this._retrieveMetadata(version.apis, header.parentHash, registry);
96
+ const runtimeChain = this._runtimeChain;
97
+ if (!runtimeChain) {
98
+ throw new Error('Invalid initializion order, runtimeChain is not available');
99
+ }
100
+ this._initRegistry(registry, runtimeChain, version, metadata);
101
+ // add our new registry
102
+ const result = { counter: 0, lastBlockHash: blockHash, metadata, registry, runtimeVersion: version };
103
+ this.#registries.push(result);
104
+ return result;
105
+ }
106
+ _cacheBlockRegistryProgress(key, creator) {
107
+ // look for waiting resolves
108
+ let waiting = this.#waitingRegistries[key];
109
+ if (isUndefined(waiting)) {
110
+ // nothing waiting, construct new
111
+ waiting = this.#waitingRegistries[key] = new Promise((resolve, reject) => {
112
+ creator()
113
+ .then((registry) => {
114
+ delete this.#waitingRegistries[key];
115
+ resolve(registry);
116
+ })
117
+ .catch((error) => {
118
+ delete this.#waitingRegistries[key];
119
+ reject(error);
120
+ });
121
+ });
122
+ }
123
+ return waiting;
124
+ }
125
+ _getBlockRegistryViaVersion(blockHash, version) {
126
+ if (version) {
127
+ // check for pre-existing registries. We also check specName, e.g. it
128
+ // could be changed like in Westmint with upgrade from shell -> westmint
129
+ const existingViaVersion = this.#registries.find(({ runtimeVersion: { specName, specVersion } }) => specName.eq(version.specName) &&
130
+ specVersion.eq(version.specVersion));
131
+ if (existingViaVersion) {
132
+ existingViaVersion.counter++;
133
+ existingViaVersion.lastBlockHash = blockHash;
134
+ return existingViaVersion;
135
+ }
136
+ }
137
+ return null;
138
+ }
139
+ async _getBlockRegistryViaHash(blockHash) {
140
+ // ensure we have everything required
141
+ if (!this._genesisHash || !this._runtimeVersion) {
142
+ throw new Error('Cannot retrieve data on an uninitialized chain');
143
+ }
144
+ // We have to assume that on the RPC layer the calls used here does not call back into
145
+ // the registry swap, so getHeader & getRuntimeVersion should not be historic
146
+ const header = this.registry.createType('HeaderPartial', this._genesisHash.eq(blockHash)
147
+ ? { number: BN_ZERO, parentHash: this._genesisHash }
148
+ : await firstValueFrom(this._rpcCore.chain.getHeader.raw(blockHash)));
149
+ if (header.parentHash.isEmpty) {
150
+ l.warn(`Unable to retrieve header ${blockHash.toString()} and parent ${header.parentHash.toString()} from supplied hash`);
151
+ throw new Error('Unable to retrieve header and parent from supplied hash');
152
+ }
153
+ // get the runtime version, either on-chain or via an known upgrade history
154
+ const [firstVersion, lastVersion] = getUpgradeVersion(this._genesisHash, header.number);
155
+ const version = this.registry.createType('RuntimeVersionPartial', WITH_VERSION_SHORTCUT && (firstVersion && (lastVersion ||
156
+ firstVersion.specVersion.eq(this._runtimeVersion.specVersion)))
157
+ ? { apis: firstVersion.apis, specName: this._runtimeVersion.specName, specVersion: firstVersion.specVersion }
158
+ : await firstValueFrom(this._rpcCore.state.getRuntimeVersion.raw(header.parentHash)));
159
+ return (
160
+ // try to find via version
161
+ this._getBlockRegistryViaVersion(blockHash, version) ||
162
+ // return new or in-flight result
163
+ await this._cacheBlockRegistryProgress(version.toHex(), () => this._createBlockRegistry(blockHash, header, version)));
164
+ }
165
+ /**
166
+ * @description Sets up a registry based on the block hash defined
167
+ */
168
+ async getBlockRegistry(blockHash, knownVersion) {
169
+ return (
170
+ // try to find via blockHash
171
+ this.#registries.find(({ lastBlockHash }) => lastBlockHash && u8aEq(lastBlockHash, blockHash)) ||
172
+ // try to find via version
173
+ this._getBlockRegistryViaVersion(blockHash, knownVersion) ||
174
+ // return new or in-flight result
175
+ await this._cacheBlockRegistryProgress(u8aToHex(blockHash), () => this._getBlockRegistryViaHash(blockHash)));
176
+ }
177
+ async _loadMeta() {
178
+ // on re-connection to the same chain, we don't want to re-do everything from chain again
179
+ if (this._isReady) {
180
+ // on re-connection only re-subscribe to chain updates if we are not a clone
181
+ if (!this._options.source) {
182
+ this._subscribeUpdates();
183
+ }
184
+ return true;
185
+ }
186
+ this._unsubscribeUpdates();
187
+ // only load from on-chain if we are not a clone (default path), alternatively
188
+ // just use the values from the source instance provided
189
+ [this._genesisHash, this._runtimeMetadata] = this._options.source?._isReady
190
+ ? await this._metaFromSource(this._options.source)
191
+ : await this._metaFromChain(this._options.metadata);
192
+ return this._initFromMeta(this._runtimeMetadata);
193
+ }
194
+ // eslint-disable-next-line @typescript-eslint/require-await
195
+ async _metaFromSource(source) {
196
+ this._extrinsicType = source.extrinsicVersion;
197
+ this._runtimeChain = source.runtimeChain;
198
+ this._runtimeVersion = source.runtimeVersion;
199
+ // manually build a list of all available methods in this RPC, we are
200
+ // going to filter on it to align the cloned RPC without making a call
201
+ const sections = Object.keys(source.rpc);
202
+ const rpcs = [];
203
+ for (let s = 0, scount = sections.length; s < scount; s++) {
204
+ const section = sections[s];
205
+ const methods = Object.keys(source.rpc[section]);
206
+ for (let m = 0, mcount = methods.length; m < mcount; m++) {
207
+ rpcs.push(`${section}_${methods[m]}`);
208
+ }
209
+ }
210
+ this._filterRpc(rpcs, getSpecRpc(this.registry, source.runtimeChain, source.runtimeVersion.specName));
211
+ return [source.genesisHash, source.runtimeMetadata];
212
+ }
213
+ // subscribe to metadata updates, inject the types on changes
214
+ _subscribeUpdates() {
215
+ if (this.#updateSub || !this.hasSubscriptions) {
216
+ return;
217
+ }
218
+ this.#updateSub = this._rpcCore.state.subscribeRuntimeVersion().pipe(switchMap((version) =>
219
+ // only retrieve the metadata when the on-chain version has been changed
220
+ this._runtimeVersion?.specVersion.eq(version.specVersion)
221
+ ? of(false)
222
+ : this._rpcCore.state.getMetadata().pipe(map((metadata) => {
223
+ l.log(`Runtime version updated to spec=${version.specVersion.toString()}, tx=${version.transactionVersion.toString()}`);
224
+ this._runtimeMetadata = metadata;
225
+ this._runtimeVersion = version;
226
+ this._rx.runtimeVersion = version;
227
+ // update the default registry version
228
+ const thisRegistry = this._getDefaultRegistry();
229
+ const runtimeChain = this._runtimeChain;
230
+ if (!runtimeChain) {
231
+ throw new Error('Invalid initializion order, runtimeChain is not available');
232
+ }
233
+ // setup the data as per the current versions
234
+ thisRegistry.metadata = metadata;
235
+ thisRegistry.runtimeVersion = version;
236
+ this._initRegistry(this.registry, runtimeChain, version, metadata);
237
+ this._injectMetadata(thisRegistry, true);
238
+ return true;
239
+ })))).subscribe();
240
+ }
241
+ async _metaFromChain(optMetadata) {
242
+ const [genesisHash, runtimeVersion, chain, chainProps, rpcMethods] = await Promise.all([
243
+ firstValueFrom(this._rpcCore.chain.getBlockHash(0)),
244
+ firstValueFrom(this._rpcCore.state.getRuntimeVersion()),
245
+ firstValueFrom(this._rpcCore.system.chain()),
246
+ firstValueFrom(this._rpcCore.system.properties()),
247
+ firstValueFrom(this._rpcCore.rpc.methods())
248
+ ]);
249
+ // set our chain version & genesisHash as returned
250
+ this._runtimeChain = chain;
251
+ this._runtimeVersion = runtimeVersion;
252
+ this._rx.runtimeVersion = runtimeVersion;
253
+ // retrieve metadata, either from chain or as pass-in via options
254
+ const metadataKey = `${genesisHash.toHex() || '0x'}-${runtimeVersion.specVersion.toString()}`;
255
+ const metadata = optMetadata?.[metadataKey]
256
+ ? new Metadata(this.registry, optMetadata[metadataKey])
257
+ : await this._retrieveMetadata(runtimeVersion.apis);
258
+ // initializes the registry & RPC
259
+ this._initRegistry(this.registry, chain, runtimeVersion, metadata, chainProps);
260
+ this._filterRpc(rpcMethods.methods.map(textToString), getSpecRpc(this.registry, chain, runtimeVersion.specName));
261
+ this._subscribeUpdates();
262
+ // setup the initial registry, when we have none
263
+ if (!this.#registries.length) {
264
+ this.#registries.push({ counter: 0, isDefault: true, metadata, registry: this.registry, runtimeVersion });
265
+ }
266
+ // get unique types & validate
267
+ metadata.getUniqTypes(this._options.throwOnUnknown || false);
268
+ return [genesisHash, metadata];
269
+ }
270
+ _initFromMeta(metadata) {
271
+ const runtimeVersion = this._runtimeVersion;
272
+ if (!runtimeVersion) {
273
+ throw new Error('Invalid initializion order, runtimeVersion is not available');
274
+ }
275
+ // ExtrinsicV5 is not fully supported yet, for that reason we default to version 4
276
+ this._extrinsicType = metadata.asLatest.extrinsic.versions.at(0) || LATEST_EXTRINSIC_VERSION;
277
+ this._rx.extrinsicType = this._extrinsicType;
278
+ this._rx.genesisHash = this._genesisHash;
279
+ this._rx.runtimeVersion = runtimeVersion;
280
+ // inject metadata and adjust the types as detected
281
+ this._injectMetadata(this._getDefaultRegistry(), true);
282
+ // derive is last, since it uses the decorated rx
283
+ this._rx.derive = this._decorateDeriveRx(this._rxDecorateMethod);
284
+ this._derive = this._decorateDerive(this._decorateMethod);
285
+ return true;
286
+ }
287
+ /**
288
+ * @internal
289
+ *
290
+ * Tries to use runtime api calls to retrieve metadata. This ensures the api initializes with the latest metadata.
291
+ * If the runtime call is not there it will use the rpc method.
292
+ */
293
+ async _retrieveMetadata(apis, at, registry) {
294
+ let metadataVersion = null;
295
+ const metadataApi = apis.find(([a]) => a.eq(blake2AsHex('Metadata', 64)));
296
+ const typeRegistry = registry || this.registry;
297
+ // This chain does not have support for the metadataApi, or does not have the required version.
298
+ if (!metadataApi || metadataApi[1].toNumber() < 2) {
299
+ l.warn('MetadataApi not available, rpc::state::get_metadata will be used.');
300
+ return at
301
+ ? new Metadata(typeRegistry, await firstValueFrom(this._rpcCore.state.getMetadata.raw(at)))
302
+ : await firstValueFrom(this._rpcCore.state.getMetadata());
303
+ }
304
+ try {
305
+ const metadataVersionsAsBytes = at
306
+ ? await firstValueFrom(this._rpcCore.state.call.raw('Metadata_metadata_versions', '0x', at))
307
+ : await firstValueFrom(this._rpcCore.state.call('Metadata_metadata_versions', '0x'));
308
+ const versions = typeRegistry.createType('Vec<u32>', metadataVersionsAsBytes);
309
+ // For unstable versions of the metadata the last value is set to u32 MAX in the runtime. This ensures only supported stable versions are used.
310
+ metadataVersion = versions.filter((ver) => SUPPORTED_METADATA_VERSIONS.includes(ver.toNumber())).reduce((largest, current) => current.gt(largest) ? current : largest);
311
+ }
312
+ catch (e) {
313
+ l.debug(e.message);
314
+ l.warn('error with state_call::Metadata_metadata_versions, rpc::state::get_metadata will be used');
315
+ }
316
+ // When the metadata version does not align with the latest supported versions we ensure not to call the metadata runtime call.
317
+ // I noticed on some previous runtimes that have support for `Metadata_metadata_at_version` that very irregular versions were being returned.
318
+ // This was evident with runtime 1000000 - it return a very large number. This ensures we always stick within what is supported.
319
+ if (metadataVersion && !SUPPORTED_METADATA_VERSIONS.includes(metadataVersion.toNumber())) {
320
+ metadataVersion = null;
321
+ }
322
+ if (metadataVersion) {
323
+ try {
324
+ const metadataBytes = at
325
+ ? await firstValueFrom(this._rpcCore.state.call.raw('Metadata_metadata_at_version', u8aToHex(metadataVersion.toU8a()), at))
326
+ : await firstValueFrom(this._rpcCore.state.call('Metadata_metadata_at_version', u8aToHex(metadataVersion.toU8a())));
327
+ // When the metadata is called with `at` it is required to use `.raw`. Therefore since the length prefix is not present the
328
+ // need to create a `Raw` type is necessary before creating the `OpaqueMetadata` type or else there will be a magic number
329
+ // mismatch
330
+ const rawMeta = at
331
+ ? typeRegistry.createType('Raw', metadataBytes).toU8a()
332
+ : metadataBytes;
333
+ const opaqueMetadata = typeRegistry.createType('Option<OpaqueMetadata>', rawMeta).unwrapOr(null);
334
+ if (opaqueMetadata) {
335
+ return new Metadata(typeRegistry, opaqueMetadata.toHex());
336
+ }
337
+ }
338
+ catch (e) {
339
+ l.debug(e.message);
340
+ l.warn('error with state_call::Metadata_metadata_at_version, rpc::state::get_metadata will be used');
341
+ }
342
+ }
343
+ return at
344
+ ? new Metadata(typeRegistry, await firstValueFrom(this._rpcCore.state.getMetadata.raw(at)))
345
+ : await firstValueFrom(this._rpcCore.state.getMetadata());
346
+ }
347
+ _subscribeHealth() {
348
+ this._unsubscribeHealth();
349
+ // Only enable the health keepalive on WS, not needed on HTTP
350
+ this.#healthTimer = this.hasSubscriptions
351
+ ? setInterval(() => {
352
+ firstValueFrom(this._rpcCore.system.health.raw()).catch(noop);
353
+ }, KEEPALIVE_INTERVAL)
354
+ : null;
355
+ }
356
+ _unsubscribeHealth() {
357
+ if (this.#healthTimer) {
358
+ clearInterval(this.#healthTimer);
359
+ this.#healthTimer = null;
360
+ }
361
+ }
362
+ _unsubscribeUpdates() {
363
+ if (this.#updateSub) {
364
+ this.#updateSub.unsubscribe();
365
+ this.#updateSub = null;
366
+ }
367
+ }
368
+ _unsubscribe() {
369
+ this._unsubscribeHealth();
370
+ this._unsubscribeUpdates();
371
+ }
372
+ async #onProviderConnect() {
373
+ this._isConnected.next(true);
374
+ this.emit('connected');
375
+ try {
376
+ const cryptoReady = this._options.initWasm === false
377
+ ? true
378
+ : await cryptoWaitReady();
379
+ const hasMeta = await this._loadMeta();
380
+ this._subscribeHealth();
381
+ if (hasMeta && !this._isReady && cryptoReady) {
382
+ this._isReady = true;
383
+ this.emit('ready', this);
384
+ }
385
+ }
386
+ catch (_error) {
387
+ const error = new Error(`FATAL: Unable to initialize the API: ${_error.message}`);
388
+ l.error(error);
389
+ this.emit('error', error);
390
+ }
391
+ }
392
+ #onProviderDisconnect() {
393
+ this._isConnected.next(false);
394
+ this._unsubscribe();
395
+ this.emit('disconnected');
396
+ }
397
+ #onProviderError(error) {
398
+ this.emit('error', error);
399
+ }
400
+ }
@@ -0,0 +1,3 @@
1
+ import type { CallFunction, Registry, RegistryError } from '@pezkuwi/types/types';
2
+ export declare function findCall(registry: Registry, callIndex: Uint8Array | string): CallFunction;
3
+ export declare function findError(registry: Registry, errorIndex: Uint8Array | string): RegistryError;
@@ -0,0 +1,7 @@
1
+ import { u8aToU8a } from '@pezkuwi/util';
2
+ export function findCall(registry, callIndex) {
3
+ return registry.findMetaCall(u8aToU8a(callIndex));
4
+ }
5
+ export function findError(registry, errorIndex) {
6
+ return registry.findMetaError(u8aToU8a(errorIndex));
7
+ }
@@ -0,0 +1,47 @@
1
+ import type { SignerPayloadRawBase } from '@pezkuwi/types/types';
2
+ import type { ApiOptions, ApiTypes, DecorateMethod, Signer } from '../types/index.js';
3
+ import { Getters } from './Getters.js';
4
+ interface KeyringSigner {
5
+ sign(message: Uint8Array): Uint8Array;
6
+ }
7
+ interface SignerRawOptions {
8
+ signer?: Signer;
9
+ }
10
+ export declare abstract class ApiBase<ApiType extends ApiTypes> extends Getters<ApiType> {
11
+ /**
12
+ * @description Create an instance of the class
13
+ *
14
+ * @param options Options object to create API instance or a Provider instance
15
+ *
16
+ * @example
17
+ * <BR>
18
+ *
19
+ * ```javascript
20
+ * import Api from '@pezkuwi/api/promise';
21
+ *
22
+ * const api = new Api().isReady();
23
+ *
24
+ * api.rpc.subscribeNewHeads((header) => {
25
+ * console.log(`new block #${header.number.toNumber()}`);
26
+ * });
27
+ * ```
28
+ */
29
+ constructor(options: ApiOptions | undefined, type: ApiTypes, decorateMethod: DecorateMethod<ApiType>);
30
+ /**
31
+ * @description Connect from the underlying provider, halting all network traffic
32
+ */
33
+ connect(): Promise<void>;
34
+ /**
35
+ * @description Disconnect from the underlying provider, halting all network traffic
36
+ */
37
+ disconnect(): Promise<void>;
38
+ /**
39
+ * @description Set an external signer which will be used to sign extrinsic when account passed in is not KeyringPair
40
+ */
41
+ setSigner(signer: Signer | undefined): void;
42
+ /**
43
+ * @description Signs a raw signer payload, string or Uint8Array
44
+ */
45
+ sign(address: KeyringSigner | string, data: SignerPayloadRawBase, { signer }?: SignerRawOptions): Promise<string>;
46
+ }
47
+ export {};
@@ -0,0 +1,57 @@
1
+ import { isString, objectSpread, u8aToHex, u8aToU8a } from '@pezkuwi/util';
2
+ import { Getters } from './Getters.js';
3
+ export class ApiBase extends Getters {
4
+ /**
5
+ * @description Create an instance of the class
6
+ *
7
+ * @param options Options object to create API instance or a Provider instance
8
+ *
9
+ * @example
10
+ * <BR>
11
+ *
12
+ * ```javascript
13
+ * import Api from '@pezkuwi/api/promise';
14
+ *
15
+ * const api = new Api().isReady();
16
+ *
17
+ * api.rpc.subscribeNewHeads((header) => {
18
+ * console.log(`new block #${header.number.toNumber()}`);
19
+ * });
20
+ * ```
21
+ */
22
+ constructor(options = {}, type, decorateMethod) {
23
+ super(options, type, decorateMethod);
24
+ }
25
+ /**
26
+ * @description Connect from the underlying provider, halting all network traffic
27
+ */
28
+ connect() {
29
+ return this._rpcCore.connect();
30
+ }
31
+ /**
32
+ * @description Disconnect from the underlying provider, halting all network traffic
33
+ */
34
+ disconnect() {
35
+ this._unsubscribe();
36
+ return this._rpcCore.disconnect();
37
+ }
38
+ /**
39
+ * @description Set an external signer which will be used to sign extrinsic when account passed in is not KeyringPair
40
+ */
41
+ setSigner(signer) {
42
+ this._rx.signer = signer;
43
+ }
44
+ /**
45
+ * @description Signs a raw signer payload, string or Uint8Array
46
+ */
47
+ async sign(address, data, { signer } = {}) {
48
+ if (isString(address)) {
49
+ const _signer = signer || this._rx.signer;
50
+ if (!_signer?.signRaw) {
51
+ throw new Error('No signer exists with a signRaw interface. You possibly need to pass through an explicit keypair for the origin so it can be used for signing.');
52
+ }
53
+ return (await _signer.signRaw(objectSpread({ type: 'bytes' }, data, { address }))).signature;
54
+ }
55
+ return u8aToHex(address.sign(u8aToU8a(data.data)));
56
+ }
57
+ }
@@ -0,0 +1,15 @@
1
+ import type { Metadata } from '@pezkuwi/types';
2
+ import type { RuntimeVersionPartial } from '@pezkuwi/types/interfaces';
3
+ import type { DecoratedMeta } from '@pezkuwi/types/metadata/decorate/types';
4
+ import type { Registry } from '@pezkuwi/types/types';
5
+ import type { ApiDecoration, ApiTypes } from '../types/index.js';
6
+ export interface VersionedRegistry<ApiType extends ApiTypes> {
7
+ counter: number;
8
+ decoratedApi?: ApiDecoration<ApiType>;
9
+ decoratedMeta?: DecoratedMeta;
10
+ isDefault?: boolean;
11
+ lastBlockHash?: Uint8Array | null;
12
+ metadata: Metadata;
13
+ registry: Registry;
14
+ runtimeVersion: RuntimeVersionPartial;
15
+ }
@@ -0,0 +1 @@
1
+ export {};