Skip to main content
The TON Core team has released Catchain 2.0 on mainnet. This consensus upgrade enables sub-second block finality, reducing the block interval from about 2.5s to about 400ms. However, faster block production does not automatically reduce end-to-end latency for users. Projects must adapt their applications so transaction status updates and UI changes use the new timing guarantees.

Current status

As of April 9th 2026, mainnet runs with a block interval of about 400 ms instead of ~2.5 s before the upgrade, producing roughly 6.25x more blocks per second. Target finalization lag is reduced from ~10 s to about 1 s.
NetworkBlock intervalBlocks per secondFinalization lag
Mainnet~400ms~2.5~1s
Testnet~450ms~2.2~1–2s
Mainnet before Apr 9th, 2026~2.5s~0.4~10s
  • Together with the consensus update, the Streaming API v2 delivers status updates with 30 to 100ms latency.
  • Testnet remains the primary environment for project testing.

Example of sub-second user experience in action

MyTonWallet and tonscan.org already use Streaming API v2 on both mainnet and testnet to deliver transaction status updates with low latency. These projects have nearly halved interface delays, and the mainnet upgrade will further reduce them.

What projects need to do

Wallets and dApps

A faster chain alone does not reduce end-to-end latency if the application continues to use HTTP polling. In this case, transaction status updates can still arrive 10 seconds or more after inclusion. To support sub-second latency, deliver transaction updates through streaming APIs instead of polling.

Actions

  • Switch to a streaming API such as TON Center Streaming API v2 or TonAPI Streaming API. Handle all four transaction statuses: "pending", "confirmed", "finalized", and "trace_invalidated".
  • If Streaming API cannot be used, reduce polling intervals and adjust assumptions about transaction timing. Interfaces should be designed to expect results in under 1 second.

Self-hosted nodes, liteservers, and TON Center instances

Actions

  1. Update all self-hosted components to the versions that include Catchain 2.0 support:
    • TON node and liteserver – update to a release that supports the live mainnet consensus.
    • Self-hosted TON Center – update to a version with Streaming API v2 support.
  2. After updating, verify each component on testnet and confirm that it operates correctly under the higher block rate. If any component still runs a pre-upgrade version, update it before relying on it in production.

Indexers

Indexers must process about 6.25x more blocks per second without accumulating lag. If an indexer was tuned for 2.5s block intervals, it can fall behind under 400ms intervals.

Actions

  1. Connect the indexer to testnet.
  2. Run for 30 or more minutes.
  3. Measure lag continuously.
  4. If lag increases, identify and resolve bottlenecks such as database writes, network latency, and parsing throughput.
  5. Generate the typical mainnet load profile on testnet and verify that the indexer keeps up. See Expected user experience and Test on testnet for guidance.

Expected user experience

Behavior without Streaming APIs

Even with blocks produced about 6.25x faster, applications that do not use the Streaming API would still:
  • Poll HTTP endpoints at fixed intervals.
  • Wait for full block finalization before updating the UI.
  • Show delays of 10+ seconds to users.
A typical sequence for polling-based integrations:
  1. 0s – user clicks “Send”;
  2. ~0.4s – transaction included in a shard block;
  3. ~0.8s – shard block committed to masterchain;
  4. ~10s – UI updates on the next HTTP polling request.
User perception: “You said the blockchain is fast. Why does my transfer still take 10 seconds?”. In this model, the blockchain is fast, but the user interface still appears slow.

Behavior with Streaming APIs

  1. 0s – user clicks “Send”;
  2. ~0.1s – "pending" status with expected outcome is displayed;
  3. ~0.4s – transaction included in a shard block and "confirmed" status is displayed;
  4. ~0.8s – shard block committed to masterchain and "finalized" status is displayed.

Why this matters

The sub-second finality upgrade is enabled on mainnet, but coordinated ecosystem changes are still required:
  • TON Core delivers faster block production and low-latency APIs.
  • Ecosystem projects must adapt indexers and UI layers to surface this speed.
If applications do not adapt, the upgrade will not become apparent. Projects that have adapted will showcase the intended behavior and user experience.

