docs: complete wallet read use case extraction

This commit is contained in:
2026-08-30 18:57:38 +03:30
parent 9b120daae0
commit 23852b00c3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -385,4 +385,4 @@ Migration order implied by the map: isolate shared infrastructure constructors (
- Added `application/walletread`, with transport-independent catalog, commission, network, and balance reader ports and use-case methods.
- gRPC methods for asset list/get, asset commissions, asset price, network list, health, balance, and check-balance now delegate through the application boundary; protobuf conversion and existing error mapping remain in `core/walletImp`.
- Transaction-list querying now delegates through the application reader as well. Wallet listing consumes the application catalog, while its Stellar synchronization remains in the transport service until a blockchain-backed read use case is extracted. Full Wallet tests pass in `c0e35e0`; only that synchronization extraction remains for W004.
- Transaction-list querying and blockchain balance reads now delegate through the application reader as well. Wallet listing consumes the application catalog; its database synchronization remains an explicit mutation in the service and is deferred to later wallet work. Full Wallet tests pass in `5b17c82`; W004 is complete.