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 316 317 318 319 320 321 322 323 324 325 | |
Attributes
backend_type: str = Field(default='descriptor_wallet', description='Backend type: descriptor_wallet or neutrino')
class-attribute
instance-attribute
fee_estimate_url: str | None = Field(default=None, description="External HTTP fee estimate source used when the backend cannot estimate fees itself (neutrino). Supports mempool.space recommended-fees, Esplora /fee-estimates, and LND fee.url JSON formats. Multiple comma-separated URLs are tried in order. Leave unset for the onion-first default fallback chain for the current network, fetched over Tor; disabled on regtest or when no Tor proxy is available. Set to 'off' to disable external fee estimation entirely. Resolved estimates remain subject to wallet.max_fee_rate_sat_vb.")
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
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 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 | |
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
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 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 | |
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
Methods:
get_data_dir() -> Path
Get the data directory, using default if not set.
Source code in jmcore/src/jmcore/settings.py
1363 1364 1365 1366 1367 | |
get_directory_servers() -> list[str]
Get directory servers, using network defaults if not set.
Source code in jmcore/src/jmcore/settings.py
1369 1370 1371 1372 1373 1374 | |
get_neutrino_add_peers() -> list[str]
Get the configured neutrino add peers.
Source code in jmcore/src/jmcore/settings.py
1376 1377 1378 | |
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
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 | |
LoggingSettings
Bases: BaseModel
Logging configuration.
Source code in jmcore/src/jmcore/settings.py
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 | |
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
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 740 741 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 | |
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%) is exactly the lowest fee-quantization quantum, so default makers sit on the grid and share a homogenized fee with every other default maker, maximizing the anonymity set (and matching the upstream JoinMarket reference). If you set a non-quantized value, enable randomization (cjfee_factor=0.1) so the exact fee is not a fingerprint.')
class-attribute
instance-attribute
cjfee_factor: float = Field(default=0.0, 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 (no randomization) keeps a default maker exactly on its quantization quantum so it blends with other default makers. Enable randomization (e.g. 0.1, the upstream yg-privacyenhanced value) only when you use a non-quantized fee.')
class-attribute
instance-attribute
directory_reconnect_interval: int = Field(default=300, ge=60, description='Interval in seconds between reconnection attempts for failed directories')
class-attribute
instance-attribute
directory_reconnect_max_retries: int = Field(default=0, ge=0, description='Maximum reconnection attempts per directory (0 = unlimited)')
class-attribute
instance-attribute
directory_startup_timeout: int = Field(default=120, ge=10, description='Seconds to keep retrying directory connections at startup before giving up and letting the background reconnect task take over')
class-attribute
instance-attribute
dual_offers: bool = Field(default=False, description='Advertise both a relative and an absolute fee offer simultaneously. Uses cj_fee_relative and cj_fee_absolute for the respective offer. The CLI flag --dual-offers overrides this setting.')
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_host: str | None = Field(default=None, description="Static hidden service address (e.g., 'mymaker...onion'). When not set, Tor control auto-generates one.")
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
orderbook_ban_duration: float = Field(default=3600.0, ge=60.0, description='Ban duration in seconds (default: 1 hour)')
class-attribute
instance-attribute
orderbook_rate_interval: float = Field(default=10.0, ge=1.0, description='Interval in seconds for orderbook rate limiting')
class-attribute
instance-attribute
orderbook_rate_limit: int = Field(default=1, ge=1, description='Maximum orderbook responses per peer per interval')
class-attribute
instance-attribute
orderbook_violation_ban_threshold: int = Field(default=100, ge=1, description='Ban peer after this many rate limit violations')
class-attribute
instance-attribute
orderbook_violation_severe_threshold: int = Field(default=50, ge=1, description='Severe backoff threshold (higher penalty)')
class-attribute
instance-attribute
orderbook_violation_warning_threshold: int = Field(default=10, ge=1, description='Start exponential backoff after this many violations')
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
Methods:
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
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 | |
NetworkSettings
Bases: BaseModel
Network configuration.
Source code in jmcore/src/jmcore/settings.py
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 359 360 361 362 363 364 365 366 367 368 | |
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
Methods:
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
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
NotificationSettings
Bases: BaseModel
Notification system configuration.
Source code in jmcore/src/jmcore/settings.py
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 572 573 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 | |
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
Methods:
parse_urls(v: Any) -> Any
classmethod
Accept a single URL string in addition to a list of URLs.
urls must be a TOML array (urls = ["tgram://bottoken/ChatID"]),
but users frequently write a bare scalar instead
(urls = "tgram://bottoken/ChatID"). Previously that raised a
confusing ValidationError that crashed the component at startup
(a systemd unit just reported status=1/FAILURE). Coerce a single
string (optionally comma-separated, or a JSON array) into a list so
the friendlier form keeps working, mirroring parse_directory_servers
and the comma-separated env handling in _CommaListEnvSettingsSource.
Source code in jmcore/src/jmcore/settings.py
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 | |
OrderbookWatcherSettings
Bases: BaseModel
Orderbook watcher specific settings.
Source code in jmcore/src/jmcore/settings.py
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 1212 1213 1214 1215 1216 | |
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_api_use_tor: bool = Field(default=True, description='Route mempool API requests through Tor SOCKS')
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
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 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 937 938 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 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 | |
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
Methods:
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
930 931 932 933 934 935 936 937 938 939 940 941 | |
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
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 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 | |
Methods:
__call__() -> dict[str, Any]
Return all config values as a flat dict for pydantic-settings.
Source code in jmcore/src/jmcore/settings.py
1450 1451 1452 | |
__init__(settings_cls: type[BaseSettings]) -> None
Source code in jmcore/src/jmcore/settings.py
1389 1390 1391 1392 | |
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
1444 1445 1446 1447 1448 | |
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
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 1072 1073 1074 1075 1076 1077 | |
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
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 452 453 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 | |
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
max_sats_freeze_reuse: int = Field(default=(-1), ge=(-1), description='Threshold (in satoshis) below which an incoming UTXO landing on a previously-used wallet address that is now empty is AUTOMATICALLY frozen, to defend against forced address-reuse (dust) attacks that try to coerce linkage via the common-input-ownership heuristic (https://en.bitcoin.it/wiki/Privacy#Forced_address_reuse). Only re-funding of an already-spent (empty) used address is frozen; coins arriving on an address that still holds funds are left spendable so they can be fully spent together. The default -1 freezes ALL such reuse UTXOs regardless of value; a positive N freezes only reuse UTXOs with value <= N sats; 0 disables auto-freezing. Frozen UTXOs can be released with ``jm-wallet unfreeze``.')
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
reconstruct_history: bool = Field(default=True, description='Automatically reconstruct CoinJoin/send/deposit history from on-chain data for wallets imported from seed (wallets with no recorded history). Reconstructed rows are tagged as on-chain guesses and never override protocol-time history. Disable to keep history.csv strictly protocol-recorded; `jm-wallet reconstruct-history` remains available for manual runs.')
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
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 | |
ensure_config_file(data_dir: Path | None = None, config_file: 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.
The config file location is resolved with this priority:
1. config_file argument (explicit override).
2. JOINMARKET_CONFIG_FILE environment variable (set e.g. by the
--config-file CLI flag) so config can live outside the data dir
for FHS-style deployments (issue #537).
3. <data_dir>/config.toml (the default, backwards-compatible behaviour).
Args:
data_dir: Optional data directory path. Uses default if not provided.
config_file: Optional explicit config file path that decouples the
config location from data_dir.
Returns: Path to the config file.
Source code in jmcore/src/jmcore/settings.py
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 | |
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
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 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 1562 1563 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 | |
get_config_path() -> Path
Get the path to the config file.
Resolution order (highest priority first):
1. JOINMARKET_CONFIG_FILE (explicit config file, decoupled from data dir)
2. $JOINMARKET_DATA_DIR/config.toml
3. ~/.joinmarket-ng/config.toml
~ is expanded so a configured tilde path never becomes a literal
./~ segment (see issue #536).
Source code in jmcore/src/jmcore/settings.py
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 | |
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
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 | |
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
1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 | |
reset_settings() -> None
Reset the global settings instance (useful for testing).
Source code in jmcore/src/jmcore/settings.py
1851 1852 1853 1854 | |