@bitgo-beta/utxo-bin 2.8.3-beta.9 → 2.8.3-beta.900

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 (142) hide show
  1. package/README.md +107 -86
  2. package/dist/bin/index.js +11 -2
  3. package/dist/src/AddressParser.d.ts +1 -1
  4. package/dist/src/AddressParser.d.ts.map +1 -1
  5. package/dist/src/AddressParser.js +19 -7
  6. package/dist/src/InputParser.d.ts +43 -0
  7. package/dist/src/InputParser.d.ts.map +1 -0
  8. package/dist/src/InputParser.js +249 -0
  9. package/dist/src/OutputParser.d.ts +24 -0
  10. package/dist/src/OutputParser.d.ts.map +1 -0
  11. package/dist/src/OutputParser.js +65 -0
  12. package/dist/src/Parser.d.ts +9 -3
  13. package/dist/src/Parser.d.ts.map +1 -1
  14. package/dist/src/Parser.js +35 -1
  15. package/dist/src/ParserTx.d.ts +27 -0
  16. package/dist/src/ParserTx.d.ts.map +1 -0
  17. package/dist/src/ParserTx.js +93 -0
  18. package/dist/src/ScriptParser.d.ts +23 -0
  19. package/dist/src/ScriptParser.d.ts.map +1 -0
  20. package/dist/src/ScriptParser.js +96 -0
  21. package/dist/src/TxParser.d.ts +12 -8
  22. package/dist/src/TxParser.d.ts.map +1 -1
  23. package/dist/src/TxParser.js +26 -28
  24. package/dist/src/args/format.d.ts +8 -0
  25. package/dist/src/args/format.d.ts.map +1 -0
  26. package/dist/src/args/format.js +15 -0
  27. package/dist/src/args/index.d.ts +5 -0
  28. package/dist/src/args/index.d.ts.map +1 -0
  29. package/dist/src/args/index.js +21 -0
  30. package/dist/src/args/parseNetwork.d.ts +25 -0
  31. package/dist/src/args/parseNetwork.d.ts.map +1 -0
  32. package/dist/src/args/parseNetwork.js +75 -0
  33. package/dist/src/args/parseString.d.ts +40 -0
  34. package/dist/src/args/parseString.d.ts.map +1 -0
  35. package/dist/src/args/parseString.js +120 -0
  36. package/dist/src/args/walletKeys.d.ts +38 -0
  37. package/dist/src/args/walletKeys.d.ts.map +1 -0
  38. package/dist/src/args/walletKeys.js +28 -0
  39. package/dist/src/bip32.d.ts +5 -0
  40. package/dist/src/bip32.d.ts.map +1 -0
  41. package/dist/src/bip32.js +23 -0
  42. package/dist/src/commands/cmdAddress/cmdGenerate.d.ts +21 -0
  43. package/dist/src/commands/cmdAddress/cmdGenerate.d.ts.map +1 -0
  44. package/dist/src/commands/cmdAddress/cmdGenerate.js +89 -0
  45. package/dist/src/commands/cmdAddress/cmdParse.d.ts +20 -0
  46. package/dist/src/commands/cmdAddress/cmdParse.d.ts.map +1 -0
  47. package/dist/src/commands/cmdAddress/cmdParse.js +28 -0
  48. package/dist/src/commands/cmdAddress/index.d.ts +3 -0
  49. package/dist/src/commands/cmdAddress/index.d.ts.map +1 -0
  50. package/dist/src/commands/cmdAddress/index.js +16 -0
  51. package/dist/src/commands/cmdBip32.d.ts +16 -0
  52. package/dist/src/commands/cmdBip32.d.ts.map +1 -0
  53. package/dist/src/commands/cmdBip32.js +45 -0
  54. package/dist/src/commands/cmdParseScript.d.ts +18 -0
  55. package/dist/src/commands/cmdParseScript.d.ts.map +1 -0
  56. package/dist/src/commands/cmdParseScript.js +27 -0
  57. package/dist/src/commands/cmdParseTx.d.ts +30 -0
  58. package/dist/src/commands/cmdParseTx.d.ts.map +1 -0
  59. package/dist/src/commands/cmdParseTx.js +120 -0
  60. package/dist/src/commands/cmdPsbt/cmdAddDescriptorInput.d.ts +13 -0
  61. package/dist/src/commands/cmdPsbt/cmdAddDescriptorInput.d.ts.map +1 -0
  62. package/dist/src/commands/cmdPsbt/cmdAddDescriptorInput.js +67 -0
  63. package/dist/src/commands/cmdPsbt/cmdAddOutput.d.ts +11 -0
  64. package/dist/src/commands/cmdPsbt/cmdAddOutput.d.ts.map +1 -0
  65. package/dist/src/commands/cmdPsbt/cmdAddOutput.js +89 -0
  66. package/dist/src/commands/cmdPsbt/cmdCreate.d.ts +9 -0
  67. package/dist/src/commands/cmdPsbt/cmdCreate.d.ts.map +1 -0
  68. package/dist/src/commands/cmdPsbt/cmdCreate.js +23 -0
  69. package/dist/src/commands/cmdPsbt/cmdFinalize.d.ts +11 -0
  70. package/dist/src/commands/cmdPsbt/cmdFinalize.d.ts.map +1 -0
  71. package/dist/src/commands/cmdPsbt/cmdFinalize.js +43 -0
  72. package/dist/src/commands/cmdPsbt/cmdSign.d.ts +7 -0
  73. package/dist/src/commands/cmdPsbt/cmdSign.d.ts.map +1 -0
  74. package/dist/src/commands/cmdPsbt/cmdSign.js +24 -0
  75. package/dist/src/commands/cmdPsbt/index.d.ts +8 -0
  76. package/dist/src/commands/cmdPsbt/index.d.ts.map +1 -0
  77. package/dist/src/commands/cmdPsbt/index.js +27 -0
  78. package/dist/src/commands/cmdPsbt/withPsbt.d.ts +63 -0
  79. package/dist/src/commands/cmdPsbt/withPsbt.d.ts.map +1 -0
  80. package/dist/src/commands/cmdPsbt/withPsbt.js +66 -0
  81. package/dist/src/commands/cmdPsbt/wrap.d.ts +5 -0
  82. package/dist/src/commands/cmdPsbt/wrap.d.ts.map +1 -0
  83. package/dist/src/commands/cmdPsbt/wrap.js +27 -0
  84. package/dist/src/commands/formatString.d.ts +8 -0
  85. package/dist/src/commands/formatString.d.ts.map +1 -0
  86. package/dist/src/commands/formatString.js +14 -0
  87. package/dist/src/commands/index.d.ts +6 -0
  88. package/dist/src/commands/index.d.ts.map +1 -0
  89. package/dist/src/commands/index.js +22 -0
  90. package/dist/src/ecdsa.d.ts +1 -2
  91. package/dist/src/ecdsa.d.ts.map +1 -1
  92. package/dist/src/ecdsa.js +9 -9
  93. package/dist/src/fetch.d.ts +12 -4
  94. package/dist/src/fetch.d.ts.map +1 -1
  95. package/dist/src/fetch.js +55 -11
  96. package/dist/src/format.d.ts +1 -1
  97. package/dist/src/format.d.ts.map +1 -1
  98. package/dist/src/format.js +18 -10
  99. package/dist/src/generateAddress.d.ts +47 -0
  100. package/dist/src/generateAddress.d.ts.map +1 -0
  101. package/dist/src/generateAddress.js +141 -0
  102. package/dist/src/hollowSegwitSpend.d.ts +1 -1
  103. package/dist/src/hollowSegwitSpend.d.ts.map +1 -1
  104. package/dist/src/hollowSegwitSpend.js +3 -4
  105. package/dist/src/parseUnknown.d.ts +5 -0
  106. package/dist/src/parseUnknown.d.ts.map +1 -0
  107. package/dist/src/parseUnknown.js +49 -0
  108. package/dist/test/args/stringToBuffer.d.ts +2 -0
  109. package/dist/test/args/stringToBuffer.d.ts.map +1 -0
  110. package/dist/test/args/stringToBuffer.js +16 -0
  111. package/dist/test/bip32.d.ts +2 -0
  112. package/dist/test/bip32.d.ts.map +1 -0
  113. package/dist/test/bip32.js +22 -0
  114. package/dist/test/bip32.util.d.ts +6 -0
  115. package/dist/test/bip32.util.d.ts.map +1 -0
  116. package/dist/test/bip32.util.js +13 -0
  117. package/dist/test/cmdPsbt.d.ts +2 -0
  118. package/dist/test/cmdPsbt.d.ts.map +1 -0
  119. package/dist/test/cmdPsbt.js +102 -0
  120. package/dist/test/fixtures.d.ts +24 -0
  121. package/dist/test/fixtures.d.ts.map +1 -0
  122. package/dist/test/fixtures.js +94 -0
  123. package/dist/test/generateAddress.d.ts +2 -0
  124. package/dist/test/generateAddress.d.ts.map +1 -0
  125. package/dist/test/generateAddress.js +46 -0
  126. package/dist/test/parseAddress.d.ts +6 -0
  127. package/dist/test/parseAddress.d.ts.map +1 -0
  128. package/dist/test/parseAddress.js +83 -0
  129. package/dist/test/parseScript.d.ts +2 -0
  130. package/dist/test/parseScript.d.ts.map +1 -0
  131. package/dist/test/parseScript.js +41 -0
  132. package/dist/test/parseTransaction.d.ts +2 -0
  133. package/dist/test/parseTransaction.d.ts.map +1 -0
  134. package/dist/test/parseTransaction.js +67 -0
  135. package/dist/tsconfig.tsbuildinfo +1 -4635
  136. package/package.json +11 -8
  137. package/dist/src/InputOutputParser.d.ts +0 -35
  138. package/dist/src/InputOutputParser.d.ts.map +0 -1
  139. package/dist/src/InputOutputParser.js +0 -196
  140. package/dist/src/commands.d.ts +0 -43
  141. package/dist/src/commands.d.ts.map +0 -1
  142. package/dist/src/commands.js +0 -152

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.