Bridges and interoperability
CCT.
Chainlink Cross-Chain Token v1.6+. LockRelease and BurnMint token pools across CCIP-connected chains for native cross-chain token transfers without wrapped representations.
- STATUS
- Stable
- CRATE
- tenzro-bridge
- ADAPTER
- ChainlinkCcipAdapter (CCT layer)
- RPC
- tenzro_cct*
01
Pool types
LockRelease Token locked in pool on origin, released from pool on destination
BurnMint Token burned on origin, minted on destination02
Pool registry
tenzro_cctListPools— list configured pools across chains.tenzro_cctGetPool— pool metadata for a given chain id.tenzro_cctBuildMessage— build the CCT-aware CCIP message payload for a token transfer.
03
Per-pool rate limits
Each pool has rate limits enforced by Chainlink CCIP — both per-lane (source-destination pair) and per-pool. ccip_get_rate_limits (Chainlink MCP) returns the live limiter state. The adapter surfaces remaining capacity to callers so a routing decision can prefer pools with sufficient headroom.
04
TNZO and CCT
Native TNZO ships with an ERC-7802 hook compatible with both LockRelease and BurnMint pools. The unified cross-VM TNZO balance (wTNZO ERC-20 pointer and wTNZO SPL adapter share the same underlying native balance) extends naturally to CCT-connected EVM destinations, with the BurnMint pool preserving total supply across chains.
Related