Ledger and execution
Cross-VM tokens.
One
TNZO balance, three VM views. The Sei V2 pointer model — no bridge, no liquidity fragmentation, no double-spend.- STATUS
- Testnet
- CRATE
- tenzro-vm
- STABILITY
- Stable
- REFERENCE
- Sei V2 pointer
01
Pointer model
EVM, SVM, and DAML each get a VM-native handle to the same underlying balance. The handle behaves like an ERC-20, SPL token, or CIP-56 template — but no bytes ever move.
02
wTNZO
EVM 0x7a4bcb13a6b2b384c284b5caa6e5ef3126527f93
SVM SPL adapter (9 decimals, truncated from 18)
DAML CIP-56 token template03
Unified registry
The TokenRegistry is a DashMap-indexed catalog persisted to RocksDB (CF_TOKENS). Tokens have deterministic TokenId via SHA-256 of creator + nonce.
04
Cross-VM transfer
# RPC
tenzro_crossVmTransfer({
from: { vm: "evm", address: "0x..." },
to: { vm: "svm", address: "<base58>" },
token_id: "...",
amount: "10000000000000000000"
})Related