mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-29 08:14:20 +01:00
Co-authored-by: Marco Argentieri <tiero@users.noreply.github.com> * Add claim command * Persist pending data in sqlite repo * Remove debug log * Return pending data at interface level * Fix unlocking btc wallet after restart * Lint & Fix whitelist permissions * Fix send command for covenant * Update client/covenantless/claim.go Signed-off-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> * Fix * Pay for min relay fee instead of estimating fees for redeem and unconf forfeit txs * Add support for pending payments (coventanless) * Fixes * Fixes * Improve verbosity * Fix coin selection * Fix --------- Signed-off-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> Co-authored-by: louisinger <louis@vulpem.com> Co-authored-by: Marco Argentieri <tiero@users.noreply.github.com> Co-authored-by: Marco Argentieri <3596602+tiero@users.noreply.github.com>
35 lines
703 B
YAML
35 lines
703 B
YAML
services:
|
|
clarkd:
|
|
container_name: clarkd
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: unless-stopped
|
|
environment:
|
|
- ARK_ROUND_INTERVAL=10
|
|
- ARK_NETWORK=regtest
|
|
- ARK_LOG_LEVEL=5
|
|
- ARK_ROUND_LIFETIME=512
|
|
- ARK_TX_BUILDER_TYPE=covenantless
|
|
- ARK_MIN_RELAY_FEE=200
|
|
- ARK_NEUTRINO_PEER=bitcoin:18444
|
|
- ARK_ESPLORA_URL=http://chopsticks:3000
|
|
- ARK_NO_TLS=true
|
|
- ARK_NO_MACAROONS=true
|
|
ports:
|
|
- "6000:6000"
|
|
volumes:
|
|
- clarkd:/app/data
|
|
- clark:/app/wallet-data
|
|
|
|
volumes:
|
|
clarkd:
|
|
external: false
|
|
clark:
|
|
external: false
|
|
|
|
networks:
|
|
default:
|
|
name: nigiri
|
|
external: true
|