Get Pending Traces
TON node API
pendingTraces | TON v3
The pendingTraces endpoint retrieves traces that are pending completion in the TON blockchain. Available on TON v3 via Chainstack.
GET
Get Pending Traces
Pending Traces
ThependingTraces endpoint retrieves traces that are pending completion in the TON blockchain. These represent transaction execution flows that have not yet fully propagated through all necessary contracts.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
TON billing: full (1 RU)This method is always billed as full. See Request units — TON method scope.
Parameters
trace_id(string, optional) — Filter by specific trace ID.limit(integer, optional) — Maximum number of traces to return. Default:10.offset(integer, optional) — Number of traces to skip for pagination. Default:0.
Response
-
traces(array) — Array of pending trace objects:trace_id(string) — Trace ID.external_hash(string) — Hash of the external message.mc_seqno_start(integer) — Start masterchain sequence number.start_lt(integer) — Start logical time.start_utime(integer) — Start unix timestamp.state(string) — Trace state (e.g.,pending).pending_edges(integer) — Number of pending message edges.edges(integer) — Total edges so far.nodes(integer) — Total nodes so far.
-
address_book(object) — Address book mapping.
Use case
ThependingTraces endpoint is essential for tracking in-progress complex operations:
- Monitoring multi-hop transactions that involve several contracts.
- Tracking Jetton transfers waiting for completion across wallet contracts.
- Debugging stuck transactions by identifying pending message edges.
- Building real-time dashboards showing transaction progress.
- Implementing timeout alerts for transactions taking too long.
Last modified on June 4, 2026