quantumcoin 7.0.11 → 7.0.13

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 (324) hide show
  1. package/README-SDK.md +828 -807
  2. package/README.md +17 -0
  3. package/config.d.ts +50 -50
  4. package/examples/example-generated-sdk-js/README.md +65 -0
  5. package/examples/example-generated-sdk-js/examples/_test-wallet.js +17 -0
  6. package/examples/example-generated-sdk-js/examples/deploy.js +41 -0
  7. package/examples/example-generated-sdk-js/examples/events.js +36 -0
  8. package/examples/example-generated-sdk-js/examples/read-operations.js +46 -0
  9. package/examples/example-generated-sdk-js/examples/write-operations.js +44 -0
  10. package/examples/example-generated-sdk-js/index.d.ts +1 -0
  11. package/examples/example-generated-sdk-js/index.js +15 -0
  12. package/examples/example-generated-sdk-js/package-lock.json +59 -0
  13. package/examples/example-generated-sdk-js/package.json +22 -0
  14. package/examples/example-generated-sdk-js/src/SimpleERC20.d.ts +19 -0
  15. package/examples/example-generated-sdk-js/src/SimpleERC20.js +353 -0
  16. package/examples/example-generated-sdk-js/src/SimpleERC20__factory.d.ts +10 -0
  17. package/examples/example-generated-sdk-js/src/SimpleERC20__factory.js +29 -0
  18. package/examples/example-generated-sdk-js/src/index.d.ts +4 -0
  19. package/examples/example-generated-sdk-js/src/index.js +5 -0
  20. package/examples/example-generated-sdk-js/src/quantumcoin-shims.d.ts +23 -0
  21. package/examples/example-generated-sdk-js/src/types.d.ts +3 -0
  22. package/examples/example-generated-sdk-js/src/types.js +3 -0
  23. package/examples/example-generated-sdk-js/test/e2e/SimpleERC20.e2e.test.js +78 -0
  24. package/examples/example-generated-sdk-ts/README.md +65 -0
  25. package/examples/example-generated-sdk-ts/examples/_test-wallet.js +17 -0
  26. package/examples/example-generated-sdk-ts/examples/deploy.js +41 -0
  27. package/examples/example-generated-sdk-ts/examples/events.js +36 -0
  28. package/examples/example-generated-sdk-ts/examples/read-operations.js +46 -0
  29. package/examples/example-generated-sdk-ts/examples/write-operations.js +44 -0
  30. package/examples/example-generated-sdk-ts/index.d.ts +1 -0
  31. package/examples/example-generated-sdk-ts/index.js +15 -0
  32. package/examples/example-generated-sdk-ts/package-lock.json +59 -0
  33. package/examples/example-generated-sdk-ts/package.json +23 -0
  34. package/examples/example-generated-sdk-ts/src/SimpleERC20.ts +334 -0
  35. package/examples/example-generated-sdk-ts/src/SimpleERC20__factory.ts +28 -0
  36. package/examples/example-generated-sdk-ts/src/index.ts +4 -0
  37. package/examples/example-generated-sdk-ts/src/quantumcoin-shims.d.ts +23 -0
  38. package/examples/example-generated-sdk-ts/src/types.ts +4 -0
  39. package/examples/example-generated-sdk-ts/test/e2e/SimpleERC20.e2e.test.js +78 -0
  40. package/examples/example-generated-sdk-ts/tsconfig.json +14 -0
  41. package/examples/package-lock.json +1 -1
  42. package/examples/sdk-generator-erc20.inline.json +251 -251
  43. package/generate-sdk.js +1825 -1823
  44. package/package.json +1 -1
  45. package/src/abi/fragments.d.ts +42 -42
  46. package/src/abi/index.d.ts +13 -13
  47. package/src/contract/index.d.ts +9 -9
  48. package/src/errors/index.d.ts +92 -92
  49. package/src/generator/index.d.ts +11 -4
  50. package/src/generator/index.js +33 -5
  51. package/src/internal/hex.d.ts +68 -61
  52. package/src/internal/hex.js +36 -0
  53. package/src/providers/json-rpc-provider.d.ts +12 -12
  54. package/src/providers/provider.js +3 -3
  55. package/src/utils/address.d.ts +58 -58
  56. package/src/utils/encoding.d.ts +120 -120
  57. package/src/utils/hashing.js +298 -298
  58. package/src/utils/index.d.ts +63 -63
  59. package/src/utils/index.js +14 -14
  60. package/src/utils/result.d.ts +57 -57
  61. package/src/utils/rlp.d.ts +12 -12
  62. package/src/utils/units.d.ts +29 -29
  63. package/src/wallet/index.d.ts +10 -10
  64. package/src/wallet/wallet.d.ts +192 -187
  65. package/src/wallet/wallet.js +630 -610
  66. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/README.md +83 -0
  67. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/artifacts/AllSolidityTypes.abi.json +12544 -0
  68. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/artifacts/AllSolidityTypes.bin +1 -0
  69. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/_test-wallet.js +17 -0
  70. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/_test-wallet.ts +10 -0
  71. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/deploy.js +41 -0
  72. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/deploy.ts +41 -0
  73. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/events.js +36 -0
  74. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/events.ts +36 -0
  75. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/offline-signing.js +82 -0
  76. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/offline-signing.ts +80 -0
  77. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/read-operations.js +46 -0
  78. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/read-operations.ts +44 -0
  79. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/write-operations.js +44 -0
  80. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/examples/write-operations.ts +44 -0
  81. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/index.d.ts +1 -0
  82. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/index.js +21 -0
  83. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/package-lock.json +597 -0
  84. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/package.json +25 -0
  85. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/AllSolidityTypes.d.ts +1280 -0
  86. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/AllSolidityTypes.js +14021 -0
  87. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/AllSolidityTypes__factory.d.ts +11 -0
  88. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/AllSolidityTypes__factory.js +29 -0
  89. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/index.d.ts +4 -0
  90. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/index.js +5 -0
  91. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/quantumcoin-shims.d.ts +25 -0
  92. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/types.d.ts +3 -0
  93. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/src/types.js +3 -0
  94. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/test/e2e/AllSolidityTypes.e2e.test.js +77 -0
  95. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-js/test/e2e/AllSolidityTypes.extra.test.js +195 -0
  96. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/README.md +83 -0
  97. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/artifacts/AllSolidityTypes.abi.json +12544 -0
  98. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/artifacts/AllSolidityTypes.bin +1 -0
  99. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/_test-wallet.js +17 -0
  100. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/_test-wallet.ts +10 -0
  101. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/deploy.js +41 -0
  102. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/deploy.ts +41 -0
  103. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/events.js +36 -0
  104. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/events.ts +36 -0
  105. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/offline-signing.js +82 -0
  106. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/offline-signing.ts +80 -0
  107. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/read-operations.js +46 -0
  108. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/read-operations.ts +44 -0
  109. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/write-operations.js +44 -0
  110. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/examples/write-operations.ts +44 -0
  111. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/index.d.ts +1 -0
  112. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/index.js +21 -0
  113. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/package-lock.json +597 -0
  114. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/package.json +26 -0
  115. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/src/AllSolidityTypes.ts +13940 -0
  116. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/src/AllSolidityTypes__factory.ts +29 -0
  117. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/src/index.ts +4 -0
  118. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/src/quantumcoin-shims.d.ts +25 -0
  119. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/src/types.ts +4 -0
  120. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/test/e2e/AllSolidityTypes.e2e.test.js +77 -0
  121. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/test/e2e/AllSolidityTypes.extra.test.js +195 -0
  122. package/test/e2e/generated-sdks/all-solidity-types/all-solidity-types-ts/tsconfig.json +18 -0
  123. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/README.md +74 -0
  124. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/artifacts/SimpleERC20.abi.json +245 -0
  125. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/artifacts/SimpleERC20.bin +1 -0
  126. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/_test-wallet.js +17 -0
  127. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/_test-wallet.ts +10 -0
  128. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/deploy.js +41 -0
  129. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/deploy.ts +41 -0
  130. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/events.js +36 -0
  131. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/events.ts +36 -0
  132. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/offline-signing.js +82 -0
  133. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/offline-signing.ts +80 -0
  134. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/read-operations.js +46 -0
  135. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/read-operations.ts +44 -0
  136. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/write-operations.js +44 -0
  137. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/examples/write-operations.ts +44 -0
  138. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/index.d.ts +1 -0
  139. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/index.js +16 -0
  140. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/package-lock.json +597 -0
  141. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/package.json +25 -0
  142. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/SimpleERC20.d.ts +24 -0
  143. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/SimpleERC20.js +372 -0
  144. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/SimpleERC20__factory.d.ts +10 -0
  145. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/SimpleERC20__factory.js +29 -0
  146. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/index.d.ts +4 -0
  147. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/index.js +5 -0
  148. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/quantumcoin-shims.d.ts +25 -0
  149. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/types.d.ts +3 -0
  150. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/src/types.js +3 -0
  151. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-js/test/e2e/SimpleERC20.e2e.test.js +90 -0
  152. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/README.md +74 -0
  153. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/artifacts/SimpleERC20.abi.json +245 -0
  154. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/artifacts/SimpleERC20.bin +1 -0
  155. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/_test-wallet.js +17 -0
  156. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/_test-wallet.ts +10 -0
  157. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/deploy.js +41 -0
  158. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/deploy.ts +41 -0
  159. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/events.js +36 -0
  160. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/events.ts +36 -0
  161. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/offline-signing.js +82 -0
  162. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/offline-signing.ts +80 -0
  163. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/read-operations.js +46 -0
  164. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/read-operations.ts +44 -0
  165. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/write-operations.js +44 -0
  166. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/examples/write-operations.ts +44 -0
  167. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/index.d.ts +1 -0
  168. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/index.js +16 -0
  169. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/package-lock.json +597 -0
  170. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/package.json +26 -0
  171. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/src/SimpleERC20.ts +355 -0
  172. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/src/SimpleERC20__factory.ts +28 -0
  173. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/src/index.ts +4 -0
  174. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/src/quantumcoin-shims.d.ts +25 -0
  175. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/src/types.ts +4 -0
  176. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/test/e2e/SimpleERC20.e2e.test.js +90 -0
  177. package/test/e2e/generated-sdks/simple-erc20/simple-erc20-ts/tsconfig.json +18 -0
  178. package/test/e2e/generator-interface.e2e.test.js +163 -0
  179. package/test/e2e/generator-interface.e2e.test.ts +158 -0
  180. package/test/e2e/signing-context-and-fee.e2e.test.js +141 -141
  181. package/test/e2e/signing-context-and-fee.e2e.test.ts +128 -128
  182. package/test/integration/provider.test.js +88 -88
  183. package/test/unit/address-wallet.test.js +892 -751
  184. package/test/unit/address-wallet.test.ts +877 -736
  185. package/test/unit/generator.test.js +48 -1
  186. package/test/unit/generator.test.ts +48 -1
  187. package/test/unit/hashing.test.js +64 -64
  188. package/test/unit/hashing.test.ts +63 -63
  189. package/test/unit/internal-hex.test.js +32 -1
  190. package/test/unit/internal-hex.test.ts +32 -1
  191. package/test/unit/providers.test.js +51 -1
  192. package/test/unit/providers.test.ts +53 -0
  193. package/SPEC.md +0 -3784
  194. package/examples/node_modules/.bin/esbuild +0 -16
  195. package/examples/node_modules/.bin/esbuild.cmd +0 -17
  196. package/examples/node_modules/.bin/esbuild.ps1 +0 -28
  197. package/examples/node_modules/.bin/sdkgen +0 -16
  198. package/examples/node_modules/.bin/sdkgen.cmd +0 -17
  199. package/examples/node_modules/.bin/sdkgen.ps1 +0 -28
  200. package/examples/node_modules/.bin/tsx +0 -16
  201. package/examples/node_modules/.bin/tsx.cmd +0 -17
  202. package/examples/node_modules/.bin/tsx.ps1 +0 -28
  203. package/examples/node_modules/.package-lock.json +0 -235
  204. package/examples/node_modules/@esbuild/win32-x64/README.md +0 -3
  205. package/examples/node_modules/@esbuild/win32-x64/esbuild.exe +0 -0
  206. package/examples/node_modules/@esbuild/win32-x64/package.json +0 -20
  207. package/examples/node_modules/esbuild/LICENSE.md +0 -21
  208. package/examples/node_modules/esbuild/README.md +0 -3
  209. package/examples/node_modules/esbuild/bin/esbuild +0 -223
  210. package/examples/node_modules/esbuild/install.js +0 -289
  211. package/examples/node_modules/esbuild/lib/main.d.ts +0 -716
  212. package/examples/node_modules/esbuild/lib/main.js +0 -2532
  213. package/examples/node_modules/esbuild/package.json +0 -49
  214. package/examples/node_modules/get-tsconfig/LICENSE +0 -21
  215. package/examples/node_modules/get-tsconfig/README.md +0 -235
  216. package/examples/node_modules/get-tsconfig/dist/index.cjs +0 -7
  217. package/examples/node_modules/get-tsconfig/dist/index.d.cts +0 -2088
  218. package/examples/node_modules/get-tsconfig/dist/index.d.mts +0 -2088
  219. package/examples/node_modules/get-tsconfig/dist/index.mjs +0 -7
  220. package/examples/node_modules/get-tsconfig/package.json +0 -46
  221. package/examples/node_modules/quantum-coin-js-sdk/.github/workflows/publish-npmjs.yaml +0 -22
  222. package/examples/node_modules/quantum-coin-js-sdk/LICENSE +0 -21
  223. package/examples/node_modules/quantum-coin-js-sdk/LICENSE-wasm_exec.js.txt +0 -30
  224. package/examples/node_modules/quantum-coin-js-sdk/README.md +0 -1665
  225. package/examples/node_modules/quantum-coin-js-sdk/example/README.md +0 -14
  226. package/examples/node_modules/quantum-coin-js-sdk/example/conversion-example.js +0 -19
  227. package/examples/node_modules/quantum-coin-js-sdk/example/example-create-contract.js +0 -396
  228. package/examples/node_modules/quantum-coin-js-sdk/example/example-encode-decode-rlp.js +0 -225
  229. package/examples/node_modules/quantum-coin-js-sdk/example/example-event-pack-unpack.js +0 -391
  230. package/examples/node_modules/quantum-coin-js-sdk/example/example-misc.js +0 -101
  231. package/examples/node_modules/quantum-coin-js-sdk/example/example-rpc-send-signRawTransaction.js +0 -318
  232. package/examples/node_modules/quantum-coin-js-sdk/example/example-rpc-send.js +0 -116
  233. package/examples/node_modules/quantum-coin-js-sdk/example/example-send.js +0 -70
  234. package/examples/node_modules/quantum-coin-js-sdk/example/example-token-pack-unpack.js +0 -961
  235. package/examples/node_modules/quantum-coin-js-sdk/example/example-wallet-version4.js +0 -35
  236. package/examples/node_modules/quantum-coin-js-sdk/example/example-wallet.js +0 -43
  237. package/examples/node_modules/quantum-coin-js-sdk/example/example.js +0 -405
  238. package/examples/node_modules/quantum-coin-js-sdk/example/package-lock.json +0 -134
  239. package/examples/node_modules/quantum-coin-js-sdk/example/package.json +0 -15
  240. package/examples/node_modules/quantum-coin-js-sdk/index.d.ts +0 -1024
  241. package/examples/node_modules/quantum-coin-js-sdk/index.js +0 -3062
  242. package/examples/node_modules/quantum-coin-js-sdk/package.json +0 -34
  243. package/examples/node_modules/quantum-coin-js-sdk/tests/encrypted-32.json +0 -1
  244. package/examples/node_modules/quantum-coin-js-sdk/tests/encrypted-36.json +0 -1
  245. package/examples/node_modules/quantum-coin-js-sdk/tests/encrypted-48.json +0 -1
  246. package/examples/node_modules/quantum-coin-js-sdk/tests/generate-verify-vectors.js +0 -91
  247. package/examples/node_modules/quantum-coin-js-sdk/tests/non-transactional.preinit.test.js +0 -41
  248. package/examples/node_modules/quantum-coin-js-sdk/tests/non-transactional.test.js +0 -686
  249. package/examples/node_modules/quantum-coin-js-sdk/tests/sign-raw-keytype5-context-null.test.js +0 -107
  250. package/examples/node_modules/quantum-coin-js-sdk/tests/sign-raw-transaction.test.js +0 -196
  251. package/examples/node_modules/quantum-coin-js-sdk/tests/sign-verify.test.js +0 -311
  252. package/examples/node_modules/quantum-coin-js-sdk/tests/transactional.relay.test.js +0 -131
  253. package/examples/node_modules/quantum-coin-js-sdk/tests/transactional.rpc.test.js +0 -103
  254. package/examples/node_modules/quantum-coin-js-sdk/tests/verify-vectors.json +0 -95035
  255. package/examples/node_modules/quantum-coin-js-sdk/wasmBase64.d.ts +0 -9
  256. package/examples/node_modules/quantum-coin-js-sdk/wasmBase64.js +0 -16
  257. package/examples/node_modules/quantum-coin-js-sdk/wasm_exec.d.ts +0 -0
  258. package/examples/node_modules/quantum-coin-js-sdk/wasm_exec.js +0 -587
  259. package/examples/node_modules/resolve-pkg-maps/LICENSE +0 -21
  260. package/examples/node_modules/resolve-pkg-maps/README.md +0 -216
  261. package/examples/node_modules/resolve-pkg-maps/dist/index.cjs +0 -1
  262. package/examples/node_modules/resolve-pkg-maps/dist/index.d.cts +0 -11
  263. package/examples/node_modules/resolve-pkg-maps/dist/index.d.mts +0 -11
  264. package/examples/node_modules/resolve-pkg-maps/dist/index.mjs +0 -1
  265. package/examples/node_modules/resolve-pkg-maps/package.json +0 -42
  266. package/examples/node_modules/seed-words/.github/workflows/publish-npmjs.yaml +0 -22
  267. package/examples/node_modules/seed-words/BUILD.md +0 -7
  268. package/examples/node_modules/seed-words/LICENSE +0 -121
  269. package/examples/node_modules/seed-words/README.md +0 -67
  270. package/examples/node_modules/seed-words/dist/seedwords.d.ts +0 -39
  271. package/examples/node_modules/seed-words/package.json +0 -27
  272. package/examples/node_modules/seed-words/seedwords.js +0 -315
  273. package/examples/node_modules/seed-words/seedwords.txt +0 -65536
  274. package/examples/node_modules/seed-words/tsconfig.json +0 -21
  275. package/examples/node_modules/tsx/LICENSE +0 -21
  276. package/examples/node_modules/tsx/README.md +0 -32
  277. package/examples/node_modules/tsx/dist/cjs/api/index.cjs +0 -1
  278. package/examples/node_modules/tsx/dist/cjs/api/index.d.cts +0 -35
  279. package/examples/node_modules/tsx/dist/cjs/api/index.d.mts +0 -35
  280. package/examples/node_modules/tsx/dist/cjs/api/index.mjs +0 -1
  281. package/examples/node_modules/tsx/dist/cjs/index.cjs +0 -1
  282. package/examples/node_modules/tsx/dist/cjs/index.mjs +0 -1
  283. package/examples/node_modules/tsx/dist/cli.cjs +0 -54
  284. package/examples/node_modules/tsx/dist/cli.mjs +0 -55
  285. package/examples/node_modules/tsx/dist/client-BQVF1NaW.mjs +0 -1
  286. package/examples/node_modules/tsx/dist/client-D6NvIMSC.cjs +0 -1
  287. package/examples/node_modules/tsx/dist/esm/api/index.cjs +0 -1
  288. package/examples/node_modules/tsx/dist/esm/api/index.d.cts +0 -35
  289. package/examples/node_modules/tsx/dist/esm/api/index.d.mts +0 -35
  290. package/examples/node_modules/tsx/dist/esm/api/index.mjs +0 -1
  291. package/examples/node_modules/tsx/dist/esm/index.cjs +0 -2
  292. package/examples/node_modules/tsx/dist/esm/index.mjs +0 -2
  293. package/examples/node_modules/tsx/dist/get-pipe-path-BHW2eJdv.mjs +0 -1
  294. package/examples/node_modules/tsx/dist/get-pipe-path-BoR10qr8.cjs +0 -1
  295. package/examples/node_modules/tsx/dist/index-7AaEi15b.mjs +0 -14
  296. package/examples/node_modules/tsx/dist/index-BWFBUo6r.cjs +0 -1
  297. package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +0 -1
  298. package/examples/node_modules/tsx/dist/index-gckBtVBf.cjs +0 -14
  299. package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +0 -3
  300. package/examples/node_modules/tsx/dist/lexer-DgIbo0BU.cjs +0 -3
  301. package/examples/node_modules/tsx/dist/loader.cjs +0 -1
  302. package/examples/node_modules/tsx/dist/loader.mjs +0 -1
  303. package/examples/node_modules/tsx/dist/node-features-_8ZFwP_x.mjs +0 -1
  304. package/examples/node_modules/tsx/dist/node-features-roYmp9jK.cjs +0 -1
  305. package/examples/node_modules/tsx/dist/package-CeBgXWuR.mjs +0 -1
  306. package/examples/node_modules/tsx/dist/package-Dxt5kIHw.cjs +0 -1
  307. package/examples/node_modules/tsx/dist/patch-repl.cjs +0 -1
  308. package/examples/node_modules/tsx/dist/patch-repl.mjs +0 -1
  309. package/examples/node_modules/tsx/dist/preflight.cjs +0 -1
  310. package/examples/node_modules/tsx/dist/preflight.mjs +0 -1
  311. package/examples/node_modules/tsx/dist/register-2sWVXuRQ.cjs +0 -1
  312. package/examples/node_modules/tsx/dist/register-B7jrtLTO.mjs +0 -1
  313. package/examples/node_modules/tsx/dist/register-CFH5oNdT.mjs +0 -4
  314. package/examples/node_modules/tsx/dist/register-D46fvsV_.cjs +0 -4
  315. package/examples/node_modules/tsx/dist/repl.cjs +0 -3
  316. package/examples/node_modules/tsx/dist/repl.mjs +0 -3
  317. package/examples/node_modules/tsx/dist/require-D4F1Lv60.cjs +0 -1
  318. package/examples/node_modules/tsx/dist/require-DQxpCAr4.mjs +0 -1
  319. package/examples/node_modules/tsx/dist/suppress-warnings.cjs +0 -1
  320. package/examples/node_modules/tsx/dist/suppress-warnings.mjs +0 -1
  321. package/examples/node_modules/tsx/dist/temporary-directory-B83uKxJF.cjs +0 -1
  322. package/examples/node_modules/tsx/dist/temporary-directory-CwHp0_NW.mjs +0 -1
  323. package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +0 -5
  324. package/examples/node_modules/tsx/package.json +0 -68
