Bridges
Wormhole NTT.
NTT is Wormhole’s 2026 multi-chain token primitive. Instead of wrapped tokens locked at a vault, a token’s
NttManager mints / burns the native token directly on each chain, with canonical supply controlled by per-chain rate-limit queues and one or more Transceivers for redundant cross-chain attestation.- STATUS
- Scaffolding live
- CRATE
- tenzro-bridge
- STABILITY
- Stable types
- REFERENCE
- Wormhole NTT 2026
01
Manager + transceivers
An NttManager is identified by (wormhole_chain_id, manager_address) and governs a specific token. One or more Transceivers (Wormhole, Axelar, LayerZero, custom) carry cross-chain attestation messages; the configured quorum must aggregate distinct transceiver attestations before mint.
02
Rate limits
Per-chain outbound and inbound caps enforce a rolling window (default 86_400s = 24h). A transfer exceeding the cap is queued when should_queue == true, reverted otherwise.
03
RPC
POST https://rpc.tenzro.network
{
"jsonrpc": "2.0",
"id": 1,
"method": "tenzro_wormholeNttListChains",
"params": []
}Related