Merge #258: joinmarket 0.7.0 -> 0.7.2 & lightning-loop 0.10.0-beta -> 0.11.0-beta
546053511b
lightning-loop: 0.10.0-beta -> 0.11.0-beta (nixbitcoin)f2faf708fb
test: update joinmarket query strings (nixbitcoin)59e128a994
joinmarket: add payjoin configuration (nixbitcoin)f29f04c0c4
secure-node: LND no longer requires ControlPort (nixbitcoin)d4c0653c64
joinmarket: 0.7.0 -> 0.7.2 (nixbitcoin) Pull request description: ACKs for top commit: erikarvstedt: ACK546053511b
Tree-SHA512: b95742cba407725c95c240fb59b1a03dc27477c1d71e37b6e02847bb747e6cc7d51bb0960b299a1783ca5364706b0f2e6137aa4ab746a37c573196b0f22b551c
This commit is contained in:
commit
4e8b9f2989
@ -61,6 +61,16 @@ let
|
|||||||
taker_utxo_amtpercent = 20
|
taker_utxo_amtpercent = 20
|
||||||
accept_commitment_broadcasts = 1
|
accept_commitment_broadcasts = 1
|
||||||
commit_file_location = cmtdata/commitments.json
|
commit_file_location = cmtdata/commitments.json
|
||||||
|
|
||||||
|
[PAYJOIN]
|
||||||
|
payjoin_version = 1
|
||||||
|
disable_output_substitution = 0
|
||||||
|
max_additional_fee_contribution = default
|
||||||
|
min_fee_rate = 1.1
|
||||||
|
onion_socks5_host = ${torAddress}
|
||||||
|
onion_socks5_port = 9050
|
||||||
|
tor_control_host = unix:/run/tor/control
|
||||||
|
hidden_service_ssl = false
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# The jm scripts create a 'logs' dir in the working dir,
|
# The jm scripts create a 'logs' dir in the working dir,
|
||||||
@ -126,6 +136,7 @@ in {
|
|||||||
description = "joinmarket User";
|
description = "joinmarket User";
|
||||||
group = "${cfg.group}";
|
group = "${cfg.group}";
|
||||||
home = cfg.dataDir;
|
home = cfg.dataDir;
|
||||||
|
extraGroups = [ "tor" ];
|
||||||
};
|
};
|
||||||
users.groups.${cfg.group} = {};
|
users.groups.${cfg.group} = {};
|
||||||
nix-bitcoin.operator = {
|
nix-bitcoin.operator = {
|
||||||
@ -143,6 +154,7 @@ in {
|
|||||||
services.tor = {
|
services.tor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
client.enable = true;
|
client.enable = true;
|
||||||
|
controlSocket.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.joinmarket = {
|
systemd.services.joinmarket = {
|
||||||
|
@ -43,8 +43,6 @@ in {
|
|||||||
services.tor = {
|
services.tor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
client.enable = true;
|
client.enable = true;
|
||||||
# LND uses ControlPort to create onion services
|
|
||||||
controlPort = mkIf cfg.lnd.enable 9051;
|
|
||||||
|
|
||||||
hiddenServices.sshd = mkHiddenService { port = 22; };
|
hiddenServices.sshd = mkHiddenService { port = 22; };
|
||||||
};
|
};
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchurl, python3, pkgs }:
|
{ stdenv, fetchurl, python3, pkgs }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.7.0";
|
version = "0.7.2";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/JoinMarket-Org/joinmarket-clientserver/archive/v${version}.tar.gz";
|
url = "https://github.com/JoinMarket-Org/joinmarket-clientserver/archive/v${version}.tar.gz";
|
||||||
sha256 = "0ha73n3y5lykyj3pl97a619sxd2zz0lb32s5c61wm0l1h47v9l1g";
|
sha256 = "03gvs20d2cfzy9x82l6v4c69w0j9mr4p9zj2hpymnb6xs1yq6dr1";
|
||||||
};
|
};
|
||||||
|
|
||||||
python = python3.override {
|
python = python3.override {
|
||||||
@ -32,13 +32,11 @@ let
|
|||||||
joinmarketdaemon
|
joinmarketdaemon
|
||||||
];
|
];
|
||||||
|
|
||||||
genwallet = pkgs.writeScriptBin "genwallet" (builtins.readFile ./genwallet/genwallet.py);
|
|
||||||
|
|
||||||
pythonEnv = python.withPackages (_: runtimePackages);
|
pythonEnv = python.withPackages (_: runtimePackages);
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "joinmarket";
|
pname = "joinmarket";
|
||||||
inherit version src genwallet;
|
inherit version src;
|
||||||
|
|
||||||
buildInputs = [ pythonEnv ];
|
buildInputs = [ pythonEnv ];
|
||||||
|
|
||||||
@ -59,7 +57,7 @@ stdenv.mkDerivation {
|
|||||||
cpBin tumbler.py
|
cpBin tumbler.py
|
||||||
cpBin wallet-tool.py
|
cpBin wallet-tool.py
|
||||||
cpBin yg-privacyenhanced.py
|
cpBin yg-privacyenhanced.py
|
||||||
cp $genwallet/bin/genwallet $out/bin/jm-genwallet
|
cpBin genwallet.py
|
||||||
|
|
||||||
chmod +x -R $out/bin
|
chmod +x -R $out/bin
|
||||||
patchShebangs $out/bin
|
patchShebangs $out/bin
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
"""
|
|
||||||
Prototype: demonstrate you can automatically generate a wallet
|
|
||||||
"""
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
from optparse import OptionParser
|
|
||||||
from jmclient import load_program_config, add_base_options, SegwitLegacyWallet, create_wallet, jm_single
|
|
||||||
from jmbase.support import get_log, jmprint
|
|
||||||
|
|
||||||
log = get_log()
|
|
||||||
|
|
||||||
def main():
|
|
||||||
parser = OptionParser(
|
|
||||||
usage='usage: %prog [options] wallet_file_name password',
|
|
||||||
description='Create a wallet with the given wallet name and password.')
|
|
||||||
add_base_options(parser)
|
|
||||||
(options, args) = parser.parse_args()
|
|
||||||
if options.wallet_password_stdin:
|
|
||||||
stdin = sys.stdin.read()
|
|
||||||
password = stdin.encode("utf-8")
|
|
||||||
else:
|
|
||||||
assert len(args) > 1, "must provide password via stdin (see --help), or as second argument."
|
|
||||||
password = args[1].encode("utf-8")
|
|
||||||
load_program_config(config_path=options.datadir)
|
|
||||||
wallet_root_path = os.path.join(jm_single().datadir, "wallets")
|
|
||||||
wallet_name = os.path.join(wallet_root_path, args[0])
|
|
||||||
wallet = create_wallet(wallet_name, password, 4, SegwitLegacyWallet)
|
|
||||||
jmprint("recovery_seed:{}"
|
|
||||||
.format(wallet.get_mnemonic_words()[0]), "important")
|
|
||||||
wallet.close()
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-bitcointx";
|
pname = "python-bitcointx";
|
||||||
version = "1.1.1";
|
version = "1.1.1.post0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/Simplexum/${pname}/archive/${pname}-v${version}.tar.gz";
|
url = "https://github.com/Simplexum/${pname}/archive/${pname}-v${version}.tar.gz";
|
||||||
sha256 = "35edd694473517508367338888633954eaa91b2622b3caada8fd3030ddcacba2";
|
sha256 = "d12593b09785a7a4ce08cb1928815c2366e9f6e4fab317267462857bf83904b0";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
|
@ -9,7 +9,7 @@ cd $TMPDIR
|
|||||||
echo "Fetching latest release"
|
echo "Fetching latest release"
|
||||||
git clone https://github.com/simplexum/python-bitcointx 2> /dev/null
|
git clone https://github.com/simplexum/python-bitcointx 2> /dev/null
|
||||||
cd python-bitcointx
|
cd python-bitcointx
|
||||||
latest=$(git describe --tags `git rev-list --tags --max-count=1`)
|
latest=python-bitcointx-v1.1.1.post0
|
||||||
echo "Latest release is ${latest}"
|
echo "Latest release is ${latest}"
|
||||||
|
|
||||||
# GPG verification
|
# GPG verification
|
||||||
|
@ -2,17 +2,17 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "lightning-loop";
|
pname = "lightning-loop";
|
||||||
version = "0.10.0-beta";
|
version = "0.11.0-beta";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/lightninglabs/loop/archive/v${version}.tar.gz";
|
url = "https://github.com/lightninglabs/loop/archive/v${version}.tar.gz";
|
||||||
# Use ./get-sha256.sh to fetch latest (verified) sha256
|
# Use ./get-sha256.sh to fetch latest (verified) sha256
|
||||||
sha256 = "2c43168c72a064813427a55adb5bbb9a9aafe508d3921fc875418047bc0972a1";
|
sha256 = "ce26d8b1bac0c53bd2bc78761c1e1b2e6233e5007686042765f1ec9fd92afc42";
|
||||||
};
|
};
|
||||||
|
|
||||||
subPackages = [ "cmd/loop" "cmd/loopd" ];
|
subPackages = [ "cmd/loop" "cmd/loopd" ];
|
||||||
|
|
||||||
vendorSha256 = "030km5fsz1x6zl93krc0nz0d9krnhqakk353b60wni5ynkgqgp3j";
|
vendorSha256 = "1kwcmvfk7ja8r75142k2pzinla5i921nrgbnnh4z7zxfpyh2ri4l";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = " Lightning Loop: A Non-Custodial Off/On Chain Bridge";
|
description = " Lightning Loop: A Non-Custodial Off/On Chain Bridge";
|
||||||
|
@ -208,14 +208,14 @@ def _():
|
|||||||
def _():
|
def _():
|
||||||
assert_running("joinmarket")
|
assert_running("joinmarket")
|
||||||
machine.wait_until_succeeds(
|
machine.wait_until_succeeds(
|
||||||
log_has_string("joinmarket", "P2EPDaemonServerProtocolFactory starting on 27184")
|
log_has_string("joinmarket", "JMDaemonServerProtocolFactory starting on 27183")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@test("joinmarket-yieldgenerator")
|
@test("joinmarket-yieldgenerator")
|
||||||
def _():
|
def _():
|
||||||
machine.wait_until_succeeds(
|
machine.wait_until_succeeds(
|
||||||
log_has_string("joinmarket-yieldgenerator", "Failure to get blockheight",)
|
log_has_string("joinmarket-yieldgenerator", "Critical error updating blockheight.",)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user