@@ -1,223 +0,0 @@
1
- #!/usr/bin/env node
2
- "use strict";
3
- var __create = Object.create;
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getProtoOf = Object.getPrototypeOf;
8
- var __hasOwnProp = Object.prototype.hasOwnProperty;
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
18
- // If the importer is in node compatibility mode or this is not an ESM
19
- // file that has been converted to a CommonJS file using a Babel-
20
- // compatible transform (i.e. "__esModule" has not been set), then set
21
- // "default" to the CommonJS "module.exports" for node compatibility.
22
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
23
- mod
24
- ));
25
-
26
- // lib/npm/node-platform.ts
27
- var fs = require("fs");
28
- var os = require("os");
29
- var path = require("path");
30
- var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
31
- var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
32
- var packageDarwin_arm64 = "@esbuild/darwin-arm64";
33
- var packageDarwin_x64 = "@esbuild/darwin-x64";
34
- var knownWindowsPackages = {
35
- "win32 arm64 LE": "@esbuild/win32-arm64",
36
- "win32 ia32 LE": "@esbuild/win32-ia32",
37
- "win32 x64 LE": "@esbuild/win32-x64"
38
- };
39
- var knownUnixlikePackages = {
40
- "aix ppc64 BE": "@esbuild/aix-ppc64",
41
- "android arm64 LE": "@esbuild/android-arm64",
42
- "darwin arm64 LE": "@esbuild/darwin-arm64",
43
- "darwin x64 LE": "@esbuild/darwin-x64",
44
- "freebsd arm64 LE": "@esbuild/freebsd-arm64",
45
- "freebsd x64 LE": "@esbuild/freebsd-x64",
46
- "linux arm LE": "@esbuild/linux-arm",
47
- "linux arm64 LE": "@esbuild/linux-arm64",
48
- "linux ia32 LE": "@esbuild/linux-ia32",
49
- "linux mips64el LE": "@esbuild/linux-mips64el",
50
- "linux ppc64 LE": "@esbuild/linux-ppc64",
51
- "linux riscv64 LE": "@esbuild/linux-riscv64",
52
- "linux s390x BE": "@esbuild/linux-s390x",
53
- "linux x64 LE": "@esbuild/linux-x64",
54
- "linux loong64 LE": "@esbuild/linux-loong64",
55
- "netbsd arm64 LE": "@esbuild/netbsd-arm64",
56
- "netbsd x64 LE": "@esbuild/netbsd-x64",
57
- "openbsd arm64 LE": "@esbuild/openbsd-arm64",
58
- "openbsd x64 LE": "@esbuild/openbsd-x64",
59
- "sunos x64 LE": "@esbuild/sunos-x64"
60
- };
61
- var knownWebAssemblyFallbackPackages = {
62
- "android arm LE": "@esbuild/android-arm",
63
- "android x64 LE": "@esbuild/android-x64",
64
- "openharmony arm64 LE": "@esbuild/openharmony-arm64"
65
- };
66
- function pkgAndSubpathForCurrentPlatform() {
67
- let pkg;
68
- let subpath;
69
- let isWASM2 = false;
70
- let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
71
- if (platformKey in knownWindowsPackages) {
72
- pkg = knownWindowsPackages[platformKey];
73
- subpath = "esbuild.exe";
74
- } else if (platformKey in knownUnixlikePackages) {
75
- pkg = knownUnixlikePackages[platformKey];
76
- subpath = "bin/esbuild";
77
- } else if (platformKey in knownWebAssemblyFallbackPackages) {
78
- pkg = knownWebAssemblyFallbackPackages[platformKey];
79
- subpath = "bin/esbuild";
80
- isWASM2 = true;
81
- } else {
82
- throw new Error(`Unsupported platform: ${platformKey}`);
83
- }
84
- return { pkg, subpath, isWASM: isWASM2 };
85
- }
86
- function pkgForSomeOtherPlatform() {
87
- const libMainJS = require.resolve("esbuild");
88
- const nodeModulesDirectory = path.dirname(path.dirname(path.dirname(libMainJS)));
89
- if (path.basename(nodeModulesDirectory) === "node_modules") {
90
- for (const unixKey in knownUnixlikePackages) {
91
- try {
92
- const pkg = knownUnixlikePackages[unixKey];
93
- if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
94
- } catch {
95
- }
96
- }
97
- for (const windowsKey in knownWindowsPackages) {
98
- try {
99
- const pkg = knownWindowsPackages[windowsKey];
100
- if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
101
- } catch {
102
- }
103
- }
104
- }
105
- return null;
106
- }
107
- function downloadedBinPath(pkg, subpath) {
108
- const esbuildLibDir = path.dirname(require.resolve("esbuild"));
109
- return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
110
- }
111
- function generateBinPath() {
112
- if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
113
- if (!fs.existsSync(ESBUILD_BINARY_PATH)) {
114
- console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
115
- } else {
116
- return { binPath: ESBUILD_BINARY_PATH, isWASM: false };
117
- }
118
- }
119
- const { pkg, subpath, isWASM: isWASM2 } = pkgAndSubpathForCurrentPlatform();
120
- let binPath2;
121
- try {
122
- binPath2 = require.resolve(`${pkg}/${subpath}`);
123
- } catch (e) {
124
- binPath2 = downloadedBinPath(pkg, subpath);
125
- if (!fs.existsSync(binPath2)) {
126
- try {
127
- require.resolve(pkg);
128
- } catch {
129
- const otherPkg = pkgForSomeOtherPlatform();
130
- if (otherPkg) {
131
- let suggestions = `
132
- Specifically the "${otherPkg}" package is present but this platform
133
- needs the "${pkg}" package instead. People often get into this
134
- situation by installing esbuild on Windows or macOS and copying "node_modules"
135
- into a Docker image that runs Linux, or by copying "node_modules" between
136
- Windows and WSL environments.
137
-
138
- If you are installing with npm, you can try not copying the "node_modules"
139
- directory when you copy the files over, and running "npm ci" or "npm install"
140
- on the destination platform after the copy. Or you could consider using yarn
141
- instead of npm which has built-in support for installing a package on multiple
142
- platforms simultaneously.
143
-
144
- If you are installing with yarn, you can try listing both this platform and the
145
- other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
146
- feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
147
- Keep in mind that this means multiple copies of esbuild will be present.
148
- `;
149
- if (pkg === packageDarwin_x64 && otherPkg === packageDarwin_arm64 || pkg === packageDarwin_arm64 && otherPkg === packageDarwin_x64) {
150
- suggestions = `
151
- Specifically the "${otherPkg}" package is present but this platform
152
- needs the "${pkg}" package instead. People often get into this
153
- situation by installing esbuild with npm running inside of Rosetta 2 and then
154
- trying to use it with node running outside of Rosetta 2, or vice versa (Rosetta
155
- 2 is Apple's on-the-fly x86_64-to-arm64 translation service).
156
-
157
- If you are installing with npm, you can try ensuring that both npm and node are
158
- not running under Rosetta 2 and then reinstalling esbuild. This likely involves
159
- changing how you installed npm and/or node. For example, installing node with
160
- the universal installer here should work: https://nodejs.org/en/download/. Or
161
- you could consider using yarn instead of npm which has built-in support for
162
- installing a package on multiple platforms simultaneously.
163
-
164
- If you are installing with yarn, you can try listing both "arm64" and "x64"
165
- in your ".yarnrc.yml" file using the "supportedArchitectures" feature:
166
- https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
167
- Keep in mind that this means multiple copies of esbuild will be present.
168
- `;
169
- }
170
- throw new Error(`
171
- You installed esbuild for another platform than the one you're currently using.
172
- This won't work because esbuild is written with native code and needs to
173
- install a platform-specific binary executable.
174
- ${suggestions}
175
- Another alternative is to use the "esbuild-wasm" package instead, which works
176
- the same way on all platforms. But it comes with a heavy performance cost and
177
- can sometimes be 10x slower than the "esbuild" package, so you may also not
178
- want to do that.
179
- `);
180
- }
181
- throw new Error(`The package "${pkg}" could not be found, and is needed by esbuild.
182
-
183
- If you are installing esbuild with npm, make sure that you don't specify the
184
- "--no-optional" or "--omit=optional" flags. The "optionalDependencies" feature
185
- of "package.json" is used by esbuild to install the correct binary executable
186
- for your current platform.`);
187
- }
188
- throw e;
189
- }
190
- }
191
- if (/\.zip\//.test(binPath2)) {
192
- let pnpapi;
193
- try {
194
- pnpapi = require("pnpapi");
195
- } catch (e) {
196
- }
197
- if (pnpapi) {
198
- const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
199
- const binTargetPath = path.join(
200
- root,
201
- "node_modules",
202
- ".cache",
203
- "esbuild",
204
- `pnpapi-${pkg.replace("/", "-")}-${"0.27.7"}-${path.basename(subpath)}`
205
- );
206
- if (!fs.existsSync(binTargetPath)) {
207
- fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
208
- fs.copyFileSync(binPath2, binTargetPath);
209
- fs.chmodSync(binTargetPath, 493);
210
- }
211
- return { binPath: binTargetPath, isWASM: isWASM2 };
212
- }
213
- }
214
- return { binPath: binPath2, isWASM: isWASM2 };
215
- }
216
-
217
- // lib/npm/node-shim.ts
218
- var { binPath, isWASM } = generateBinPath();
219
- if (isWASM) {
220
- require("child_process").execFileSync("node", [binPath].concat(process.argv.slice(2)), { stdio: "inherit" });
221
- } else {
222
- require("child_process").execFileSync(binPath, process.argv.slice(2), { stdio: "inherit" });
223
- }
@@ -1,289 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __copyProps = (to, from, except, desc) => {
9
- if (from && typeof from === "object" || typeof from === "function") {
10
- for (let key of __getOwnPropNames(from))
11
- if (!__hasOwnProp.call(to, key) && key !== except)
12
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
- }
14
- return to;
15
- };
16
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
- // If the importer is in node compatibility mode or this is not an ESM
18
- // file that has been converted to a CommonJS file using a Babel-
19
- // compatible transform (i.e. "__esModule" has not been set), then set
20
- // "default" to the CommonJS "module.exports" for node compatibility.
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
- mod
23
- ));
24
-
25
- // lib/npm/node-platform.ts
26
- var fs = require("fs");
27
- var os = require("os");
28
- var path = require("path");
29
- var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
30
- var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
31
- var knownWindowsPackages = {
32
- "win32 arm64 LE": "@esbuild/win32-arm64",
33
- "win32 ia32 LE": "@esbuild/win32-ia32",
34
- "win32 x64 LE": "@esbuild/win32-x64"
35
- };
36
- var knownUnixlikePackages = {
37
- "aix ppc64 BE": "@esbuild/aix-ppc64",
38
- "android arm64 LE": "@esbuild/android-arm64",
39
- "darwin arm64 LE": "@esbuild/darwin-arm64",
40
- "darwin x64 LE": "@esbuild/darwin-x64",
41
- "freebsd arm64 LE": "@esbuild/freebsd-arm64",
42
- "freebsd x64 LE": "@esbuild/freebsd-x64",
43
- "linux arm LE": "@esbuild/linux-arm",
44
- "linux arm64 LE": "@esbuild/linux-arm64",
45
- "linux ia32 LE": "@esbuild/linux-ia32",
46
- "linux mips64el LE": "@esbuild/linux-mips64el",
47
- "linux ppc64 LE": "@esbuild/linux-ppc64",
48
- "linux riscv64 LE": "@esbuild/linux-riscv64",
49
- "linux s390x BE": "@esbuild/linux-s390x",
50
- "linux x64 LE": "@esbuild/linux-x64",
51
- "linux loong64 LE": "@esbuild/linux-loong64",
52
- "netbsd arm64 LE": "@esbuild/netbsd-arm64",
53
- "netbsd x64 LE": "@esbuild/netbsd-x64",
54
- "openbsd arm64 LE": "@esbuild/openbsd-arm64",
55
- "openbsd x64 LE": "@esbuild/openbsd-x64",
56
- "sunos x64 LE": "@esbuild/sunos-x64"
57
- };
58
- var knownWebAssemblyFallbackPackages = {
59
- "android arm LE": "@esbuild/android-arm",
60
- "android x64 LE": "@esbuild/android-x64",
61
- "openharmony arm64 LE": "@esbuild/openharmony-arm64"
62
- };
63
- function pkgAndSubpathForCurrentPlatform() {
64
- let pkg;
65
- let subpath;
66
- let isWASM = false;
67
- let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
68
- if (platformKey in knownWindowsPackages) {
69
- pkg = knownWindowsPackages[platformKey];
70
- subpath = "esbuild.exe";
71
- } else if (platformKey in knownUnixlikePackages) {
72
- pkg = knownUnixlikePackages[platformKey];
73
- subpath = "bin/esbuild";
74
- } else if (platformKey in knownWebAssemblyFallbackPackages) {
75
- pkg = knownWebAssemblyFallbackPackages[platformKey];
76
- subpath = "bin/esbuild";
77
- isWASM = true;
78
- } else {
79
- throw new Error(`Unsupported platform: ${platformKey}`);
80
- }
81
- return { pkg, subpath, isWASM };
82
- }
83
- function downloadedBinPath(pkg, subpath) {
84
- const esbuildLibDir = path.dirname(require.resolve("esbuild"));
85
- return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
86
- }
87
-
88
- // lib/npm/node-install.ts
89
- var fs2 = require("fs");
90
- var os2 = require("os");
91
- var path2 = require("path");
92
- var zlib = require("zlib");
93
- var https = require("https");
94
- var child_process = require("child_process");
95
- var versionFromPackageJSON = require(path2.join(__dirname, "package.json")).version;
96
- var toPath = path2.join(__dirname, "bin", "esbuild");
97
- var isToPathJS = true;
98
- function validateBinaryVersion(...command) {
99
- command.push("--version");
100
- let stdout;
101
- try {
102
- stdout = child_process.execFileSync(command.shift(), command, {
103
- // Without this, this install script strangely crashes with the error
104
- // "EACCES: permission denied, write" but only on Ubuntu Linux when node is
105
- // installed from the Snap Store. This is not a problem when you download
106
- // the official version of node. The problem appears to be that stderr
107
- // (i.e. file descriptor 2) isn't writable?
108
- //
109
- // More info:
110
- // - https://snapcraft.io/ (what the Snap Store is)
111
- // - https://nodejs.org/dist/ (download the official version of node)
112
- // - https://github.com/evanw/esbuild/issues/1711#issuecomment-1027554035
113
- //
114
- stdio: "pipe"
115
- }).toString().trim();
116
- } catch (err) {
117
- if (os2.platform() === "darwin" && /_SecTrustEvaluateWithError/.test(err + "")) {
118
- let os3 = "this version of macOS";
119
- try {
120
- os3 = "macOS " + child_process.execFileSync("sw_vers", ["-productVersion"]).toString().trim();
121
- } catch {
122
- }
123
- throw new Error(`The "esbuild" package cannot be installed because ${os3} is too outdated.
124
-
125
- The Go compiler (which esbuild relies on) no longer supports ${os3},
126
- which means the "esbuild" binary executable can't be run. You can either:
127
-
128
- * Update your version of macOS to one that the Go compiler supports
129
- * Use the "esbuild-wasm" package instead of the "esbuild" package
130
- * Build esbuild yourself using an older version of the Go compiler
131
- `);
132
- }
133
- throw err;
134
- }
135
- if (stdout !== versionFromPackageJSON) {
136
- throw new Error(`Expected ${JSON.stringify(versionFromPackageJSON)} but got ${JSON.stringify(stdout)}`);
137
- }
138
- }
139
- function isYarn() {
140
- const { npm_config_user_agent } = process.env;
141
- if (npm_config_user_agent) {
142
- return /\byarn\//.test(npm_config_user_agent);
143
- }
144
- return false;
145
- }
146
- function fetch(url) {
147
- return new Promise((resolve, reject) => {
148
- https.get(url, (res) => {
149
- if ((res.statusCode === 301 || res.statusCode === 302) && res.headers.location)
150
- return fetch(res.headers.location).then(resolve, reject);
151
- if (res.statusCode !== 200)
152
- return reject(new Error(`Server responded with ${res.statusCode}`));
153
- let chunks = [];
154
- res.on("data", (chunk) => chunks.push(chunk));
155
- res.on("end", () => resolve(Buffer.concat(chunks)));
156
- }).on("error", reject);
157
- });
158
- }
159
- function extractFileFromTarGzip(buffer, subpath) {
160
- try {
161
- buffer = zlib.unzipSync(buffer);
162
- } catch (err) {
163
- throw new Error(`Invalid gzip data in archive: ${err && err.message || err}`);
164
- }
165
- let str = (i, n) => String.fromCharCode(...buffer.subarray(i, i + n)).replace(/\0.*$/, "");
166
- let offset = 0;
167
- subpath = `package/${subpath}`;
168
- while (offset < buffer.length) {
169
- let name = str(offset, 100);
170
- let size = parseInt(str(offset + 124, 12), 8);
171
- offset += 512;
172
- if (!isNaN(size)) {
173
- if (name === subpath) return buffer.subarray(offset, offset + size);
174
- offset += size + 511 & ~511;
175
- }
176
- }
177
- throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
178
- }
179
- function installUsingNPM(pkg, subpath, binPath) {
180
- const env = { ...process.env, npm_config_global: void 0 };
181
- const esbuildLibDir = path2.dirname(require.resolve("esbuild"));
182
- const installDir = path2.join(esbuildLibDir, "npm-install");
183
- fs2.mkdirSync(installDir);
184
- try {
185
- fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
186
- child_process.execSync(
187
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${versionFromPackageJSON}`,
188
- { cwd: installDir, stdio: "pipe", env }
189
- );
190
- const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
191
- fs2.renameSync(installedBinPath, binPath);
192
- } finally {
193
- try {
194
- removeRecursive(installDir);
195
- } catch {
196
- }
197
- }
198
- }
199
- function removeRecursive(dir) {
200
- for (const entry of fs2.readdirSync(dir)) {
201
- const entryPath = path2.join(dir, entry);
202
- let stats;
203
- try {
204
- stats = fs2.lstatSync(entryPath);
205
- } catch {
206
- continue;
207
- }
208
- if (stats.isDirectory()) removeRecursive(entryPath);
209
- else fs2.unlinkSync(entryPath);
210
- }
211
- fs2.rmdirSync(dir);
212
- }
213
- function applyManualBinaryPathOverride(overridePath) {
214
- const pathString = JSON.stringify(overridePath);
215
- fs2.writeFileSync(toPath, `#!/usr/bin/env node
216
- require('child_process').execFileSync(${pathString}, process.argv.slice(2), { stdio: 'inherit' });
217
- `);
218
- const libMain = path2.join(__dirname, "lib", "main.js");
219
- const code = fs2.readFileSync(libMain, "utf8");
220
- fs2.writeFileSync(libMain, `var ESBUILD_BINARY_PATH = ${pathString};
221
- ${code}`);
222
- }
223
- function maybeOptimizePackage(binPath) {
224
- const { isWASM } = pkgAndSubpathForCurrentPlatform();
225
- if (os2.platform() !== "win32" && !isYarn() && !isWASM) {
226
- const tempPath = path2.join(__dirname, "bin-esbuild");
227
- try {
228
- fs2.linkSync(binPath, tempPath);
229
- fs2.renameSync(tempPath, toPath);
230
- isToPathJS = false;
231
- fs2.unlinkSync(tempPath);
232
- } catch {
233
- }
234
- }
235
- }
236
- async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
237
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg.replace("@esbuild/", "")}-${versionFromPackageJSON}.tgz`;
238
- console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
239
- try {
240
- fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
241
- fs2.chmodSync(binPath, 493);
242
- } catch (e) {
243
- console.error(`[esbuild] Failed to download ${JSON.stringify(url)}: ${e && e.message || e}`);
244
- throw e;
245
- }
246
- }
247
- async function checkAndPreparePackage() {
248
- if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
249
- if (!fs2.existsSync(ESBUILD_BINARY_PATH)) {
250
- console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
251
- } else {
252
- applyManualBinaryPathOverride(ESBUILD_BINARY_PATH);
253
- return;
254
- }
255
- }
256
- const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
257
- let binPath;
258
- try {
259
- binPath = require.resolve(`${pkg}/${subpath}`);
260
- } catch (e) {
261
- console.error(`[esbuild] Failed to find package "${pkg}" on the file system
262
-
263
- This can happen if you use the "--no-optional" flag. The "optionalDependencies"
264
- package.json feature is used by esbuild to install the correct binary executable
265
- for your current platform. This install script will now attempt to work around
266
- this. If that fails, you need to remove the "--no-optional" flag to use esbuild.
267
- `);
268
- binPath = downloadedBinPath(pkg, subpath);
269
- try {
270
- console.error(`[esbuild] Trying to install package "${pkg}" using npm`);
271
- installUsingNPM(pkg, subpath, binPath);
272
- } catch (e2) {
273
- console.error(`[esbuild] Failed to install package "${pkg}" using npm: ${e2 && e2.message || e2}`);
274
- try {
275
- await downloadDirectlyFromNPM(pkg, subpath, binPath);
276
- } catch (e3) {
277
- throw new Error(`Failed to install package "${pkg}"`);
278
- }
279
- }
280
- }
281
- maybeOptimizePackage(binPath);
282
- }
283
- checkAndPreparePackage().then(() => {
284
- if (isToPathJS) {
285
- validateBinaryVersion(process.execPath, toPath);
286
- } else {
287
- validateBinaryVersion(toPath);
288
- }
289
- });