@atomicfinance/bitcoin-dlc-provider 4.0.0 → 4.0.1

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 (802) hide show
  1. package/.turbo/turbo-lint.log +1 -0
  2. package/.yalc/@node-dlc/bitcoin/.nyc_output/982e80bf-a70c-452f-b63d-d749ae385531.json +1 -0
  3. package/.yalc/@node-dlc/bitcoin/.nyc_output/processinfo/982e80bf-a70c-452f-b63d-d749ae385531.json +1 -0
  4. package/.yalc/@node-dlc/bitcoin/.nyc_output/processinfo/index.json +1 -0
  5. package/.yalc/@node-dlc/bitcoin/README.md +11 -0
  6. package/.yalc/@node-dlc/bitcoin/__tests__/bitcoin/amount.spec.ts +330 -0
  7. package/.yalc/@node-dlc/bitcoin/__tests__/bitcoin/value.spec.ts +320 -0
  8. package/.yalc/@node-dlc/bitcoin/__tests__/tsconfig.json +8 -0
  9. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Amount.ts.html +290 -0
  10. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Base58.ts.html +269 -0
  11. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Base58Check.ts.html +182 -0
  12. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/BitcoinError.ts.html +173 -0
  13. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/BitcoinErrorCode.ts.html +110 -0
  14. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/HashByteOrder.ts.html +143 -0
  15. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/HashValue.ts.html +350 -0
  16. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/LexicographicalSorters.ts.html +191 -0
  17. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/LockTime.ts.html +386 -0
  18. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/OpCodes.ts.html +437 -0
  19. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/OutPoint.ts.html +383 -0
  20. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Script.ts.html +1607 -0
  21. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Sequence.ts.html +713 -0
  22. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/SigHashType.ts.html +137 -0
  23. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Stack.ts.html +323 -0
  24. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/TimeLockMode.ts.html +128 -0
  25. package/.yalc/@node-dlc/{messaging/coverage/lcov-report/lib/serde/SerdeUtils.ts.html → bitcoin/coverage/lcov-report/Tx.ts.html} +617 -491
  26. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/TxBuilder.ts.html +971 -0
  27. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/TxIn.ts.html +425 -0
  28. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/TxOut.ts.html +341 -0
  29. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Value.ts.html +683 -0
  30. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Wif.ts.html +311 -0
  31. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/Witness.ts.html +275 -0
  32. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/base.css +224 -0
  33. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/block-navigation.js +79 -0
  34. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/favicon.png +0 -0
  35. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/index.html +126 -0
  36. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/index.ts.html +164 -0
  37. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/prettify.css +1 -0
  38. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/prettify.js +2 -0
  39. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  40. package/.yalc/@node-dlc/bitcoin/coverage/lcov-report/sorter.js +170 -0
  41. package/.yalc/@node-dlc/bitcoin/coverage/lcov.info +123 -0
  42. package/.yalc/@node-dlc/bitcoin/dist/Amount.d.ts +48 -0
  43. package/.yalc/@node-dlc/bitcoin/dist/Amount.js +68 -0
  44. package/.yalc/@node-dlc/bitcoin/dist/Amount.js.map +1 -0
  45. package/.yalc/@node-dlc/bitcoin/dist/Base58.d.ts +22 -0
  46. package/.yalc/@node-dlc/bitcoin/dist/Base58.js +62 -0
  47. package/.yalc/@node-dlc/bitcoin/dist/Base58.js.map +1 -0
  48. package/.yalc/@node-dlc/bitcoin/dist/Base58Check.d.ts +14 -0
  49. package/.yalc/@node-dlc/bitcoin/dist/Base58Check.js +36 -0
  50. package/.yalc/@node-dlc/bitcoin/dist/Base58Check.js.map +1 -0
  51. package/.yalc/@node-dlc/bitcoin/dist/BitcoinError.d.ts +6 -0
  52. package/.yalc/@node-dlc/bitcoin/dist/BitcoinError.js +36 -0
  53. package/.yalc/@node-dlc/bitcoin/dist/BitcoinError.js.map +1 -0
  54. package/.yalc/@node-dlc/bitcoin/dist/BitcoinErrorCode.d.ts +10 -0
  55. package/.yalc/@node-dlc/bitcoin/dist/BitcoinErrorCode.js +15 -0
  56. package/.yalc/@node-dlc/bitcoin/dist/BitcoinErrorCode.js.map +1 -0
  57. package/.yalc/@node-dlc/bitcoin/dist/Block.d.ts +19 -0
  58. package/.yalc/@node-dlc/bitcoin/dist/Block.js +3 -0
  59. package/.yalc/@node-dlc/bitcoin/dist/Block.js.map +1 -0
  60. package/.yalc/@node-dlc/bitcoin/dist/HashByteOrder.d.ts +20 -0
  61. package/.yalc/@node-dlc/bitcoin/dist/HashByteOrder.js +25 -0
  62. package/.yalc/@node-dlc/bitcoin/dist/HashByteOrder.js.map +1 -0
  63. package/.yalc/@node-dlc/bitcoin/dist/HashValue.d.ts +55 -0
  64. package/.yalc/@node-dlc/bitcoin/dist/HashValue.js +82 -0
  65. package/.yalc/@node-dlc/bitcoin/dist/HashValue.js.map +1 -0
  66. package/.yalc/@node-dlc/bitcoin/dist/ICloneable.d.ts +3 -0
  67. package/.yalc/@node-dlc/bitcoin/dist/ICloneable.js +3 -0
  68. package/.yalc/@node-dlc/bitcoin/dist/ICloneable.js.map +1 -0
  69. package/.yalc/@node-dlc/bitcoin/dist/LexicographicalSorters.d.ts +18 -0
  70. package/.yalc/@node-dlc/bitcoin/dist/LexicographicalSorters.js +41 -0
  71. package/.yalc/@node-dlc/bitcoin/dist/LexicographicalSorters.js.map +1 -0
  72. package/.yalc/@node-dlc/bitcoin/dist/LockTime.d.ts +61 -0
  73. package/.yalc/@node-dlc/bitcoin/dist/LockTime.js +94 -0
  74. package/.yalc/@node-dlc/bitcoin/dist/LockTime.js.map +1 -0
  75. package/.yalc/@node-dlc/bitcoin/dist/OpCodes.d.ts +102 -0
  76. package/.yalc/@node-dlc/bitcoin/dist/OpCodes.js +116 -0
  77. package/.yalc/@node-dlc/bitcoin/dist/OpCodes.js.map +1 -0
  78. package/.yalc/@node-dlc/bitcoin/dist/OutPoint.d.ts +57 -0
  79. package/.yalc/@node-dlc/bitcoin/dist/OutPoint.js +88 -0
  80. package/.yalc/@node-dlc/bitcoin/dist/OutPoint.js.map +1 -0
  81. package/.yalc/@node-dlc/bitcoin/dist/Script.d.ts +185 -0
  82. package/.yalc/@node-dlc/bitcoin/dist/Script.js +404 -0
  83. package/.yalc/@node-dlc/bitcoin/dist/Script.js.map +1 -0
  84. package/.yalc/@node-dlc/bitcoin/dist/ScriptCmd.d.ts +3 -0
  85. package/.yalc/@node-dlc/bitcoin/dist/ScriptCmd.js +3 -0
  86. package/.yalc/@node-dlc/bitcoin/dist/ScriptCmd.js.map +1 -0
  87. package/.yalc/@node-dlc/bitcoin/dist/Sequence.d.ts +116 -0
  88. package/.yalc/@node-dlc/bitcoin/dist/Sequence.js +187 -0
  89. package/.yalc/@node-dlc/bitcoin/dist/Sequence.js.map +1 -0
  90. package/.yalc/@node-dlc/bitcoin/dist/SigHashType.d.ts +7 -0
  91. package/.yalc/@node-dlc/bitcoin/dist/SigHashType.js +27 -0
  92. package/.yalc/@node-dlc/bitcoin/dist/SigHashType.js.map +1 -0
  93. package/.yalc/@node-dlc/bitcoin/dist/SizeResult.d.ts +5 -0
  94. package/.yalc/@node-dlc/bitcoin/dist/SizeResult.js +3 -0
  95. package/.yalc/@node-dlc/bitcoin/dist/SizeResult.js.map +1 -0
  96. package/.yalc/@node-dlc/bitcoin/dist/Sorter.d.ts +1 -0
  97. package/.yalc/@node-dlc/bitcoin/dist/Sorter.js +3 -0
  98. package/.yalc/@node-dlc/bitcoin/dist/Sorter.js.map +1 -0
  99. package/.yalc/@node-dlc/bitcoin/dist/Stack.d.ts +15 -0
  100. package/.yalc/@node-dlc/bitcoin/dist/Stack.js +77 -0
  101. package/.yalc/@node-dlc/bitcoin/dist/Stack.js.map +1 -0
  102. package/.yalc/@node-dlc/bitcoin/dist/TimeLockMode.d.ts +15 -0
  103. package/.yalc/@node-dlc/bitcoin/dist/TimeLockMode.js +20 -0
  104. package/.yalc/@node-dlc/bitcoin/dist/TimeLockMode.js.map +1 -0
  105. package/.yalc/@node-dlc/bitcoin/dist/Tx.d.ts +150 -0
  106. package/.yalc/@node-dlc/bitcoin/dist/Tx.js +408 -0
  107. package/.yalc/@node-dlc/bitcoin/dist/Tx.js.map +1 -0
  108. package/.yalc/@node-dlc/bitcoin/dist/TxBuilder.d.ts +110 -0
  109. package/.yalc/@node-dlc/bitcoin/dist/TxBuilder.js +238 -0
  110. package/.yalc/@node-dlc/bitcoin/dist/TxBuilder.js.map +1 -0
  111. package/.yalc/@node-dlc/bitcoin/dist/TxIn.d.ts +71 -0
  112. package/.yalc/@node-dlc/bitcoin/dist/TxIn.js +79 -0
  113. package/.yalc/@node-dlc/bitcoin/dist/TxIn.js.map +1 -0
  114. package/.yalc/@node-dlc/bitcoin/dist/TxOut.d.ts +57 -0
  115. package/.yalc/@node-dlc/bitcoin/dist/TxOut.js +68 -0
  116. package/.yalc/@node-dlc/bitcoin/dist/TxOut.js.map +1 -0
  117. package/.yalc/@node-dlc/bitcoin/dist/Value.d.ts +122 -0
  118. package/.yalc/@node-dlc/bitcoin/dist/Value.js +180 -0
  119. package/.yalc/@node-dlc/bitcoin/dist/Value.js.map +1 -0
  120. package/.yalc/@node-dlc/bitcoin/dist/Wif.d.ts +41 -0
  121. package/.yalc/@node-dlc/bitcoin/dist/Wif.js +62 -0
  122. package/.yalc/@node-dlc/bitcoin/dist/Wif.js.map +1 -0
  123. package/.yalc/@node-dlc/bitcoin/dist/Witness.d.ts +41 -0
  124. package/.yalc/@node-dlc/bitcoin/dist/Witness.js +63 -0
  125. package/.yalc/@node-dlc/bitcoin/dist/Witness.js.map +1 -0
  126. package/.yalc/@node-dlc/bitcoin/dist/index.d.ts +28 -0
  127. package/.yalc/@node-dlc/bitcoin/dist/index.js +45 -0
  128. package/.yalc/@node-dlc/bitcoin/dist/index.js.map +1 -0
  129. package/.yalc/@node-dlc/bitcoin/lib/Amount.ts +70 -0
  130. package/.yalc/@node-dlc/bitcoin/lib/Base58.ts +63 -0
  131. package/.yalc/@node-dlc/bitcoin/lib/Base58Check.ts +34 -0
  132. package/.yalc/@node-dlc/bitcoin/lib/BitcoinError.ts +31 -0
  133. package/.yalc/@node-dlc/bitcoin/lib/BitcoinErrorCode.ts +10 -0
  134. package/.yalc/@node-dlc/bitcoin/lib/Block.ts +20 -0
  135. package/.yalc/@node-dlc/bitcoin/lib/HashByteOrder.ts +21 -0
  136. package/.yalc/@node-dlc/bitcoin/lib/HashValue.ts +90 -0
  137. package/.yalc/@node-dlc/bitcoin/lib/ICloneable.ts +3 -0
  138. package/.yalc/@node-dlc/bitcoin/lib/LexicographicalSorters.ts +37 -0
  139. package/.yalc/@node-dlc/bitcoin/lib/LockTime.ts +102 -0
  140. package/.yalc/@node-dlc/bitcoin/lib/OpCodes.ts +119 -0
  141. package/.yalc/@node-dlc/bitcoin/lib/OutPoint.ts +101 -0
  142. package/.yalc/@node-dlc/bitcoin/lib/Script.ts +509 -0
  143. package/.yalc/@node-dlc/bitcoin/lib/ScriptCmd.ts +3 -0
  144. package/.yalc/@node-dlc/bitcoin/lib/Sequence.ts +211 -0
  145. package/.yalc/@node-dlc/bitcoin/lib/SigHashType.ts +19 -0
  146. package/.yalc/@node-dlc/bitcoin/lib/SizeResult.ts +5 -0
  147. package/.yalc/@node-dlc/bitcoin/lib/Sorter.ts +1 -0
  148. package/.yalc/@node-dlc/bitcoin/lib/Stack.ts +81 -0
  149. package/.yalc/@node-dlc/bitcoin/lib/TimeLockMode.ts +16 -0
  150. package/.yalc/@node-dlc/bitcoin/lib/Tx.ts +480 -0
  151. package/.yalc/@node-dlc/bitcoin/lib/TxBuilder.ts +297 -0
  152. package/.yalc/@node-dlc/bitcoin/lib/TxIn.ts +115 -0
  153. package/.yalc/@node-dlc/bitcoin/lib/TxOut.ts +87 -0
  154. package/.yalc/@node-dlc/bitcoin/lib/Value.ts +201 -0
  155. package/.yalc/@node-dlc/bitcoin/lib/Wif.ts +77 -0
  156. package/.yalc/@node-dlc/bitcoin/lib/Witness.ts +65 -0
  157. package/.yalc/@node-dlc/bitcoin/lib/index.ts +28 -0
  158. package/.yalc/@node-dlc/bitcoin/package.json +31 -0
  159. package/.yalc/@node-dlc/bitcoin/tsconfig.json +8 -0
  160. package/.yalc/@node-dlc/bitcoin/yalc.sig +1 -0
  161. package/.yalc/@node-dlc/bufio/.eslintrc +6 -0
  162. package/.yalc/@node-dlc/bufio/.nyc_output/3c26c5b3-2a5e-4a53-88d4-06f4a5c339f7.json +1 -0
  163. package/.yalc/@node-dlc/bufio/.nyc_output/processinfo/3c26c5b3-2a5e-4a53-88d4-06f4a5c339f7.json +1 -0
  164. package/.yalc/@node-dlc/bufio/.nyc_output/processinfo/index.json +1 -0
  165. package/.yalc/@node-dlc/bufio/README.md +68 -0
  166. package/.yalc/@node-dlc/bufio/__tests__/BufferReader.spec.ts +548 -0
  167. package/.yalc/@node-dlc/bufio/__tests__/BufferWriter.spec.ts +530 -0
  168. package/.yalc/@node-dlc/bufio/__tests__/Hex.spec.ts +51 -0
  169. package/.yalc/@node-dlc/bufio/__tests__/StreamReader.spec.ts +133 -0
  170. package/.yalc/@node-dlc/bufio/__tests__/bigFromBufBE.spec.ts +14 -0
  171. package/.yalc/@node-dlc/bufio/__tests__/bigFromBufLE.spec.ts +14 -0
  172. package/.yalc/@node-dlc/bufio/__tests__/bigToBufBE.spec.ts +15 -0
  173. package/.yalc/@node-dlc/bufio/__tests__/bigToBufLE.spec.ts +14 -0
  174. package/.yalc/@node-dlc/bufio/__tests__/encodeVarInt.spec.ts +25 -0
  175. package/.yalc/@node-dlc/bufio/__tests__/tsconfig.json +7 -0
  176. package/.yalc/@node-dlc/bufio/__tests__/varIntBytes.spec.ts +34 -0
  177. package/.yalc/@node-dlc/bufio/coverage/lcov-report/BufferReader.ts.html +1142 -0
  178. package/.yalc/@node-dlc/bufio/coverage/lcov-report/BufferWriter.ts.html +953 -0
  179. package/.yalc/@node-dlc/bufio/coverage/lcov-report/Hex.ts.html +323 -0
  180. package/.yalc/@node-dlc/bufio/coverage/lcov-report/StreamReader.ts.html +620 -0
  181. package/.yalc/@node-dlc/bufio/coverage/lcov-report/base.css +224 -0
  182. package/.yalc/@node-dlc/bufio/coverage/lcov-report/bigFromBufBE.ts.html +89 -0
  183. package/.yalc/@node-dlc/bufio/coverage/lcov-report/bigFromBufLE.ts.html +95 -0
  184. package/.yalc/@node-dlc/bufio/coverage/lcov-report/bigToBufBE.ts.html +98 -0
  185. package/.yalc/@node-dlc/bufio/coverage/lcov-report/bigToBufLE.ts.html +95 -0
  186. package/.yalc/@node-dlc/bufio/coverage/lcov-report/block-navigation.js +79 -0
  187. package/.yalc/@node-dlc/bufio/coverage/lcov-report/bufToStream.ts.html +113 -0
  188. package/.yalc/@node-dlc/bufio/coverage/lcov-report/encodeVarInt.ts.html +203 -0
  189. package/.yalc/@node-dlc/bufio/coverage/lcov-report/favicon.png +0 -0
  190. package/.yalc/@node-dlc/bufio/coverage/lcov-report/index.html +261 -0
  191. package/.yalc/@node-dlc/bufio/coverage/lcov-report/prettify.css +1 -0
  192. package/.yalc/@node-dlc/bufio/coverage/lcov-report/prettify.js +2 -0
  193. package/.yalc/@node-dlc/bufio/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  194. package/.yalc/@node-dlc/bufio/coverage/lcov-report/sorter.js +170 -0
  195. package/.yalc/@node-dlc/bufio/coverage/lcov-report/varIntBytes.ts.html +116 -0
  196. package/.yalc/@node-dlc/bufio/coverage/lcov.info +747 -0
  197. package/.yalc/@node-dlc/bufio/dist/BufferReader.d.ts +155 -0
  198. package/.yalc/@node-dlc/bufio/dist/BufferReader.js +346 -0
  199. package/.yalc/@node-dlc/bufio/dist/BufferReader.js.map +1 -0
  200. package/.yalc/@node-dlc/bufio/dist/BufferWriter.d.ts +143 -0
  201. package/.yalc/@node-dlc/bufio/dist/BufferWriter.js +279 -0
  202. package/.yalc/@node-dlc/bufio/dist/BufferWriter.js.map +1 -0
  203. package/.yalc/@node-dlc/bufio/dist/Hex.d.ts +13 -0
  204. package/.yalc/@node-dlc/bufio/dist/Hex.js +78 -0
  205. package/.yalc/@node-dlc/bufio/dist/Hex.js.map +1 -0
  206. package/.yalc/@node-dlc/bufio/dist/StreamReader.d.ts +111 -0
  207. package/.yalc/@node-dlc/bufio/dist/StreamReader.js +180 -0
  208. package/.yalc/@node-dlc/bufio/dist/StreamReader.js.map +1 -0
  209. package/.yalc/@node-dlc/bufio/dist/bigFromBufBE.d.ts +2 -0
  210. package/.yalc/@node-dlc/bufio/dist/bigFromBufBE.js +8 -0
  211. package/.yalc/@node-dlc/bufio/dist/bigFromBufBE.js.map +1 -0
  212. package/.yalc/@node-dlc/bufio/dist/bigFromBufLE.d.ts +2 -0
  213. package/.yalc/@node-dlc/bufio/dist/bigFromBufLE.js +9 -0
  214. package/.yalc/@node-dlc/bufio/dist/bigFromBufLE.js.map +1 -0
  215. package/.yalc/@node-dlc/bufio/dist/bigToBufBE.d.ts +2 -0
  216. package/.yalc/@node-dlc/bufio/dist/bigToBufBE.js +13 -0
  217. package/.yalc/@node-dlc/bufio/dist/bigToBufBE.js.map +1 -0
  218. package/.yalc/@node-dlc/bufio/dist/bigToBufLE.d.ts +2 -0
  219. package/.yalc/@node-dlc/bufio/dist/bigToBufLE.js +9 -0
  220. package/.yalc/@node-dlc/bufio/dist/bigToBufLE.js.map +1 -0
  221. package/.yalc/@node-dlc/bufio/dist/bufToStream.d.ts +7 -0
  222. package/.yalc/@node-dlc/bufio/dist/bufToStream.js +15 -0
  223. package/.yalc/@node-dlc/bufio/dist/bufToStream.js.map +1 -0
  224. package/.yalc/@node-dlc/bufio/dist/encodeVarInt.d.ts +12 -0
  225. package/.yalc/@node-dlc/bufio/dist/encodeVarInt.js +46 -0
  226. package/.yalc/@node-dlc/bufio/dist/encodeVarInt.js.map +1 -0
  227. package/.yalc/@node-dlc/bufio/dist/index.d.ts +11 -0
  228. package/.yalc/@node-dlc/bufio/dist/index.js +28 -0
  229. package/.yalc/@node-dlc/bufio/dist/index.js.map +1 -0
  230. package/.yalc/@node-dlc/bufio/dist/varIntBytes.d.ts +5 -0
  231. package/.yalc/@node-dlc/bufio/dist/varIntBytes.js +22 -0
  232. package/.yalc/@node-dlc/bufio/dist/varIntBytes.js.map +1 -0
  233. package/.yalc/@node-dlc/bufio/lib/BufferReader.ts +354 -0
  234. package/.yalc/@node-dlc/bufio/lib/BufferWriter.ts +291 -0
  235. package/.yalc/@node-dlc/bufio/lib/Hex.ts +81 -0
  236. package/.yalc/@node-dlc/bufio/lib/StreamReader.ts +180 -0
  237. package/.yalc/@node-dlc/bufio/lib/bigFromBufBE.ts +3 -0
  238. package/.yalc/@node-dlc/bufio/lib/bigFromBufLE.ts +5 -0
  239. package/.yalc/@node-dlc/bufio/lib/bigToBufBE.ts +6 -0
  240. package/.yalc/@node-dlc/bufio/lib/bigToBufLE.ts +5 -0
  241. package/.yalc/@node-dlc/bufio/lib/bufToStream.ts +11 -0
  242. package/.yalc/@node-dlc/bufio/lib/encodeVarInt.ts +41 -0
  243. package/.yalc/@node-dlc/bufio/lib/index.ts +11 -0
  244. package/.yalc/@node-dlc/bufio/lib/varIntBytes.ts +12 -0
  245. package/.yalc/@node-dlc/bufio/package.json +27 -0
  246. package/.yalc/@node-dlc/bufio/tsconfig-build.json +7 -0
  247. package/.yalc/@node-dlc/bufio/tsconfig.json +7 -0
  248. package/.yalc/@node-dlc/bufio/yalc.sig +1 -0
  249. package/.yalc/@node-dlc/core/.nyc_output/687a3c14-9765-45fd-a1fe-f7db3d56fee4.json +1 -0
  250. package/.yalc/@node-dlc/core/.nyc_output/processinfo/687a3c14-9765-45fd-a1fe-f7db3d56fee4.json +1 -0
  251. package/.yalc/@node-dlc/core/.nyc_output/processinfo/index.json +1 -0
  252. package/.yalc/@node-dlc/core/README.md +11 -0
  253. package/.yalc/@node-dlc/core/__tests__/core.spec.ts +7 -0
  254. package/.yalc/@node-dlc/core/__tests__/dlc/CETCalculator.spec.ts +1029 -0
  255. package/.yalc/@node-dlc/core/__tests__/dlc/CoinSelect.spec.ts +179 -0
  256. package/.yalc/@node-dlc/core/__tests__/dlc/PolynomialPayoutCurve.spec.ts +345 -0
  257. package/.yalc/@node-dlc/core/__tests__/dlc/TxBuilder.spec.ts +424 -0
  258. package/.yalc/@node-dlc/core/__tests__/dlc/finance/Builder.spec.ts +492 -0
  259. package/.yalc/@node-dlc/core/__tests__/dlc/finance/CoveredCall.spec.ts +112 -0
  260. package/.yalc/@node-dlc/core/__tests__/dlc/finance/CsoInfo.spec.ts +1124 -0
  261. package/.yalc/@node-dlc/core/__tests__/dlc/finance/LongCall.spec.ts +55 -0
  262. package/.yalc/@node-dlc/core/__tests__/dlc/finance/LongPut.spec.ts +55 -0
  263. package/.yalc/@node-dlc/core/__tests__/dlc/finance/OptionInfo.spec.ts +226 -0
  264. package/.yalc/@node-dlc/core/__tests__/dlc/finance/ShortPut.spec.ts +62 -0
  265. package/.yalc/@node-dlc/core/__tests__/tsconfig.json +8 -0
  266. package/.yalc/@node-dlc/core/__tests__/utils/precision.spec.ts +40 -0
  267. package/.yalc/@node-dlc/core/coverage/lcov-report/base.css +224 -0
  268. package/.yalc/@node-dlc/core/coverage/lcov-report/block-navigation.js +79 -0
  269. package/.yalc/@node-dlc/core/coverage/lcov-report/favicon.png +0 -0
  270. package/.yalc/@node-dlc/core/coverage/lcov-report/index.html +171 -0
  271. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/AsyncProcessingQueue.ts.html +269 -0
  272. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/Base32.ts.html +86 -0
  273. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/BigIntUtils.ts.html +86 -0
  274. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/BitField.ts.html +86 -0
  275. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/ChannelId.ts.html +86 -0
  276. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/LinkedList.ts.html +413 -0
  277. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/LinkedListNode.ts.html +122 -0
  278. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/Queue.ts.html +188 -0
  279. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/ShortChannelId.ts.html +86 -0
  280. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/ShortChannelIdUtils.ts.html +107 -0
  281. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/CETCalculator.ts.html +1430 -0
  282. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/CoinSelect.ts.html +431 -0
  283. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/HyperbolaPayoutCurve.ts.html +644 -0
  284. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/PolynomialPayoutCurve.ts.html +878 -0
  285. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/TxBuilder.ts.html +1088 -0
  286. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/TxFinalizer.ts.html +731 -0
  287. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/Builder.ts.html +2270 -0
  288. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/CoveredCall.ts.html +410 -0
  289. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/CsoInfo.ts.html +1574 -0
  290. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/LinearPayout.ts.html +362 -0
  291. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/LongCall.ts.html +302 -0
  292. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/LongPut.ts.html +302 -0
  293. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/OptionInfo.ts.html +626 -0
  294. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/ShortPut.ts.html +305 -0
  295. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/finance/index.html +216 -0
  296. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/dlc/index.html +186 -0
  297. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/index.html +261 -0
  298. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/index.ts.html +278 -0
  299. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/ChannelId.ts.html +242 -0
  300. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/ChannelKeys.ts.html +407 -0
  301. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/CommitmentNumber.ts.html +362 -0
  302. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/CommitmentSecret.ts.html +203 -0
  303. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/CommitmentSecretStore.ts.html +332 -0
  304. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/Htlc.ts.html +236 -0
  305. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/HtlcDirection.ts.html +131 -0
  306. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/ScriptFactory.ts.html +530 -0
  307. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/TxFactory.ts.html +1094 -0
  308. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/lightning/index.html +231 -0
  309. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/utils/BigIntUtils.ts.html +272 -0
  310. package/.yalc/@node-dlc/core/coverage/lcov-report/lib/utils/Precision.ts.html +149 -0
  311. package/.yalc/@node-dlc/{messaging/coverage/lcov-report/lib/serde → core/coverage/lcov-report/lib/utils}/index.html +37 -22
  312. package/.yalc/@node-dlc/core/coverage/lcov-report/prettify.css +1 -0
  313. package/.yalc/@node-dlc/core/coverage/lcov-report/prettify.js +2 -0
  314. package/.yalc/@node-dlc/core/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  315. package/.yalc/@node-dlc/core/coverage/lcov-report/sorter.js +170 -0
  316. package/.yalc/@node-dlc/core/coverage/lcov.info +2426 -0
  317. package/.yalc/@node-dlc/core/dist/AsyncProcessingQueue.d.ts +22 -0
  318. package/.yalc/@node-dlc/core/dist/AsyncProcessingQueue.js +55 -0
  319. package/.yalc/@node-dlc/core/dist/AsyncProcessingQueue.js.map +1 -0
  320. package/.yalc/@node-dlc/core/dist/Base32.d.ts +1 -0
  321. package/.yalc/@node-dlc/core/dist/Base32.js +7 -0
  322. package/.yalc/@node-dlc/core/dist/Base32.js.map +1 -0
  323. package/.yalc/@node-dlc/core/dist/BigIntUtils.d.ts +1 -0
  324. package/.yalc/@node-dlc/core/dist/BigIntUtils.js +8 -0
  325. package/.yalc/@node-dlc/core/dist/BigIntUtils.js.map +1 -0
  326. package/.yalc/@node-dlc/core/dist/BitField.d.ts +1 -0
  327. package/.yalc/@node-dlc/core/dist/BitField.js +7 -0
  328. package/.yalc/@node-dlc/core/dist/BitField.js.map +1 -0
  329. package/.yalc/@node-dlc/core/dist/ChannelId.d.ts +1 -0
  330. package/.yalc/@node-dlc/core/dist/ChannelId.js +7 -0
  331. package/.yalc/@node-dlc/core/dist/ChannelId.js.map +1 -0
  332. package/.yalc/@node-dlc/core/dist/LinkedList.d.ts +30 -0
  333. package/.yalc/@node-dlc/core/dist/LinkedList.js +104 -0
  334. package/.yalc/@node-dlc/core/dist/LinkedList.js.map +1 -0
  335. package/.yalc/@node-dlc/core/dist/LinkedListNode.d.ts +9 -0
  336. package/.yalc/@node-dlc/core/dist/LinkedListNode.js +15 -0
  337. package/.yalc/@node-dlc/core/dist/LinkedListNode.js.map +1 -0
  338. package/.yalc/@node-dlc/core/dist/Queue.d.ts +22 -0
  339. package/.yalc/@node-dlc/core/dist/Queue.js +38 -0
  340. package/.yalc/@node-dlc/core/dist/Queue.js.map +1 -0
  341. package/.yalc/@node-dlc/core/dist/ShortChannelId.d.ts +1 -0
  342. package/.yalc/@node-dlc/core/dist/ShortChannelId.js +7 -0
  343. package/.yalc/@node-dlc/core/dist/ShortChannelId.js.map +1 -0
  344. package/.yalc/@node-dlc/core/dist/ShortChannelIdUtils.d.ts +1 -0
  345. package/.yalc/@node-dlc/core/dist/ShortChannelIdUtils.js +12 -0
  346. package/.yalc/@node-dlc/core/dist/ShortChannelIdUtils.js.map +1 -0
  347. package/.yalc/@node-dlc/core/dist/dlc/CETCalculator.d.ts +50 -0
  348. package/.yalc/@node-dlc/core/dist/dlc/CETCalculator.js +332 -0
  349. package/.yalc/@node-dlc/core/dist/dlc/CETCalculator.js.map +1 -0
  350. package/.yalc/@node-dlc/core/dist/dlc/CoinSelect.d.ts +23 -0
  351. package/.yalc/@node-dlc/core/dist/dlc/CoinSelect.js +77 -0
  352. package/.yalc/@node-dlc/core/dist/dlc/CoinSelect.js.map +1 -0
  353. package/.yalc/@node-dlc/core/dist/dlc/HyperbolaPayoutCurve.d.ts +20 -0
  354. package/.yalc/@node-dlc/core/dist/dlc/HyperbolaPayoutCurve.js +117 -0
  355. package/.yalc/@node-dlc/core/dist/dlc/HyperbolaPayoutCurve.js.map +1 -0
  356. package/.yalc/@node-dlc/core/dist/dlc/PayoutCurve.d.ts +5 -0
  357. package/.yalc/@node-dlc/core/dist/dlc/PayoutCurve.js +3 -0
  358. package/.yalc/@node-dlc/core/dist/dlc/PayoutCurve.js.map +1 -0
  359. package/.yalc/@node-dlc/core/dist/dlc/PolynomialPayoutCurve.d.ts +52 -0
  360. package/.yalc/@node-dlc/core/dist/dlc/PolynomialPayoutCurve.js +173 -0
  361. package/.yalc/@node-dlc/core/dist/dlc/PolynomialPayoutCurve.js.map +1 -0
  362. package/.yalc/@node-dlc/core/dist/dlc/TxBuilder.d.ts +55 -0
  363. package/.yalc/@node-dlc/core/dist/dlc/TxBuilder.js +217 -0
  364. package/.yalc/@node-dlc/core/dist/dlc/TxBuilder.js.map +1 -0
  365. package/.yalc/@node-dlc/core/dist/dlc/TxFinalizer.d.ts +40 -0
  366. package/.yalc/@node-dlc/core/dist/dlc/TxFinalizer.js +146 -0
  367. package/.yalc/@node-dlc/core/dist/dlc/TxFinalizer.js.map +1 -0
  368. package/.yalc/@node-dlc/core/dist/dlc/finance/Builder.d.ts +193 -0
  369. package/.yalc/@node-dlc/core/dist/dlc/finance/Builder.js +422 -0
  370. package/.yalc/@node-dlc/core/dist/dlc/finance/Builder.js.map +1 -0
  371. package/.yalc/@node-dlc/core/dist/dlc/finance/CoveredCall.d.ts +13 -0
  372. package/.yalc/@node-dlc/core/dist/dlc/finance/CoveredCall.js +67 -0
  373. package/.yalc/@node-dlc/core/dist/dlc/finance/CoveredCall.js.map +1 -0
  374. package/.yalc/@node-dlc/core/dist/dlc/finance/CsoInfo.d.ts +114 -0
  375. package/.yalc/@node-dlc/core/dist/dlc/finance/CsoInfo.js +290 -0
  376. package/.yalc/@node-dlc/core/dist/dlc/finance/CsoInfo.js.map +1 -0
  377. package/.yalc/@node-dlc/core/dist/dlc/finance/LinearPayout.d.ts +6 -0
  378. package/.yalc/@node-dlc/core/dist/dlc/finance/LinearPayout.js +79 -0
  379. package/.yalc/@node-dlc/core/dist/dlc/finance/LinearPayout.js.map +1 -0
  380. package/.yalc/@node-dlc/core/dist/dlc/finance/LongCall.d.ts +13 -0
  381. package/.yalc/@node-dlc/core/dist/dlc/finance/LongCall.js +47 -0
  382. package/.yalc/@node-dlc/core/dist/dlc/finance/LongCall.js.map +1 -0
  383. package/.yalc/@node-dlc/core/dist/dlc/finance/LongPut.d.ts +13 -0
  384. package/.yalc/@node-dlc/core/dist/dlc/finance/LongPut.js +47 -0
  385. package/.yalc/@node-dlc/core/dist/dlc/finance/LongPut.js.map +1 -0
  386. package/.yalc/@node-dlc/core/dist/dlc/finance/OptionInfo.d.ts +20 -0
  387. package/.yalc/@node-dlc/core/dist/dlc/finance/OptionInfo.js +101 -0
  388. package/.yalc/@node-dlc/core/dist/dlc/finance/OptionInfo.js.map +1 -0
  389. package/.yalc/@node-dlc/core/dist/dlc/finance/ShortPut.d.ts +12 -0
  390. package/.yalc/@node-dlc/core/dist/dlc/finance/ShortPut.js +46 -0
  391. package/.yalc/@node-dlc/core/dist/dlc/finance/ShortPut.js.map +1 -0
  392. package/.yalc/@node-dlc/core/dist/index.d.ts +39 -0
  393. package/.yalc/@node-dlc/core/dist/index.js +78 -0
  394. package/.yalc/@node-dlc/core/dist/index.js.map +1 -0
  395. package/.yalc/@node-dlc/core/dist/lightning/ChannelId.d.ts +31 -0
  396. package/.yalc/@node-dlc/core/dist/lightning/ChannelId.js +52 -0
  397. package/.yalc/@node-dlc/core/dist/lightning/ChannelId.js.map +1 -0
  398. package/.yalc/@node-dlc/core/dist/lightning/ChannelKeys.d.ts +55 -0
  399. package/.yalc/@node-dlc/core/dist/lightning/ChannelKeys.js +105 -0
  400. package/.yalc/@node-dlc/core/dist/lightning/ChannelKeys.js.map +1 -0
  401. package/.yalc/@node-dlc/core/dist/lightning/CommitmentNumber.d.ts +55 -0
  402. package/.yalc/@node-dlc/core/dist/lightning/CommitmentNumber.js +76 -0
  403. package/.yalc/@node-dlc/core/dist/lightning/CommitmentNumber.js.map +1 -0
  404. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecret.d.ts +26 -0
  405. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecret.js +44 -0
  406. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecret.js.map +1 -0
  407. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecretStore.d.ts +41 -0
  408. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecretStore.js +79 -0
  409. package/.yalc/@node-dlc/core/dist/lightning/CommitmentSecretStore.js.map +1 -0
  410. package/.yalc/@node-dlc/core/dist/lightning/Htlc.d.ts +46 -0
  411. package/.yalc/@node-dlc/core/dist/lightning/Htlc.js +46 -0
  412. package/.yalc/@node-dlc/core/dist/lightning/Htlc.js.map +1 -0
  413. package/.yalc/@node-dlc/core/dist/lightning/HtlcDirection.d.ts +16 -0
  414. package/.yalc/@node-dlc/core/dist/lightning/HtlcDirection.js +21 -0
  415. package/.yalc/@node-dlc/core/dist/lightning/HtlcDirection.js.map +1 -0
  416. package/.yalc/@node-dlc/core/dist/lightning/ScriptFactory.d.ts +76 -0
  417. package/.yalc/@node-dlc/core/dist/lightning/ScriptFactory.js +102 -0
  418. package/.yalc/@node-dlc/core/dist/lightning/ScriptFactory.js.map +1 -0
  419. package/.yalc/@node-dlc/core/dist/lightning/TxFactory.d.ts +83 -0
  420. package/.yalc/@node-dlc/core/dist/lightning/TxFactory.js +222 -0
  421. package/.yalc/@node-dlc/core/dist/lightning/TxFactory.js.map +1 -0
  422. package/.yalc/@node-dlc/core/dist/utils/BigIntUtils.d.ts +9 -0
  423. package/.yalc/@node-dlc/core/dist/utils/BigIntUtils.js +59 -0
  424. package/.yalc/@node-dlc/core/dist/utils/BigIntUtils.js.map +1 -0
  425. package/.yalc/@node-dlc/core/dist/utils/Precision.d.ts +13 -0
  426. package/.yalc/@node-dlc/core/dist/utils/Precision.js +28 -0
  427. package/.yalc/@node-dlc/core/dist/utils/Precision.js.map +1 -0
  428. package/.yalc/@node-dlc/core/lib/AsyncProcessingQueue.ts +63 -0
  429. package/.yalc/@node-dlc/core/lib/Base32.ts +2 -0
  430. package/.yalc/@node-dlc/core/lib/BigIntUtils.ts +2 -0
  431. package/.yalc/@node-dlc/core/lib/BitField.ts +2 -0
  432. package/.yalc/@node-dlc/core/lib/ChannelId.ts +2 -0
  433. package/.yalc/@node-dlc/core/lib/LinkedList.ts +111 -0
  434. package/.yalc/@node-dlc/core/lib/LinkedListNode.ts +14 -0
  435. package/.yalc/@node-dlc/core/lib/Queue.ts +36 -0
  436. package/.yalc/@node-dlc/core/lib/ShortChannelId.ts +2 -0
  437. package/.yalc/@node-dlc/core/lib/ShortChannelIdUtils.ts +9 -0
  438. package/.yalc/@node-dlc/core/lib/dlc/CETCalculator.ts +450 -0
  439. package/.yalc/@node-dlc/core/lib/dlc/CoinSelect.ts +117 -0
  440. package/.yalc/@node-dlc/core/lib/dlc/HyperbolaPayoutCurve.ts +188 -0
  441. package/.yalc/@node-dlc/core/lib/dlc/PayoutCurve.ts +6 -0
  442. package/.yalc/@node-dlc/core/lib/dlc/PolynomialPayoutCurve.ts +266 -0
  443. package/.yalc/@node-dlc/core/lib/dlc/TxBuilder.ts +336 -0
  444. package/.yalc/@node-dlc/core/lib/dlc/TxFinalizer.ts +217 -0
  445. package/.yalc/@node-dlc/core/lib/dlc/finance/Builder.ts +730 -0
  446. package/.yalc/@node-dlc/core/lib/dlc/finance/CoveredCall.ts +110 -0
  447. package/.yalc/@node-dlc/core/lib/dlc/finance/CsoInfo.ts +498 -0
  448. package/.yalc/@node-dlc/core/lib/dlc/finance/LinearPayout.ts +94 -0
  449. package/.yalc/@node-dlc/core/lib/dlc/finance/LongCall.ts +74 -0
  450. package/.yalc/@node-dlc/core/lib/dlc/finance/LongPut.ts +74 -0
  451. package/.yalc/@node-dlc/core/lib/dlc/finance/OptionInfo.ts +182 -0
  452. package/.yalc/@node-dlc/core/lib/dlc/finance/ShortPut.ts +75 -0
  453. package/.yalc/@node-dlc/core/lib/index.ts +66 -0
  454. package/.yalc/@node-dlc/core/lib/lightning/ChannelId.ts +54 -0
  455. package/.yalc/@node-dlc/core/lib/lightning/ChannelKeys.ts +109 -0
  456. package/.yalc/@node-dlc/core/lib/lightning/CommitmentNumber.ts +94 -0
  457. package/.yalc/@node-dlc/core/lib/lightning/CommitmentSecret.ts +41 -0
  458. package/.yalc/@node-dlc/core/lib/lightning/CommitmentSecretStore.ts +84 -0
  459. package/.yalc/@node-dlc/core/lib/lightning/Htlc.ts +52 -0
  460. package/.yalc/@node-dlc/core/lib/lightning/HtlcDirection.ts +17 -0
  461. package/.yalc/@node-dlc/core/lib/lightning/ScriptFactory.ts +150 -0
  462. package/.yalc/@node-dlc/core/lib/lightning/TxFactory.ts +338 -0
  463. package/.yalc/@node-dlc/core/lib/utils/BigIntUtils.ts +64 -0
  464. package/.yalc/@node-dlc/core/lib/utils/Precision.ts +23 -0
  465. package/.yalc/@node-dlc/core/package.json +38 -0
  466. package/.yalc/@node-dlc/core/tsconfig.json +8 -0
  467. package/.yalc/@node-dlc/core/yalc.sig +1 -0
  468. package/.yalc/@node-dlc/crypto/.eslintrc +6 -0
  469. package/.yalc/@node-dlc/crypto/.nyc_output/de03e0b4-d482-4f61-b680-59411360f56e.json +1 -0
  470. package/.yalc/@node-dlc/crypto/.nyc_output/processinfo/de03e0b4-d482-4f61-b680-59411360f56e.json +1 -0
  471. package/.yalc/@node-dlc/crypto/.nyc_output/processinfo/index.json +1 -0
  472. package/.yalc/@node-dlc/crypto/README.md +13 -0
  473. package/.yalc/@node-dlc/crypto/__tests__/chacha.spec.ts +29 -0
  474. package/.yalc/@node-dlc/crypto/__tests__/chachapoly.spec.ts +78 -0
  475. package/.yalc/@node-dlc/crypto/__tests__/hkdf.spec.ts +131 -0
  476. package/.yalc/@node-dlc/crypto/__tests__/key.spec.ts +125 -0
  477. package/.yalc/@node-dlc/crypto/__tests__/secp256k1.spec.ts +194 -0
  478. package/.yalc/@node-dlc/crypto/__tests__/xor.spec.ts +28 -0
  479. package/.yalc/@node-dlc/crypto/coverage/lcov-report/base.css +224 -0
  480. package/.yalc/@node-dlc/crypto/coverage/lcov-report/block-navigation.js +79 -0
  481. package/.yalc/@node-dlc/crypto/coverage/lcov-report/chacha.ts.html +119 -0
  482. package/.yalc/@node-dlc/crypto/coverage/lcov-report/chachapoly.ts.html +275 -0
  483. package/.yalc/@node-dlc/crypto/coverage/lcov-report/favicon.png +0 -0
  484. package/.yalc/@node-dlc/crypto/coverage/lcov-report/hkdf.ts.html +236 -0
  485. package/.yalc/@node-dlc/crypto/coverage/lcov-report/index.html +186 -0
  486. package/.yalc/@node-dlc/crypto/coverage/lcov-report/key.ts.html +272 -0
  487. package/.yalc/@node-dlc/crypto/coverage/lcov-report/prettify.css +1 -0
  488. package/.yalc/@node-dlc/crypto/coverage/lcov-report/prettify.js +2 -0
  489. package/.yalc/@node-dlc/crypto/coverage/lcov-report/secp256k1.ts.html +680 -0
  490. package/.yalc/@node-dlc/crypto/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  491. package/.yalc/@node-dlc/crypto/coverage/lcov-report/sorter.js +170 -0
  492. package/.yalc/@node-dlc/crypto/coverage/lcov-report/xor.ts.html +116 -0
  493. package/.yalc/@node-dlc/crypto/coverage/lcov.info +221 -0
  494. package/.yalc/@node-dlc/crypto/dist/aes-key.d.ts +6 -0
  495. package/.yalc/@node-dlc/crypto/dist/aes-key.js +3 -0
  496. package/.yalc/@node-dlc/crypto/dist/aes-key.js.map +1 -0
  497. package/.yalc/@node-dlc/crypto/dist/aes.d.ts +34 -0
  498. package/.yalc/@node-dlc/crypto/dist/aes.js +62 -0
  499. package/.yalc/@node-dlc/crypto/dist/aes.js.map +1 -0
  500. package/.yalc/@node-dlc/crypto/dist/chacha.d.ts +4 -0
  501. package/.yalc/@node-dlc/crypto/dist/chacha.js +40 -0
  502. package/.yalc/@node-dlc/crypto/dist/chacha.js.map +1 -0
  503. package/.yalc/@node-dlc/crypto/dist/chachapoly.d.ts +24 -0
  504. package/.yalc/@node-dlc/crypto/dist/chachapoly.js +61 -0
  505. package/.yalc/@node-dlc/crypto/dist/chachapoly.js.map +1 -0
  506. package/.yalc/@node-dlc/crypto/dist/hash.d.ts +29 -0
  507. package/.yalc/@node-dlc/crypto/dist/hash.js +51 -0
  508. package/.yalc/@node-dlc/crypto/dist/hash.js.map +1 -0
  509. package/.yalc/@node-dlc/crypto/dist/hkdf.d.ts +20 -0
  510. package/.yalc/@node-dlc/crypto/dist/hkdf.js +50 -0
  511. package/.yalc/@node-dlc/crypto/dist/hkdf.js.map +1 -0
  512. package/.yalc/@node-dlc/crypto/dist/hmac.d.ts +3 -0
  513. package/.yalc/@node-dlc/crypto/dist/hmac.js +14 -0
  514. package/.yalc/@node-dlc/crypto/dist/hmac.js.map +1 -0
  515. package/.yalc/@node-dlc/crypto/dist/index.d.ts +11 -0
  516. package/.yalc/@node-dlc/crypto/dist/index.js +30 -0
  517. package/.yalc/@node-dlc/crypto/dist/index.js.map +1 -0
  518. package/.yalc/@node-dlc/crypto/dist/key.d.ts +37 -0
  519. package/.yalc/@node-dlc/crypto/dist/key.js +72 -0
  520. package/.yalc/@node-dlc/crypto/dist/key.js.map +1 -0
  521. package/.yalc/@node-dlc/crypto/dist/secp256k1.d.ts +120 -0
  522. package/.yalc/@node-dlc/crypto/dist/secp256k1.js +184 -0
  523. package/.yalc/@node-dlc/crypto/dist/secp256k1.js.map +1 -0
  524. package/.yalc/@node-dlc/crypto/dist/xor.d.ts +8 -0
  525. package/.yalc/@node-dlc/crypto/dist/xor.js +17 -0
  526. package/.yalc/@node-dlc/crypto/dist/xor.js.map +1 -0
  527. package/.yalc/@node-dlc/crypto/lib/aes-key.ts +4 -0
  528. package/.yalc/@node-dlc/crypto/lib/aes.ts +81 -0
  529. package/.yalc/@node-dlc/crypto/lib/chacha.ts +13 -0
  530. package/.yalc/@node-dlc/crypto/lib/chachapoly.ts +65 -0
  531. package/.yalc/@node-dlc/crypto/lib/hash.ts +44 -0
  532. package/.yalc/@node-dlc/crypto/lib/hkdf.ts +52 -0
  533. package/.yalc/@node-dlc/crypto/lib/hmac.ts +7 -0
  534. package/.yalc/@node-dlc/crypto/lib/index.ts +11 -0
  535. package/.yalc/@node-dlc/crypto/lib/key.ts +64 -0
  536. package/.yalc/@node-dlc/crypto/lib/secp256k1.ts +200 -0
  537. package/.yalc/@node-dlc/crypto/lib/xor.ts +12 -0
  538. package/.yalc/@node-dlc/crypto/package.json +34 -0
  539. package/.yalc/@node-dlc/crypto/tsconfig-build.json +7 -0
  540. package/.yalc/@node-dlc/crypto/tsconfig.json +4 -0
  541. package/.yalc/@node-dlc/crypto/yalc.sig +1 -0
  542. package/.yalc/@node-dlc/messaging/.nyc_output/83d37f9d-cecf-4c52-a753-115ff80bbca0.json +1 -0
  543. package/.yalc/@node-dlc/messaging/.nyc_output/processinfo/83d37f9d-cecf-4c52-a753-115ff80bbca0.json +1 -0
  544. package/.yalc/@node-dlc/messaging/.nyc_output/processinfo/index.json +1 -1
  545. package/.yalc/@node-dlc/messaging/__tests__/_test-utils.ts +1 -0
  546. package/.yalc/@node-dlc/messaging/__tests__/compatibility/dlcspecs-compatibility.spec.ts +13 -47
  547. package/.yalc/@node-dlc/messaging/__tests__/compatibility/rust-dlc-cross-language.spec.ts +166 -253
  548. package/.yalc/@node-dlc/messaging/__tests__/compatibility/true-serialization-compatibility.spec.ts +214 -483
  549. package/.yalc/@node-dlc/messaging/__tests__/messages/ContractDescriptor.spec.ts +3 -1
  550. package/.yalc/@node-dlc/messaging/__tests__/messages/ContractInfo.spec.ts +1 -1
  551. package/.yalc/@node-dlc/messaging/__tests__/messages/DlcAccept.spec.ts +72 -0
  552. package/.yalc/@node-dlc/messaging/__tests__/messages/DlcInput.spec.ts +111 -0
  553. package/.yalc/@node-dlc/messaging/__tests__/messages/DlcOffer.spec.ts +99 -37
  554. package/.yalc/@node-dlc/messaging/__tests__/messages/FundingInput.spec.ts +148 -63
  555. package/.yalc/@node-dlc/messaging/__tests__/messages/OracleAttestation.spec.ts +2 -4
  556. package/.yalc/@node-dlc/messaging/__tests__/messages/OrderAccept.spec.ts +7 -9
  557. package/.yalc/@node-dlc/messaging/__tests__/messages/OrderNegotiationFields.spec.ts +135 -52
  558. package/.yalc/@node-dlc/messaging/__tests__/messages/OrderPositionInfo.spec.ts +6 -6
  559. package/.yalc/@node-dlc/messaging/__tests__/messages/PayoutCurvePiece.spec.ts +1 -1
  560. package/.yalc/@node-dlc/messaging/__tests__/messages/PayoutFunction.spec.ts +1 -1
  561. package/.yalc/@node-dlc/messaging/__tests__/serialize/F64.spec.ts +1 -0
  562. package/.yalc/@node-dlc/messaging/coverage/lcov-report/index.html +31 -31
  563. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/MessageType.ts.html +11 -5
  564. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/chain/ChainManager.ts.html +6 -3
  565. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/chain/ChainMemoryStore.ts.html +1 -1
  566. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/chain/index.html +1 -1
  567. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/domain/Address.ts.html +1 -1
  568. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/domain/index.html +1 -1
  569. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/index.html +9 -9
  570. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/index.ts.html +11 -8
  571. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/irc/IrcMessage.ts.html +1 -1
  572. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/irc/index.html +1 -1
  573. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/AddressCache.ts.html +1 -1
  574. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/BatchFundingGroup.ts.html +1 -1
  575. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/CetAdaptorSignatures.ts.html +22 -22
  576. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/CetAdaptorSignaturesV0.ts.html +46 -37
  577. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/CloseTLV.ts.html +344 -0
  578. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/ContractDescriptor.ts.html +61 -70
  579. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/ContractInfo.ts.html +59 -44
  580. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcAccept.ts.html +251 -119
  581. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcCancel.ts.html +1 -1
  582. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcClose.ts.html +12 -3
  583. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcCloseMetadata.ts.html +2 -11
  584. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcIds.ts.html +1 -1
  585. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcInfo.ts.html +1 -1
  586. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcInput.ts.html +581 -0
  587. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcMessage.ts.html +1 -1
  588. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcOffer.ts.html +307 -127
  589. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcSign.ts.html +61 -46
  590. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/DlcTransactions.ts.html +1 -1
  591. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/EventDescriptor.ts.html +67 -52
  592. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/FundingInput.ts.html +202 -70
  593. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/FundingSignatures.ts.html +15 -15
  594. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/FundingSignaturesV0.ts.html +47 -77
  595. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/NegotiationFields.ts.html +16 -4
  596. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/NodeAnnouncementMessage.ts.html +3 -3
  597. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleAnnouncement.ts.html +22 -22
  598. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleAnnouncementV0.ts.html +48 -270
  599. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleAttestation.ts.html +1 -1
  600. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleAttestationV0.ts.html +113 -404
  601. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleEvent.ts.html +49 -49
  602. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleEventContainer.ts.html +1 -1
  603. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleEventContainerV0.ts.html +22 -22
  604. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleEventV0.ts.html +61 -385
  605. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleIdentifier.ts.html +1 -1
  606. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleIdentifierV0.ts.html +1 -1
  607. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleInfo.ts.html +46 -25
  608. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OracleInfoV0.ts.html +55 -1378
  609. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderAccept.ts.html +68 -23
  610. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderIrcInfo.ts.html +1 -1
  611. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderMetadata.ts.html +1 -1
  612. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderNegotiationFields.ts.html +266 -107
  613. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderOffer.ts.html +31 -34
  614. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/OrderPositionInfo.ts.html +19 -88
  615. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/PayoutCurvePiece.ts.html +36 -21
  616. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/PayoutFunction.ts.html +34 -28
  617. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/RoundingIntervals.ts.html +18 -15
  618. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/RoundingIntervalsV0.ts.html +75 -129
  619. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/ScriptWitnessV0.ts.html +6 -6
  620. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/messages/index.html +84 -69
  621. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/serialize/F64.ts.html +8 -53
  622. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/serialize/deserializeTlv.ts.html +1 -1
  623. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/serialize/getTlv.ts.html +9 -9
  624. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/serialize/index.html +15 -15
  625. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/util.ts.html +22 -10
  626. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/validation/index.html +1 -1
  627. package/.yalc/@node-dlc/messaging/coverage/lcov-report/lib/validation/validate.ts.html +1 -1
  628. package/.yalc/@node-dlc/messaging/coverage/lcov.info +3049 -2826
  629. package/.yalc/@node-dlc/messaging/dist/MessageType.d.ts +2 -1
  630. package/.yalc/@node-dlc/messaging/dist/MessageType.js +2 -1
  631. package/.yalc/@node-dlc/messaging/dist/MessageType.js.map +1 -1
  632. package/.yalc/@node-dlc/messaging/dist/chain/ChainManager.js +1 -0
  633. package/.yalc/@node-dlc/messaging/dist/chain/ChainManager.js.map +1 -1
  634. package/.yalc/@node-dlc/messaging/dist/index.d.ts +5 -4
  635. package/.yalc/@node-dlc/messaging/dist/index.js +5 -4
  636. package/.yalc/@node-dlc/messaging/dist/index.js.map +1 -1
  637. package/.yalc/@node-dlc/messaging/dist/messages/CetAdaptorSignaturesV0.d.ts +42 -0
  638. package/.yalc/@node-dlc/messaging/dist/messages/CetAdaptorSignaturesV0.js +68 -0
  639. package/.yalc/@node-dlc/messaging/dist/messages/CetAdaptorSignaturesV0.js.map +1 -0
  640. package/.yalc/@node-dlc/messaging/dist/messages/CloseTLV.d.ts +38 -0
  641. package/.yalc/@node-dlc/messaging/dist/messages/CloseTLV.js +59 -0
  642. package/.yalc/@node-dlc/messaging/dist/messages/CloseTLV.js.map +1 -0
  643. package/.yalc/@node-dlc/messaging/dist/messages/ContractDescriptor.d.ts +11 -12
  644. package/.yalc/@node-dlc/messaging/dist/messages/ContractDescriptor.js +0 -1
  645. package/.yalc/@node-dlc/messaging/dist/messages/ContractDescriptor.js.map +1 -1
  646. package/.yalc/@node-dlc/messaging/dist/messages/ContractInfo.d.ts +10 -10
  647. package/.yalc/@node-dlc/messaging/dist/messages/ContractInfo.js +5 -1
  648. package/.yalc/@node-dlc/messaging/dist/messages/ContractInfo.js.map +1 -1
  649. package/.yalc/@node-dlc/messaging/dist/messages/DlcAccept.d.ts +15 -0
  650. package/.yalc/@node-dlc/messaging/dist/messages/DlcAccept.js +46 -5
  651. package/.yalc/@node-dlc/messaging/dist/messages/DlcAccept.js.map +1 -1
  652. package/.yalc/@node-dlc/messaging/dist/messages/DlcClose.js +6 -2
  653. package/.yalc/@node-dlc/messaging/dist/messages/DlcClose.js.map +1 -1
  654. package/.yalc/@node-dlc/messaging/dist/messages/DlcCloseMetadata.js.map +1 -1
  655. package/.yalc/@node-dlc/messaging/dist/messages/DlcInput.d.ts +56 -0
  656. package/.yalc/@node-dlc/messaging/dist/messages/DlcInput.js +135 -0
  657. package/.yalc/@node-dlc/messaging/dist/messages/DlcInput.js.map +1 -0
  658. package/.yalc/@node-dlc/messaging/dist/messages/DlcOffer.d.ts +16 -1
  659. package/.yalc/@node-dlc/messaging/dist/messages/DlcOffer.js +50 -5
  660. package/.yalc/@node-dlc/messaging/dist/messages/DlcOffer.js.map +1 -1
  661. package/.yalc/@node-dlc/messaging/dist/messages/DlcSign.js +11 -3
  662. package/.yalc/@node-dlc/messaging/dist/messages/DlcSign.js.map +1 -1
  663. package/.yalc/@node-dlc/messaging/dist/messages/EventDescriptor.d.ts +7 -6
  664. package/.yalc/@node-dlc/messaging/dist/messages/EventDescriptor.js +3 -0
  665. package/.yalc/@node-dlc/messaging/dist/messages/EventDescriptor.js.map +1 -1
  666. package/.yalc/@node-dlc/messaging/dist/messages/FundingInput.d.ts +7 -0
  667. package/.yalc/@node-dlc/messaging/dist/messages/FundingInput.js +31 -1
  668. package/.yalc/@node-dlc/messaging/dist/messages/FundingInput.js.map +1 -1
  669. package/.yalc/@node-dlc/messaging/dist/messages/FundingSignaturesV0.d.ts +34 -0
  670. package/.yalc/@node-dlc/messaging/dist/messages/FundingSignaturesV0.js +72 -0
  671. package/.yalc/@node-dlc/messaging/dist/messages/FundingSignaturesV0.js.map +1 -0
  672. package/.yalc/@node-dlc/messaging/dist/messages/NegotiationFields.d.ts +2 -2
  673. package/.yalc/@node-dlc/messaging/dist/messages/NegotiationFields.js +4 -0
  674. package/.yalc/@node-dlc/messaging/dist/messages/NegotiationFields.js.map +1 -1
  675. package/.yalc/@node-dlc/messaging/dist/messages/OracleAnnouncementV0.d.ts +47 -0
  676. package/.yalc/@node-dlc/messaging/dist/messages/OracleAnnouncementV0.js +76 -0
  677. package/.yalc/@node-dlc/messaging/dist/messages/OracleAnnouncementV0.js.map +1 -0
  678. package/.yalc/@node-dlc/messaging/dist/messages/OracleAttestationV0.d.ts +48 -0
  679. package/.yalc/@node-dlc/messaging/dist/messages/OracleAttestationV0.js +100 -0
  680. package/.yalc/@node-dlc/messaging/dist/messages/OracleAttestationV0.js.map +1 -0
  681. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventContainerV0.d.ts +32 -0
  682. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventContainerV0.js +67 -0
  683. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventContainerV0.js.map +1 -0
  684. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventV0.d.ts +54 -0
  685. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventV0.js +100 -0
  686. package/.yalc/@node-dlc/messaging/dist/messages/OracleEventV0.js.map +1 -0
  687. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfo.d.ts +8 -6
  688. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfo.js +3 -0
  689. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfo.js.map +1 -1
  690. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfoV0.d.ts +15 -141
  691. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfoV0.js +21 -350
  692. package/.yalc/@node-dlc/messaging/dist/messages/OracleInfoV0.js.map +1 -1
  693. package/.yalc/@node-dlc/messaging/dist/messages/OrderAccept.d.ts +3 -2
  694. package/.yalc/@node-dlc/messaging/dist/messages/OrderAccept.js +22 -7
  695. package/.yalc/@node-dlc/messaging/dist/messages/OrderAccept.js.map +1 -1
  696. package/.yalc/@node-dlc/messaging/dist/messages/OrderNegotiationFields.d.ts +48 -36
  697. package/.yalc/@node-dlc/messaging/dist/messages/OrderNegotiationFields.js +97 -50
  698. package/.yalc/@node-dlc/messaging/dist/messages/OrderNegotiationFields.js.map +1 -1
  699. package/.yalc/@node-dlc/messaging/dist/messages/OrderOffer.d.ts +1 -1
  700. package/.yalc/@node-dlc/messaging/dist/messages/OrderOffer.js +1 -1
  701. package/.yalc/@node-dlc/messaging/dist/messages/OrderOffer.js.map +1 -1
  702. package/.yalc/@node-dlc/messaging/dist/messages/OrderPositionInfo.d.ts +7 -13
  703. package/.yalc/@node-dlc/messaging/dist/messages/OrderPositionInfo.js +11 -25
  704. package/.yalc/@node-dlc/messaging/dist/messages/OrderPositionInfo.js.map +1 -1
  705. package/.yalc/@node-dlc/messaging/dist/messages/PayoutCurvePiece.js +5 -0
  706. package/.yalc/@node-dlc/messaging/dist/messages/PayoutCurvePiece.js.map +1 -1
  707. package/.yalc/@node-dlc/messaging/dist/messages/PayoutFunction.js +4 -1
  708. package/.yalc/@node-dlc/messaging/dist/messages/PayoutFunction.js.map +1 -1
  709. package/.yalc/@node-dlc/messaging/dist/messages/RoundingIntervals.js +1 -0
  710. package/.yalc/@node-dlc/messaging/dist/messages/RoundingIntervals.js.map +1 -1
  711. package/.yalc/@node-dlc/messaging/dist/messages/RoundingIntervalsV0.d.ts +47 -0
  712. package/.yalc/@node-dlc/messaging/dist/messages/RoundingIntervalsV0.js +86 -0
  713. package/.yalc/@node-dlc/messaging/dist/messages/RoundingIntervalsV0.js.map +1 -0
  714. package/.yalc/@node-dlc/messaging/dist/serialize/F64.d.ts +0 -8
  715. package/.yalc/@node-dlc/messaging/dist/serialize/F64.js +0 -13
  716. package/.yalc/@node-dlc/messaging/dist/serialize/F64.js.map +1 -1
  717. package/.yalc/@node-dlc/messaging/dist/util.d.ts +1 -1
  718. package/.yalc/@node-dlc/messaging/dist/util.js +2 -0
  719. package/.yalc/@node-dlc/messaging/dist/util.js.map +1 -1
  720. package/.yalc/@node-dlc/messaging/lib/MessageType.ts +3 -1
  721. package/.yalc/@node-dlc/messaging/lib/chain/ChainManager.ts +1 -0
  722. package/.yalc/@node-dlc/messaging/lib/index.ts +5 -4
  723. package/.yalc/@node-dlc/messaging/lib/messages/ContractDescriptor.ts +15 -16
  724. package/.yalc/@node-dlc/messaging/lib/messages/ContractInfo.ts +17 -12
  725. package/.yalc/@node-dlc/messaging/lib/messages/DlcAccept.ts +50 -6
  726. package/.yalc/@node-dlc/messaging/lib/messages/DlcClose.ts +4 -1
  727. package/.yalc/@node-dlc/messaging/lib/messages/DlcCloseMetadata.ts +0 -3
  728. package/.yalc/@node-dlc/messaging/lib/messages/DlcInput.ts +167 -0
  729. package/.yalc/@node-dlc/messaging/lib/messages/DlcOffer.ts +67 -7
  730. package/.yalc/@node-dlc/messaging/lib/messages/DlcSign.ts +5 -0
  731. package/.yalc/@node-dlc/messaging/lib/messages/EventDescriptor.ts +12 -7
  732. package/.yalc/@node-dlc/messaging/lib/messages/FundingInput.ts +45 -1
  733. package/.yalc/@node-dlc/messaging/lib/messages/NegotiationFields.ts +6 -2
  734. package/.yalc/@node-dlc/messaging/lib/messages/NodeAnnouncementMessage.ts +2 -2
  735. package/.yalc/@node-dlc/messaging/lib/messages/OracleInfo.ts +15 -8
  736. package/.yalc/@node-dlc/messaging/lib/messages/OrderAccept.ts +28 -13
  737. package/.yalc/@node-dlc/messaging/lib/messages/OrderNegotiationFields.ts +127 -74
  738. package/.yalc/@node-dlc/messaging/lib/messages/OrderOffer.ts +2 -3
  739. package/.yalc/@node-dlc/messaging/lib/messages/OrderPositionInfo.ts +10 -33
  740. package/.yalc/@node-dlc/messaging/lib/messages/PayoutCurvePiece.ts +5 -0
  741. package/.yalc/@node-dlc/messaging/lib/messages/PayoutFunction.ts +2 -0
  742. package/.yalc/@node-dlc/messaging/lib/messages/RoundingIntervals.ts +1 -0
  743. package/.yalc/@node-dlc/messaging/lib/serialize/F64.ts +0 -15
  744. package/.yalc/@node-dlc/messaging/lib/serialize/readTlvs.ts +1 -1
  745. package/.yalc/@node-dlc/messaging/lib/util.ts +5 -1
  746. package/.yalc/@node-dlc/messaging/package.json +8 -8
  747. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_3_of_3_test.json +76 -74
  748. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_3_of_5_test.json +90 -88
  749. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_and_numerical_3_of_5_test.json +162 -160
  750. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_and_numerical_5_of_5_test.json +162 -160
  751. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_and_numerical_with_diff_3_of_5_test.json +164 -162
  752. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_and_numerical_with_diff_5_of_5_test.json +164 -162
  753. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/enum_single_oracle_test.json +60 -58
  754. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/single_oracle_numerical_hyperbola_test.json +71 -69
  755. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/single_oracle_numerical_test.json +71 -69
  756. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/three_of_five_oracle_numerical_with_diff_test.json +119 -117
  757. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/three_of_three_oracle_numerical_test.json +95 -93
  758. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/three_of_three_oracle_numerical_with_diff_test.json +97 -95
  759. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/two_of_five_oracle_numerical_test.json +117 -115
  760. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs/two_of_five_oracle_numerical_with_diff_test.json +119 -117
  761. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_3_of_3_test.json +210 -0
  762. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_3_of_5_test.json +468 -0
  763. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_and_numerical_3_of_5_test.json +1517 -0
  764. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_and_numerical_5_of_5_test.json +545 -0
  765. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_and_numerical_with_diff_3_of_5_test.json +4761 -0
  766. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_and_numerical_with_diff_5_of_5_test.json +2169 -0
  767. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/enum_single_oracle_test.json +164 -0
  768. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/single_oracle_numerical_hyperbola_test.json +502 -0
  769. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/single_oracle_numerical_test.json +262 -0
  770. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/three_of_five_oracle_numerical_with_diff_test.json +4382 -0
  771. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/three_of_three_oracle_numerical_test.json +324 -0
  772. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/three_of_three_oracle_numerical_with_diff_test.json +652 -0
  773. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/two_of_five_oracle_numerical_test.json +1138 -0
  774. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250718_132453/two_of_five_oracle_numerical_with_diff_test.json +2222 -0
  775. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_3_of_3_test.json +212 -0
  776. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_3_of_5_test.json +470 -0
  777. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_and_numerical_3_of_5_test.json +1519 -0
  778. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_and_numerical_5_of_5_test.json +547 -0
  779. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_and_numerical_with_diff_3_of_5_test.json +4763 -0
  780. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_and_numerical_with_diff_5_of_5_test.json +2171 -0
  781. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/enum_single_oracle_test.json +166 -0
  782. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/single_oracle_numerical_hyperbola_test.json +504 -0
  783. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/single_oracle_numerical_test.json +264 -0
  784. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/three_of_five_oracle_numerical_with_diff_test.json +4384 -0
  785. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/three_of_three_oracle_numerical_test.json +326 -0
  786. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/three_of_three_oracle_numerical_with_diff_test.json +654 -0
  787. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/two_of_five_oracle_numerical_test.json +1140 -0
  788. package/.yalc/@node-dlc/messaging/test_vectors/dlcspecs_backup_20250719_185952/two_of_five_oracle_numerical_with_diff_test.json +2224 -0
  789. package/.yalc/@node-dlc/messaging/yalc.sig +1 -1
  790. package/CHANGELOG.md +47 -5
  791. package/README.md +48 -0
  792. package/dist/BitcoinDlcProvider.d.ts +34 -5
  793. package/dist/BitcoinDlcProvider.js +622 -155
  794. package/dist/BitcoinDlcProvider.js.map +1 -1
  795. package/dist/utils/Utils.js +5 -1
  796. package/dist/utils/Utils.js.map +1 -1
  797. package/lib/BitcoinDlcProvider.ts +899 -204
  798. package/lib/utils/Utils.ts +2 -0
  799. package/package.json +10 -10
  800. package/yalc.lock +22 -2
  801. package/.yalc/@node-dlc/messaging/.nyc_output/2cf48009-1094-4275-bb91-c164c932feb6.json +0 -1
  802. package/.yalc/@node-dlc/messaging/.nyc_output/processinfo/2cf48009-1094-4275-bb91-c164c932feb6.json +0 -1
