A wallet service that can be used to generate
-
bitcoin (HD) segwit addresses from a specified derivation path. Requires
path
(e.g m/84'/0'/0'/0)seed
(mnemonic phrase)
-
bitcoin multisig m-of-n (P2SH) segwit addresses. Requires
n
(total number of eligible signers)m
(number of required signatures necessary to perform a multisig transaction)publicKeys
(an array of public keys of all eligible signers) (e.g a multisig that has 4 eligible signers and requires 3 signatures will haven
= 4 andm
= 3)
For a detailed information on how to use the application, check the documentation.
- Clone from github to your local machine
- To work on your local copy
- use command
npm install
to install dependencies and also build the application. - use command
cp .env.example .env
and adjust the variables to your preference. - use command
npm run dev
to start development server.
- use command
To run the production build, use:
$ npm start
Tests are run built with jest (ts-jest).
$ npm test