Installation

The easiest way to install hdwallet.js is via npm:

npm install @hdwallet/core

Or with yarn:

yarn add @hdwallet/core

Browser (no build step)

The bundled library is available in the ./dist/ folder in this repository.

ESM

Modern module build, import directly in the browser or any ESM-aware bundler:

<script type="module">
  import { hdwallet } from './dist/hdwallet.min.js';
</script>

UMD

Standalone browser build, load via <script> and access as window.hdwallet:

<script src="./dist/hdwallet.udm.min.js" type="text/javascript"></script>

Development

We welcome pull requests. To get started, just fork this github repository, clone it locally, and run:

npm install