@bcndev/bytecoin

Utility package for Bytecoin

Usage no npm install needed!

<script type="module">
  import bcndevBytecoin from 'https://cdn.skypack.dev/@bcndev/bytecoin';
</script>

README

bytecoin-js npm version

Development

$ npm install
$ npm run build
$ npm run test

Usage

With npm/webpack:

$ npm install @bcndev/bytecoin
import {checkAddressFormat} from "@bcndev/bytecoin";

With plain HTML/JS (via bytecoin.js):

<script src="dist/bytecoin.js"/>
<script>
  alert(bcn.checkAddressFormat("21UQFLdH7WvPZEd8HNwXncHtDwFvv4GRqaN3R4cWyuw2TRZxRtRPb7FFTxfcwwQsqYSD2EqhgVCLsGdRdejAoHFHAHJrxxo"));
</script>