Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitcoinjs/bs58check
A straight forward implementation of base58check extending upon bs58.
https://github.com/bitcoinjs/bs58check
base58 base58-check base58check bitcoin bitcoinjs checksum sha256
Last synced: 13 days ago
JSON representation
A straight forward implementation of base58check extending upon bs58.
- Host: GitHub
- URL: https://github.com/bitcoinjs/bs58check
- Owner: bitcoinjs
- License: mit
- Created: 2014-07-02T03:43:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T04:42:43.000Z (5 months ago)
- Last Synced: 2024-10-27T21:27:37.528Z (16 days ago)
- Topics: base58, base58-check, base58check, bitcoin, bitcoinjs, checksum, sha256
- Language: JavaScript
- Size: 396 KB
- Stars: 92
- Watchers: 16
- Forks: 49
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bs58check
[![NPM Package](https://img.shields.io/npm/v/bs58check.svg?style=flat-square)](https://www.npmjs.org/package/bs58check)
[![Build Status](https://img.shields.io/travis/bitcoinjs/bs58check.svg?branch=master&style=flat-square)](https://travis-ci.org/bitcoinjs/bs58check)
[![Dependency status](https://img.shields.io/david/bitcoinjs/bs58check.svg?style=flat-square)](https://david-dm.org/bitcoinjs/bs58check#info=dependencies)[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)
A straight forward implementation of base58check extending upon bs58.
## Example
```javascript
import bs58check from 'bs58check'var decoded = bs58check.decode('5Kd3NBUAdUnhyzenEwVLy9pBKxSwXvE9FMPyR4UKZvpe6E3AgLr')
console.log(decoded)
// =>console.log(bs58check.encode(decoded))
// => 5Kd3NBUAdUnhyzenEwVLy9pBKxSwXvE9FMPyR4UKZvpe6E3AgLr
```## LICENSE [MIT](LICENSE)