![Website](https://img.shields.io/website?down_color=red&down_message=offline&up_color=green&up_message=online&url=https%3A%2F%2Fseedhodler.io) ![](https://github.com/seedhodler/seedhodler/workflows/es-lint/badge.svg) ![](https://github.com/seedhodler/seedhodler/workflows/deploy/badge.svg) ![](https://github.com/seedhodler/seedhodler/workflows/docker-build/badge.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) ![](https://api.dependabot.com/badges/status?host=github&repo=seedhodler/seedhodler) [![GitHub issues](https://img.shields.io/github/issues/seedhodler/seedhodler.svg)](https://GitHub.com/seedhodler/seedhodler/issues/) [![GitHub issues-closed](https://img.shields.io/github/issues-closed/seedhodler/seedhodler.svg)](https://GitHub.com/seedhodler/seedhodler/issues?q=is%3Aissue+is%3Aclosed) ![GitHub pull requests](https://img.shields.io/github/issues-pr/seedhodler/seedhodler)
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:
# 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:
Using docker:
$ docker build -t seedhodler:local-build .
$ docker run -it -p 4000:4000 seedhodler:local-build
Using docker-compose:
$ docker-compose build seedhodler
$ docker-compose up
You can run the seedhodler tool in docker in your offline/cold storage machine that has docker installed.
$ docker build -t seedhodler:local-build .
$ docker save seedhodler:local-build
seedhodler.zip
file$ docker load -i seedhodler.zip
$ docker run -it -p 4000:4000 seedhodler:local-build
Primary dependencies (see package.json for entire list)
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.