@t2000/cli 9.7.0 → 9.7.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.
@@ -11968,8 +11968,9 @@ function hexToBytes22(hex) {
11968
11968
  return out;
11969
11969
  }
11970
11970
  function bytesToHex22(bytes) {
11971
+ const arr = typeof bytes === "string" ? Array.from(atob(bytes), (c) => c.charCodeAt(0)) : bytes;
11971
11972
  let s = "0x";
11972
- for (const b of bytes) s += b.toString(16).padStart(2, "0");
11973
+ for (const b of arr) s += b.toString(16).padStart(2, "0");
11973
11974
  return s;
11974
11975
  }
11975
11976
  function preflightCreateJob(terms) {
@@ -12737,4 +12738,4 @@ export {
12737
12738
  @scure/bip39/index.js:
12738
12739
  (*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
12739
12740
  */
12740
- //# sourceMappingURL=chunk-HCEFAB2I.js.map
12741
+ //# sourceMappingURL=chunk-SXB4BX4Y.js.map