@hazae41/base58
v2.0.0
Published
Base58 for the web
Downloads
451
Readme
Base58
Base58 for the web
npm i @hazae41/base58Features
Current features
- 100% TypeScript and ESM
- No external dependency
Usage
import { base58 } from "@hazae41/base58"
const text = base58.encode(Uint8Array.fromHex("deadbeef"))
console.log(text) // Hny6RY5JvhT
const data = base58.decode(text)