2020-04-23 09:18:47 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
2021-09-13 04:40:47 -07:00
|
|
|
options.services.joinmarket = {
|
2021-12-14 10:51:23 -08:00
|
|
|
enable = mkEnableOption "JoinMarket, a Bitcoin CoinJoin implementation";
|
2021-10-24 12:14:09 -07:00
|
|
|
payjoinAddress = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "127.0.0.1";
|
|
|
|
description = ''
|
|
|
|
The address where payjoin onion connections are forwarded to.
|
|
|
|
This address is never used directly, it only serves as the internal endpoint
|
|
|
|
for the payjoin onion service.
|
|
|
|
The onion service is automatically setup by joinmarket and accepts
|
|
|
|
connections at port 80.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
payjoinPort = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 64180; # A random private port
|
|
|
|
description = "The port corresponding to option `payjoinAddress`.";
|
|
|
|
};
|
2021-09-13 04:40:47 -07:00
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/joinmarket";
|
|
|
|
description = "The data directory for JoinMarket.";
|
|
|
|
};
|
2021-09-13 04:40:48 -07:00
|
|
|
rpcWalletFile = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "jm_wallet";
|
|
|
|
description = ''
|
|
|
|
Name of the watch-only bitcoind wallet the JoinMarket addresses are imported to.
|
|
|
|
'';
|
|
|
|
};
|
2021-09-13 04:40:47 -07:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "joinmarket";
|
|
|
|
description = "The user as which to run JoinMarket.";
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.user;
|
|
|
|
description = "The group as which to run JoinMarket.";
|
|
|
|
};
|
|
|
|
cli = mkOption {
|
|
|
|
default = cli;
|
2021-12-07 19:07:27 -08:00
|
|
|
defaultText = "(See source)";
|
2021-09-13 04:40:47 -07:00
|
|
|
};
|
2021-10-13 05:44:36 -07:00
|
|
|
# Used by ./joinmarket-ob-watcher.nix
|
|
|
|
ircServers = mkOption {
|
|
|
|
readOnly = true;
|
|
|
|
default = ircServers;
|
2021-12-07 19:07:27 -08:00
|
|
|
defaultText = "(See source)";
|
2021-10-13 05:44:36 -07:00
|
|
|
};
|
2021-11-28 12:24:49 -08:00
|
|
|
# This option is only used by netns-isolation.
|
|
|
|
# Tor is always enabled.
|
|
|
|
tor.enforce = nbLib.tor.enforce;
|
2021-09-13 04:40:47 -07:00
|
|
|
inherit (nbLib) cliExec;
|
|
|
|
|
|
|
|
yieldgenerator = {
|
2021-12-14 10:51:23 -08:00
|
|
|
enable = mkEnableOption "JoinMarket yield generator bot";
|
2021-09-13 04:40:47 -07:00
|
|
|
ordertype = mkOption {
|
|
|
|
type = types.enum [ "reloffer" "absoffer" ];
|
|
|
|
default = "reloffer";
|
|
|
|
description = ''
|
|
|
|
Which fee type to actually use
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
cjfee_a = mkOption {
|
|
|
|
type = types.ints.unsigned;
|
|
|
|
default = 500;
|
|
|
|
description = ''
|
|
|
|
Absolute offer fee you wish to receive for coinjoins (cj) in Satoshis
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
cjfee_r = mkOption {
|
|
|
|
type = types.float;
|
|
|
|
default = 0.00002;
|
|
|
|
description = ''
|
|
|
|
Relative offer fee you wish to receive based on a cj's amount
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
cjfee_factor = mkOption {
|
|
|
|
type = types.float;
|
|
|
|
default = 0.1;
|
|
|
|
description = ''
|
|
|
|
Variance around the average cj fee
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
txfee = mkOption {
|
|
|
|
type = types.ints.unsigned;
|
|
|
|
default = 100;
|
|
|
|
description = ''
|
|
|
|
The average transaction fee you're adding to coinjoin transactions
|
|
|
|
'';
|
|
|
|
};
|
2021-10-24 12:14:09 -07:00
|
|
|
txfee_contribution_factor = mkOption {
|
2021-09-13 04:40:47 -07:00
|
|
|
type = types.float;
|
|
|
|
default = 0.3;
|
|
|
|
description = ''
|
|
|
|
Variance around the average tx fee
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
minsize = mkOption {
|
|
|
|
type = types.ints.unsigned;
|
|
|
|
default = 100000;
|
|
|
|
description = ''
|
|
|
|
Minimum size of your cj offer in Satoshis. Lower cj amounts will be disregarded.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
size_factor = mkOption {
|
|
|
|
type = types.float;
|
|
|
|
default = 0.1;
|
|
|
|
description = ''
|
|
|
|
Variance around all offer sizes
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-23 09:18:47 -07:00
|
|
|
cfg = config.services.joinmarket;
|
2021-02-03 13:44:41 -08:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2020-11-09 13:09:09 -08:00
|
|
|
nbPkgs = config.nix-bitcoin.pkgs;
|
2020-04-23 09:18:47 -07:00
|
|
|
secretsDir = config.nix-bitcoin.secretsDir;
|
2021-01-30 14:08:43 -08:00
|
|
|
runAsUser = config.nix-bitcoin.runAsUserCmd;
|
2020-04-23 09:18:47 -07:00
|
|
|
|
2020-10-16 08:43:13 -07:00
|
|
|
inherit (config.services) bitcoind;
|
2021-08-04 15:49:00 -07:00
|
|
|
|
|
|
|
torAddress = config.services.tor.client.socksListenAddress;
|
|
|
|
socks5Settings = ''
|
|
|
|
socks5 = true
|
|
|
|
socks5_host = ${torAddress.addr}
|
|
|
|
socks5_port = ${toString torAddress.port}
|
|
|
|
'';
|
|
|
|
|
2021-10-13 05:44:36 -07:00
|
|
|
ircServers = ''
|
|
|
|
# irc.darkscience.net
|
|
|
|
[MESSAGING:server1]
|
|
|
|
host = darkirc6tqgpnwd3blln3yfv5ckl47eg7llfxkmtovrv7c7iwohhb6ad.onion
|
|
|
|
channel = joinmarket-pit
|
|
|
|
port = 6697
|
|
|
|
usessl = true
|
|
|
|
${socks5Settings}
|
|
|
|
|
|
|
|
# irc.hackint.org
|
|
|
|
[MESSAGING:server2]
|
|
|
|
host = ncwkrwxpq2ikcngxq3dy2xctuheniggtqeibvgofixpzvrwpa77tozqd.onion
|
|
|
|
channel = joinmarket-pit
|
|
|
|
port = 6667
|
|
|
|
usessl = false
|
|
|
|
${socks5Settings}
|
2021-10-13 05:45:52 -07:00
|
|
|
|
2021-12-08 04:16:14 -08:00
|
|
|
# ilita
|
2022-02-22 05:49:19 -08:00
|
|
|
[MESSAGING:server3]
|
2021-12-08 04:16:14 -08:00
|
|
|
host = ilitafrzzgxymv6umx2ux7kbz3imyeko6cnqkvy4nisjjj4qpqkrptid.onion
|
|
|
|
channel = joinmarket-pit
|
|
|
|
port = 6667
|
|
|
|
usessl = false
|
|
|
|
${socks5Settings}
|
2021-10-13 05:44:36 -07:00
|
|
|
'';
|
|
|
|
|
2020-10-16 08:43:14 -07:00
|
|
|
# Based on https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/jmclient/jmclient/configure.py
|
2021-02-10 06:02:05 -08:00
|
|
|
yg = cfg.yieldgenerator;
|
2020-04-23 09:18:47 -07:00
|
|
|
configFile = builtins.toFile "config" ''
|
|
|
|
[DAEMON]
|
|
|
|
no_daemon = 0
|
|
|
|
daemon_port = 27183
|
|
|
|
daemon_host = localhost
|
|
|
|
use_ssl = false
|
|
|
|
|
|
|
|
[BLOCKCHAIN]
|
2021-10-25 06:30:53 -07:00
|
|
|
blockchain_source = ${bitcoind.makeNetworkName "bitcoin-rpc" "regtest"}
|
|
|
|
network = ${bitcoind.makeNetworkName "mainnet" "testnet"}
|
2021-10-01 02:51:57 -07:00
|
|
|
rpc_host = ${nbLib.address bitcoind.rpc.address}
|
2020-10-16 08:43:15 -07:00
|
|
|
rpc_port = ${toString bitcoind.rpc.port}
|
2020-10-16 08:43:13 -07:00
|
|
|
rpc_user = ${bitcoind.rpc.users.privileged.name}
|
2021-08-08 01:58:49 -07:00
|
|
|
${optionalString (cfg.rpcWalletFile != null) "rpc_wallet_file = ${cfg.rpcWalletFile}"}
|
2020-04-23 09:18:47 -07:00
|
|
|
|
2021-10-13 05:44:36 -07:00
|
|
|
${ircServers}
|
2020-04-23 09:18:47 -07:00
|
|
|
|
|
|
|
[LOGGING]
|
|
|
|
console_log_level = INFO
|
|
|
|
color = false
|
|
|
|
|
|
|
|
[POLICY]
|
|
|
|
segwit = true
|
2020-12-14 09:12:11 -08:00
|
|
|
native = true
|
2020-04-23 09:18:47 -07:00
|
|
|
merge_algorithm = default
|
|
|
|
tx_fees = 3
|
2021-10-24 12:14:09 -07:00
|
|
|
tx_fees_factor = 0.2
|
2020-04-23 09:18:47 -07:00
|
|
|
absurd_fee_per_kb = 350000
|
2021-02-10 06:02:05 -08:00
|
|
|
max_sweep_fee_change = 0.8
|
2020-04-23 09:18:47 -07:00
|
|
|
tx_broadcast = self
|
|
|
|
minimum_makers = 4
|
|
|
|
max_sats_freeze_reuse = -1
|
2022-01-11 03:05:42 -08:00
|
|
|
interest_rate = 0.015
|
|
|
|
bondless_makers_allowance = 0.125
|
2020-04-23 09:18:47 -07:00
|
|
|
taker_utxo_retries = 3
|
|
|
|
taker_utxo_age = 5
|
|
|
|
taker_utxo_amtpercent = 20
|
|
|
|
accept_commitment_broadcasts = 1
|
|
|
|
commit_file_location = cmtdata/commitments.json
|
2020-10-29 05:46:36 -07:00
|
|
|
|
|
|
|
[PAYJOIN]
|
|
|
|
payjoin_version = 1
|
|
|
|
disable_output_substitution = 0
|
|
|
|
max_additional_fee_contribution = default
|
|
|
|
min_fee_rate = 1.1
|
2021-08-04 15:49:00 -07:00
|
|
|
onion_socks5_host = ${torAddress.addr}
|
|
|
|
onion_socks5_port = ${toString torAddress.port}
|
2020-10-29 05:46:36 -07:00
|
|
|
tor_control_host = unix:/run/tor/control
|
2021-10-24 12:14:09 -07:00
|
|
|
onion_serving_host = ${cfg.payjoinAddress}
|
|
|
|
onion_serving_port = ${toString cfg.payjoinPort}
|
2020-10-29 05:46:36 -07:00
|
|
|
hidden_service_ssl = false
|
2021-02-10 06:02:05 -08:00
|
|
|
|
|
|
|
[YIELDGENERATOR]
|
|
|
|
ordertype = ${yg.ordertype}
|
|
|
|
cjfee_a = ${toString yg.cjfee_a}
|
|
|
|
cjfee_r = ${toString yg.cjfee_r}
|
|
|
|
cjfee_factor = ${toString yg.cjfee_factor}
|
2021-10-24 12:14:09 -07:00
|
|
|
txfee_contribution = 0
|
|
|
|
txfee_contribution_factor = ${toString yg.txfee_contribution_factor}
|
2021-02-10 06:02:05 -08:00
|
|
|
minsize = ${toString yg.minsize}
|
|
|
|
size_factor = ${toString yg.size_factor}
|
|
|
|
gaplimit = 6
|
2021-03-09 08:48:25 -08:00
|
|
|
|
|
|
|
[SNICKER]
|
|
|
|
enabled = false
|
|
|
|
lowest_net_gain = 0
|
|
|
|
servers = cn5lfwvrswicuxn3gjsxoved6l2gu5hdvwy5l3ev7kg6j7lbji2k7hqd.onion,
|
|
|
|
polling_interval_minutes = 60
|
2020-04-23 09:18:47 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
# The jm scripts create a 'logs' dir in the working dir,
|
|
|
|
# so run them inside dataDir.
|
|
|
|
cli = pkgs.runCommand "joinmarket-cli" {} ''
|
|
|
|
mkdir -p $out/bin
|
2020-11-09 13:09:09 -08:00
|
|
|
jm=${nbPkgs.joinmarket}/bin
|
2020-04-23 09:18:47 -07:00
|
|
|
cd $jm
|
|
|
|
for bin in jm-*; do
|
|
|
|
{
|
|
|
|
echo "#!${pkgs.bash}/bin/bash";
|
2021-01-30 14:08:43 -08:00
|
|
|
echo "cd '${cfg.dataDir}' && ${cfg.cliExec} ${runAsUser} ${cfg.user} $jm/$bin --datadir='${cfg.dataDir}' \"\$@\"";
|
2020-04-23 09:18:47 -07:00
|
|
|
} > $out/bin/$bin
|
|
|
|
done
|
|
|
|
chmod -R +x $out/bin
|
|
|
|
'';
|
|
|
|
in {
|
2021-09-13 04:40:47 -07:00
|
|
|
inherit options;
|
2020-04-23 09:18:47 -07:00
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [{
|
2021-02-01 13:53:22 -08:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
disablewallet = false;
|
2020-09-28 04:09:03 -07:00
|
|
|
};
|
2020-04-23 09:18:47 -07:00
|
|
|
|
2021-02-01 13:53:22 -08:00
|
|
|
# Joinmarket is Tor-only
|
2020-04-23 09:18:47 -07:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
2021-02-01 13:53:18 -08:00
|
|
|
# Needed for payjoin onion service creation
|
2020-10-29 05:46:36 -07:00
|
|
|
controlSocket.enable = true;
|
2020-04-23 09:18:47 -07:00
|
|
|
};
|
|
|
|
|
2021-02-01 13:53:22 -08:00
|
|
|
environment.systemPackages = [
|
|
|
|
(hiPrio cfg.cli)
|
|
|
|
];
|
|
|
|
|
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d '${cfg.dataDir}' 0770 ${cfg.user} ${cfg.group} - -"
|
|
|
|
];
|
|
|
|
|
2020-04-23 09:18:47 -07:00
|
|
|
systemd.services.joinmarket = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
requires = [ "bitcoind.service" ];
|
|
|
|
after = [ "bitcoind.service" ];
|
2021-08-08 01:58:52 -07:00
|
|
|
preStart = ''
|
2021-08-27 08:09:11 -07:00
|
|
|
{
|
|
|
|
cat ${configFile}
|
|
|
|
echo
|
|
|
|
echo '[BLOCKCHAIN]'
|
|
|
|
echo "rpc_password = $(cat ${secretsDir}/bitcoin-rpcpassword-privileged)"
|
|
|
|
} > '${cfg.dataDir}/joinmarket.cfg'
|
|
|
|
'';
|
2021-10-25 06:30:53 -07:00
|
|
|
postStart = ''
|
2021-08-08 01:58:52 -07:00
|
|
|
walletname=wallet.jmdat
|
|
|
|
wallet=${cfg.dataDir}/wallets/$walletname
|
|
|
|
if [[ ! -f $wallet ]]; then
|
|
|
|
${optionalString (cfg.rpcWalletFile != null) ''
|
|
|
|
echo "Create watch-only wallet ${cfg.rpcWalletFile}"
|
2021-08-27 05:37:44 -07:00
|
|
|
if ! output=$(${bitcoind.cli}/bin/bitcoin-cli -named createwallet \
|
2021-10-25 06:30:53 -07:00
|
|
|
wallet_name="${cfg.rpcWalletFile}" \
|
2022-05-05 05:50:19 -07:00
|
|
|
descriptors=false \
|
2021-10-25 06:30:53 -07:00
|
|
|
${optionalString (!bitcoind.regtest) "disable_private_keys=true"} 2>&1
|
|
|
|
); then
|
2021-08-27 05:37:44 -07:00
|
|
|
# Ignore error if bitcoind wallet already exists
|
|
|
|
if [[ $output != *"already exists"* ]]; then
|
|
|
|
echo "$output"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2021-08-08 01:58:52 -07:00
|
|
|
''}
|
2021-08-27 05:37:44 -07:00
|
|
|
# Restore wallet from seed if available
|
|
|
|
seed=
|
|
|
|
if [[ -e jm-wallet-seed ]]; then
|
|
|
|
seed="--recovery-seed-file jm-wallet-seed"
|
|
|
|
fi
|
2021-08-08 01:58:52 -07:00
|
|
|
cd ${cfg.dataDir}
|
2021-08-27 08:09:11 -07:00
|
|
|
# Strip trailing newline from password file
|
|
|
|
if ! tr -d "\n" <"${secretsDir}/jm-wallet-password" \
|
|
|
|
| ${nbPkgs.joinmarket}/bin/jm-genwallet \
|
2021-08-27 05:37:44 -07:00
|
|
|
--datadir=${cfg.dataDir} --wallet-password-stdin $seed $walletname \
|
|
|
|
| (if [[ ! $seed ]]; then
|
|
|
|
umask u=r,go=
|
|
|
|
grep -ohP '(?<=recovery_seed:).*' > jm-wallet-seed
|
|
|
|
else
|
|
|
|
cat > /dev/null
|
|
|
|
fi); then
|
2021-08-08 01:58:52 -07:00
|
|
|
echo "wallet creation failed"
|
|
|
|
rm -f "$wallet" jm-wallet-seed
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
serviceConfig = nbLib.defaultHardening // {
|
2020-11-09 13:09:09 -08:00
|
|
|
ExecStart = "${nbPkgs.joinmarket}/bin/joinmarketd";
|
2021-02-01 13:53:12 -08:00
|
|
|
WorkingDirectory = cfg.dataDir; # The service creates 'commitmentlist' in the working dir
|
|
|
|
User = cfg.user;
|
2020-04-23 09:18:47 -07:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
2021-02-01 13:53:12 -08:00
|
|
|
ReadWritePaths = cfg.dataDir;
|
2021-11-28 12:24:49 -08:00
|
|
|
} // nbLib.allowedIPAddresses cfg.tor.enforce;
|
2020-04-23 09:18:47 -07:00
|
|
|
};
|
|
|
|
|
2021-02-01 13:53:22 -08:00
|
|
|
users.users.${cfg.user} = {
|
2021-08-04 15:48:59 -07:00
|
|
|
isSystemUser = true;
|
2021-02-01 13:53:22 -08:00
|
|
|
group = cfg.group;
|
|
|
|
home = cfg.dataDir;
|
|
|
|
# Allow access to the tor control socket, needed for payjoin onion service creation
|
2021-08-08 01:58:48 -07:00
|
|
|
extraGroups = [ "tor" "bitcoin" ];
|
2021-02-01 13:53:22 -08:00
|
|
|
};
|
|
|
|
users.groups.${cfg.group} = {};
|
|
|
|
nix-bitcoin.operator = {
|
|
|
|
groups = [ cfg.group ];
|
2021-08-15 02:28:38 -07:00
|
|
|
allowRunAsUsers = [ cfg.user ];
|
2021-02-01 13:53:22 -08:00
|
|
|
};
|
|
|
|
|
2020-04-23 09:18:47 -07:00
|
|
|
nix-bitcoin.secrets.jm-wallet-password.user = cfg.user;
|
2021-09-08 08:01:18 -07:00
|
|
|
nix-bitcoin.generateSecretsCmds.joinmarket = ''
|
|
|
|
makePasswordSecret jm-wallet-password
|
|
|
|
'';
|
2020-12-30 07:02:42 -08:00
|
|
|
}
|
2020-04-23 09:18:47 -07:00
|
|
|
|
2020-12-30 07:02:42 -08:00
|
|
|
(mkIf cfg.yieldgenerator.enable {
|
2021-02-10 06:02:05 -08:00
|
|
|
systemd.services.joinmarket-yieldgenerator = {
|
2020-04-23 09:18:47 -07:00
|
|
|
wantedBy = [ "joinmarket.service" ];
|
|
|
|
requires = [ "joinmarket.service" ];
|
|
|
|
after = [ "joinmarket.service" ];
|
2021-08-27 08:06:17 -07:00
|
|
|
script = ''
|
|
|
|
tr -d "\n" <"${secretsDir}/jm-wallet-password" \
|
|
|
|
| ${nbPkgs.joinmarket}/bin/jm-yg-privacyenhanced --datadir='${cfg.dataDir}' \
|
|
|
|
--wallet-password-stdin wallet.jmdat
|
2020-04-23 09:18:47 -07:00
|
|
|
'';
|
2021-02-03 13:44:41 -08:00
|
|
|
serviceConfig = nbLib.defaultHardening // rec {
|
2021-02-01 13:53:12 -08:00
|
|
|
WorkingDirectory = cfg.dataDir; # The service creates dir 'logs' in the working dir
|
2021-02-01 13:53:20 -08:00
|
|
|
# Show "joinmarket-yieldgenerator" instead of "bash" in the journal.
|
2021-08-27 08:06:17 -07:00
|
|
|
# The start script has to run alongside the main process
|
2021-02-01 13:53:20 -08:00
|
|
|
# because it provides the wallet password via stdin to the main process
|
|
|
|
SyslogIdentifier = "joinmarket-yieldgenerator";
|
2021-02-01 13:53:12 -08:00
|
|
|
User = cfg.user;
|
|
|
|
ReadWritePaths = cfg.dataDir;
|
2021-02-03 13:44:41 -08:00
|
|
|
} // nbLib.allowTor;
|
2020-04-23 09:18:47 -07:00
|
|
|
};
|
|
|
|
})
|
|
|
|
]);
|
|
|
|
}
|