@quentinadam/base58check
v0.1.3
Published
A simple library to encode and decode base58check strings
Downloads
66
Readme
@quentinadam/base58check
A simple library to encode and decode base58check strings.
Optionnaly supports specifying the alphabet to use.
Usage
import * as base58check from '@quentinadam/base58check';
base58check.encode(new Uint8Array([72, 101, 108, 108, 111])); // returns 'vSxRbq6XzDhP'
base58check.decode('vSxRbq6XzDhP'); // returns Uint8Array([72, 101, 108, 108, 111])