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.
|
2026-07-27 08:21:12 +02:00
|
|
|
# These are the mainnet bootstrap servers from the PalladiumWallet repo
|
|
|
|
|
# (src/Core/Chain/ChainProfiles.cs, ChainProfiles.Mainnet.BootstrapServers) — the
|
|
|
|
|
# same ones the reference wallet falls back to:
|
|
|
|
|
# Example: ELECTRUM_FALLBACK_SERVERS=173.212.224.67:50002,144.91.120.225:50002,66.94.115.80:50002,89.117.149.130:50002
|
2026-07-27 00:34:59 +02:00
|
|
|
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.
|