Skip to content

Commit

Permalink
Restore from ELECTRUM_MASTER_PRIVATE_KEY or ELECTRUM_MASTER_PUBLIC_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
ramontayag committed Jan 20, 2018
1 parent 88acd6a commit bbeeec1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ curl --data-binary '{"id":"1","method":"listaddresses"}' http://electrum:electru

Always link electrum daemon to containers or bind to localhost directly and not expose 7000 port for security reasons.

### 12 Factor
You may also restore the wallet from a Master Private Key or Master Public Key by setting `ELECTRUM_MASTER_PRIVATE_KEY` or `ELECTRUM_MASTER_PUBLIC_KEY` env vars. This is useful in a setup like Kubernetes.

## API

* [Electrum protocol specs](http://docs.electrum.org/en/latest/protocol.html)
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ services:
environment:
ELECTRUM_USER: electrum
ELECTRUM_PASSWORD: electrumz
ELECTRUM_MASTER_PRIVATE_KEY: xprv9s21ZrQH143K2qhNXjGPHr6Rdz3h2N5dnt4sFspFnDqP8rPCXi5YPHq6hqQ2jSJb6XM4qwbfwMqxP5qsFRFRBKMPnE3WiAhFsBkVcMv2rYX
ELECTRUM_MASTER_PUBLIC_KEY: xpub661MyMwAqRbcFKmqdkoPez3AC1tBRpoVA6zU4GDsLZNN1eiM5FPnw69aZ6NbpahyLMsKeyjf2eqS64xSqYfsj9YWFWUpKtzbXmkLiAsRyCF
13 changes: 13 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ electrum setconfig rpcport 7000
# run application
electrum daemon start

# restore from keys if available
if [ -n "$ELECTRUM_MASTER_PRIVATE_KEY" ];
then
echo "Restoring and loading wallet from Master Private Key"
echo | electrum restore $ELECTRUM_MASTER_PRIVATE_KEY
electrum daemon load_wallet
elif [ -n "$ELECTRUM_MASTER_PUBLIC_KEY" ];
then
echo "Restoring and loading wallet from Master Public Key"
electrum restore $ELECTRUM_MASTER_PUBLIC_KEY
electrum daemon load_wallet
fi

# wait forever
while true; do
tail -f /dev/null & wait ${!}
Expand Down

0 comments on commit bbeeec1

Please sign in to comment.