From 2b2036fb983512e237fd798e908a4363e69c5a38 Mon Sep 17 00:00:00 2001 From: exo-mv Date: Fri, 15 May 2026 12:48:34 -0400 Subject: [PATCH] chore: use _32n const in base58.js Co-Authored-By: Claude Opus 4.7 (1M context) --- base58.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base58.js b/base58.js index 669a428..d487d9d 100644 --- a/base58.js +++ b/base58.js @@ -162,7 +162,7 @@ function fromBase58core(str, alphabet, codes, format = 'uint8') { while (x) { let y = Number(x & _0xffffffffn) - x >>= 32n + x >>= _32n res[--at] = y & 0xff y >>>= 8 if (!x && !y) break