Ledger and execution
Multi-VM.
EVM, SVM, and DAML coexist in one chain. Same
TNZO balance, no bridges, no fragmentation.- STATUS
- Testnet
- CRATE
- tenzro-vm
- STABILITY
- Stable
- TYPE
- Component
01
Why three VMs
EVM for Ethereum-compatible contracts and the largest tool surface. SVM for Solana programs and SPL-Token mechanics. DAML for enterprise multi-party workflows on Canton.
02
Shared TNZO
The Sei V2 pointer model: a single native TNZO balance shared across all VMs. wTNZO ERC-20 pointer at 0x7a4bcb13a6b2b384c284b5caa6e5ef3126527f93, SPL adapter on SVM, CIP-56 template on DAML.
03
Cross-VM transfer
# Move TNZO from EVM to SVM
tenzro token transfer \
--from-vm evm --to-vm svm \
--from <evm-address> --to <svm-pubkey> \
--amount 1004
Atomicity
Cross-VM transfers are atomic at the consensus layer; the pointer model ensures no balance can ever be double-spent across VMs.
Related