2026-07-21 10:25:23 +02:00
|
|
|
ELECTRUM_HOST=santantonio.sytes.net
|
|
|
|
|
ELECTRUM_PORT=50002
|
|
|
|
|
ELECTRUM_USE_SSL=true
|
|
|
|
|
|
2026-07-27 00:34:59 +02:00
|
|
|
# Additional Electrum servers to fall back to, comma-separated. Each entry is
|
|
|
|
|
# `host:port` (TLS, the normal case) or `host:port:notls`. The listener rotates
|
|
|
|
|
# over the primary above plus these, so one unreachable server costs a single
|
|
|
|
|
# reconnect attempt instead of an outage — every deposit credit, broadcast and
|
|
|
|
|
# confirmation goes through this one connection, which makes a single server the
|
|
|
|
|
# platform's biggest single point of failure. A typo here fails at startup rather
|
|
|
|
|
# than during the outage when the fallback is what you need.
|
|
|
|
|
# Example: ELECTRUM_FALLBACK_SERVERS=node2.example.net:50002,node3.example.net:50001:notls
|
|
|
|
|
ELECTRUM_FALLBACK_SERVERS=
|
|
|
|
|
|
2026-07-21 10:25:23 +02:00
|
|
|
# Fernet key protecting the master xprv at rest. Generate with:
|
|
|
|
|
# python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
|
|
|
|
|
XPRV_ENCRYPTION_KEY=
|
|
|
|
|
|
|
|
|
|
# Random secret for JWT session signing. Generate with:
|
|
|
|
|
# python -c "import secrets; print(secrets.token_urlsafe(32))"
|
|
|
|
|
JWT_SECRET=
|
|
|
|
|
|
|
|
|
|
# Bearer token required on the admin endpoints (X-Admin-Token header). Generate with:
|
|
|
|
|
# python -c "import secrets; print(secrets.token_urlsafe(32))"
|
|
|
|
|
ADMIN_TOKEN=
|
|
|
|
|
|
2026-07-21 15:05:40 +02:00
|
|
|
# Every business/round parameter (bet amount, round duration/cooldown, min
|
|
|
|
|
# amount, fee rate, RBF timeout, fee address) is configured live from the
|
|
|
|
|
# admin panel (/admin) instead of here — see docs/guida-admin.md.
|