THIS IS CURRENTLY WIP
The Eye of Satoshi is a Lightning watchtower compliant with BOLT13, written in Rust.
rust-teos
consists in two main crates:
teos
: including the tower's main functionality (server-side) and a CLI.teos-common
: including shared functionality between server and client side (useful to build a client).
Refer to DEPENDENCIES.md
Refer to INSTALL.md
Make sure bitcoind is running before running rust-teos
(it will fail at startup if it cannot connect to bitcoind). You can find
here a sample config file.
Once installed, you can start the tower by running:
teosd
rust-teos
comes with a default configuration that can be found at teos/src/config.rs.
The configuration includes, amongst others, where your data folder is placed, what network it connects to, etc.
To change the configuration defaults you can:
- Define a configuration file named
teos.toml
following the template (check teos/src/conf_template.toml) and place it in thedata_dir
(that defaults to~/.teos/
)
and / or
- Add some global options when running the daemon (run
teosd -h
for more info).
Some configuration options can also be passed as options when running teosd
. We can, for instance, change the tower data directory as follows:
teosd --datadir=<path_to_dir>
By default, rust-teos
runs on mainnet
. In order to run it on another network you need to change the network parameter in the configuration file or pass the network parameter as a command line option. Notice that if teos does not find a bitcoind
node running in the same network that it is set to run, it will refuse to run.
The configuration file option to change the network where teos
will run is btc_network
:
btc_network = mainnet
For regtest, it should look like:
btc_network = regtest
This requires a tor deamon running on the same machine as teos and a control port open on that deamon.
Download tor from the torproject site here: torproject
To open tor's control port, follow the instructions here on how to update the configuration file tor conf
Add the following lines to the file:
## The port on which Tor will listen for local connections from Tor
## controller applications, as documented in control-spec.txt.
ControlPort 9051
## If you enable the controlport, be sure to enable one of these
## authentication methods, to prevent attackers from accessing it.
CookieAuthentication 1
CookieAuthFileGroupReadable 1
Once the tor deamon is running, and the control port is open, make sure to change tor_support
flag to true in teos conf.
teos
needs a pair of keys that will serve as tower id and signing key. The former can be used by users to identify the tower, whereas the latter is used by the tower to sign responses. These keys are automatically generated on the first run, and can be refreshed by running teos
with the --overwritekey
flag. Notice that once a key is overwritten you won't be able to use the previous key again*.
* Old keys are actually kept in the tower's database as a fail safe in case you overwrite them by mistake. However, there is no automated way of switching back to and old key. Feel free to open an issue if you overwrote your key by mistake and need support to recover it.
You can interact with a teos
instance (either run by yourself or someone else) by using teos-cli
. This is an admin tool that has privileged access to the watchtower, and it should therefore only be used within a trusted environment (for example, the same machine).
While teos-cli
works independently of teos
, it shares the same configuration file by default, of which it only uses a subset of its settings. The folder can be changed using the --datadir
command line argument, if desired.
For help on the available arguments and commands, you can run:
teos-cli -h
FIXME: Add client and docs
Refer to CONTRIBUTING.md