jmwallet.wallet.display
jmwallet.wallet.display
Wallet address information and display helpers.
Provides methods for querying address status, finding unused addresses, and generating fidelity bond address summaries.
Attributes
Classes
WalletDisplayMixin
Mixin providing address info and display capabilities.
Expects the host class to provide the attributes and methods defined
on WalletService (utxo_cache, address_cache, addresses_with_history, etc.).
Source code in jmwallet/src/jmwallet/wallet/display.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 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 140 141 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 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 359 360 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 | |
Attributes
address_cache: dict[str, tuple[int, int, int]]
instance-attribute
addresses_with_history: set[str]
instance-attribute
backend: Any
instance-attribute
data_dir: Path | None
instance-attribute
fidelity_bond_locktime_cache: dict[str, int]
instance-attribute
root_path: str
instance-attribute
utxo_cache: dict[int, list[UTXOInfo]]
instance-attribute
wallet_fingerprint: str
instance-attribute
Functions
get_address(mixdepth: int, change: int, index: int) -> str
Source code in jmwallet/src/jmwallet/wallet/display.py
35 36 | |
get_address_info_for_mixdepth(mixdepth: int, change: int, gap_limit: int = 6, used_addresses: set[str] | None = None, history_addresses: dict[str, str] | None = None) -> list[AddressInfo]
Get detailed address information for a mixdepth branch.
This generates a list of AddressInfo objects for addresses in the specified mixdepth and branch (external or internal), up to the specified gap limit beyond the last used address.
Args: mixdepth: The mixdepth (account) number (0-4) change: Branch (0 for external/receive, 1 for internal/change) gap_limit: Number of empty addresses to show beyond last used used_addresses: Set of addresses that were used in CoinJoin history history_addresses: Dict mapping address -> status from history
Returns: List of AddressInfo objects for display
Source code in jmwallet/src/jmwallet/wallet/display.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 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 140 141 142 143 144 145 146 | |
get_fidelity_bond_addresses_info(max_gap: int = 6) -> list[AddressInfo]
Get information about fidelity bond addresses.
Args: max_gap: Maximum gap of empty addresses to show
Returns: List of AddressInfo for fidelity bond addresses
Source code in jmwallet/src/jmwallet/wallet/display.py
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 | |
get_next_address_index(mixdepth: int, change: int) -> int
Source code in jmwallet/src/jmwallet/wallet/display.py
41 42 | |
get_next_after_last_used_address(mixdepth: int, used_addresses: set[str] | None = None) -> tuple[str, int]
Get the next receive address after the last used one for a mixdepth.
This returns the address at (highest used index + 1). The highest used index is determined by checking blockchain history, UTXOs, and CoinJoin history. If no address has been used yet, returns index 0.
This is useful for wallet info display, showing the next address to use after the last one that was used in any way, ignoring any gaps in the sequence.
Args: mixdepth: The mixdepth (account) number used_addresses: Set of addresses that were used/flagged in CoinJoins
Returns: Tuple of (address, index)
Source code in jmwallet/src/jmwallet/wallet/display.py
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 | |
get_next_safe_deposit_address(mixdepth: int, used_addresses: set[str] | None = None, max_attempts: int = 100) -> tuple[str, int]
async
Async deposit-address picker with on-chain verification.
Wraps :meth:get_next_after_last_used_address with a backend
round-trip per candidate: each proposed address is checked via
:meth:BlockchainBackend.address_has_history (typically
getreceivedbyaddress on Bitcoin Core). If the backend
reports any prior funding the candidate is recorded as used
(so subsequent picks skip it) and we advance to the next
index.
This is the privacy-critical belt-and-suspenders that catches
the case where the in-memory addresses_with_history set is
incomplete (RPC truncation during sync, node crash mid-walk,
stale persisted state, or a wallet imported with no prior
sync at all). The sync-layer bulk enumeration remains the
fast common path; this method's per-address verification only
runs at the moment we are about to hand an address to the
user.
On backend RPC failure (address_has_history returns
None) we fall back to the synchronous picker's decision
rather than blocking indefinitely; this preserves availability
when bitcoind is unreachable, with the caveat that defense in
depth is reduced to whatever the persisted store and
blockchain-history set already know.
Source code in jmwallet/src/jmwallet/wallet/display.py
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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | |
get_next_unused_unflagged_address(mixdepth: int, used_addresses: set[str] | None = None) -> tuple[str, int]
Get the next unused and unflagged receive address for a mixdepth.
An address is considered "used" if it has blockchain history (received/spent funds). An address is considered "flagged" if it was shared with peers in a CoinJoin attempt (even if the transaction failed). These should not be reused for privacy.
This method starts from the next index after the highest used address (based on blockchain history, UTXOs, and CoinJoin history), ensuring we never reuse addresses that have been seen on-chain.
Args: mixdepth: The mixdepth (account) number used_addresses: Set of addresses that were used/flagged in CoinJoins
Returns: Tuple of (address, index)
Source code in jmwallet/src/jmwallet/wallet/display.py
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 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | |
get_receive_address(mixdepth: int, index: int) -> str
Source code in jmwallet/src/jmwallet/wallet/display.py
38 39 | |