README
Proof of concept for bip44 address converter
Install
npm i -S slip44-converter
Usage
const { toBIP44, fromBIP44 } = require('slip44-converter');
toBIP44("BTC/0'/0/0") // => m/44'/0'/0'/0/0
fromBIP44("m/44'/0'/0'/0/0") // => BTC/0'/0/0
BIP44 address converter
<script type="module">
import slip44Converter from 'https://cdn.skypack.dev/slip44-converter';
</script>
npm i -S slip44-converter
const { toBIP44, fromBIP44 } = require('slip44-converter');
toBIP44("BTC/0'/0/0") // => m/44'/0'/0'/0/0
fromBIP44("m/44'/0'/0'/0/0") // => BTC/0'/0/0