jmcore.settings
jmcore.settings
Unified settings management for JoinMarket components.
This module provides a centralized configuration system using pydantic-settings that supports: 1. TOML configuration file (~/.joinmarket-ng/config.toml) 2. Environment variables 3. CLI arguments (via typer, handled by components)
Priority (highest to lowest): 1. CLI arguments 2. Environment variables 3. Config file 4. Default values
The config file is auto-generated on first run with all settings commented out, allowing users to selectively override only the settings they want to change. This approach facilitates software updates since unchanged defaults can be updated without user intervention.
Usage: from jmcore.settings import get_settings, JoinMarketSettings
# Get settings (loads from all sources with proper priority)
settings = get_settings()
# Access common settings
print(settings.tor.socks_host)
print(settings.bitcoin.rpc_url)
Environment Variable Naming: - Use uppercase with double underscore for nested settings - Examples: TOR__SOCKS_HOST, BITCOIN__RPC_URL, MAKER__MIN_SIZE - Maps to TOML sections: TOR__SOCKS_HOST -> [tor] socks_host
Attributes
DEFAULT_DIRECTORY_SERVERS: dict[str, list[str]] = {'mainnet': DIRECTORY_NODES_MAINNET, 'signet': DIRECTORY_NODES_SIGNET, 'testnet': DIRECTORY_NODES_TESTNET, 'regtest': []}
module-attribute
__all__ = ['JoinMarketSettings', 'TorSettings', 'BitcoinSettings', 'NetworkSettings', 'WalletSettings', 'NotificationSettings', 'MakerSettings', 'TakerSettings', 'DirectoryServerSettings', 'OrderbookWatcherSettings', 'LoggingSettings', 'get_settings', 'reset_settings', 'get_config_path', 'generate_config_template', 'ensure_config_file', 'config_diff', 'migrate_config', 'DEFAULT_DIRECTORY_SERVERS']
module-attribute
Classes
BitcoinSettings
Bases: BaseModel
Bitcoin backend configuration.
Source code in jmcore/src/jmcore/settings.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | |
Attributes
backend_type: str = Field(default='descriptor_wallet', description='Backend type: descriptor_wallet or neutrino')
class-attribute
instance-attribute
descriptor_wallet_name: str = Field(default='jm_descriptor_wallet', description='Name of the descriptor wallet to use in Bitcoin Core')
class-attribute
instance-attribute
neutrino_add_peers: list[str] = Field(default_factory=list, description='Preferred peer addresses for neutrino (host:port) while still allowing DNS/discovery peers. Only takes effect when JoinMarket manages the neutrino process (e.g., flatpak deployment). When neutrino-api runs as a standalone service, configure peers directly via its ADD_PEERS env var or --addpeer flag.')
class-attribute
instance-attribute
neutrino_auth_token: str | None = Field(default=None, description="API bearer token for neutrino-api authentication. Sent as 'Authorization: Bearer <token>' on every request. Generated automatically by neutrino-api on first start and stored in its data directory as 'auth_token'.")
class-attribute
instance-attribute
neutrino_auth_token_file: str | None = Field(default='neutrino/auth_token', description="Path to a file containing the neutrino-api auth token. If set and neutrino_auth_token is not provided, the token is read from this file at startup. Relative paths are resolved against the data directory. Defaults to 'neutrino/auth_token'; missing files are ignored. Set to an empty string to disable.")
class-attribute
instance-attribute
neutrino_clearnet_initial_sync: bool = Field(default=True, description='Sync block headers over clearnet before switching to Tor. Headers are public deterministic data identical for all nodes, so downloading them over clearnet does not reveal watched addresses. Typically around 2x faster than doing the full initial header sync via Tor.')
class-attribute
instance-attribute
neutrino_include_mempool: bool = Field(default=True, description='Include unconfirmed entries from the neutrino-api watched mempool tracker in UTXO listings, and overlay mempool spends on single-UTXO checks. Has no effect when the server does not expose the tracker (older neutrino-api or operator-disabled). Set to false for chain-only behaviour.')
class-attribute
instance-attribute
neutrino_prefetch_filters: bool = Field(default=True, description='Enable background prefetch of compact block filters. Enabled by default because jm-wallet info scans these filters anyway, so prefetching saves time on the initial scan. With the default lookback of ~2 years, this takes ~3 hours on clearnet and ~3GB disk on mainnet. Disable to fetch filters on-demand only. When false, neutrino_prefetch_lookback_blocks is ignored.')
class-attribute
instance-attribute
neutrino_prefetch_lookback_blocks: int = Field(default=105120, description='When neutrino_prefetch_filters is true, only prefetch filters for this many recent blocks (~2 years at 105120 blocks). Set to 0 to prefetch all filters from genesis. Ignored when neutrino_prefetch_filters is false.')
class-attribute
instance-attribute
neutrino_scan_lookback_blocks: int = Field(default=105120, description='Number of blocks to look back from tip for wallet rescans when no explicit scan_start_height is set. Default ~2 years (105120 blocks).')
class-attribute
instance-attribute
neutrino_tls_cert: str | None = Field(default='neutrino/tls.cert', description='Path to neutrino-api TLS certificate for HTTPS verification. When the file exists, the neutrino backend pins it. When it is missing but the server is HTTPS, the backend fetches and pins the certificate on first use (trust-on-first-use) and writes it here. Relative paths are resolved against the data directory. Set to an empty string to disable certificate pinning.')
class-attribute
instance-attribute
neutrino_url: str = Field(default='http://127.0.0.1:8334', description='Neutrino REST API URL (for neutrino backend)')
class-attribute
instance-attribute
rpc_cookie_file: str | None = Field(default=None, description='Path to Bitcoin Core .cookie file for cookie-based RPC authentication. When set, the cookie file is read at startup and rpc_user/rpc_password are populated automatically. This is mutually exclusive with setting rpc_user/rpc_password manually. The cookie file is typically located at ~/.bitcoin/.cookie (mainnet) or ~/.bitcoin/regtest/.cookie (regtest).')
class-attribute
instance-attribute
rpc_password: SecretStr = Field(default=(SecretStr('')), description='Bitcoin Core RPC password')
class-attribute
instance-attribute
rpc_url: str = Field(default='http://127.0.0.1:8332', description='Bitcoin Core RPC URL')
class-attribute
instance-attribute
rpc_user: str = Field(default='', description='Bitcoin Core RPC username')
class-attribute
instance-attribute
DirectoryServerSettings
Bases: BaseModel
Directory server specific settings.
Source code in jmcore/src/jmcore/settings.py
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | |
Attributes
broadcast_batch_size: int = Field(default=50, ge=1, description='Batch size for concurrent broadcasts')
class-attribute
instance-attribute
health_check_host: str = Field(default='127.0.0.1', description='Host for health check endpoint')
class-attribute
instance-attribute
health_check_port: int = Field(default=8080, ge=0, le=65535, description='Port for health check endpoint (0 = let OS assign)')
class-attribute
instance-attribute
heartbeat_hard_evict: float = Field(default=1500.0, gt=0.0, description='Seconds of inactivity before unconditional eviction (default 1500 = 25 min)')
class-attribute
instance-attribute
heartbeat_idle_threshold: float = Field(default=600.0, gt=0.0, description='Seconds of inactivity before probing a peer (default 600 = 10 min)')
class-attribute
instance-attribute
heartbeat_pong_wait: float = Field(default=30.0, gt=0.0, description='Seconds to wait for PONG after sending PING (default 30)')
class-attribute
instance-attribute
heartbeat_sweep_interval: float = Field(default=60.0, gt=0.0, description='Seconds between heartbeat sweep cycles (default 60)')
class-attribute
instance-attribute
host: str = Field(default='127.0.0.1', description='Host address to bind to')
class-attribute
instance-attribute
max_json_nesting_depth: int = Field(default=10, ge=1, description='Maximum nesting depth for JSON parsing')
class-attribute
instance-attribute
max_line_length: int = Field(default=65536, ge=1024, description='Maximum JSON-line message length (64KB default)')
class-attribute
instance-attribute
max_message_size: int = Field(default=2097152, ge=1024, description='Maximum message size in bytes (2MB default)')
class-attribute
instance-attribute
max_peers: int = Field(default=10000, ge=1, description='Maximum number of connected peers')
class-attribute
instance-attribute
message_burst_limit: int = Field(default=1000, ge=1, description='Maximum burst size')
class-attribute
instance-attribute
message_rate_limit: int = Field(default=500, ge=1, description='Messages per second (sustained)')
class-attribute
instance-attribute
motd: str = Field(default='JoinMarket NG Directory Server https://github.com/joinmarket-ng/joinmarket-ng/', description='Message of the day sent to clients')
class-attribute
instance-attribute
port: int = Field(default=5222, ge=0, le=65535, description='Port to listen on (0 = let OS assign)')
class-attribute
instance-attribute
rate_limit_disconnect_threshold: int = Field(default=0, ge=0, description='Disconnect after N rate limit violations (0 = never disconnect)')
class-attribute
instance-attribute
JoinMarketSettings
Bases: BaseSettings
Main JoinMarket settings class.
Loads configuration from multiple sources with the following priority: 1. CLI arguments (not handled here, passed to component init) 2. Environment variables 3. TOML config file (~/.joinmarket-ng/config.toml) 4. Default values
Source code in jmcore/src/jmcore/settings.py
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 | |
Attributes
bitcoin: BitcoinSettings = Field(default_factory=BitcoinSettings)
class-attribute
instance-attribute
data_dir: Path | None = Field(default=None, description='Data directory (defaults to ~/.joinmarket-ng)')
class-attribute
instance-attribute
directory_server: DirectoryServerSettings = Field(default_factory=DirectoryServerSettings)
class-attribute
instance-attribute
logging: LoggingSettings = Field(default_factory=LoggingSettings)
class-attribute
instance-attribute
maker: MakerSettings = Field(default_factory=MakerSettings)
class-attribute
instance-attribute
model_config = SettingsConfigDict(env_prefix='', env_nested_delimiter='__', case_sensitive=False, extra='ignore')
class-attribute
instance-attribute
network_config: NetworkSettings = Field(default_factory=NetworkSettings)
class-attribute
instance-attribute
notifications: NotificationSettings = Field(default_factory=NotificationSettings)
class-attribute
instance-attribute
orderbook_watcher: OrderbookWatcherSettings = Field(default_factory=OrderbookWatcherSettings)
class-attribute
instance-attribute
taker: TakerSettings = Field(default_factory=TakerSettings)
class-attribute
instance-attribute
tor: TorSettings = Field(default_factory=TorSettings)
class-attribute
instance-attribute
tumbler: TumblerSettings = Field(default_factory=TumblerSettings)
class-attribute
instance-attribute
wallet: WalletSettings = Field(default_factory=WalletSettings)
class-attribute
instance-attribute
Functions
get_data_dir() -> Path
Get the data directory, using default if not set.
Source code in jmcore/src/jmcore/settings.py
1196 1197 1198 1199 1200 | |
get_directory_servers() -> list[str]
Get directory servers, using network defaults if not set.
Source code in jmcore/src/jmcore/settings.py
1202 1203 1204 1205 1206 1207 | |
get_neutrino_add_peers() -> list[str]
Get the configured neutrino add peers.
Source code in jmcore/src/jmcore/settings.py
1209 1210 1211 | |
settings_customise_sources(settings_cls: type[BaseSettings], init_settings: PydanticBaseSettingsSource, env_settings: PydanticBaseSettingsSource, dotenv_settings: PydanticBaseSettingsSource, file_secret_settings: PydanticBaseSettingsSource) -> tuple[PydanticBaseSettingsSource, ...]
classmethod
Customize settings sources and their priority.
Priority (highest to lowest): 1. init_settings (CLI arguments passed to constructor) 2. env_settings (environment variables with __ delimiter) 3. toml_settings (config.toml file) 4. defaults (in field definitions)
Source code in jmcore/src/jmcore/settings.py
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 | |
LoggingSettings
Bases: BaseModel
Logging configuration.
Source code in jmcore/src/jmcore/settings.py
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 | |
Attributes
level: str = Field(default='INFO', description='Log level: TRACE, DEBUG, INFO, WARNING, ERROR')
class-attribute
instance-attribute
sensitive: bool = Field(default=False, description='Enable sensitive logging (mnemonics, keys)')
class-attribute
instance-attribute
MakerSettings
Bases: BaseModel
Maker-specific settings.
Source code in jmcore/src/jmcore/settings.py
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | |
Attributes
allow_mixdepth_zero_merge: bool = Field(default=False, description='Disable the mixdepth 0 single-UTXO restriction (experienced makers only, reduces privacy)')
class-attribute
instance-attribute
cj_fee_absolute: int = Field(default=500, ge=0, description='Absolute CoinJoin fee in satoshis')
class-attribute
instance-attribute
cj_fee_relative: str = Field(default='0.00002', description='Relative CoinJoin fee. Default 0.00002 (0.002%) matches the upstream JoinMarket reference.')
class-attribute
instance-attribute
cjfee_factor: float = Field(default=0.1, ge=0.0, description='Randomization factor applied to the CoinJoin fee on each offer announcement. The advertised fee is sampled from [cjfee*(1-f), cjfee*(1+f)]. Default 0.1 matches the upstream JoinMarket reference (yg-privacyenhanced).')
class-attribute
instance-attribute
merge_algorithm: str = Field(default='default', description='UTXO selection: default, gradual, greedy, random')
class-attribute
instance-attribute
message_burst_limit: int = Field(default=100, ge=1, description='Maximum burst messages per peer')
class-attribute
instance-attribute
message_rate_limit: int = Field(default=10, ge=1, description='Messages per second per peer (sustained)')
class-attribute
instance-attribute
min_confirmations: int = Field(default=0, ge=0, description='Minimum confirmations for maker UTXOs offered into coinjoins. Default 0 lets makers offer unconfirmed (mempool) UTXOs, which increases liquidity and is safe in practice: takers still enforce taker_utxo_age (default 5) on the separate PoDLE commitment UTXO, so a maker cannot grief by rotating identity via 0-conf coins. Set to >=1 to require chain confirmation; be aware this trades RBF/reorg/eviction safety against liquidity.')
class-attribute
instance-attribute
min_size: int = Field(default=100000, ge=0, description='Minimum CoinJoin amount in satoshis. Default 100_000 matches the upstream JoinMarket reference (avoids fingerprinting jm-ng makers via different defaults -- see issue #468).')
class-attribute
instance-attribute
offer_reannounce_delay_max: int = Field(default=600, ge=0, description='Maximum random delay in seconds before re-announcing offers after a balance change (0 = immediate, default: 600s = 10 minutes). Prevents observers from correlating block confirmations with offer updates.')
class-attribute
instance-attribute
offer_type: str = Field(default='sw0reloffer', description='Offer type: sw0reloffer (relative) or sw0absoffer (absolute)')
class-attribute
instance-attribute
onion_serving_host: str = Field(default='127.0.0.1', description='Bind address for incoming connections')
class-attribute
instance-attribute
onion_serving_port: int = Field(default=5222, ge=0, le=65535, description='Port for incoming onion connections')
class-attribute
instance-attribute
pending_tx_abandon_hours: int = Field(default=72, ge=1, le=8760, description='Hours after which a broadcast but unconfirmed transaction is marked as abandoned and removed from the pending-monitoring list. Bitcoin transactions not confirmed within ~3 days are typically dropped from mempools.')
class-attribute
instance-attribute
pending_tx_timeout_min: int = Field(default=60, ge=10, le=1440, description='Minutes before marking unbroadcast CoinJoins as failed')
class-attribute
instance-attribute
rescan_interval_sec: int = Field(default=600, ge=60, description='Interval for periodic wallet rescans')
class-attribute
instance-attribute
session_timeout_sec: int = Field(default=300, ge=60, description='Maximum time for a CoinJoin session')
class-attribute
instance-attribute
size_factor: float = Field(default=0.1, ge=0.0, description='Randomization factor applied to minsize and maxsize on each offer announcement. Default 0.1 matches the upstream JoinMarket reference.')
class-attribute
instance-attribute
tx_fee_contribution: int = Field(default=0, ge=0, description='Transaction fee contribution in satoshis')
class-attribute
instance-attribute
txfee_contribution_factor: float = Field(default=0.3, ge=0.0, description='Randomization factor applied to the tx fee contribution on each offer announcement. Default 0.3 matches the upstream JoinMarket reference.')
class-attribute
instance-attribute
Functions
normalize_cj_fee_relative(v: str | float | int) -> str
classmethod
Normalize cj_fee_relative to avoid scientific notation.
Pydantic may coerce float values (from env vars, TOML, or JSON) to strings, which can result in scientific notation for small values (e.g., 1e-05). The JoinMarket protocol expects decimal notation (e.g., 0.00001).
Source code in jmcore/src/jmcore/settings.py
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | |
NetworkSettings
Bases: BaseModel
Network configuration.
Source code in jmcore/src/jmcore/settings.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
Attributes
bitcoin_network: NetworkType | None = Field(default=None, description='Bitcoin network for address generation (defaults to network)')
class-attribute
instance-attribute
directory_servers: list[str] = Field(default_factory=list, description='Directory server addresses (host:port). Uses defaults if empty.')
class-attribute
instance-attribute
network: NetworkType = Field(default=(NetworkType.MAINNET), description='JoinMarket protocol network (mainnet, testnet, signet, regtest)')
class-attribute
instance-attribute
Functions
parse_directory_servers(v: Any) -> Any
classmethod
Accept JSON arrays, comma-separated strings, or plain single values.
pydantic-settings passes list[str] env vars through json.loads(), which requires JSON format. This validator also accepts plain comma-separated strings so that e.g. NETWORK_CONFIG__DIRECTORY_SERVERS=host:port works.
Source code in jmcore/src/jmcore/settings.py
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
NotificationSettings
Bases: BaseModel
Notification system configuration.
Source code in jmcore/src/jmcore/settings.py
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |
Attributes
check_for_updates: bool = Field(default=False, description='Check GitHub for new releases and include version info in summary notifications. PRIVACY WARNING: This polls the GitHub API (api.github.com) each summary interval. The request is routed through Tor when use_tor is enabled, but GitHub will still see the Tor exit node IP. Opt-in only.')
class-attribute
instance-attribute
component_name: str = Field(default='', description="Component name in notification titles (e.g., 'Maker', 'Taker'). Usually set programmatically by each component.")
class-attribute
instance-attribute
enabled: bool = Field(default=False, description='Enable notifications (requires urls to be set)')
class-attribute
instance-attribute
include_amounts: bool = Field(default=True, description='Include amounts in notifications')
class-attribute
instance-attribute
include_nick: bool = Field(default=True, description='Include peer nicks in notifications')
class-attribute
instance-attribute
include_txids: bool = Field(default=False, description='Include transaction IDs in notifications (privacy risk)')
class-attribute
instance-attribute
mempool_url: str = Field(default='', description="Base URL of a mempool/block explorer. When set (and include_txids is enabled), CoinJoin notifications render the full txid as a clickable link '<mempool_url>/tx/<txid>' instead of a bare id. Example: 'https://mempool.space' (mainnet) or 'https://mempool.space/signet'.")
class-attribute
instance-attribute
notify_all_disconnect: bool = Field(default=True, description='Notify when ALL directory servers are disconnected (critical)')
class-attribute
instance-attribute
notify_coinjoin_complete: bool = Field(default=True, description='Notify on CoinJoin complete')
class-attribute
instance-attribute
notify_coinjoin_failed: bool = Field(default=True, description='Notify on CoinJoin failure')
class-attribute
instance-attribute
notify_coinjoin_start: bool = Field(default=True, description='Notify on CoinJoin start')
class-attribute
instance-attribute
notify_confirmed: bool = Field(default=True, description='Notify on confirmation')
class-attribute
instance-attribute
notify_disconnect: bool = Field(default=False, description='Notify on individual directory server disconnect/reconnect (noisy)')
class-attribute
instance-attribute
notify_fill: bool = Field(default=True, description='Notify on !fill requests')
class-attribute
instance-attribute
notify_mempool: bool = Field(default=True, description='Notify on mempool detection')
class-attribute
instance-attribute
notify_nick_change: bool = Field(default=True, description='Notify on nick change')
class-attribute
instance-attribute
notify_peer_events: bool = Field(default=False, description='Notify on peer connect/disconnect')
class-attribute
instance-attribute
notify_rate_limit: bool = Field(default=True, description='Notify on rate limit bans')
class-attribute
instance-attribute
notify_rejection: bool = Field(default=True, description='Notify on rejections')
class-attribute
instance-attribute
notify_signing: bool = Field(default=True, description='Notify on transaction signing')
class-attribute
instance-attribute
notify_startup: bool = Field(default=True, description='Notify on component startup')
class-attribute
instance-attribute
notify_summary: bool = Field(default=True, description='Send periodic summary notifications with CoinJoin stats')
class-attribute
instance-attribute
notify_summary_balance: bool = Field(default=False, description='Include total wallet balance and UTXO count in periodic summary notifications. Disabled by default for privacy.')
class-attribute
instance-attribute
retry_base_delay: float = Field(default=5.0, ge=1.0, le=60.0, description='Base delay in seconds before the first retry (1-60). Subsequent retries double this delay (exponential backoff).')
class-attribute
instance-attribute
retry_enabled: bool = Field(default=True, description='Retry failed notifications in the background with exponential backoff. Recommended when routing through Tor where transient failures are common.')
class-attribute
instance-attribute
retry_max_attempts: int = Field(default=3, ge=1, le=10, description='Maximum number of retry attempts for a failed notification (1-10)')
class-attribute
instance-attribute
summary_interval_hours: int = Field(default=24, ge=1, le=168, description='Interval in hours between summary notifications (1-168). Common values: 24 (daily), 168 (weekly)')
class-attribute
instance-attribute
title_prefix: str = Field(default='JoinMarket NG', description='Prefix for notification titles')
class-attribute
instance-attribute
urls: list[str] = Field(default_factory=list, description='Apprise notification URLs (e.g., ["tgram://bottoken/ChatID", "gotify://hostname/token"])')
class-attribute
instance-attribute
use_tor: bool = Field(default=True, description='Route notifications through Tor SOCKS proxy')
class-attribute
instance-attribute
OrderbookWatcherSettings
Bases: BaseModel
Orderbook watcher specific settings.
Source code in jmcore/src/jmcore/settings.py
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 | |
Attributes
connection_timeout: float = Field(default=120.0, gt=0.0, description='Timeout in seconds for Tor SOCKS5 connections. Covers TCP handshake, SOCKS5 negotiation, Tor circuit building, and PoW solving.')
class-attribute
instance-attribute
http_host: str = Field(default='0.0.0.0', description='HTTP server bind address')
class-attribute
instance-attribute
http_port: int = Field(default=8000, ge=1, le=65535, description='HTTP server port')
class-attribute
instance-attribute
max_message_size: int = Field(default=2097152, ge=1024, description='Maximum message size in bytes (2MB default)')
class-attribute
instance-attribute
mempool_api_url: str = Field(default='', description='Mempool API URL for transaction lookups')
class-attribute
instance-attribute
mempool_web_url: str | None = Field(default=None, description='Mempool web URL for human-readable links')
class-attribute
instance-attribute
update_interval: int = Field(default=60, ge=10, description='Update interval in seconds')
class-attribute
instance-attribute
uptime_grace_period: int = Field(default=60, ge=0, description='Grace period before tracking uptime')
class-attribute
instance-attribute
TakerSettings
Bases: BaseModel
Taker-specific settings.
Source code in jmcore/src/jmcore/settings.py
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 | |
Attributes
bond_value_exponent: float = Field(default=1.3, gt=0.0, description='Exponent for fidelity bond value calculation')
class-attribute
instance-attribute
bondless_makers_allowance: float = Field(default=0.2, ge=0.0, le=1.0, description='Per-slot probability of selecting a bondless (zero-fee) maker')
class-attribute
instance-attribute
bondless_require_zero_fee: bool = Field(default=True, description='Require zero absolute fee for bondless maker spots')
class-attribute
instance-attribute
broadcast_peer_count: int = Field(default=3, ge=1, description='Number of peers for multiple-peers broadcast')
class-attribute
instance-attribute
counterparty_count: int | None = Field(default=None, ge=1, le=20, description='Number of makers to select for CoinJoin. When unset (the default), the taker picks a random value in [8, 10] for each CoinJoin. This matches the upstream JoinMarket sendpayment behaviour and prevents fingerprinting jm-ng takers via a fixed maker count.')
class-attribute
instance-attribute
fee_block_target: int | None = Field(default=None, ge=1, le=1008, description='Target blocks for fee estimation (mutually exclusive with fee_rate)')
class-attribute
instance-attribute
fee_rate: float | None = Field(default=None, gt=0.0, description='Manual fee rate in sat/vB (mutually exclusive with fee_block_target)')
class-attribute
instance-attribute
maker_timeout_sec: int = Field(default=60, ge=10, description='Timeout for maker responses')
class-attribute
instance-attribute
max_cj_fee_abs: int = Field(default=500, ge=0, description='Maximum absolute CoinJoin fee in satoshis')
class-attribute
instance-attribute
max_cj_fee_rel: str = Field(default='0.001', description='Maximum relative CoinJoin fee (0.001 = 0.1%)')
class-attribute
instance-attribute
minimum_makers: int = Field(default=4, ge=1, description='Minimum number of makers required for a CoinJoin. Default 4 matches the upstream JoinMarket reference (POLICY.n).')
class-attribute
instance-attribute
order_wait_time: float = Field(default=120.0, ge=1.0, description='Maximum seconds to wait for orderbook responses (hard ceiling). Empirical testing shows 95th percentile response time over Tor is ~101s. Default 120s provides a 20% buffer.')
class-attribute
instance-attribute
orderbook_min_wait: float = Field(default=30.0, ge=0.0, description='Minimum seconds to listen before allowing early exit. Prevents cutting off slow Tor responses during the initial burst.')
class-attribute
instance-attribute
orderbook_quiet_period: float = Field(default=15.0, ge=1.0, description='Seconds without new offers before exiting early. After orderbook_min_wait, if no new offers arrive for this long, all responsive makers are assumed to have replied.')
class-attribute
instance-attribute
pending_tx_abandon_hours: int = Field(default=24, ge=1, le=336, description="Hours after which a broadcast but unconfirmed CoinJoin transaction is marked as abandoned and removed from the pending-monitoring list. Makers can double-spend their inputs at any time, so a CoinJoin that is not confirmed within a few hours is unlikely to ever confirm. Default 24 h; Bitcoin's default mempool expiry is 336 h (14 days).")
class-attribute
instance-attribute
rescan_interval_sec: int = Field(default=600, ge=60, description='Interval for periodic wallet rescans')
class-attribute
instance-attribute
taker_utxo_age: int = Field(default=5, ge=1, description='Minimum confirmations required on a UTXO before the taker may use it as a PoDLE commitment input. Reference default: 5.')
class-attribute
instance-attribute
taker_utxo_amtpercent: int = Field(default=20, ge=1, le=100, description='Minimum UTXO value as a percentage of the CoinJoin amount for PoDLE commitments (reference default: 20).')
class-attribute
instance-attribute
taker_utxo_retries: int = Field(default=3, ge=1, le=10, description='Maximum PoDLE index retries per UTXO (reference default: 3)')
class-attribute
instance-attribute
tx_broadcast: str = Field(default='random-peer', description='Broadcast policy: self, random-peer, multiple-peers, not-self')
class-attribute
instance-attribute
tx_fee_factor: float = Field(default=0.2, ge=0.0, description='Fee randomization factor. 0 disables randomization; 0.2 randomizes up to 20% above the base rate.')
class-attribute
instance-attribute
Functions
normalize_max_cj_fee_rel(v: str | float | int) -> str
classmethod
Normalize to avoid scientific notation (same as MakerSettings.cj_fee_relative).
Source code in jmcore/src/jmcore/settings.py
789 790 791 792 793 794 795 796 797 798 799 800 | |
TomlConfigSettingsSource
Bases: PydanticBaseSettingsSource
Custom settings source that reads from a TOML config file.
The config file is expected at ~/.joinmarket-ng/config.toml or $JOINMARKET_DATA_DIR/config.toml if the environment variable is set.
Source code in jmcore/src/jmcore/settings.py
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 | |
Functions
__call__() -> dict[str, Any]
Return all config values as a flat dict for pydantic-settings.
Source code in jmcore/src/jmcore/settings.py
1278 1279 1280 | |
__init__(settings_cls: type[BaseSettings]) -> None
Source code in jmcore/src/jmcore/settings.py
1222 1223 1224 1225 | |
get_field_value(field: Any, field_name: str) -> tuple[Any, str, bool]
Get field value from TOML config.
Source code in jmcore/src/jmcore/settings.py
1272 1273 1274 1275 1276 | |
TorSettings
Bases: BaseModel
Tor proxy and control port configuration.
Source code in jmcore/src/jmcore/settings.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |
Attributes
connection_timeout: float = Field(default=120.0, gt=0.0, description="Timeout in seconds for Tor SOCKS5 connections. Covers TCP handshake, SOCKS5 negotiation, Tor circuit building, and PoW solving. Default 120s matches Tor's internal circuit timeout.")
class-attribute
instance-attribute
control_enabled: bool = Field(default=True, description='Enable Tor control port integration for ephemeral hidden services')
class-attribute
instance-attribute
control_host: str = Field(default='127.0.0.1', description='Tor control port host')
class-attribute
instance-attribute
control_port: int = Field(default=9051, ge=1, le=65535, description='Tor control port')
class-attribute
instance-attribute
cookie_path: str | None = Field(default=None, description='Path to Tor cookie auth file')
class-attribute
instance-attribute
password: SecretStr | None = Field(default=None, description='Tor control port password (use cookie auth instead if possible)')
class-attribute
instance-attribute
socks_host: str = Field(default='127.0.0.1', description='Tor SOCKS5 proxy host')
class-attribute
instance-attribute
socks_port: int = Field(default=9050, ge=1, le=65535, description='Tor SOCKS5 proxy port')
class-attribute
instance-attribute
stream_isolation: bool = Field(default=True, description='Use SOCKS5 authentication to isolate different connection types onto separate Tor circuits. This prevents traffic correlation between e.g. directory connections, peer connections, and notification traffic. Requires IsolateSOCKSAuth on the Tor SocksPort (enabled by default).')
class-attribute
instance-attribute
target_host: str = Field(default='127.0.0.1', description='Target host for Tor hidden service (usually container name in Docker)')
class-attribute
instance-attribute
TumblerSettings
Bases: BaseModel
Tumbler runner timing knobs.
These mirror :class:tumbler.runner.RunnerContext fields that govern
inter-phase pacing. Production defaults are intentionally long so the
runner waits patiently for blockchain confirmations and UTXO age between
CoinJoin phases. Test environments should shorten these via env vars
(TUMBLER__RETRY_DELAY_SECONDS, TUMBLER__CONFIRMATION_POLL_INTERVAL,
TUMBLER__MIN_CONFIRMATIONS_BETWEEN_PHASES) so e2e suites observe
retries within a reasonable wall-clock budget.
Source code in jmcore/src/jmcore/settings.py
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 | |
Attributes
confirmation_poll_interval: float = Field(default=30.0, gt=0.0, description='Polling interval (seconds) for the confirmation gate.')
class-attribute
instance-attribute
min_confirmations_between_phases: int = Field(default=6, ge=0, description='Minimum confirmations on a CoinJoin output before the next tumbler phase may spend it. Set to 0 to disable the gate.')
class-attribute
instance-attribute
retry_delay_seconds: float = Field(default=1800.0, ge=0.0, description='Base delay (seconds) before retrying a failed taker phase. Applied with linear backoff: ``retry_delay_seconds * attempt_count``. Set to 0 to retry immediately.')
class-attribute
instance-attribute
WalletSettings
Bases: BaseModel
Wallet configuration.
Source code in jmcore/src/jmcore/settings.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | |
Attributes
background_full_rescan: bool = Field(default=True, description='Run full blockchain rescan in background')
class-attribute
instance-attribute
bip39_passphrase: SecretStr | None = Field(default=None, description='BIP39 passphrase (13th/25th word). For security, prefer BIP39_PASSPHRASE env var.')
class-attribute
instance-attribute
default_fee_block_target: int = Field(default=3, ge=1, le=1008, description='Default block target for fee estimation in wallet transactions')
class-attribute
instance-attribute
dust_threshold: int = Field(default=27300, ge=0, description='Dust threshold in satoshis')
class-attribute
instance-attribute
gap_limit: int = Field(default=20, ge=6, description='BIP44 gap limit: the number of consecutive empty trailing addresses kept beyond the highest used one (Electrum convention is 20). Also used as the buffer when auto-expanding the Bitcoin Core descriptor range as the wallet grows. Distinct from ``scan_range`` (the initial lookahead window). See docs/technical/wallet-scanning.md.')
class-attribute
instance-attribute
max_fee_rate_sat_vb: float = Field(default=1000.0, gt=0.0, description='Safety cap on the fee rate (sat/vB) used for any wallet-driven transaction (direct send and CoinJoin). Manual rates above this value, and backend fee estimates above this value, are rejected to prevent runaway-fee bugs and malicious or misconfigured fee oracles from draining the wallet.')
class-attribute
instance-attribute
mixdepth_count: int = Field(default=5, ge=1, le=10, description='Number of mixdepths (privacy compartments)')
class-attribute
instance-attribute
mnemonic_file: str | None = Field(default=None, description='Default path to mnemonic file')
class-attribute
instance-attribute
mnemonic_password: SecretStr | None = Field(default=None, description='Password for encrypted mnemonic file')
class-attribute
instance-attribute
scan_lookback_blocks: int = Field(default=52560, ge=0, description='Blocks to look back for smart scan (~1 year default)')
class-attribute
instance-attribute
scan_range: int = Field(default=1000, ge=100, le=1000000, description="Initial descriptor scan range: the max address index per branch imported into Bitcoin Core's descriptor wallet (default 1000, matching Core's keypool lookahead). It auto-expands as addresses are used. Capped at 1,000,000, which is Bitcoin Core's per-descriptor range limit (larger values are rejected with 'Range is too large'). To widen the range for an already-imported wallet (e.g. one migrated from legacy joinmarket-clientserver with deep addresses), run ``jm-wallet rescan --scan-depth N`` once. See docs/technical/wallet-scanning.md.")
class-attribute
instance-attribute
scan_start_height: int | None = Field(default=None, ge=0, description='Explicit start height for initial scan (overrides scan_lookback_blocks if set)')
class-attribute
instance-attribute
smart_scan: bool = Field(default=True, description='Use smart scan for fast startup')
class-attribute
instance-attribute
Functions
config_diff(config_path: Path, template_text: str | None = None) -> list[str]
Compare the user's config against the template and report differences.
This is a read-only operation -- the user's config file is never modified. Returns a list of new sections and keys that exist in the template but are missing from the user's config, so the caller can display them.
Args:
config_path: Path to the user's config.toml.
template_text: Template text to compare against. When None,
the bundled config.toml.template shipped with the package
is used.
Returns:
List of human-readable descriptions of missing items (empty if the
config is up to date). Each entry is either "section:<name>"
for a missing section or "key:<section>.<key>" for a missing
key within an existing section.
Source code in jmcore/src/jmcore/settings.py
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 | |
ensure_config_file(data_dir: Path | None = None) -> Path
Ensure the config file exists.
On first run the config file is created from the bundled template. Existing config files are never modified.
Args: data_dir: Optional data directory path. Uses default if not provided.
Returns: Path to the config file.
Source code in jmcore/src/jmcore/settings.py
1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 | |
generate_config_template() -> str
Generate a config file template with all settings commented out.
This allows users to see all available settings with their defaults and descriptions, while only uncommenting what they want to change.
Source code in jmcore/src/jmcore/settings.py
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 | |
get_config_path() -> Path
Get the path to the config file.
Source code in jmcore/src/jmcore/settings.py
1283 1284 1285 1286 1287 | |
get_settings(**overrides: Any) -> JoinMarketSettings
Get the JoinMarket settings instance.
On first call, loads settings from all sources. Subsequent calls return the cached instance unless reset_settings() is called.
Args: **overrides: Optional settings overrides (highest priority)
Returns: JoinMarketSettings instance
Source code in jmcore/src/jmcore/settings.py
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 | |
migrate_config(config_path: Path, template_text: str | None = None) -> list[str]
Create the config file from the template if it does not exist.
When the config file already exists, no modifications are made.
Use :func:config_diff to discover new settings that the user
may want to add manually.
Args:
config_path: Path to the user's config.toml.
template_text: Template text for fresh creation. When None,
the bundled config.toml.template shipped with the package
is used.
Returns: Empty list (kept for backward compatibility).
Source code in jmcore/src/jmcore/settings.py
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 | |
reset_settings() -> None
Reset the global settings instance (useful for testing).
Source code in jmcore/src/jmcore/settings.py
1642 1643 1644 1645 | |