How to integrate

For projects building on TON:
  • Streaming API: TON Center or TonAPI.
  • Data layer: TON Center API v3 or TonAPI v2.
  • SDK: AppKit for balances, tokens, NFTs, and contract interactions.
  • Finality: wait for "finalized" in critical flows.

Public liteserver

Public liteservers are available for both mainnet and testnet. Use global config files to discover and connect to them:

Self-hosted liteserver

If a liteserver node is self-hosted, ensure it is updated before mainnet rollout.

Actions

Confirm that the node version supports the new consensus.

TON Center Streaming API v2

TON Center Streaming API v2 provides:
  • Push-based delivery of transaction status updates.
  • Four statuses: "pending", "confirmed", "finalized", "trace_invalidated".
  • Latency: 30–100ms from chain event to the client.

API token

  • For testing purposes, any valid token for TON Center allows for 2 concurrent streaming connections.
  • For production usage, higher connection limits require a paid plan.

Endpoints

SSE and WebSocket are available. Choose based on the stack:
  • SSE – browser-friendly, server-to-client only (unidirectional).
  • WebSocket – bidirectional, allows dynamic subscribe and unsubscribe after connection.
ProtocolTestnet URLMainnet URL
SSEhttps://testnet.toncenter.com/api/streaming/v2/ssehttps://toncenter.com/api/streaming/v2/sse
WebSocketwss://testnet.toncenter.com/api/streaming/v2/wswss://toncenter.com/api/streaming/v2/ws

Transaction status flow to implement

  1. Initiate the transaction after the user’s request.
  2. Subscribe to the sender or recipient address through the Streaming API before or immediately after sending.
    • On pending, display a processing indicator.
    • On confirmed, optionally display optimistic success.
    • On finalized, display confirmed success and update state.
    • On trace_invalidated, discard a cached trace and recheck the status manually.

Configure min_finality

The min_finality parameter controls the earliest status delivered. The default value is "finalized". If the parameter is omitted, only "finalized" events are delivered. "pending" and "confirmed" updates are not sent.
Use casemin_finality value
Send flow (real-time feedback)"pending" to receive four status updates.
History and balance display"finalized" to work only with settled data.
Example subscription (send flow):
{
  "accounts": ["<ADDRESS>"],
  "min_finality": "pending"
}

WebSocket keepalive

  • Send a ping every 15 seconds to keep the connection alive.
  • SSE connections receive automatic server-side keepalive (: keepalive) every 15 seconds; no client action required.

TonAPI Streaming API

TonAPI Streaming API’s interface is fully compatible and can be used interchangeably with TON Center’s Streaming API v2.

AppKit for app developers

AppKit provides ready-to-use components for frontend applications. It handles out of the box:
  • TON balance for any address;
  • Jetton balances and metadata;
  • NFT holdings;
  • Contract state reads;
  • Transaction sending, including jetton transfers.

Test on testnet

Testnet runs at sub-second block generation speed. Use it for testing projects before shipping production changes on mainnet.

Testnet endpoints

Use the public API endpoints overview for testnet endpoints, including TON Center and TonAPI streaming endpoints.

How to get test tokens

What to test

Perform the following tests to validate UX and wallet behavior.

For indexer teams

  1. Connect indexer to testnet.
  2. Run for 30+ minutes under normal conditions.
  3. Measure indexer lag as the time between block production and indexer processing.
  4. Ensure lag remains below 500ms and no backlog accumulates.

For UX and app teams

  1. Connect to testnet endpoints.
  2. Initiate a TON transfer.
  3. Observe three statuses in sequence: "pending""confirmed""finalized".
  4. Measure time from transaction send to "finalized". It should be under 1 second on testnet.
  5. Test "trace_invalidated" path: intentionally send a malformed transaction and confirm that UI handles it correctly.

For wallet teams

  1. Verify balance updates reflect within 1 second of "finalized" status.
  2. Verify transaction history updates in real time.

Resources

Get support

Use the sub-second finality support chat for questions about this upgrade.