Files
timmy-tower/infrastructure/sweep.conf.example
Alexander Whitestone 520f062512
Some checks failed
CI / Typecheck & Lint (pull_request) Failing after 0s
feat: add sweep.conf.example and polish auto-sweep infrastructure
Fixes #51

- Add sweep.conf.example template documenting all config options and
  sweep modes (static, list, xpub) for operator reference
- Copy sweep.conf.example to /opt/timmy-node/ during setup
- Remove redundant NEXT_INDEX reload in sweep.sh after successful sweep
  (value is already set by resolve_address)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 21:50:00 -04:00

16 lines
490 B
Plaintext

# Timmy Node — Auto-sweep configuration
# Copy to /opt/timmy-node/sweep.conf and edit, or run: bash ops.sh configure-sweep
#
# Modes:
# static — sweep to a single cold address every time
# list — rotate through addresses in /opt/timmy-node/sweep-addresses.txt
# xpub — derive a fresh address from an xpub each sweep (no address reuse)
SWEEP_MODE="static"
COLD_ADDRESS=""
XPUB=""
KEEP_SATS=300000
MIN_SWEEP=50000
SWEEP_CRON="0 3 * * *"
SWEEP_FREQ_LABEL="daily at 3am UTC"