@@ -0,0 +1 @@
1
+ {"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts","statementMap":{"0":{"start":{"line":2,"column":22},"end":{"line":12,"column":3}},"1":{"start":{"line":3,"column":4},"end":{"line":3,"column":33}},"2":{"start":{"line":3,"column":26},"end":{"line":3,"column":33}},"3":{"start":{"line":4,"column":15},"end":{"line":4,"column":52}},"4":{"start":{"line":5,"column":4},"end":{"line":7,"column":5}},"5":{"start":{"line":6,"column":6},"end":{"line":6,"column":68}},"6":{"start":{"line":6,"column":51},"end":{"line":6,"column":63}},"7":{"start":{"line":8,"column":4},"end":{"line":8,"column":39}},"8":{"start":{"line":10,"column":4},"end":{"line":10,"column":33}},"9":{"start":{"line":10,"column":26},"end":{"line":10,"column":33}},"10":{"start":{"line":11,"column":4},"end":{"line":11,"column":17}},"11":{"start":{"line":13,"column":25},"end":{"line":17,"column":2}},"12":{"start":{"line":14,"column":4},"end":{"line":14,"column":72}},"13":{"start":{"line":16,"column":4},"end":{"line":16,"column":21}},"14":{"start":{"line":18,"column":19},"end":{"line":24,"column":1}},"15":{"start":{"line":19,"column":4},"end":{"line":19,"column":42}},"16":{"start":{"line":19,"column":31},"end":{"line":19,"column":42}},"17":{"start":{"line":20,"column":17},"end":{"line":20,"column":19}},"18":{"start":{"line":21,"column":4},"end":{"line":21,"column":141}},"19":{"start":{"line":21,"column":21},"end":{"line":21,"column":141}},"20":{"start":{"line":21,"column":40},"end":{"line":21,"column":141}},"21":{"start":{"line":21,"column":109},"end":{"line":21,"column":141}},"22":{"start":{"line":22,"column":4},"end":{"line":22,"column":36}},"23":{"start":{"line":23,"column":4},"end":{"line":23,"column":18}},"24":{"start":{"line":25,"column":0},"end":{"line":25,"column":62}},"25":{"start":{"line":26,"column":0},"end":{"line":26,"column":55}},"26":{"start":{"line":27,"column":15},"end":{"line":27,"column":46}},"27":{"start":{"line":30,"column":19},"end":{"line":30,"column":61}},"28":{"start":{"line":31,"column":4},"end":{"line":31,"column":31}},"29":{"start":{"line":33,"column":0},"end":{"line":33,"column":38}},"30":{"start":{"line":36,"column":21},"end":{"line":36,"column":65}},"31":{"start":{"line":37,"column":4},"end":{"line":37,"column":35}},"32":{"start":{"line":39,"column":0},"end":{"line":39,"column":38}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":74},"end":{"line":2,"column":75}},"loc":{"start":{"line":2,"column":96},"end":{"line":9,"column":1}},"line":2},"1":{"name":"(anonymous_1)","decl":{"start":{"line":6,"column":38},"end":{"line":6,"column":39}},"loc":{"start":{"line":6,"column":49},"end":{"line":6,"column":65}},"line":6},"2":{"name":"(anonymous_2)","decl":{"start":{"line":9,"column":6},"end":{"line":9,"column":7}},"loc":{"start":{"line":9,"column":28},"end":{"line":12,"column":1}},"line":9},"3":{"name":"(anonymous_3)","decl":{"start":{"line":13,"column":80},"end":{"line":13,"column":81}},"loc":{"start":{"line":13,"column":95},"end":{"line":15,"column":1}},"line":13},"4":{"name":"(anonymous_4)","decl":{"start":{"line":15,"column":5},"end":{"line":15,"column":6}},"loc":{"start":{"line":15,"column":20},"end":{"line":17,"column":1}},"line":15},"5":{"name":"(anonymous_5)","decl":{"start":{"line":18,"column":50},"end":{"line":18,"column":51}},"loc":{"start":{"line":18,"column":65},"end":{"line":24,"column":1}},"line":18},"6":{"name":"chachaEncrypt","decl":{"start":{"line":28,"column":9},"end":{"line":28,"column":22}},"loc":{"start":{"line":28,"column":38},"end":{"line":32,"column":1}},"line":28},"7":{"name":"chachaDecrypt","decl":{"start":{"line":34,"column":9},"end":{"line":34,"column":22}},"loc":{"start":{"line":34,"column":40},"end":{"line":38,"column":1}},"line":34}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":22},"end":{"line":12,"column":3}},"type":"binary-expr","locations":[{"start":{"line":2,"column":23},"end":{"line":2,"column":27}},{"start":{"line":2,"column":31},"end":{"line":2,"column":51}},{"start":{"line":2,"column":57},"end":{"line":12,"column":2}}],"line":2},"1":{"loc":{"start":{"line":2,"column":57},"end":{"line":12,"column":2}},"type":"cond-expr","locations":[{"start":{"line":2,"column":74},"end":{"line":9,"column":1}},{"start":{"line":9,"column":6},"end":{"line":12,"column":1}}],"line":2},"2":{"loc":{"start":{"line":3,"column":4},"end":{"line":3,"column":33}},"type":"if","locations":[{"start":{"line":3,"column":4},"end":{"line":3,"column":33}},{"start":{"line":3,"column":4},"end":{"line":3,"column":33}}],"line":3},"3":{"loc":{"start":{"line":5,"column":4},"end":{"line":7,"column":5}},"type":"if","locations":[{"start":{"line":5,"column":4},"end":{"line":7,"column":5}},{"start":{"line":5,"column":4},"end":{"line":7,"column":5}}],"line":5},"4":{"loc":{"start":{"line":5,"column":8},"end":{"line":5,"column":85}},"type":"binary-expr","locations":[{"start":{"line":5,"column":8},"end":{"line":5,"column":13}},{"start":{"line":5,"column":18},"end":{"line":5,"column":84}}],"line":5},"5":{"loc":{"start":{"line":5,"column":18},"end":{"line":5,"column":84}},"type":"cond-expr","locations":[{"start":{"line":5,"column":34},"end":{"line":5,"column":47}},{"start":{"line":5,"column":50},"end":{"line":5,"column":84}}],"line":5},"6":{"loc":{"start":{"line":5,"column":50},"end":{"line":5,"column":84}},"type":"binary-expr","locations":[{"start":{"line":5,"column":50},"end":{"line":5,"column":63}},{"start":{"line":5,"column":67},"end":{"line":5,"column":84}}],"line":5},"7":{"loc":{"start":{"line":10,"column":4},"end":{"line":10,"column":33}},"type":"if","locations":[{"start":{"line":10,"column":4},"end":{"line":10,"column":33}},{"start":{"line":10,"column":4},"end":{"line":10,"column":33}}],"line":10},"8":{"loc":{"start":{"line":13,"column":25},"end":{"line":17,"column":2}},"type":"binary-expr","locations":[{"start":{"line":13,"column":26},"end":{"line":13,"column":30}},{"start":{"line":13,"column":34},"end":{"line":13,"column":57}},{"start":{"line":13,"column":63},"end":{"line":17,"column":1}}],"line":13},"9":{"loc":{"start":{"line":13,"column":63},"end":{"line":17,"column":1}},"type":"cond-expr","locations":[{"start":{"line":13,"column":80},"end":{"line":15,"column":1}},{"start":{"line":15,"column":5},"end":{"line":17,"column":1}}],"line":13},"10":{"loc":{"start":{"line":18,"column":19},"end":{"line":24,"column":1}},"type":"binary-expr","locations":[{"start":{"line":18,"column":20},"end":{"line":18,"column":24}},{"start":{"line":18,"column":28},"end":{"line":18,"column":45}},{"start":{"line":18,"column":50},"end":{"line":24,"column":1}}],"line":18},"11":{"loc":{"start":{"line":19,"column":4},"end":{"line":19,"column":42}},"type":"if","locations":[{"start":{"line":19,"column":4},"end":{"line":19,"column":42}},{"start":{"line":19,"column":4},"end":{"line":19,"column":42}}],"line":19},"12":{"loc":{"start":{"line":19,"column":8},"end":{"line":19,"column":29}},"type":"binary-expr","locations":[{"start":{"line":19,"column":8},"end":{"line":19,"column":11}},{"start":{"line":19,"column":15},"end":{"line":19,"column":29}}],"line":19},"13":{"loc":{"start":{"line":21,"column":4},"end":{"line":21,"column":141}},"type":"if","locations":[{"start":{"line":21,"column":4},"end":{"line":21,"column":141}},{"start":{"line":21,"column":4},"end":{"line":21,"column":141}}],"line":21},"14":{"loc":{"start":{"line":21,"column":40},"end":{"line":21,"column":141}},"type":"if","locations":[{"start":{"line":21,"column":40},"end":{"line":21,"column":141}},{"start":{"line":21,"column":40},"end":{"line":21,"column":141}}],"line":21},"15":{"loc":{"start":{"line":21,"column":44},"end":{"line":21,"column":107}},"type":"binary-expr","locations":[{"start":{"line":21,"column":44},"end":{"line":21,"column":59}},{"start":{"line":21,"column":63},"end":{"line":21,"column":107}}],"line":21}},"s":{"0":1,"1":66,"2":66,"3":66,"4":66,"5":65,"6":2,"7":66,"8":0,"9":0,"10":0,"11":1,"12":1,"13":0,"14":1,"15":1,"16":0,"17":1,"18":1,"19":1,"20":66,"21":66,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1},"f":{"0":66,"1":2,"2":0,"3":1,"4":0,"5":1,"6":1,"7":1},"b":{"0":[1,1,1],"1":[1,0],"2":[66,0],"3":[65,1],"4":[66,66],"5":[3,63],"6":[63,1],"7":[0,0],"8":[1,1,1],"9":[1,0],"10":[1,1,1],"11":[0,1],"12":[1,1],"13":[1,0],"14":[66,0],"15":[66,66]},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAiC;AAEjC,SAAgB,aAAa,CAAC,GAAW,EAAE,EAAU,EAAE,IAAY;IACjE,8DAA8D;IAC9D,MAAM,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,UAAiB,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACjE,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC7B,CAAC;AAJD,sCAIC;AAED,SAAgB,aAAa,CAAC,GAAW,EAAE,EAAU,EAAE,MAAc;IACnE,8DAA8D;IAC9D,MAAM,QAAQ,GAAG,MAAM,CAAC,gBAAgB,CAAC,UAAiB,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACrE,OAAO,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AACjC,CAAC;AAJD,sCAIC","sourcesContent":["import * as crypto from 'crypto';\n\nexport function chachaEncrypt(key: Buffer, iv: Buffer, data: Buffer): Buffer {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const cipher = crypto.createCipheriv('chacha20' as any, key, iv);\n return cipher.update(data);\n}\n\nexport function chachaDecrypt(key: Buffer, iv: Buffer, cipher: Buffer): Buffer {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const decipher = crypto.createDecipheriv('chacha20' as any, key, iv);\n return decipher.update(cipher);\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"54bcd6724f1fca2065a6fea817ddfd85a09c5e51","contentHash":"79053a3d63681766312aaf56057678664484cf22907558417a230fbe1f52924e"},"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts","statementMap":{"0":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"1":{"start":{"line":3,"column":4},"end":{"line":3,"column":62}},"2":{"start":{"line":5,"column":0},"end":{"line":5,"column":62}},"3":{"start":{"line":6,"column":0},"end":{"line":6,"column":49}},"4":{"start":{"line":7,"column":17},"end":{"line":7,"column":51}},"5":{"start":{"line":20,"column":19},"end":{"line":22,"column":6}},"6":{"start":{"line":23,"column":4},"end":{"line":23,"column":33}},"7":{"start":{"line":24,"column":16},"end":{"line":24,"column":40}},"8":{"start":{"line":25,"column":4},"end":{"line":25,"column":19}},"9":{"start":{"line":26,"column":16},"end":{"line":26,"column":35}},"10":{"start":{"line":27,"column":4},"end":{"line":27,"column":37}},"11":{"start":{"line":29,"column":0},"end":{"line":29,"column":32}},"12":{"start":{"line":42,"column":21},"end":{"line":44,"column":6}},"13":{"start":{"line":45,"column":4},"end":{"line":45,"column":35}},"14":{"start":{"line":46,"column":4},"end":{"line":49,"column":5}},"15":{"start":{"line":47,"column":8},"end":{"line":47,"column":40}},"16":{"start":{"line":48,"column":8},"end":{"line":48,"column":32}},"17":{"start":{"line":50,"column":4},"end":{"line":58,"column":5}},"18":{"start":{"line":51,"column":20},"end":{"line":51,"column":60}},"19":{"start":{"line":52,"column":20},"end":{"line":52,"column":63}},"20":{"start":{"line":53,"column":8},"end":{"line":53,"column":33}},"21":{"start":{"line":54,"column":16},"end":{"line":54,"column":36}},"22":{"start":{"line":55,"column":18},"end":{"line":55,"column":34}},"23":{"start":{"line":56,"column":8},"end":{"line":56,"column":34}},"24":{"start":{"line":57,"column":8},"end":{"line":57,"column":17}},"25":{"start":{"line":60,"column":0},"end":{"line":60,"column":32}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":56},"end":{"line":2,"column":57}},"loc":{"start":{"line":2,"column":71},"end":{"line":4,"column":1}},"line":2},"1":{"name":"ccpEncrypt","decl":{"start":{"line":18,"column":9},"end":{"line":18,"column":19}},"loc":{"start":{"line":18,"column":41},"end":{"line":28,"column":1}},"line":18},"2":{"name":"ccpDecrypt","decl":{"start":{"line":40,"column":9},"end":{"line":40,"column":19}},"loc":{"start":{"line":40,"column":42},"end":{"line":59,"column":1}},"line":40}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"type":"binary-expr","locations":[{"start":{"line":2,"column":23},"end":{"line":2,"column":27}},{"start":{"line":2,"column":31},"end":{"line":2,"column":51}},{"start":{"line":2,"column":56},"end":{"line":4,"column":1}}],"line":2},"1":{"loc":{"start":{"line":3,"column":11},"end":{"line":3,"column":61}},"type":"cond-expr","locations":[{"start":{"line":3,"column":37},"end":{"line":3,"column":40}},{"start":{"line":3,"column":43},"end":{"line":3,"column":61}}],"line":3},"2":{"loc":{"start":{"line":3,"column":12},"end":{"line":3,"column":33}},"type":"binary-expr","locations":[{"start":{"line":3,"column":12},"end":{"line":3,"column":15}},{"start":{"line":3,"column":19},"end":{"line":3,"column":33}}],"line":3},"3":{"loc":{"start":{"line":46,"column":4},"end":{"line":49,"column":5}},"type":"if","locations":[{"start":{"line":46,"column":4},"end":{"line":49,"column":5}},{"start":{"line":46,"column":4},"end":{"line":49,"column":5}}],"line":46},"4":{"loc":{"start":{"line":50,"column":4},"end":{"line":58,"column":5}},"type":"if","locations":[{"start":{"line":50,"column":4},"end":{"line":58,"column":5}},{"start":{"line":50,"column":4},"end":{"line":58,"column":5}}],"line":50}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":3,"6":3,"7":3,"8":3,"9":3,"10":3,"11":1,"12":3,"13":3,"14":3,"15":2,"16":2,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1},"f":{"0":1,"1":3,"2":3},"b":{"0":[1,1,1],"1":[0,1],"2":[1,1],"3":[2,1],"4":[1,0]},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts"],"names":[],"mappings":";;;;;;AAAA,oDAA4B;AAE5B;;;;;;;;;GASG;AACH,SAAgB,UAAU,CACxB,CAAS,EACT,CAAS,EACT,EAAU,EACV,SAAiB;IAEjB,8DAA8D;IAC9D,MAAM,MAAM,GAAG,gBAAM,CAAC,cAAc,CAAC,mBAA0B,EAAE,CAAC,EAAE,CAAC,EAAE;QACrE,aAAa,EAAE,EAAE;KAClB,CAAC,CAAC;IACH,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;IAC7B,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;IACrC,MAAM,CAAC,KAAK,EAAE,CAAC;IACf,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;IAChC,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;AACnC,CAAC;AAfD,gCAeC;AAED;;;;;;;;;GASG;AACH,SAAgB,UAAU,CACxB,CAAS,EACT,CAAS,EACT,EAAU,EACV,UAAkB;IAElB,8DAA8D;IAC9D,MAAM,QAAQ,GAAG,gBAAM,CAAC,gBAAgB,CAAC,mBAA0B,EAAE,CAAC,EAAE,CAAC,EAAE;QACzE,aAAa,EAAE,EAAE;KAClB,CAAC,CAAC;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;IAE/B,IAAI,UAAU,CAAC,MAAM,KAAK,EAAE,EAAE;QAC5B,QAAQ,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;QAChC,OAAO,QAAQ,CAAC,KAAK,EAAE,CAAC;KACzB;IACD,IAAI,UAAU,CAAC,MAAM,GAAG,EAAE,EAAE;QAC1B,MAAM,GAAG,GAAG,UAAU,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;QACrD,MAAM,GAAG,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;QACxD,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;QACzB,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;QAC7B,MAAM,CAAC,GAAG,QAAQ,CAAC,KAAK,EAAE,CAAC;QAC3B,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC1B,OAAO,CAAC,CAAC;KACV;AACH,CAAC;AAzBD,gCAyBC","sourcesContent":["import crypto from 'crypto';\n\n/**\n * Encrypt data using authenticated encryption with associated data (AEAD)\n * ChaCha20-Poly1305.\n *\n * @param k private key, 64-bytes\n * @param n nonce, 12-bytes\n * @param ad associated data\n * @param plaintext raw data to encrypt\n * @returns encrypted data + tag as a variable length buffer\n */\nexport function ccpEncrypt(\n k: Buffer,\n n: Buffer,\n ad: Buffer,\n plaintext: Buffer,\n): Buffer {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const cipher = crypto.createCipheriv('ChaCha20-Poly1305' as any, k, n, {\n authTagLength: 16,\n });\n cipher.setAAD(ad, undefined);\n const pad = cipher.update(plaintext);\n cipher.final();\n const tag = cipher.getAuthTag();\n return Buffer.concat([pad, tag]);\n}\n\n/**\n * Decrypt data uusing authenticated encryption with associated data (AEAD)\n * ChaCha20-Poly1305\n *\n * @param k private key, 64-bytes\n * @param n nonce, 12-bytes\n * @param ad associated data, variable length\n * @param ciphertext encrypted data to decrypt\n * @returns decrypteed data as a variable length Buffer\n */\nexport function ccpDecrypt(\n k: Buffer,\n n: Buffer,\n ad: Buffer,\n ciphertext: Buffer,\n): Buffer {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const decipher = crypto.createDecipheriv('ChaCha20-Poly1305' as any, k, n, {\n authTagLength: 16,\n });\n decipher.setAAD(ad, undefined);\n\n if (ciphertext.length === 16) {\n decipher.setAuthTag(ciphertext);\n return decipher.final();\n }\n if (ciphertext.length > 16) {\n const tag = ciphertext.slice(ciphertext.length - 16);\n const pad = ciphertext.slice(0, ciphertext.length - 16);\n decipher.setAuthTag(tag);\n let m = decipher.update(pad);\n const f = decipher.final();\n m = Buffer.concat([m, f]);\n return m;\n }\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"442d81b743102f9cc4a6df1ea6976176c6e5446e","contentHash":"1b088815ff1bd1bcd0e6c21058f1030b7a88eeeee2d91ba19c967f4993fcfe2b"},"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts","statementMap":{"0":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"1":{"start":{"line":3,"column":4},"end":{"line":3,"column":62}},"2":{"start":{"line":5,"column":0},"end":{"line":5,"column":62}},"3":{"start":{"line":6,"column":0},"end":{"line":6,"column":22}},"4":{"start":{"line":7,"column":17},"end":{"line":7,"column":51}},"5":{"start":{"line":27,"column":16},"end":{"line":27,"column":41}},"6":{"start":{"line":29,"column":14},"end":{"line":29,"column":45}},"7":{"start":{"line":34,"column":4},"end":{"line":35,"column":57}},"8":{"start":{"line":35,"column":8},"end":{"line":35,"column":57}},"9":{"start":{"line":36,"column":14},"end":{"line":36,"column":31}},"10":{"start":{"line":37,"column":4},"end":{"line":41,"column":5}},"11":{"start":{"line":37,"column":17},"end":{"line":37,"column":18}},"12":{"start":{"line":38,"column":19},"end":{"line":38,"column":34}},"13":{"start":{"line":39,"column":19},"end":{"line":39,"column":35}},"14":{"start":{"line":40,"column":8},"end":{"line":40,"column":67}},"15":{"start":{"line":42,"column":4},"end":{"line":42,"column":51}},"16":{"start":{"line":44,"column":0},"end":{"line":44,"column":20}},"17":{"start":{"line":46,"column":17},"end":{"line":46,"column":55}},"18":{"start":{"line":47,"column":4},"end":{"line":47,"column":23}},"19":{"start":{"line":48,"column":4},"end":{"line":48,"column":25}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":56},"end":{"line":2,"column":57}},"loc":{"start":{"line":2,"column":71},"end":{"line":4,"column":1}},"line":2},"1":{"name":"hkdf","decl":{"start":{"line":25,"column":9},"end":{"line":25,"column":13}},"loc":{"start":{"line":25,"column":89},"end":{"line":43,"column":1}},"line":25},"2":{"name":"hmacHash","decl":{"start":{"line":45,"column":9},"end":{"line":45,"column":17}},"loc":{"start":{"line":45,"column":36},"end":{"line":49,"column":1}},"line":45}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"type":"binary-expr","locations":[{"start":{"line":2,"column":23},"end":{"line":2,"column":27}},{"start":{"line":2,"column":31},"end":{"line":2,"column":51}},{"start":{"line":2,"column":56},"end":{"line":4,"column":1}}],"line":2},"1":{"loc":{"start":{"line":3,"column":11},"end":{"line":3,"column":61}},"type":"cond-expr","locations":[{"start":{"line":3,"column":37},"end":{"line":3,"column":40}},{"start":{"line":3,"column":43},"end":{"line":3,"column":61}}],"line":3},"2":{"loc":{"start":{"line":3,"column":12},"end":{"line":3,"column":33}},"type":"binary-expr","locations":[{"start":{"line":3,"column":12},"end":{"line":3,"column":15}},{"start":{"line":3,"column":19},"end":{"line":3,"column":33}}],"line":3},"3":{"loc":{"start":{"line":25,"column":24},"end":{"line":25,"column":46}},"type":"default-arg","locations":[{"start":{"line":25,"column":31},"end":{"line":25,"column":46}}],"line":25},"4":{"loc":{"start":{"line":25,"column":48},"end":{"line":25,"column":70}},"type":"default-arg","locations":[{"start":{"line":25,"column":55},"end":{"line":25,"column":70}}],"line":25},"5":{"loc":{"start":{"line":25,"column":72},"end":{"line":25,"column":87}},"type":"default-arg","locations":[{"start":{"line":25,"column":79},"end":{"line":25,"column":87}}],"line":25},"6":{"loc":{"start":{"line":34,"column":4},"end":{"line":35,"column":57}},"type":"if","locations":[{"start":{"line":34,"column":4},"end":{"line":35,"column":57}},{"start":{"line":34,"column":4},"end":{"line":35,"column":57}}],"line":34}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":12,"6":12,"7":12,"8":1,"9":11,"10":11,"11":11,"12":27,"13":27,"14":27,"15":11,"16":1,"17":39,"18":39,"19":39},"f":{"0":1,"1":12,"2":39},"b":{"0":[1,1,1],"1":[0,1],"2":[1,1],"3":[1],"4":[7],"5":[7],"6":[1,11]},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts"],"names":[],"mappings":";;;;;;AAAA,oDAA4B;AAE5B;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,IAAI,CAClB,GAAW,EACX,GAAW,EACX,OAAe,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,EAC9B,OAAe,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,EAC9B,IAAI,GAAG,QAAQ;IAEf,eAAe;IACf,MAAM,GAAG,GAAG,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IAEtC,SAAS;IACT,MAAM,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;IAE1C,uDAAuD;IACvD,uDAAuD;IACvD,8DAA8D;IAC9D,mEAAmE;IACnE,IAAI,CAAC,GAAG,GAAG;QAAE,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;IAE9D,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAC5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;QAC3B,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAC3B,MAAM,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5B,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;KAC5D;IACD,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;AACjD,CAAC;AA1BD,oBA0BC;AAED,SAAS,QAAQ,CAAC,GAAW,EAAE,KAAa,EAAE,IAAY;IACxD,MAAM,IAAI,GAAG,gBAAM,CAAC,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACnB,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC;AACvB,CAAC","sourcesContent":["import crypto from 'crypto';\n\n/**\n * HMAC-based Extact and Expand Key Derivation Function (HKDF)\n * that complies with RFC 5869.\n *\n * @remarks\n * Refer to https://tools.ietf.org/html/rfc5869 for detailed information.\n *\n * The current implementation only supports up to 254 expansion rounds for\n * a total of 255 rounds.\n *\n * @param ikm initial key material, variable length\n * @param len output key material length\n * @param salt optional, defaults to none\n * @param info optional, defaults to none\n * @param hash optional, defaults to sha256\n * @returns output key material of specified length\n */\nexport function hkdf(\n ikm: Buffer,\n len: number,\n salt: Buffer = Buffer.alloc(0),\n info: Buffer = Buffer.alloc(0),\n hash = 'sha256',\n): Buffer {\n // extract step\n const prk = hmacHash(salt, ikm, hash);\n\n // expand\n const n = Math.ceil(len / prk.byteLength);\n\n // validate we don't overflow iteration counter buffer.\n // Note that we can support larger values but will need\n // to modify how the integer byte is constructed, additionally\n // the specification does not specify the endianness of the counter\n if (n > 255) throw new Error('Output length exceeds maximum');\n\n const t = [Buffer.alloc(0)];\n for (let i = 1; i <= n; i++) {\n const tp = t[t.length - 1];\n const bi = Buffer.from([i]);\n t.push(hmacHash(prk, Buffer.concat([tp, info, bi]), hash));\n }\n return Buffer.concat(t.slice(1)).slice(0, len);\n}\n\nfunction hmacHash(key: Buffer, input: Buffer, hash: string) {\n const hmac = crypto.createHmac(hash, key);\n hmac.update(input);\n return hmac.digest();\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"c7b4a4ce9600f1277d7906f571f851b7cd34c839","contentHash":"6f76e9b48ab27b52f29c9e29e0ab6304efe73eefa028a43299caf542cab34866"},"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts","statementMap":{"0":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"1":{"start":{"line":3,"column":4},"end":{"line":3,"column":62}},"2":{"start":{"line":5,"column":0},"end":{"line":5,"column":62}},"3":{"start":{"line":6,"column":0},"end":{"line":6,"column":108}},"4":{"start":{"line":7,"column":17},"end":{"line":7,"column":51}},"5":{"start":{"line":8,"column":20},"end":{"line":8,"column":57}},"6":{"start":{"line":19,"column":4},"end":{"line":24,"column":5}},"7":{"start":{"line":20,"column":8},"end":{"line":20,"column":61}},"8":{"start":{"line":23,"column":8},"end":{"line":23,"column":21}},"9":{"start":{"line":26,"column":0},"end":{"line":26,"column":42}},"10":{"start":{"line":34,"column":4},"end":{"line":39,"column":5}},"11":{"start":{"line":35,"column":8},"end":{"line":35,"column":59}},"12":{"start":{"line":38,"column":8},"end":{"line":38,"column":21}},"13":{"start":{"line":41,"column":0},"end":{"line":41,"column":40}},"14":{"start":{"line":54,"column":4},"end":{"line":56,"column":39}},"15":{"start":{"line":55,"column":8},"end":{"line":55,"column":50}},"16":{"start":{"line":57,"column":4},"end":{"line":57,"column":18}},"17":{"start":{"line":59,"column":0},"end":{"line":59,"column":44}},"18":{"start":{"line":69,"column":4},"end":{"line":69,"column":81}},"19":{"start":{"line":71,"column":0},"end":{"line":71,"column":36}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":56},"end":{"line":2,"column":57}},"loc":{"start":{"line":2,"column":71},"end":{"line":4,"column":1}},"line":2},"1":{"name":"validPrivateKey","decl":{"start":{"line":18,"column":9},"end":{"line":18,"column":24}},"loc":{"start":{"line":18,"column":34},"end":{"line":25,"column":1}},"line":18},"2":{"name":"validPublicKey","decl":{"start":{"line":33,"column":9},"end":{"line":33,"column":23}},"loc":{"start":{"line":33,"column":32},"end":{"line":40,"column":1}},"line":33},"3":{"name":"createPrivateKey","decl":{"start":{"line":52,"column":9},"end":{"line":52,"column":25}},"loc":{"start":{"line":52,"column":28},"end":{"line":58,"column":1}},"line":52},"4":{"name":"getPublicKey","decl":{"start":{"line":68,"column":9},"end":{"line":68,"column":21}},"loc":{"start":{"line":68,"column":50},"end":{"line":70,"column":1}},"line":68}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"type":"binary-expr","locations":[{"start":{"line":2,"column":23},"end":{"line":2,"column":27}},{"start":{"line":2,"column":31},"end":{"line":2,"column":51}},{"start":{"line":2,"column":56},"end":{"line":4,"column":1}}],"line":2},"1":{"loc":{"start":{"line":3,"column":11},"end":{"line":3,"column":61}},"type":"cond-expr","locations":[{"start":{"line":3,"column":37},"end":{"line":3,"column":40}},{"start":{"line":3,"column":43},"end":{"line":3,"column":61}}],"line":3},"2":{"loc":{"start":{"line":3,"column":12},"end":{"line":3,"column":33}},"type":"binary-expr","locations":[{"start":{"line":3,"column":12},"end":{"line":3,"column":15}},{"start":{"line":3,"column":19},"end":{"line":3,"column":33}}],"line":3},"3":{"loc":{"start":{"line":68,"column":31},"end":{"line":68,"column":48}},"type":"default-arg","locations":[{"start":{"line":68,"column":44},"end":{"line":68,"column":48}}],"line":68}},"s":{"0":1,"1":2,"2":1,"3":1,"4":1,"5":1,"6":7,"7":7,"8":2,"9":1,"10":6,"11":6,"12":2,"13":1,"14":1,"15":1,"16":1,"17":1,"18":13,"19":1},"f":{"0":2,"1":7,"2":6,"3":1,"4":13},"b":{"0":[1,1,1],"1":[0,2],"2":[2,2],"3":[5]},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts"],"names":[],"mappings":";;;;;;AAAA,oDAA4B;AAC5B,0DAAkC;AAElC,wCAAwC;AACxC,sGAAsG;AAEtG;;;;;;GAMG;AACH,SAAgB,eAAe,CAAC,OAAe;IAC7C,IAAI;QACF,OAAO,mBAAS,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;KAC5C;IAAC,OAAO,EAAE,EAAE;QACX,OAAO,KAAK,CAAC;KACd;AACH,CAAC;AAND,0CAMC;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAAC,MAAc;IAC3C,IAAI;QACF,OAAO,mBAAS,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;KAC1C;IAAC,OAAO,EAAE,EAAE;QACX,OAAO,KAAK,CAAC;KACd;AACH,CAAC;AAND,wCAMC;AAED;;;;;;;;;GASG;AACH,SAAgB,gBAAgB;IAC9B,IAAI,MAAc,CAAC;IACnB,GAAG;QACD,MAAM,GAAG,gBAAM,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;KACjC,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,EAAE;IACnC,OAAO,MAAM,CAAC;AAChB,CAAC;AAND,4CAMC;AAED;;;;;;;GAOG;AACH,SAAgB,YAAY,CAAC,OAAe,EAAE,UAAU,GAAG,IAAI;IAC7D,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,eAAe,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC;AACrE,CAAC;AAFD,oCAEC","sourcesContent":["import crypto from 'crypto';\nimport secp256k1 from 'secp256k1';\n\n// const minPrivateKey = BigInt(\"0x01\");\n// const maxPrivateKey = BigInt(\"0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364140\");\n\n/**\n * Returns true when the Buffer represents a 256-bit number that is between\n * 0x1 and 0xffffffffffffffffffffffffffffffffbaaedce6af48a03bbfd25e8cd0364140\n * as documented in https://en.bitcoin.it/wiki/Private_key\n *\n * @param privKey 32-byte/256-bit buffer\n */\nexport function validPrivateKey(privKey: Buffer): boolean {\n try {\n return secp256k1.privateKeyVerify(privKey);\n } catch (ex) {\n return false;\n }\n}\n\n/**\n * Returns true when the Buffer represents a valid SEC encoded public\n * key stored in a buffer. This expects the prefix and length to be\n * correct.\n * @param pubkey\n */\nexport function validPublicKey(pubkey: Buffer): boolean {\n try {\n return secp256k1.publicKeyVerify(pubkey);\n } catch (ex) {\n return false;\n }\n}\n\n/**\n * Generates a cryptographially secure 256-bit private key\n * that is valid for elliptic curve secp256k1\n *\n * @remarks This method uses crypto.randomBytes to\n * generate the random value. It may be better to use a\n * HRBG\n *\n * @returns the 32-byte/256-bit private key\n */\nexport function createPrivateKey(): Buffer {\n let result: Buffer;\n do {\n result = crypto.randomBytes(32);\n } while (!validPrivateKey(result));\n return result;\n}\n\n/**\n * Gets the public key in the ellitic curve secp256k1\n * from the provided private key\n *\n * @param privKey 32-byte/256-bit private key\n * @returns 33-byte buffer for compressed,\n * 65-byte buffer for uncompressed\n */\nexport function getPublicKey(privKey: Buffer, compressed = true): Buffer {\n return Buffer.from(secp256k1.publicKeyCreate(privKey, compressed));\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"f01c1718089642f0ee7bae3a15c76b9011129fbf","contentHash":"cbac7b1a00dbbda52682a422c18c1dd8353e1f7eb18752df88d455df9e66f859"},"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts","statementMap":{"0":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"1":{"start":{"line":3,"column":4},"end":{"line":3,"column":62}},"2":{"start":{"line":5,"column":0},"end":{"line":5,"column":62}},"3":{"start":{"line":6,"column":0},"end":{"line":6,"column":332}},"4":{"start":{"line":7,"column":20},"end":{"line":7,"column":57}},"5":{"start":{"line":19,"column":4},"end":{"line":19,"column":72}},"6":{"start":{"line":21,"column":0},"end":{"line":21,"column":20}},"7":{"start":{"line":30,"column":4},"end":{"line":30,"column":91}},"8":{"start":{"line":32,"column":0},"end":{"line":32,"column":38}},"9":{"start":{"line":42,"column":26},"end":{"line":42,"column":72}},"10":{"start":{"line":43,"column":4},"end":{"line":43,"column":54}},"11":{"start":{"line":44,"column":4},"end":{"line":44,"column":34}},"12":{"start":{"line":46,"column":0},"end":{"line":46,"column":20}},"13":{"start":{"line":56,"column":33},"end":{"line":56,"column":79}},"14":{"start":{"line":57,"column":4},"end":{"line":60,"column":6}},"15":{"start":{"line":62,"column":0},"end":{"line":62,"column":44}},"16":{"start":{"line":69,"column":4},"end":{"line":69,"column":65}},"17":{"start":{"line":71,"column":0},"end":{"line":71,"column":28}},"18":{"start":{"line":82,"column":4},"end":{"line":82,"column":61}},"19":{"start":{"line":84,"column":0},"end":{"line":84,"column":30}},"20":{"start":{"line":90,"column":4},"end":{"line":96,"column":5}},"21":{"start":{"line":91,"column":8},"end":{"line":91,"column":49}},"22":{"start":{"line":92,"column":8},"end":{"line":92,"column":20}},"23":{"start":{"line":95,"column":8},"end":{"line":95,"column":21}},"24":{"start":{"line":98,"column":0},"end":{"line":98,"column":28}},"25":{"start":{"line":105,"column":4},"end":{"line":111,"column":5}},"26":{"start":{"line":106,"column":23},"end":{"line":106,"column":66}},"27":{"start":{"line":107,"column":8},"end":{"line":107,"column":35}},"28":{"start":{"line":110,"column":8},"end":{"line":110,"column":64}},"29":{"start":{"line":113,"column":0},"end":{"line":113,"column":32}},"30":{"start":{"line":123,"column":19},"end":{"line":123,"column":93}},"31":{"start":{"line":124,"column":4},"end":{"line":124,"column":31}},"32":{"start":{"line":126,"column":0},"end":{"line":126,"column":38}},"33":{"start":{"line":137,"column":4},"end":{"line":137,"column":92}},"34":{"start":{"line":139,"column":0},"end":{"line":139,"column":46}},"35":{"start":{"line":150,"column":4},"end":{"line":150,"column":92}},"36":{"start":{"line":152,"column":0},"end":{"line":152,"column":46}},"37":{"start":{"line":161,"column":4},"end":{"line":161,"column":82}},"38":{"start":{"line":163,"column":0},"end":{"line":163,"column":44}},"39":{"start":{"line":171,"column":4},"end":{"line":171,"column":95}},"40":{"start":{"line":173,"column":0},"end":{"line":173,"column":48}},"41":{"start":{"line":181,"column":4},"end":{"line":181,"column":95}},"42":{"start":{"line":183,"column":0},"end":{"line":183,"column":48}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":2,"column":56},"end":{"line":2,"column":57}},"loc":{"start":{"line":2,"column":71},"end":{"line":4,"column":1}},"line":2},"1":{"name":"ecdh","decl":{"start":{"line":18,"column":9},"end":{"line":18,"column":13}},"loc":{"start":{"line":18,"column":37},"end":{"line":20,"column":1}},"line":18},"2":{"name":"privateKeyMul","decl":{"start":{"line":29,"column":9},"end":{"line":29,"column":22}},"loc":{"start":{"line":29,"column":38},"end":{"line":31,"column":1}},"line":29},"3":{"name":"sign","decl":{"start":{"line":41,"column":9},"end":{"line":41,"column":13}},"loc":{"start":{"line":41,"column":31},"end":{"line":45,"column":1}},"line":41},"4":{"name":"signWithRecovery","decl":{"start":{"line":55,"column":9},"end":{"line":55,"column":25}},"loc":{"start":{"line":55,"column":43},"end":{"line":61,"column":1}},"line":55},"5":{"name":"sigToDER","decl":{"start":{"line":68,"column":9},"end":{"line":68,"column":17}},"loc":{"start":{"line":68,"column":23},"end":{"line":70,"column":1}},"line":68},"6":{"name":"verifySig","decl":{"start":{"line":81,"column":9},"end":{"line":81,"column":18}},"loc":{"start":{"line":81,"column":37},"end":{"line":83,"column":1}},"line":81},"7":{"name":"isDERSig","decl":{"start":{"line":89,"column":9},"end":{"line":89,"column":17}},"loc":{"start":{"line":89,"column":23},"end":{"line":97,"column":1}},"line":89},"8":{"name":"sigFromDER","decl":{"start":{"line":104,"column":9},"end":{"line":104,"column":19}},"loc":{"start":{"line":104,"column":28},"end":{"line":112,"column":1}},"line":104},"9":{"name":"recoverPubKey","decl":{"start":{"line":122,"column":9},"end":{"line":122,"column":22}},"loc":{"start":{"line":122,"column":72},"end":{"line":125,"column":1}},"line":122},"10":{"name":"publicKeyTweakAdd","decl":{"start":{"line":136,"column":9},"end":{"line":136,"column":26}},"loc":{"start":{"line":136,"column":64},"end":{"line":138,"column":1}},"line":136},"11":{"name":"publicKeyTweakMul","decl":{"start":{"line":149,"column":9},"end":{"line":149,"column":26}},"loc":{"start":{"line":149,"column":64},"end":{"line":151,"column":1}},"line":149},"12":{"name":"publicKeyCombine","decl":{"start":{"line":160,"column":9},"end":{"line":160,"column":25}},"loc":{"start":{"line":160,"column":54},"end":{"line":162,"column":1}},"line":160},"13":{"name":"privateKeyTweakAdd","decl":{"start":{"line":170,"column":9},"end":{"line":170,"column":27}},"loc":{"start":{"line":170,"column":47},"end":{"line":172,"column":1}},"line":170},"14":{"name":"privateKeyTweakMul","decl":{"start":{"line":180,"column":9},"end":{"line":180,"column":27}},"loc":{"start":{"line":180,"column":47},"end":{"line":182,"column":1}},"line":180}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":22},"end":{"line":4,"column":1}},"type":"binary-expr","locations":[{"start":{"line":2,"column":23},"end":{"line":2,"column":27}},{"start":{"line":2,"column":31},"end":{"line":2,"column":51}},{"start":{"line":2,"column":56},"end":{"line":4,"column":1}}],"line":2},"1":{"loc":{"start":{"line":3,"column":11},"end":{"line":3,"column":61}},"type":"cond-expr","locations":[{"start":{"line":3,"column":37},"end":{"line":3,"column":40}},{"start":{"line":3,"column":43},"end":{"line":3,"column":61}}],"line":3},"2":{"loc":{"start":{"line":3,"column":12},"end":{"line":3,"column":33}},"type":"binary-expr","locations":[{"start":{"line":3,"column":12},"end":{"line":3,"column":15}},{"start":{"line":3,"column":19},"end":{"line":3,"column":33}}],"line":3},"3":{"loc":{"start":{"line":122,"column":53},"end":{"line":122,"column":70}},"type":"default-arg","locations":[{"start":{"line":122,"column":66},"end":{"line":122,"column":70}}],"line":122},"4":{"loc":{"start":{"line":136,"column":45},"end":{"line":136,"column":62}},"type":"default-arg","locations":[{"start":{"line":136,"column":58},"end":{"line":136,"column":62}}],"line":136},"5":{"loc":{"start":{"line":149,"column":45},"end":{"line":149,"column":62}},"type":"default-arg","locations":[{"start":{"line":149,"column":58},"end":{"line":149,"column":62}}],"line":149},"6":{"loc":{"start":{"line":160,"column":35},"end":{"line":160,"column":52}},"type":"default-arg","locations":[{"start":{"line":160,"column":48},"end":{"line":160,"column":52}}],"line":160}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":2,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":0,"14":0,"15":1,"16":1,"17":1,"18":1,"19":1,"20":2,"21":2,"22":1,"23":1,"24":1,"25":0,"26":0,"27":0,"28":0,"29":1,"30":0,"31":0,"32":1,"33":2,"34":1,"35":2,"36":1,"37":2,"38":1,"39":2,"40":1,"41":2,"42":1},"f":{"0":1,"1":2,"2":1,"3":1,"4":0,"5":1,"6":1,"7":2,"8":0,"9":0,"10":2,"11":2,"12":2,"13":2,"14":2},"b":{"0":[1,1,1],"1":[0,1],"2":[1,1],"3":[0],"4":[2],"5":[2],"6":[0]},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts"],"names":[],"mappings":";;;;;;AAAA,0DAAkC;AAElC;;;;;;;;;GASG;AACH,SAAgB,IAAI,CAAC,SAAiB,EAAE,UAAkB;IACxD,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;AAC5D,CAAC;AAFD,oBAEC;AAED;;;;;;GAMG;AACH,SAAgB,aAAa,CAAC,MAAc,EAAE,KAAa;IACzD,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;AAC/E,CAAC;AAFD,sCAEC;AAED;;;;;;;GAOG;AACH,SAAgB,IAAI,CAAC,GAAW,EAAE,UAAkB;IAClD,MAAM,EAAE,SAAS,EAAE,GAAG,mBAAS,CAAC,SAAS,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC;IAC3D,mBAAS,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC;IACxC,OAAO,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;AAChC,CAAC;AAJD,oBAIC;AAED;;;;;;;GAOG;AACH,SAAgB,gBAAgB,CAC9B,GAAW,EACX,UAAkB;IAElB,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,mBAAS,CAAC,SAAS,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC;IAClE,OAAO;QACL,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC;QACjC,QAAQ,EAAE,KAAK;KAChB,CAAC;AACJ,CAAC;AATD,4CASC;AAED;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,GAAW;IAClC,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC;AACrD,CAAC;AAFD,4BAEC;AAED;;;;;;;;GAQG;AACH,SAAgB,SAAS,CAAC,GAAW,EAAE,GAAW,EAAE,MAAc;IAChE,OAAO,mBAAS,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,CAAC;AACjD,CAAC;AAFD,8BAEC;AAED;;;GAGG;AACH,SAAgB,QAAQ,CAAC,GAAW;IAClC,IAAI;QACF,mBAAS,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;QAC/B,OAAO,IAAI,CAAC;KACb;IAAC,OAAO,EAAE,EAAE;QACX,OAAO,KAAK,CAAC;KACd;AACH,CAAC;AAPD,4BAOC;AAED;;;;GAIG;AACH,SAAgB,UAAU,CAAC,MAAc;IACvC,IAAI;QACF,MAAM,MAAM,GAAG,mBAAS,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;QACjD,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC5B;IAAC,OAAO,EAAE,EAAE;QACX,MAAM,IAAI,KAAK,CAAC,0BAA0B,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;KACzD;AACH,CAAC;AAPD,gCAOC;AAED;;;;;;;GAOG;AACH,SAAgB,aAAa,CAC3B,SAAiB,EACjB,QAAgB,EAChB,OAAe,EACf,UAAU,GAAG,IAAI;IAEjB,MAAM,MAAM,GAAG,mBAAS,CAAC,YAAY,CACnC,SAAS,EACT,QAAQ,EACR,OAAO,EACP,UAAU,CACX,CAAC;IACF,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;AAC7B,CAAC;AAbD,sCAaC;AAED;;;;;;;;GAQG;AACH,SAAgB,iBAAiB,CAC/B,SAAiB,EACjB,KAAa,EACb,UAAU,GAAG,IAAI;IAEjB,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,iBAAiB,CAAC,SAAS,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC,CAAC;AAChF,CAAC;AAND,8CAMC;AAED;;;;;;;;GAQG;AACH,SAAgB,iBAAiB,CAC/B,SAAiB,EACjB,KAAa,EACb,UAAU,GAAG,IAAI;IAEjB,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,iBAAiB,CAAC,SAAS,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC,CAAC;AAChF,CAAC;AAND,8CAMC;AAED;;;;;;GAMG;AACH,SAAgB,gBAAgB,CAAC,OAAiB,EAAE,UAAU,GAAG,IAAI;IACnE,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAS,CAAC,gBAAgB,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC;AACtE,CAAC;AAFD,4CAEC;AAED;;;;;GAKG;AACH,SAAgB,kBAAkB,CAAC,UAAkB,EAAE,KAAa;IAClE,OAAO,MAAM,CAAC,IAAI,CAChB,mBAAS,CAAC,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC,CAC7D,CAAC;AACJ,CAAC;AAJD,gDAIC;AAED;;;;;GAKG;AACH,SAAgB,kBAAkB,CAAC,UAAkB,EAAE,KAAa;IAClE,OAAO,MAAM,CAAC,IAAI,CAChB,mBAAS,CAAC,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC,CAC7D,CAAC;AACJ,CAAC;AAJD,gDAIC","sourcesContent":["import secp256k1 from 'secp256k1';\n\n/**\n * Elliptic Curve Diffie-Helman on secp256k1 takes a\n * public key and point multiplies it by the private key.\n * The resulting compressed public key value is hashed via\n * sha256.\n *\n * @param publicKey 33-byte compressed public key\n * @param privateKey 32-byte private key\n * @returns 32-byte sha256 of the point multiple\n */\nexport function ecdh(publicKey: Buffer, privateKey: Buffer): Buffer {\n return Buffer.from(secp256k1.ecdh(publicKey, privateKey));\n}\n\n/**\n * Performs modular multiplication on the secret value by multiplying by the\n * tweak value\n * @param secret 32-byte secret\n * @param tweak 32-byte tweak\n * @returns 32-byte secret\n */\nexport function privateKeyMul(secret: Buffer, tweak: Buffer): Buffer {\n return Buffer.from(secp256k1.privateKeyTweakMul(Buffer.from(secret), tweak));\n}\n\n/**\n * Create an ECDSA signature for the 32-byte message using the private\n * key. This method returns the normalized low-s version of the signature\n * as a 64-byte Buffer (r,s) values.\n * @param msg 32-byte message\n * @param privateKey 32-byte secp256k1 private key\n * @returns signatures as 64-byte buffer with (r,s) pair\n */\nexport function sign(msg: Buffer, privateKey: Buffer): Buffer {\n const { signature } = secp256k1.ecdsaSign(msg, privateKey);\n secp256k1.signatureNormalize(signature);\n return Buffer.from(signature);\n}\n\n/**\n * Create an ECDSA signature for the 32-byte message using the private\n * key. This method returns both the signature in the normalized low-s\n * version of the signature as a 64-bte Buffer (r,s) and the recovery\n * identifier.\n * @param msg 32-byte message\n * @param privateKey 32-byte secp256k1 private key\n */\nexport function signWithRecovery(\n msg: Buffer,\n privateKey: Buffer,\n): { signature: Buffer; recovery: number } {\n const { signature, recid } = secp256k1.ecdsaSign(msg, privateKey);\n return {\n signature: Buffer.from(signature),\n recovery: recid,\n };\n}\n\n/**\n * Encodes a signature into a DER encoding. This encoding is 8-73 bytes\n * in length depending on the length of the s value in the signature.\n * @param sig 64-byte buffer containing (r, s)\n */\nexport function sigToDER(sig: Buffer): Buffer {\n return Buffer.from(secp256k1.signatureExport(sig));\n}\n\n/**\n * Verifies an ECDSA signature and returns true or false\n * if the signatures is valid.\n *\n * @param msg 32-byte message (256 hash or message)\n * @param sig 64-byte\n * @param pubkey 33-byte compressed pubkey\n * @returns true when signature is valid\n */\nexport function verifySig(msg: Buffer, sig: Buffer, pubkey: Buffer): boolean {\n return secp256k1.ecdsaVerify(sig, msg, pubkey);\n}\n\n/**\n * Returns true if the signature is a DER encoded signature\n * @param sig a DER encoded signature\n */\nexport function isDERSig(sig: Buffer): boolean {\n try {\n secp256k1.signatureImport(sig);\n return true;\n } catch (ex) {\n return false;\n }\n}\n\n/**\n * Parses a DER-encoded signature and returns the raw 64-byte signature (r,s)\n * @param derSig DER-encoded signature buffer\n * @returns 64-byte buffer containing raw (r,s) signature\n */\nexport function sigFromDER(derSig: Buffer): Buffer {\n try {\n const rawSig = secp256k1.signatureImport(derSig);\n return Buffer.from(rawSig);\n } catch (ex) {\n throw new Error(`Invalid DER signature: ${ex.message}`);\n }\n}\n\n/**\n * Recovers the public key from the signature and recovery identifier\n * for the signed message.\n * @param signature 64-byte signature\n * @param recovery recovery id\n * @param message message that was signed\n * @param compressed whether the pubkey is compressed\n */\nexport function recoverPubKey(\n signature: Buffer,\n recovery: number,\n message: Buffer,\n compressed = true,\n): Buffer {\n const result = secp256k1.ecdsaRecover(\n signature,\n recovery,\n message,\n compressed,\n );\n return Buffer.from(result);\n}\n\n/**\n * Tweaks a public key by adding tweak * G to the point. The equation is\n * T = P + t*G\n *\n * @param publicKey 33-byte or 65-byte public key\n * @param tweak 32-byte scalar value that is multiplied by G\n * @param compressed true to compress the resulting point\n * @returns the 33-byte compressed or 65-byte uncompressed public key point\n */\nexport function publicKeyTweakAdd(\n publicKey: Buffer,\n tweak: Buffer,\n compressed = true,\n): Buffer {\n return Buffer.from(secp256k1.publicKeyTweakAdd(publicKey, tweak, compressed));\n}\n\n/**\n * Tweaks a public key by multiplying it against a scalar. The equation is\n * T = P * t\n *\n * @param publicKey 33-byte or 65-byte public key\n * @param tweak 32-byte tweak to multiply against the public key\n * @param compressed true to compress the resulting point\n * @returns the 33-byte compressed or 65-byte uncompressed public key point\n */\nexport function publicKeyTweakMul(\n publicKey: Buffer,\n tweak: Buffer,\n compressed = true,\n): Buffer {\n return Buffer.from(secp256k1.publicKeyTweakMul(publicKey, tweak, compressed));\n}\n\n/**\n * Performs point addition\n *\n * @param pubkeys list of 33-byte or 65-byte public keys\n * @param compressed true to compress the resulting point\n * @returns the 33-byte compressed or 65-byte uncompressed public key point\n */\nexport function publicKeyCombine(pubkeys: Buffer[], compressed = true): Buffer {\n return Buffer.from(secp256k1.publicKeyCombine(pubkeys, compressed));\n}\n\n/**\n * Tweaks a private key by adding a value to it. The question is: e + t.\n *\n * @param privateKey the 32-byte private key\n * @param tweak a 32-byte tweak\n */\nexport function privateKeyTweakAdd(privateKey: Buffer, tweak: Buffer): Buffer {\n return Buffer.from(\n secp256k1.privateKeyTweakAdd(Buffer.from(privateKey), tweak),\n );\n}\n\n/**\n * Tweaks a private key by multiplying it. The equation is: e * t.\n *\n * @param privateKey the 32-byte private key\n * @param tweak a 32-byte tweak\n */\nexport function privateKeyTweakMul(privateKey: Buffer, tweak: Buffer): Buffer {\n return Buffer.from(\n secp256k1.privateKeyTweakMul(Buffer.from(privateKey), tweak),\n );\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"ae61faa86cf4762a4072d878fff4b20888252ce6","contentHash":"0efa2daa72d6f1d71ca7483a97a70a301df8a204ed07f468e01ab112a0a4ddb4"},"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts":{"path":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts","statementMap":{"0":{"start":{"line":2,"column":0},"end":{"line":2,"column":62}},"1":{"start":{"line":3,"column":0},"end":{"line":3,"column":21}},"2":{"start":{"line":10,"column":19},"end":{"line":10,"column":61}},"3":{"start":{"line":11,"column":4},"end":{"line":13,"column":5}},"4":{"start":{"line":11,"column":17},"end":{"line":11,"column":18}},"5":{"start":{"line":12,"column":8},"end":{"line":12,"column":32}},"6":{"start":{"line":14,"column":4},"end":{"line":14,"column":18}},"7":{"start":{"line":16,"column":0},"end":{"line":16,"column":18}}},"fnMap":{"0":{"name":"xor","decl":{"start":{"line":9,"column":9},"end":{"line":9,"column":12}},"loc":{"start":{"line":9,"column":19},"end":{"line":15,"column":1}},"line":9}},"branchMap":{},"s":{"0":1,"1":1,"2":4,"3":4,"4":4,"5":6,"6":4,"7":1},"f":{"0":4},"b":{},"inputSourceMap":{"version":3,"file":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts","sources":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts"],"names":[],"mappings":";;;AAAA;;;;GAIG;AACH,SAAgB,GAAG,CAAC,CAAS,EAAE,CAAS;IACtC,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;IAC1D,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACtC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;KACzB;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAND,kBAMC","sourcesContent":["/**\n * Performs XOR of the two buffers where only the min length will be XOR'd\n * @param a\n * @param b\n */\nexport function xor(a: Buffer, b: Buffer): Buffer {\n const result = Buffer.alloc(Math.min(a.length, b.length));\n for (let i = 0; i < result.length; i++) {\n result[i] = a[i] ^ b[i];\n }\n return result;\n}\n"]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"62cfb377086e77bc3889a0af6813a27d2b09f229","contentHash":"20f201f19f569ae1099db7c4f394f0447783b50d739414308e5136038a97eea5"}}
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":529,"argv":["/Users/matthewblack/.nvm/versions/node/v18.20.8/bin/node","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/node_modules/.bin/mocha","--require","ts-node/register","--recursive","__tests__/**/*.spec.*"],"execArgv":[],"cwd":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto","time":1752977113675,"ppid":314,"coverageFilename":"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/.nyc_output/de03e0b4-d482-4f61-b680-59411360f56e.json","externalId":"","uuid":"de03e0b4-d482-4f61-b680-59411360f56e","files":["/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts","/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts"]}
@@ -0,0 +1 @@
1
+ {"processes":{"de03e0b4-d482-4f61-b680-59411360f56e":{"parent":null,"children":[]}},"files":{"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chacha.ts":["de03e0b4-d482-4f61-b680-59411360f56e"],"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/chachapoly.ts":["de03e0b4-d482-4f61-b680-59411360f56e"],"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/hkdf.ts":["de03e0b4-d482-4f61-b680-59411360f56e"],"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/key.ts":["de03e0b4-d482-4f61-b680-59411360f56e"],"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/secp256k1.ts":["de03e0b4-d482-4f61-b680-59411360f56e"],"/Users/matthewblack/code/github.com/AtomicFinance/node-dlc/packages/crypto/lib/xor.ts":["de03e0b4-d482-4f61-b680-59411360f56e"]},"externalIds":{}}
@@ -0,0 +1,13 @@
1
+ # @node-dlc/crypto
2
+
3
+ This packages uses the native Node.js crypto for all functionality except secp256k1. This package requires Node.js 10.17+.
4
+
5
+ This package provides cryptographic functions for use in LN Tools:
6
+
7
+ - sha256
8
+ - hash160
9
+ - hkdf
10
+ - secp256k1 ECDH
11
+ - secp256k1 private key generation
12
+ - secp256k1 public key derivation
13
+ - chacha20-poly1305 AEAD
@@ -0,0 +1,29 @@
1
+ import { expect } from 'chai';
2
+ import { chachaDecrypt, chachaEncrypt } from '../lib/chacha';
3
+
4
+ describe('chachaEncrypt', () => {
5
+ it('encrypts', () => {
6
+ const key = Buffer.alloc(32);
7
+ const iv = Buffer.alloc(16);
8
+ const data = Buffer.alloc(64);
9
+ const result = chachaEncrypt(key, iv, data);
10
+ expect(result.toString('hex')).to.equal(
11
+ '76b8e0ada0f13d90405d6ae55386bd28bdd219b8a08ded1aa836efcc8b770dc7da41597c5157488d7724e03fb8d84a376a43b8f41518a11cc387b669b2ee6586',
12
+ );
13
+ });
14
+ });
15
+
16
+ describe('chachaDecrypt', () => {
17
+ it('decrypts', () => {
18
+ const key = Buffer.alloc(32);
19
+ const iv = Buffer.alloc(16);
20
+ const cipher = Buffer.from(
21
+ '76b8e0ada0f13d90405d6ae55386bd28bdd219b8a08ded1aa836efcc8b770dc7da41597c5157488d7724e03fb8d84a376a43b8f41518a11cc387b669b2ee6586',
22
+ 'hex',
23
+ );
24
+ const result = chachaDecrypt(key, iv, cipher);
25
+ expect(result.toString('hex')).to.equal(
26
+ '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000',
27
+ );
28
+ });
29
+ });
@@ -0,0 +1,78 @@
1
+ import { expect } from 'chai';
2
+ import * as ccp from '../lib/chachapoly';
3
+
4
+ describe('chacha20-poly1305', () => {
5
+ describe('BOLT #8 vectors', () => {
6
+ describe('encrypt', () => {
7
+ it('noise initiator act1', () => {
8
+ const k = Buffer.from("e68f69b7f096d7917245f5e5cf8ae1595febe4d4644333c99f9c4a1282031c9f", "hex"); // prettier-ignore
9
+ const n = Buffer.from('000000000000000000000000', 'hex');
10
+ const ad = Buffer.from("9e0e7de8bb75554f21db034633de04be41a2b8a18da7a319a03c803bf02b396c", "hex"); // prettier-ignore
11
+ const pt = Buffer.alloc(0);
12
+ const actual = ccp.ccpEncrypt(k, n, ad, pt);
13
+ expect(actual.toString('hex')).to.equal(
14
+ '0df6086551151f58b8afe6c195782c6a',
15
+ );
16
+ });
17
+
18
+ it('noise initiator act3', () => {
19
+ const k = Buffer.from("908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc", "hex"); // prettier-ignore
20
+ const n = Buffer.from('000000000100000000000000', 'hex');
21
+ const ad = Buffer.from("90578e247e98674e661013da3c5c1ca6a8c8f48c90b485c0dfa1494e23d56d72", "hex"); // prettier-ignore
22
+ const pt = Buffer.from("034f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa", "hex"); // prettier-ignore
23
+ const actual = ccp.ccpEncrypt(k, n, ad, pt);
24
+ expect(actual.toString('hex')).to.equal(
25
+ 'b9e3a702e93e3a9948c2ed6e5fd7590a6e1c3a0344cfc9d5b57357049aa22355361aa02e55a8fc28fef5bd6d71ad0c3822',
26
+ );
27
+ });
28
+
29
+ it('noise responder act 2', () => {
30
+ const k = Buffer.from("908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc", "hex"); // prettier-ignore
31
+ const n = Buffer.from('000000000000000000000000', 'hex');
32
+ const ad = Buffer.from("38122f669819f906000621a14071802f93f2ef97df100097bcac3ae76c6dc0bf", "hex"); // prettier-ignore
33
+ const pt = Buffer.from("", "hex"); // prettier-ignore
34
+ const actual = ccp.ccpEncrypt(k, n, ad, pt);
35
+ expect(actual.toString('hex')).to.equal(
36
+ '6e2470b93aac583c9ef6eafca3f730ae',
37
+ );
38
+ });
39
+ });
40
+
41
+ describe('decrypt', () => {
42
+ it('noise initiator act2', () => {
43
+ const k = Buffer.from("908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc", "hex"); // prettier-ignore
44
+ const n = Buffer.from('000000000000000000000000', 'hex');
45
+ const ad = Buffer.from("38122f669819f906000621a14071802f93f2ef97df100097bcac3ae76c6dc0bf", "hex"); // prettier-ignore
46
+ const ciphertext = Buffer.from(
47
+ '6e2470b93aac583c9ef6eafca3f730ae',
48
+ 'hex',
49
+ );
50
+ const actual = ccp.ccpDecrypt(k, n, ad, ciphertext);
51
+ expect(actual.toString('hex')).to.equal('');
52
+ });
53
+
54
+ it('noise responder act1', () => {
55
+ const k = Buffer.from("e68f69b7f096d7917245f5e5cf8ae1595febe4d4644333c99f9c4a1282031c9f", "hex"); // prettier-ignore
56
+ const n = Buffer.from('000000000000000000000000', 'hex');
57
+ const ad = Buffer.from("9e0e7de8bb75554f21db034633de04be41a2b8a18da7a319a03c803bf02b396c", "hex"); // prettier-ignore
58
+ const ciphertext = Buffer.from(
59
+ '0df6086551151f58b8afe6c195782c6a',
60
+ 'hex',
61
+ );
62
+ const actual = ccp.ccpDecrypt(k, n, ad, ciphertext);
63
+ expect(actual.toString('hex')).to.equal('');
64
+ });
65
+
66
+ it('noise responder act3', () => {
67
+ const k = Buffer.from("908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc", "hex"); // prettier-ignore
68
+ const n = Buffer.from('000000000100000000000000', 'hex');
69
+ const ad = Buffer.from("90578e247e98674e661013da3c5c1ca6a8c8f48c90b485c0dfa1494e23d56d72", "hex"); // prettier-ignore
70
+ const ciphertext = Buffer.from("b9e3a702e93e3a9948c2ed6e5fd7590a6e1c3a0344cfc9d5b57357049aa22355361aa02e55a8fc28fef5bd6d71ad0c3822", "hex"); // prettier-ignore
71
+ const actual = ccp.ccpDecrypt(k, n, ad, ciphertext);
72
+ expect(actual.toString('hex')).to.equal(
73
+ '034f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa',
74
+ );
75
+ });
76
+ });
77
+ });
78
+ });
@@ -0,0 +1,131 @@
1
+ import { expect } from 'chai';
2
+ import { hkdf } from '../lib/hkdf';
3
+
4
+ describe('hkdf', () => {
5
+ describe('general', () => {
6
+ it('should not overflow on length', () => {
7
+ expect(() => hkdf(Buffer.alloc(32, 1), 8192)).to.throw();
8
+ });
9
+ });
10
+
11
+ describe('rfc5869 vectors', () => {
12
+ const vectors = [
13
+ {
14
+ title: "1. Basic test case with SHA-256",
15
+ hash: "sha256",
16
+ ikm: "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b",
17
+ salt: "000102030405060708090a0b0c",
18
+ len: 42,
19
+ info: "f0f1f2f3f4f5f6f7f8f9",
20
+ output: "3cb25f25faacd57a90434f64d0362f2a2d2d0a90cf1a5a4c5db02d56ecc4c5bf34007208d5b887185865",
21
+ },
22
+ {
23
+ title: "2. Test with SHA-256 and longer input/outputs",
24
+ hash: "sha256",
25
+ ikm: "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f",
26
+ salt: "606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeaf",
27
+ len: 82,
28
+ info: "b0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff",
29
+ output: "b11e398dc80327a1c8e7f78c596a49344f012eda2d4efad8a050cc4c19afa97c59045a99cac7827271cb41c65e590e09da3275600c2f09b8367793a9aca3db71cc30c58179ec3e87c14c01d5c1f3434f1d87",
30
+ },
31
+ {
32
+ title: "3. Test with SHA-256 and zero-length salt/info",
33
+ hash: "sha256",
34
+ ikm: "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b",
35
+ salt: "",
36
+ len: 42,
37
+ info: "",
38
+ output: "8da4e775a563c18f715f802a063c5a31b8a11f5c5ee1879ec3454e5f3c738d2d9d201395faa4b61a96c8",
39
+ },
40
+ {
41
+ title: "4. Basic test case with SHA-1",
42
+ hash: "sha1",
43
+ ikm: "0b0b0b0b0b0b0b0b0b0b0b",
44
+ salt: "000102030405060708090a0b0c",
45
+ len: 42,
46
+ info: "f0f1f2f3f4f5f6f7f8f9",
47
+ output: "085a01ea1b10f36933068b56efa5ad81a4f14b822f5b091568a9cdd4f155fda2c22e422478d305f3f896",
48
+ },
49
+ {
50
+ title: "5. Test with SHA-1 and longer inputs/outputs",
51
+ hash: "sha1",
52
+ ikm: "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f",
53
+ salt: "606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeaf",
54
+ len: 82,
55
+ info: "b0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff",
56
+ output: "0bd770a74d1160f7c9f12cd5912a06ebff6adcae899d92191fe4305673ba2ffe8fa3f1a4e5ad79f3f334b3b202b2173c486ea37ce3d397ed034c7f9dfeb15c5e927336d0441f4c4300e2cff0d0900b52d3b4",
57
+ },
58
+ ]; // prettier-ignore
59
+
60
+ for (const vector of vectors) {
61
+ it(vector.title, () => {
62
+ const actual = hkdf(
63
+ Buffer.from(vector.ikm, 'hex'),
64
+ vector.len,
65
+ Buffer.from(vector.salt, 'hex'),
66
+ Buffer.from(vector.info, 'hex'),
67
+ vector.hash,
68
+ );
69
+ expect(actual.toString('hex')).to.equal(vector.output);
70
+ });
71
+ }
72
+ });
73
+
74
+ describe('BOLT #8 vectors', () => {
75
+ const vectors = [
76
+ {
77
+ title: "Noise initiator act 1",
78
+ salt: "2640f52eebcd9e882958951c794250eedb28002c05d7dc2ea0f195406042caf1",
79
+ ikm: "1e2fb3c8fe8fb9f262f649f64d26ecf0f2c0a805a767cf02dc2d77a6ef1fdcc3",
80
+ len: 64,
81
+ output: "b61ec1191326fa240decc9564369dbb3ae2b34341d1e11ad64ed89f89180582fe68f69b7f096d7917245f5e5cf8ae1595febe4d4644333c99f9c4a1282031c9f",
82
+ },
83
+ {
84
+ title: "Noise initiator act 2",
85
+ salt: "b61ec1191326fa240decc9564369dbb3ae2b34341d1e11ad64ed89f89180582f",
86
+ ikm: "c06363d6cc549bcb7913dbb9ac1c33fc1158680c89e972000ecd06b36c472e47",
87
+ len: 64,
88
+ output: "e89d31033a1b6bf68c07d22e08ea4d7884646c4b60a9528598ccb4ee2c8f56ba908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc",
89
+ },
90
+ {
91
+ title: "Noise initiator act 3",
92
+ salt: "e89d31033a1b6bf68c07d22e08ea4d7884646c4b60a9528598ccb4ee2c8f56ba",
93
+ ikm: "b36b6d195982c5be874d6d542dc268234379e1ae4ff1709402135b7de5cf0766",
94
+ len: 64,
95
+ output: "919219dbb2920afa8db80f9a51787a840bcf111ed8d588caf9ab4be716e42b01981a46c820fb7a241bc8184ba4bb1f01bcdfafb00dde80098cb8c38db9141520",
96
+ },
97
+ {
98
+ title: "Noise responder act 1",
99
+ salt: "2640f52eebcd9e882958951c794250eedb28002c05d7dc2ea0f195406042caf1",
100
+ ikm: "1e2fb3c8fe8fb9f262f649f64d26ecf0f2c0a805a767cf02dc2d77a6ef1fdcc3",
101
+ len: 64,
102
+ output: "b61ec1191326fa240decc9564369dbb3ae2b34341d1e11ad64ed89f89180582fe68f69b7f096d7917245f5e5cf8ae1595febe4d4644333c99f9c4a1282031c9f",
103
+ },
104
+ {
105
+ title: "Noise responder act 2",
106
+ salt: "b61ec1191326fa240decc9564369dbb3ae2b34341d1e11ad64ed89f89180582f",
107
+ ikm: "c06363d6cc549bcb7913dbb9ac1c33fc1158680c89e972000ecd06b36c472e47",
108
+ len: 64,
109
+ output: "e89d31033a1b6bf68c07d22e08ea4d7884646c4b60a9528598ccb4ee2c8f56ba908b166535c01a935cf1e130a5fe895ab4e6f3ef8855d87e9b7581c4ab663ddc",
110
+ },
111
+ {
112
+ title: "Noise responder act 3",
113
+ salt: "e89d31033a1b6bf68c07d22e08ea4d7884646c4b60a9528598ccb4ee2c8f56ba",
114
+ ikm: "b36b6d195982c5be874d6d542dc268234379e1ae4ff1709402135b7de5cf0766",
115
+ len: 64,
116
+ output: "919219dbb2920afa8db80f9a51787a840bcf111ed8d588caf9ab4be716e42b01981a46c820fb7a241bc8184ba4bb1f01bcdfafb00dde80098cb8c38db9141520",
117
+ },
118
+ ]; // prettier-ignore
119
+
120
+ for (const vector of vectors) {
121
+ it(vector.title, () => {
122
+ const actual = hkdf(
123
+ Buffer.from(vector.ikm, 'hex'),
124
+ vector.len,
125
+ Buffer.from(vector.salt, 'hex'),
126
+ );
127
+ expect(actual.toString('hex')).to.equal(vector.output);
128
+ });
129
+ }
130
+ });
131
+ });
@@ -0,0 +1,125 @@
1
+ // tslint:disable: no-unused-expression
2
+ import { expect } from 'chai';
3
+ import * as key from '../lib/key';
4
+
5
+ describe('.validPrivateKey()', () => {
6
+ it('should return false when not a buffer', () => {
7
+ expect(key.validPrivateKey(1 as any)).to.be.false;
8
+ });
9
+
10
+ it('should return false when Buffer not 32-bytes', () => {
11
+ expect(key.validPrivateKey(Buffer.alloc(8))).to.be.false;
12
+ });
13
+
14
+ it('should return false when <= 0x1', () => {
15
+ const result = key.validPrivateKey(Buffer.alloc(32));
16
+ expect(result).to.be.false;
17
+ });
18
+
19
+ it('should return false when >= fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364140', () => {
20
+ const result = key.validPrivateKey(
21
+ Buffer.from(
22
+ 'ffffffffffffffffffffffffffffffffbaaedce6af48a03bbfd25e8cd0364141',
23
+ 'hex',
24
+ ),
25
+ );
26
+ expect(result).to.be.false;
27
+ });
28
+
29
+ it('should return true when 1', () => {
30
+ const result = key.validPrivateKey(
31
+ Buffer.from(
32
+ '0000000000000000000000000000000000000000000000000000000000000001',
33
+ 'hex',
34
+ ),
35
+ );
36
+ expect(result).to.be.true;
37
+ });
38
+
39
+ it('should return true when fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364140', () => {
40
+ const result = key.validPrivateKey(
41
+ Buffer.from(
42
+ 'fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364140',
43
+ 'hex',
44
+ ),
45
+ );
46
+ expect(result).to.be.true;
47
+ });
48
+ });
49
+
50
+ describe('.validPublicKey', () => {
51
+ it('returns false with invalid compressed length', () => {
52
+ const privkey = Buffer.alloc(32, 1);
53
+ const pubkey = key.getPublicKey(privkey, true);
54
+ expect(key.validPublicKey(pubkey.slice(0, 30))).to.equal(false);
55
+ });
56
+
57
+ it('returns false with invalid uncompressed length', () => {
58
+ const privkey = Buffer.alloc(32, 1);
59
+ const pubkey = key.getPublicKey(privkey, false);
60
+ expect(key.validPublicKey(pubkey.slice(0, 60))).to.equal(false);
61
+ });
62
+
63
+ it('returns false with invalid compressed prefix', () => {
64
+ const privkey = Buffer.alloc(32, 1);
65
+ const pubkey = key.getPublicKey(privkey, true);
66
+ pubkey[0] = 1;
67
+ expect(key.validPublicKey(pubkey)).to.equal(false);
68
+ });
69
+
70
+ it('returns false with invalid uncompressed prefix', () => {
71
+ const privkey = Buffer.alloc(32, 1);
72
+ const pubkey = key.getPublicKey(privkey, false);
73
+ pubkey[0] = 1;
74
+ expect(key.validPublicKey(pubkey)).to.equal(false);
75
+ });
76
+
77
+ it('returns true with valid compressed pubkey', () => {
78
+ const privkey = Buffer.alloc(32, 1);
79
+ const pubkey = key.getPublicKey(privkey, true);
80
+ expect(key.validPublicKey(pubkey)).to.equal(true);
81
+ });
82
+
83
+ it('returns true with valid uncompressed pubkey', () => {
84
+ const privkey = Buffer.alloc(32, 1);
85
+ const pubkey = key.getPublicKey(privkey, false);
86
+ expect(key.validPublicKey(pubkey)).to.equal(true);
87
+ });
88
+ });
89
+
90
+ describe('.createPrivateKey()', () => {
91
+ it('should return valid key', () => {
92
+ const actual = key.createPrivateKey();
93
+ expect(actual.length).to.equal(32);
94
+ expect(BigInt('0x' + actual.toString('hex')) > BigInt(0)).to.be.true;
95
+ expect(
96
+ BigInt('0x' + actual.toString('hex')) <
97
+ BigInt(
98
+ '0x' +
99
+ 'ffffffffffffffffffffffffffffffffbaaedce6af48a03bbfd25e8cd0364141',
100
+ ),
101
+ ).to.be.true;
102
+ });
103
+ });
104
+
105
+ describe('.getPublicKey()', () => {
106
+ it('should return uncompressed value', () => {
107
+ const privkey = Buffer.from(
108
+ '1111111111111111111111111111111111111111111111111111111111111111',
109
+ 'hex',
110
+ );
111
+ expect(key.getPublicKey(privkey, false).toString('hex')).to.equal(
112
+ '044f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa385b6b1b8ead809ca67454d9683fcf2ba03456d6fe2c4abe2b07f0fbdbb2f1c1',
113
+ );
114
+ });
115
+
116
+ it('should return compressed value', () => {
117
+ const privkey = Buffer.from(
118
+ '1111111111111111111111111111111111111111111111111111111111111111',
119
+ 'hex',
120
+ );
121
+ expect(key.getPublicKey(privkey, true).toString('hex')).to.equal(
122
+ '034f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa',
123
+ );
124
+ });
125
+ });