You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Luke Childs 8d34270909 Add build deps for python-cryptography 5 years ago
.github Add GitHub Action to build and push to Docker Hub 5 years ago
.gitignore .gitignore *.swp 5 years ago
Dockerfile Add build deps for python-cryptography 5 years ago
LICENSE Initial commit 5 years ago
README.md Add readme 5 years ago
bip39toxprv Support BIP39 seeds 5 years ago
entrypoint Remove trailing ]] 5 years ago

README.md

ephemeral-electrum

Actions Status Docker Pulls Docker Image Size GitHub Donate Bitcoin Donate Lightning Donate

A quick throwaway text based Electrum instance.

Handy for quickly checking the state of a given hierarchical deterministic wallet. Supports importing Electrum and BIP39 mnemonic seed phrases as well as extend public and private keys.

It's like a muggle friendly Magical Bitcoin Wallet.

Usage

seed="much bottom such hurt hunt welcome cushion erosion pulse admit name deer"
docker run -it lukechilds/ephemeral-electrum "$seed"

You can also specify a single Electrum server to connect to:

docker run -it lukechilds/ephemeral-electrum "$seed" bitcoin.lukechilds.co:50002:s

You can pass in a seed phrase, xpub or xprv. The following all open the same wallet:

seed="much bottom such hurt hunt welcome cushion erosion pulse admit name deer"
docker run -it lukechilds/ephemeral-electrum "$seed"

xprv="zprvAcMRAFo3MYezabw3DuoGtZW4gFsgejCzVBT6mM7dd5TrhN5QSfrEjYcn4ZurjAoBT2ocLY7bH1bLpYKdrg1EbF3FtZjBCC6WPGVWqi7yJyc"
docker run -it lukechilds/ephemeral-electrum "$xprv"

xpub="zpub6qLmZmKwBvDHo61WKwLHFhSoEHiB4BvqrQNhZjXFBQzqaAQYzDAVHLwFusoTFSwai8ZpR3uKEaYMo34nWiJhJ1v4sbusJRHMSLd3hMZUmcp"
docker run -it lukechilds/ephemeral-electrum "$xpub"

Build

Build this image yourself by checking out this repo, cd ing into it and running:

docker build -t lukechilds/ephemeral-electrum .

License

MIT © Luke Childs