List with filters
Poll a single transaction
Reading a transaction is also what advances it: in-flight rows are reconciled on read (receipt lookups, redeem settlement). Poll until the status is terminal:- A modest interval (3–10 s) is plenty. Reads count against the 120-reads/min rate limit, and Sepolia blocks land every ~12 s anyway.
- Terminal states are
CONFIRMED,SETTLED, andFAILED.PENDINGandSETTLINGalways warrant another poll. FAILEDcarries context in theerrorfield; the row is kept for your audit trail.
Deep-link to the explorer
Every transaction with a hash includes anexplorerUrl, a direct Sepolia
Etherscan link. For redeems, settlementTxHash identifies the payout leg
(construct its URL the same way if you need it).
For
PRIVATE_TRANSFER rows, the explorer shows the transfer but not the
amount; that’s the point. Your own transaction row keeps the plaintext
amount because you’re a party to it.Download a receipt
Once a transaction has reached the chain, produce a notarized .nota receipt:400; retry
after the transaction confirms.