This project is a work in progress (WIP) and should not be used by anyone, under any circumstances for any reason whatsoever until the WIP status has been resolved
"SLIP39 Shamir Secret Sharing built for BIP39 Mnemonics",
ONLY USE THIS TOOL OFFLINE
This tool aims to be an easy to use tool for securing your crypto (seeds / recovery phrases / mnemonics) via Shamir Secret Sharing, implementing slip39 from Trezor creators, Satoshi Labs.
The tool supports:
- Easy recovery phrase generation
- Easy share generation and restoration
- Group based share generation with variable thresholds from SLIP39
- Multi-language recovery phrase generation
- BIP32 info
- BIP39 seed shortening
- Cryptosteel Capsules
seedhodler online- There is currently no online site for the beta version. Please use docker instead.
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static site
$ yarn generate
Prerequisites:
- docker
Using docker:
- build docker image:
$ docker build -t seedhodler:local-build .
- run container:
$ docker run -it -p 4000:4000 seedhodler:local-build
Using docker-compose:
- build image:
$ docker-compose build seedhodler
- run container:
$ docker-compose up
You can run the seedhodler tool in docker in your offline/cold storage machine that has docker installed.
- online-machine:
- build the image:
$ docker build -t seedhodler:local-build .
- save the image:
$ docker save seedhodler:local-build
- copy the zip file to another machine e.g. your offline/cold storage machine
- build the image:
- offline-machine (with docker):
- copy the
seedhodler.zip
file - cd into the same directory
- load image:
$ docker load -i seedhodler.zip
- run container:
$ docker run -it -p 4000:4000 seedhodler:local-build
- copy the
Primary dependencies (see package.json for entire list)
- bip32jp: bip32JP
- shamir39: iancoleman.io
- bip39: iancoleman.io
- https://bip39tool.ioncore.xyz/: iancoleman.io
This project is heavily inspired by the many fantastic open source initiatives from the crypto community. Some honorable mentions include the work done by Satoshi labs, Bitcoinjs and Ian Coleman.