npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bs58caddr

v1.1.0

Published

A library to verify base58-check addresses for errors

Downloads

3

Readme

bs58c-address

A library to verify base58-check addresses for errors.

Features

  • Verify an address for typos by calculating the checksum
  • Check that the correct network / address type byte is set.
  • Expose high level API to simply check against all coins maintained by coininfo
  • Exposes low level API to check against any (set of) network byte(s) (or none)
  • Support for both websites and node.js

Installation and usage (web)

Copy the file bs58caddr.bundle.min.js to your website project, and:

<html>
  <head>
    <script src="bs58caddr.bundle.min.js"></script>
  </head>
  <body>
    <div id="output"></div>
    <button id="clickme">clickme</button>
    <script>
      const btn = document.querySelector('#clickme')
      const out = document.querySelector('#output')

      btn.addEventListener('click', (e) => {
        e.preventDefault()
        const result = bs58caddr.validateCoinAddress('BTC', '1EGqT3R8KW6PAyMQ85g6kEZrWcVKwyQM58')
        const text = '1EGqT3R8KW6PAyMQ85g6kEZrWcVKwyQM58 is a ' + (result ? 'valid' : 'invalid') + ' bitcoin address<br>'
        out.innerHTML = text
      })
    </script>
  </body>
</html>

Installation and usage (node.js)

Install the libarary with:

npm i --save bs58caddr

High-level:

const { validateCoinAddress } = require('bs58caddr')

const result = validateCoinAddress('BTC', '1EGqT3R8KW6PAyMQ85g6kEZrWcVKwyQM58')
console.log('This is a ' + (result ? 'valid' : 'invalid') + ' bitcoin address')

Low-level:

const { Base58AddressValidator } = require('bs58caddr')

try {
  (new Base58AddressValidator())
    .networkBytes([0x00, 0x05]).address('1EGqT3R8KW6PAyMQ85g6kEZrWcVKwyQM58')
    .validate()
  console.log('This is a valid Bitcoin address')
} catch (err) {
  console.log('This address is not valid: ' err.message)
}

Could you please add my coin?

This library does not maintain any coin parametrization. You can either use the low-level API, or file a pull request against the coininfo library, at https://github.com/cryptocoinjs/coininfo.

Acknowledgements

This library is not rocket science. Most of the actual work has been done by Daniel Cousins, Jonathan Underwood and other contributors in:

  • https://github.com/bitcoinjs/bs58check
  • https://github.com/cryptocoinjs/coininfo
  • https://github.com/cryptocoinjs/bs58

Please show them your love.

License

MIT - see LICENSE