Skip to content

Commit ccac24a

Browse files
committedJan 3, 2024
Fix Base58 padding for string representation of binary data (#4527).
1 parent f6d155c commit ccac24a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎src.ts/utils/base58.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,21 @@ const BN_58 = BigInt(58);
4242
* Encode %%value%% as a Base58-encoded string.
4343
*/
4444
export function encodeBase58(_value: BytesLike): string {
45-
let value = toBigInt(getBytes(_value));
45+
const bytes = getBytes(_value);
46+
47+
let value = toBigInt(bytes);
4648
let result = "";
4749
while (value) {
4850
result = Alphabet[Number(value % BN_58)] + result;
4951
value /= BN_58;
5052
}
53+
54+
// Account for leading padding zeros
55+
for (let i = 0; i < bytes.length; i++) {
56+
if (bytes[i]) { break; }
57+
result = Alphabet[0] + result;
58+
}
59+
5160
return result;
5261
}
5362

0 commit comments

Comments
 (0)