@web3pack/base58-check
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

CodeQL Node.js Package

Base58-check encoding library

A modern base58-check encoding library implemented in TypeScript with minimal dependencies for use in browser and Node.js.

Example

import { encode, decode } from '@web3pack/base58-check';

const message = Buffer.from('hello world');

const encodedText = encode(message);
// => '3vQB7B6MrGQZaxCuFg4oh'

const decodedText = decode(encodedText).toString();
// => 'hello world'

Package Sidebar

Install

npm i @web3pack/base58-check

Weekly Downloads

414

Version

1.0.3

License

MIT

Unpacked Size

4.57 kB

Total Files

5

Last publish

Collaborators

  • webceyhan