You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Screen 3 (Transaction Explorer) of the Sandbox UI has no implementation. The backing endpoint GET /v1/transactions is now live (PR #118), so the screen can wire to the real paginated API.
Scope
A /transactions route listing posted transactions from GET /v1/transactions:
Typed useTransactions(page, size) TanStack hook over the real endpoint (mirrors useAccounts).
Table of the real TransactionResponse fields only: id (mono, prefixed ULID), reference, status pill, postedAt (formatted via formatInstant).
Server-authoritative pagination (page/size/totalPages/totalElements), same controls as the Account Browser.
Loading / error+retry / empty states via the shared StateMessage.
Problem
Screen 3 (Transaction Explorer) of the Sandbox UI has no implementation. The backing endpoint
GET /v1/transactionsis now live (PR #118), so the screen can wire to the real paginated API.Scope
A
/transactionsroute listing posted transactions fromGET /v1/transactions:useTransactions(page, size)TanStack hook over the real endpoint (mirrorsuseAccounts).TransactionResponsefields only: id (mono, prefixed ULID), reference, status pill, postedAt (formatted viaformatInstant).StateMessage.Out of scope
Acceptance
/transactionsrenders a table of real fields withtx_-prefixed ids and a status pill.fetchmocked (no msw).