aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
blob: c96e6359bf77d47f239f923c8b3f2ef57c557066 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# sentrum

Daemon that monitors the Bitcoin blockchain for transactions involving your
wallets and sends you notifications in many different channels (ntfy push
notifications, email, telegram, nostr, arbitrary command, etc).

## Installation

Either:

* Compile from source using `cargo install sentrum` (binary will be installed in
`~/.cargo/bin`)
* Download the binary from the
[releases page](https://github.com/sommerfelddev/sentrum/releases)
* If using archlinux, install it from the AUR:
[sentrum](https://aur.archlinux.org/packages/sentrum) or [sentrum-git](https://aur.archlinux.org/packages/sentrum-git)

## Configuration

### Config file path

It will look for a `sentrum.toml` configuration file located in any of these
directories (with this priority):

1. Current working directory
2. `$XDG_CONFIG_HOME/sentrum`
3. `~/.config/sentrum`
4. `/etc/sentrum` (more appropriate if running as a systemd service)

Alternatively, you can pass the configuration file path as an argument in the
invocation and that will override any of the above.

**Start by copying the sample configuration to where you want it.** E.g.

```bash
cp sentrum.sample.toml sentrum.toml
sudo cp sentrum.sample.toml /etc/sentrum/sentrum.toml
```

or

```bash
sudo cp sentrum.sample.toml /etc/sentrum/sentrum.toml
```

### What to configure

You can use the [sentrum.sample.toml](sentrum.sample.toml) file as an
example.
Most options have very good defaults so you don't need to change them unless you
want to. **In the examples below, commented options showcase their defaults,
unless explicitly said otherwise.**

#### Required

* `wallets`: what wallets you want to monitor
* `actions`: what actions you want to take once a relevant transaction is found

#### Optional

* `electrum`: by default, public electrum servers are used. You can configure it
  to connect to your own
* `message`: this allows you to configure the subject and body templates of the
  notification message and choose the relevant data from the transaction that
you want to include

## Wallets

For each wallet you want to track, add the following configuration:

```toml
[[wallets]]
# Identifier for naming purposes (required)
name = "alice"
# Wallet xpub (required)
xpub = "xpub6CkXHzuU1NyHUFNiQZLq2bgt6QPqjZbwpJ1MDgDeo4bWZ8ZP7HZr7v9WTLCQFhxVhqiJNcw5wSKE77rkAK1SzcuHjt36ZUibBHezGzGL9h9"
# Script kind ("legacy","nested_segwit","segwit","taproot") (optional)
#kind = "segwit"
```

It assumes a BIP84 (native segwit, `bc1` style addresses) wallet. If your wallet
has a different script kind add the field `kind = "legacy"` (or `nested_segwit`,
or `taproot`).

More complex wallet types are supported by providing `primary = "<desc>"` and
`change = "<desc>"` wallet descriptors instead of `xpub =` and `kind = `.

## Actions

For each new relevant transaction, you can take multiple actions. For each
action you desire to take, you need to add the configuration:

```toml
[[actions]]
# Action type (required)
type =  "<INSERT ACTION KIND>"
<.... INSERT ACTION SPECIFIC CONFIGURATION HERE...>
```

Below we explain the configuration for each action kind. You can have multiple
actions of the same kind (e.g. you want to send multiple emails from different
accounts for some reason).

### ntfy

This is the best straightforward way to get push notifications on a smartphone.

1. Install the android/iOS app following the relevant links in https://ntfy.sh
2. If you don't run your own ntfy self-hosted server, create an account at
   ntfy.sh
3. Open the app, give it the needed permissions and configure your account
   credentials
4. Click on the `+` button and create a "topic", preferably named `sentrum`
   since that's what will be used by default.

Then you just need to add the relevant configuration:

```toml
[[actions]]
type =  "ntfy"
# Credentials (required if you use a public server like the default one)
credentials.username = "<YOUR USERNAME HERE>"
credentials.password = "<YOUR PASSWORD HERE>"
# ntfy server (optional)
#url = "https://ntfy.sh"
# notification channel name (optional)
#topic = "sentrum"
# Proxy used to connect (optional, defaults to None)
#proxy = "socks5://127.0.0.1:9050"
# Priority ("max", "high", "default", "low", "min") (optional)
#priority = "default"
```

### nostr

Get notified by a nostr [NIP04 encrypted
DM](https://github.com/nostr-protocol/nips/blob/master/04.md) (leaks metadata
but widely supported) or a
[NIP59 GiftWrap sealed sender DM](https://github.com/nostr-protocol/nips/blob/master/59.md)
(more private but not supported by many clients). Add:

```toml
[[actions]]
type = "nostr"
# Which npub to send the DM (required)
recipient = "<YOUR npub, hex pubkey, nprofile or nip05>"
# If NIP59 giftwrap DMs should be used instead of NIP04 (optional)
#sealed_dm = false
# Which relays to use to send DMs
#relays = ["wss://nostr.bitcoiner.social", "wss://nostr.oxtr.dev", "wss://nostr.orangepill.dev", "wss://relay.damus.io"]
```

### email

You need to add the configuration below and essentially configure an
authenticated connection to your email provider's SMTP server. I cannot help you
out with every provider's weird rules (maybe you need to allow 3rd party apps
for gmail, who knows).

```toml
[[actions]]
type =  "email"
# SMTP server (required)
server = "<insert smtp server url (e.g. smtp.gmail.com)"
# SMTP connection type ("tls", "starttls" or "plain") (optional)
#connection = "tls"
# SMTP port (optional, defaults to 587 for TLS, 465 for STARTTLS and 25 for plain connections
#port = 1025
# SMTP credentials (required in most cases)
credentials.authentication_identity = "<insert login email>"
credentials.secret = "<insert password>"
# Accept self signed certificates (needed if you are using protonmail-bridge) (optional)
#self_signed_cert = false
# Configure sender (required)
from = "sentrum <youremailhere@host.tld>"
# Configure recipient (optional, defaults to the same as the "from" sender)
#to = "sentrum <youremailhere@host.tld>"
```

### telegram

1. Create a new bot using [@Botfather](https://t.me/botfather) to get a token in the format `123456789:blablabla`.
2. Optionally configure the bot (name, profile pic, etc) with @Botfather
3. Open a chat with your bot
4. Add the relevant config:

```toml
[[actions]]
type =  "telegram"
# Auth token of the bot created with @Botfather (required)
bot_token = "<insert bot token>"
# 10-digit user id of the DM recipient, go to your profile to get it (required)
user_id = 1234567890
```

### command

Runs an external command where you can use transaction details as arguments.
You can check what parameters (such as `{wallet}` or `{tx_net}` you can use in
the [message](#message) configuration, since they are the same.

```toml
[[actions]]
type = "command"
cmd = "notify-send"
args = ["[{wallet}] new tx: {tx_net} sats"]
```


### terminal_print

Justs prints the notification text in the terminal. You can potentially pipe it
to something else.

```toml
[[actions]]
type =  "terminal_print"
```

### desktop_notification

Displays the transaction message as a native desktop notification on the same
computer sentrum is running.

```toml
[[actions]]
type =  "desktop_notification"
```

## Message

You can configure the message template and it applies to almost every action
type. This configuration is entirely optional since the default templates will
be used if omitted.

Here is the default template:

```toml
[message]
subject = "[{wallet}] new transaction"
body = "net: {tx_net} sats, balance: {total_balance} sats, txid: {txid_short}"
# Can be "plain", "markdown" or "html"
format = "plain"
# Configure blockexplorer urls. This is used to create the {tx_url} parameter
block_explorers.mainnet = "https://mempool.space/tx/{txid}"
block_explorers.testnet = "https://mempool.space/testnet/tx/{txid}"
block_explorers.signet = "https://mempool.space/signet/tx/{txid}"
```

In the subject and body templates, you can use the following parameters:

* `{tx_net}`: difference between the owned outputs and owned inputs
* `{wallet}`: name of the configured wallet
* `{total_balance}`: total balance of the wallet
* `{txid}`: txid of the transaction
* `{txid_short}`: truncated txid, easier on the eyes
* `{received}`: sum of owned outputs
* `{sent}`: sum of owned inputs
* `{fee}`: transaction fee
* `{current_height}`: current blockheight
* `{tx_height}`: blockheight transaction confirmation
* `{confs}`: number of transaction confirmations (0 for unconfirmed)
* `{conf_timestamp}`: timestamp of the first confirmation in the `%Y-%m-%d %H:%M:%S` format
* `{tx_url}`: a block explorer URL to the transaction

## Electrum server

By default, public electrum servers will be used. I **strongly suggest
configuring your own electrum server if you want privacy (as you should)**.

The defaults are:

```toml
[electrum]
# Defaults:
# - mainnet: ssl://fulcrum.sethforprivacy.com:50002
# - testnet: ssl://electrum.blockstream.info:60002
# - signet: ssl://mempool.space:60602
# Use "tcp://" if you are connecting without SSL (e.g. "tcp://localhost:50001"
# or "tcp://fwafiuesngirdghrdhgiurdhgirdgirdhgrd.onion:50001"
url = "ssl://fulcrum.sethforprivacy.com:50002"
# blockchain network ("bitcoin", "testnet", "signet", "regtest")
network = "bitcoin"
# Optional socks5 proxy (defaults to None)
#socks5 = 127.0.0.1:9050
# If using ssl with a trusted certificate, set this to true
certificate_validation = false
```

# Usage

Just run `sentrum` without arguments (uses default config search paths) or
`sentrum <path/to/config/file>`.

You can pass the `--test` flag to send a single test notification to all
configured actions.

By default, only new transactions can trigger actions. If you pass
`--notify-past-txs`, it will send notifications of past transactions
in the initial wallet sync. If you have a long transaction history, this will
spam your notification channels for every transaction.

## systemd service

The ideal use-case is as a long running daemon, so it makes sense to configure
it as a systemd service.

If you are installing `sentrum` manually (e.g. from the releases page), you
should:

1. Create a new `sentrum` user:

```bash
sudo useradd -d /var/lib/sentrum -m sentrum
```

2. Place the `sentrum.toml` configuration file in `/etc/sentrum`:

```bash
sudo mkdir -p /etc/sentrum
sudo cp sentrum.toml /etc/sentrum
sudo chown -R sentrum:sentrum /etc/sentrum
```

3. Copy the [contrib/sentrum.service](contrib/sentrum.service) into the
   `/etc/systemd/system`

3. Reload systemd so that the service file can be found:

```bash
sudo systemclt daemon-reload
```

4. Enable and start the service:

```bash
sudo systemclt enable --now sentrum.service
```

5. Check if everything is fine with `systemctl status sentrum`

6. Check the logs with `journalctl -fu sentrum`

# Future Work

* More action types:
    - Matrix DM
    - SimpleX chat DM
    - IRC
    - XMPP
    - Whatsapp/Signal using linked devices (harder)
    - HTTP request
* More wallet types:
    - Single Address (blocked by
    https://github.com/bitcoindevkit/bdk/issues/759)
    - Collections of wallets as a single entity
* Notifications for the first tx confirmation and after N confirmations
* Filtering notifications by the transaction amounts (e.g. no action for
transactions smaller than 1M sats)
* Debian package (using `cargo-deb`)
* Allow per wallet actions
* Support other blockchain backends (bitcoind-rpc, explora, block filters, dojo)
* Maybe create a little web UI that helps with writing the configuration
* Incentivize node distributions to package sentrum