Base58 for the web
npm i @hazae41/base58- 100% TypeScript and ESM
- No external dependency
import { base58 } from "@hazae41/base58"
const text = base58.encode(Uint8Array.fromHex("deadbeef"))
console.log(text) // Hny6RY5JvhT
const data = base58.decode(text)