Skip to content

jmwalletd.routers.wallet_data

jmwalletd.routers.wallet_data

Wallet data endpoints: display, UTXOs, addresses, seed, freeze, config, rescan, sign.

Attributes

router = APIRouter() module-attribute

Classes

Functions:

config_get(walletname: str, body: ConfigGetRequest, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> ConfigGetResponse async

Read a config variable (in-memory override takes priority).

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.post("/wallet/{walletname}/configget", operation_id="configget")
async def config_get(
    walletname: str,
    body: ConfigGetRequest,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> ConfigGetResponse:
    """Read a config variable (in-memory override takes priority)."""
    section = body.section.upper()
    field_name = body.field.lower()

    # Check in-memory overrides first.
    if section in state.config_overrides and field_name in state.config_overrides[section]:
        return ConfigGetResponse(configvalue=state.config_overrides[section][field_name])

    # Fall back to the settings system.
    from jmcore.settings import get_settings

    try:
        settings = get_settings()

        # Special handling for POLICY fields that JAM requests.
        if section == "POLICY":
            if field_name in _POLICY_DEFAULTS:
                return ConfigGetResponse(configvalue=_POLICY_DEFAULTS[field_name])

            if field_name in _POLICY_FIELD_MAP:
                attr, real_field = _POLICY_FIELD_MAP[field_name]
                subsettings = getattr(settings, attr)
                value = getattr(subsettings, real_field)
                return ConfigGetResponse(configvalue=str(value))

        value = _get_setting_value(settings, section, field_name)
        return ConfigGetResponse(configvalue=str(value))
    except (AttributeError, KeyError) as exc:
        raise ConfigNotPresent(f"Config not found: [{section}] {field_name}") from exc

config_set(walletname: str, body: ConfigSetRequest, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> dict[str, str] async

Set a config variable (in-memory only, not persisted).

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
@router.post("/wallet/{walletname}/configset", operation_id="configsetting")
async def config_set(
    walletname: str,
    body: ConfigSetRequest,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> dict[str, str]:
    """Set a config variable (in-memory only, not persisted)."""
    section = body.section.upper()
    field_name = body.field.lower()

    if section not in state.config_overrides:
        state.config_overrides[section] = {}

    state.config_overrides[section][field_name] = body.value
    logger.info("Config override set: [{}] {} = {}", section, field_name, body.value)
    return {}

freeze_utxo(walletname: str, body: FreezeRequest, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> dict[str, str] async

Freeze or unfreeze a UTXO.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
@router.post("/wallet/{walletname}/freeze", operation_id="freeze")
async def freeze_utxo(
    walletname: str,
    body: FreezeRequest,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> dict[str, str]:
    """Freeze or unfreeze a UTXO."""
    if state.taker_running:
        raise ActionNotAllowed("Cannot freeze/unfreeze UTXOs while a coinjoin is in progress.")

    utxo_str = body.utxo_string
    _validate_outpoint_format(utxo_str)

    ws = state.wallet_service
    if body.freeze:
        ws.freeze_utxo(utxo_str)
    else:
        ws.unfreeze_utxo(utxo_str)

    return {}

freeze_utxos_batch(walletname: str, body: FreezeBatchRequest, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> dict[str, str] async

Freeze and/or unfreeze several UTXOs in one atomic request (issue #596).

Mixed directions are allowed in the same batch. Every entry is validated before anything is written; if any outpoint is malformed or repeated, the whole request is rejected and nothing on disk changes.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.post("/wallet/{walletname}/freeze-batch", operation_id="freezebatch")
async def freeze_utxos_batch(
    walletname: str,
    body: FreezeBatchRequest,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> dict[str, str]:
    """Freeze and/or unfreeze several UTXOs in one atomic request (issue #596).

    Mixed directions are allowed in the same batch. Every entry is validated
    before anything is written; if any outpoint is malformed or repeated, the
    whole request is rejected and nothing on disk changes.
    """
    if state.taker_running:
        raise ActionNotAllowed("Cannot freeze/unfreeze UTXOs while a coinjoin is in progress.")

    # Validate, dedupe, and canonicalize in one pass: normalizing here (rather
    # than deferring to the store) means the outpoint actually applied is the
    # same string the wallet's UTXO cache and metadata store already key on,
    # so a wrongly-cased or zero-padded request can't silently freeze nothing
    # while still reporting success.
    seen: set[tuple[str, int]] = set()
    normalized_entries: list[tuple[str, bool]] = []
    for entry in body.entries:
        txid, vout = _validate_and_normalize_outpoint(entry.utxo_string)
        if (txid, vout) in seen:
            raise InvalidRequestFormat(f"Duplicate UTXO in batch: {entry.utxo_string}")
        seen.add((txid, vout))
        normalized_entries.append((f"{txid}:{vout}", entry.freeze))

    ws = state.wallet_service
    try:
        ws.set_utxos_frozen(normalized_entries)
    except ValueError as exc:
        # Belt-and-braces: the store re-checks duplicates itself, so this
        # should be unreachable given the pre-check above.
        raise InvalidRequestFormat(str(exc)) from exc

    return {}

get_new_address(walletname: str, mixdepth: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> GetAddressResponse async

Get a new receive address for the specified mixdepth.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
@router.get("/wallet/{walletname}/address/new/{mixdepth}", operation_id="getaddress")
async def get_new_address(
    walletname: str,
    mixdepth: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> GetAddressResponse:
    """Get a new receive address for the specified mixdepth."""
    try:
        md = int(mixdepth)
    except ValueError as exc:
        raise InvalidRequestFormat(f"Invalid mixdepth: {mixdepth}") from exc

    ws = state.wallet_service

    if md < 0 or md >= ws.mixdepth_count:
        raise InvalidRequestFormat(f"Mixdepth {md} out of range (0-{ws.mixdepth_count - 1})")

    address = await ws.get_new_address_verified(md)
    return GetAddressResponse(address=address)

get_rescan_info(walletname: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> RescanInfoResponse async

Get rescan progress information (Bitcoin Core is the source of truth).

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
693
694
695
696
697
698
699
700
701
702
703
704
@router.get("/wallet/{walletname}/getrescaninfo", operation_id="getrescaninfo")
async def get_rescan_info(
    walletname: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> RescanInfoResponse:
    """Get rescan progress information (Bitcoin Core is the source of truth)."""
    rescanning, progress = await state.live_rescan_status()
    if rescanning:
        return RescanInfoResponse(rescanning=True, progress=progress)
    return RescanInfoResponse(rescanning=False, error=state.rescan_error)

get_seed(walletname: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> GetSeedResponse async

Return the wallet's BIP39 mnemonic seed phrase.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
365
366
367
368
369
370
371
372
373
374
375
@router.get("/wallet/{walletname}/getseed", operation_id="getseed")
async def get_seed(
    walletname: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> GetSeedResponse:
    """Return the wallet's BIP39 mnemonic seed phrase."""
    if not state.wallet_mnemonic:
        raise ActionNotAllowed("Seed phrase is not available in daemon state.")
    return GetSeedResponse(seedphrase=state.wallet_mnemonic)

get_timelock_address(walletname: str, lockdate: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> GetAddressResponse async

Get a new timelocked (fidelity bond) address.

The lockdate should be in YYYY-mm format (e.g., "2025-06").

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.get(
    "/wallet/{walletname}/address/timelock/new/{lockdate}", operation_id="gettimelockaddress"
)
async def get_timelock_address(
    walletname: str,
    lockdate: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> GetAddressResponse:
    """Get a new timelocked (fidelity bond) address.

    The lockdate should be in YYYY-mm format (e.g., "2025-06").
    """
    try:
        parts = lockdate.split("-")
        if len(parts) != 2:
            msg = "Expected YYYY-mm"
            raise ValueError(msg)
        year, month = int(parts[0]), int(parts[1])
        if month < 1 or month > 12:
            msg = "Month must be 1-12"
            raise ValueError(msg)
    except (ValueError, IndexError) as exc:
        msg = f"Invalid lockdate format: {lockdate}. Expected YYYY-mm."
        raise InvalidRequestFormat(msg) from exc

    ws = state.wallet_service
    # Convert lockdate to locktime (first day of the month as UNIX timestamp).
    dt = datetime.datetime(year, month, 1, tzinfo=datetime.UTC)
    locktime = calendar.timegm(dt.timetuple())

    # Each locktime maps to exactly one timenumber (BIP32 child index).
    # The reference JoinMarket implementation does not support multiple
    # addresses per locktime.
    from jmcore.timenumber import timestamp_to_timenumber

    timenumber = timestamp_to_timenumber(locktime)

    address = ws.get_fidelity_bond_address(timenumber, locktime)

    # Persist the bond to the registry so the maker can pick it up at startup.
    # Disable the legacy fallback so foreign bonds are never copied into this
    # wallet's per-wallet file on save (#492).
    registry = load_registry(state.data_dir, ws.wallet_fingerprint, allow_legacy_fallback=False)
    if not registry.get_bond_by_address(address):
        pubkey_hex = (
            ws.get_fidelity_bond_key(timenumber, locktime)
            .get_public_key_bytes(compressed=True)
            .hex()
        )
        witness_script = ws.get_fidelity_bond_script(timenumber, locktime)
        path = f"{ws.root_path}/0'/{FIDELITY_BOND_BRANCH}/{timenumber}"
        bond_info = create_bond_info(
            address=address,
            locktime=locktime,
            index=timenumber,
            path=path,
            pubkey_hex=pubkey_hex,
            witness_script=witness_script,
            network=ws.network,
        )
        registry.add_bond(bond_info)
        save_registry(registry, state.data_dir, ws.wallet_fingerprint)
        logger.debug(
            "Registered fidelity bond address {} (timenumber={}, locktime={}) in registry",
            address,
            timenumber,
            locktime,
        )

    return GetAddressResponse(address=address)

list_utxos(walletname: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> ListUtxosResponse async

List all UTXOs in the wallet.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.get("/wallet/{walletname}/utxos", operation_id="listutxos")
async def list_utxos(
    walletname: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> ListUtxosResponse:
    """List all UTXOs in the wallet."""
    ws = state.wallet_service
    rescanning, _progress = await state.live_rescan_status()
    if not rescanning:
        await ws.sync_with_registered_bonds()
    utxo_entries: list[UTXOEntry] = []

    for mixdepth in range(ws.mixdepth_count):
        utxos = ws.utxo_cache.get(mixdepth, [])
        for u in utxos:
            utxo_entries.append(
                UTXOEntry(
                    utxo=u.outpoint,
                    address=u.address,
                    path=u.path,
                    label=u.label or "",
                    value=u.value,
                    tries=0,
                    tries_remaining=3,
                    external=False,
                    mixdepth=u.mixdepth,
                    confirmations=u.confirmations,
                    frozen=u.frozen,
                    locktime=_format_bond_locktime(u.locktime),
                )
            )

    return ListUtxosResponse(utxos=utxo_entries)

rescan_blockchain(walletname: str, blockheight: int, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> RescanBlockchainResponse async

Trigger a blockchain rescan from the given block height.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.get("/wallet/{walletname}/rescanblockchain/{blockheight}", operation_id="rescanblockchain")
async def rescan_blockchain(
    walletname: str,
    blockheight: int,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> RescanBlockchainResponse:
    """Trigger a blockchain rescan from the given block height."""
    backend = state.wallet_service.backend

    # Rescan support is only available on DescriptorWalletBackend.
    if not (hasattr(backend, "start_background_rescan") or hasattr(backend, "rescan_blockchain")):
        raise ActionNotAllowed("Rescan not supported by the current backend.")

    if state._rescan_task is not None and not state._rescan_task.done():
        logger.info("Rescan tracking task already active; returning existing operation")
        return RescanBlockchainResponse(walletname=walletname)

    state.rescanning = True
    state.rescan_progress = 0.0
    state.rescan_error = None

    # Keep a reference so the task is not garbage-collected mid-flight and
    # can be cancelled on wallet lock.
    state._rescan_task = asyncio.create_task(_run_rescan(state, blockheight))
    return RescanBlockchainResponse(walletname=walletname)

sign_message(walletname: str, body: SignMessageRequest, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> SignMessageResponse async

Sign a message with a wallet key at the given HD path.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.post("/wallet/{walletname}/signmessage", operation_id="signmessage")
async def sign_message(
    walletname: str,
    body: SignMessageRequest,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> SignMessageResponse:
    """Sign a message with a wallet key at the given HD path."""
    ws = state.wallet_service

    try:
        # Parse the HD path to derive the address, then get the key.
        # The hd_path format is like "m/84'/0'/0'/0/5".
        # We look up the address from the path components.
        parts = body.hd_path.replace("'", "").split("/")
        if len(parts) < 5:
            raise InvalidRequestFormat(f"Invalid HD path: {body.hd_path}")

        # Extract mixdepth, change, index from the path.
        mixdepth = int(parts[3])
        change = int(parts[4]) if len(parts) > 4 else 0
        index = int(parts[5]) if len(parts) > 5 else 0

        address = ws.get_address(mixdepth, change, index)
        key = ws.get_key_for_address(address)
        if key is None:
            raise InvalidRequestFormat(f"Cannot derive key for path: {body.hd_path}")

        # Sign the message using Bitcoin message format (via coincurve).
        from jmcore.crypto import bitcoin_message_hash

        msg_hash = bitcoin_message_hash(body.message)

        from coincurve import PrivateKey

        privkey = PrivateKey(key.private_key)
        sig = privkey.sign_recoverable(msg_hash, hasher=None)
        import base64

        signature = base64.b64encode(sig).decode()

        return SignMessageResponse(
            signature=signature,
            message=body.message,
            address=address,
        )
    except (InvalidRequestFormat, ValueError) as exc:
        raise InvalidRequestFormat(f"Signing failed: {exc}") from exc
    except Exception as exc:
        raise InvalidRequestFormat(f"Signing failed: {exc}") from exc

wallet_display(walletname: str, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> WalletDisplayResponse async

Return full wallet display with accounts, branches, and entries.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
 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
@router.get("/wallet/{walletname}/display", operation_id="displaywallet")
async def wallet_display(
    walletname: str,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> WalletDisplayResponse:
    """Return full wallet display with accounts, branches, and entries."""
    ws = state.wallet_service
    rescanning, _progress = await state.live_rescan_status()
    if not rescanning:
        await ws.sync_with_registered_bonds()

    # Load history data so address statuses (cj-out, change, etc.) are
    # classified correctly.  Without this, all funded internal addresses
    # fall through to the "non-cj-change" default.
    used_addresses = get_used_addresses(state.data_dir, wallet_fingerprint=ws.wallet_fingerprint)
    history_addresses = get_address_history_types(
        state.data_dir, wallet_fingerprint=ws.wallet_fingerprint
    )

    accounts: list[WalletDisplayAccount] = []
    total_balance = 0
    total_available = 0

    for mixdepth in range(ws.mixdepth_count):
        balance = await ws.get_balance(mixdepth)
        total_balance += balance

        # Build external and internal branches.
        branches: list[WalletDisplayBranch] = []
        branch_defs = [(0, "external addresses\tm/84'"), (1, "internal addresses\tm/84'")]
        for change, branch_label in branch_defs:
            address_infos = ws.get_address_info_for_mixdepth(
                mixdepth,
                change,
                used_addresses=used_addresses,
                history_addresses=history_addresses,
            )
            branch_balance = sum(ai.balance for ai in address_infos)

            entries: list[WalletDisplayEntry] = []
            for ai in address_infos:
                entries.append(
                    WalletDisplayEntry(
                        hd_path=ai.path,
                        address=ai.address,
                        amount=f"{ai.balance / 1e8:.8f}",
                        available_balance=f"{ai.balance / 1e8:.8f}",
                        status=ai.status,
                        label="",
                        extradata="",
                    )
                )

            branches.append(
                WalletDisplayBranch(
                    branch=f"{branch_label}/{mixdepth}'/{change}",
                    balance=f"{branch_balance / 1e8:.8f}",
                    available_balance=f"{branch_balance / 1e8:.8f}",
                    entries=entries,
                )
            )

        account_balance = balance
        total_available += account_balance

        accounts.append(
            WalletDisplayAccount(
                account=str(mixdepth),
                account_balance=f"{account_balance / 1e8:.8f}",
                available_balance=f"{account_balance / 1e8:.8f}",
                branches=branches,
            )
        )

    return WalletDisplayResponse(
        walletname=walletname,
        walletinfo=WalletInfo(
            wallet_name="JM wallet",
            total_balance=f"{total_balance / 1e8:.8f}",
            available_balance=f"{total_available / 1e8:.8f}",
            accounts=accounts,
        ),
    )

wallet_history(walletname: str, limit: int | None = None, _auth: dict[str, Any] = Depends(require_auth), _wallet: None = Depends(require_wallet_match), state: DaemonState = Depends(get_daemon_state)) -> WalletHistoryResponse async

Return the active wallet's CoinJoin/spend history (from history.csv).

Entries are scoped to the active wallet's master fingerprint and returned most-recent first. Pass ?limit=N to cap the number of entries. This is the same data the jm-wallet history CLI reads; it is read-only.

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.get("/wallet/{walletname}/history", operation_id="wallethistory")
async def wallet_history(
    walletname: str,
    limit: int | None = None,
    _auth: dict[str, Any] = Depends(require_auth),
    _wallet: None = Depends(require_wallet_match),
    state: DaemonState = Depends(get_daemon_state),
) -> WalletHistoryResponse:
    """Return the active wallet's CoinJoin/spend history (from history.csv).

    Entries are scoped to the active wallet's master fingerprint and returned
    most-recent first. Pass ``?limit=N`` to cap the number of entries. This is
    the same data the ``jm-wallet history`` CLI reads; it is read-only.
    """
    from jmwallet.history import read_history

    ws = state.wallet_service

    entries = read_history(
        state.data_dir,
        limit=limit,
        wallet_fingerprint=ws.wallet_fingerprint,
    )

    _cj_roles = {"maker", "taker"}
    history = [
        HistoryEntry(
            timestamp=e.timestamp,
            completed_at=e.completed_at,
            confirmed_at=e.confirmed_at,
            role=e.role,
            success=e.success,
            failure_reason=e.failure_reason,
            confirmations=e.confirmations,
            txid=e.txid,
            amount=e.transfer_amount,
            cj_amount=e.cj_amount if (e.role in _cj_roles and e.cj_amount > 0) else None,
            peer_count=e.peer_count if e.role in _cj_roles else None,
            counterparty_nicks=e.counterparty_nicks if e.role in _cj_roles else "",
            fee_received=e.fee_received,
            txfee_contribution=e.txfee_contribution,
            total_maker_fees_paid=e.total_maker_fees_paid,
            mining_fee_paid=e.mining_fee_paid,
            net_fee=e.net_fee,
            source_mixdepth=e.source_mixdepth if e.role != "deposit" else None,
            destination_address=e.destination_address,
            change_address=e.change_address,
            utxos_used=e.utxos_used,
            broadcast_method=e.broadcast_method,
            broadcast_policy=e.broadcast_policy,
            broadcast_fallback_reason=e.broadcast_fallback_reason,
            network=e.network,
            source=e.source,
        )
        for e in entries
    ]
    return WalletHistoryResponse(history=history)

yieldgen_report(_auth: dict[str, Any] = Depends(require_auth), state: DaemonState = Depends(get_daemon_state)) -> YieldGenReportResponse async

Return the yield generator (maker earnings) report.

The joinmarket-ng maker logs its activity to history.csv (its single source of truth) rather than the legacy yigen-statement.csv file, so the report is synthesized from the successful maker rows of history.csv in the reference comma-separated format the Earn report UI expects (a header row followed by one row per CoinJoin).

Source code in jmwalletd/src/jmwalletd/routers/wallet_data.py
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
@router.get("/wallet/yieldgen/report", operation_id="yieldgenreport")
async def yieldgen_report(
    _auth: dict[str, Any] = Depends(require_auth),
    state: DaemonState = Depends(get_daemon_state),
) -> YieldGenReportResponse:
    """Return the yield generator (maker earnings) report.

    The joinmarket-ng maker logs its activity to ``history.csv`` (its single
    source of truth) rather than the legacy ``yigen-statement.csv`` file, so the
    report is synthesized from the successful maker rows of ``history.csv`` in
    the reference comma-separated format the Earn report UI expects (a header
    row followed by one row per CoinJoin).
    """
    from jmwallet.history import format_yield_generator_report

    if state.wallet_service is None:
        raise NoWalletFound("No wallet loaded.")

    try:
        rows = format_yield_generator_report(
            state.data_dir,
            wallet_fingerprint=state.wallet_service.wallet_fingerprint,
        )
    except Exception as exc:
        raise YieldGeneratorDataUnreadable(str(exc)) from exc

    return YieldGenReportResponse(yigen_data=rows)