No description
Find a file
2020-08-04 19:02:38 +02:00
.github/workflows fix githubAction 2020-06-17 17:19:41 +02:00
docker/python-bitcoind proper pinning of bitcoind-version in different branches 2020-06-14 14:16:35 +02:00
docs Add wallets overview page (#272) 2020-08-04 19:02:38 +02:00
pyinstaller add hwibridge binary (#271) 2020-08-04 14:01:43 +02:00
screenshots readme and screenshots 2019-09-24 18:21:17 +02:00
src/cryptoadvance Add wallets overview page (#272) 2020-08-04 19:02:38 +02:00
tests Minor fixes (#269) 2020-08-04 12:25:14 +02:00
udev Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
.flaskenv Auth (#75) 2020-02-27 01:28:50 +01:00
.gitignore Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
.gitlab-ci.yml fix image.tag in gitlab-ci.yml 2020-06-19 10:19:31 +02:00
.travis.yml fix ci-issue by upgrading python 2020-06-14 16:03:26 +02:00
CONTRIBUTING.md Releasing procedure with pip (#69) 2020-02-20 13:00:53 +01:00
DEVELOPMENT.md some documentation improvements 2020-06-01 12:11:02 +02:00
LICENSE Releasing procedure with pip (#69) 2020-02-20 13:00:53 +01:00
MANIFEST.in Releasing procedure with pip (#69) 2020-02-20 13:00:53 +01:00
pytest.ini proper pinning of bitcoind-version in different branches 2020-06-14 14:16:35 +02:00
README.md Merge branch 'master' into patch-1 2020-06-18 13:52:03 +02:00
requirements.txt remove dependency on bip32 (#259) 2020-07-25 09:53:56 +02:00
setup.py replace version-string 2020-06-14 16:38:57 +02:00

Table of Contents

Specter Desktop

"A specter is haunting the modern world, the specter of crypto anarchy."
The Crypto Anarchist Manifesto - Timothy C. May - Sun, 22 Nov 92 12:11:24 PST

Build Status

DISCLAIMER

This software might be ready to be used but at your own risk. The UI is currently only tested and optimised in Chrome, and looks a bit weird but usable in firefox. So in other browsers, it may even look more weird.

If something doesn't work open an issue here or ask a question in our Telegram group.

Why?

Bitcoin Core has a very powerful command line interface and a wonderful daemon. Using PSBT and HWI it can also work with hardware wallets, but at the moment it is too linux-way. The same applies to multisignature setups.

The goal of this project is to make a convenient and user-friendly GUI around Bitcoin Core with a focus on multisignature setup with airgapped hardware wallets.

At the moment Specter-Desktop is working with all major Hardware-Wallets including Specter-DIY hardware wallet which uses QR codes as a main communication channel and ColdCard that uses SD cards. Also it already supports "hot" hardware wallets using HWI tool and is tested to work with Trezor One. It should also work with Keepkey and Ledger (Firmware >= 1.6.0).

How to run

  • HWI support requires libusb
    • Ubuntu/Debian: sudo apt install libusb-1.0-0-dev libudev-dev
    • macOS: brew install libusb
    • windows: follow instructions in windows.md
  • Install Specter
pip3 install cryptoadvance.specter
  • Run Specter
python3 -m cryptoadvance.specter server 
# Or as a deamon:
python3 -m cryptoadvance.specter server --daemon
# Stop the daemon again:
python3 -m cryptoadvance.specter server --stop
  • Upgrade Specter
pip3 install cryptoadvance.specter --upgrade

After that, specter will be available at http://127.0.0.1:25441/.

You can also run it (as a daemon), using tor, provide ssl certificates to run over https. Https is especially important because browsers don't allow the website to access camera without secure connection, and we need camera access to scan QR codes.

An example how to run specter server in the background (--daemon) with ssl certificates (--key, --cert) over tor:

python3 -m cryptoadvance.specter server --tor=mytorpassword --cert=./cert.pem --key=./key.pem --daemon

If your Bitcoin Core is using a default data folder the app should detect it automatically. If not, consider setting rpcuser and rpcpassword in the bitcoin.conf file or set in directly in the specter-app settings.

If you use Specter from a remote machine and want to use it with hardware wallets connected via USB, please read this guide on setting up HWIBridge to facilitate such connection to hardware wallets.

Have a look at DEVELOPMENT.md for further information about hacking on specter-desktop.

Detailed instructions

A few screenshots

Adding a new device

Creating a new wallet

Wallet interface

Configuration