SYS_01 // PERSPECTIVE

Build Above
The Noise.

[ LAT 45.9 // LON 12.4 ]
ELEVATION SECURED

See Further.

Enten is a launchpad for complete token systems — not just an ERC‑20. Every launch ships on day one with its accounting, treasury, distribution, and upgrade machinery already wired together, then keeps evolving without asking holders to migrate.

CORE TENET

Backing per token can only rise. Every system action is checked against it — anything that would dilute holders reverts.

SYS_02 // ARCHITECTURE

Routing &
Execution

A fixed core — Controller, Token, Vault, and Kernel — holds each system's accounting and upgrade invariants. Bounded capabilities like auctions, borrowing, and treasury strategies install on top as modules and policies, each granted only the authority it needs.

ENTEN_RUNTIME_ENV
use enten_core::{Controller, Settle};

let system = Controller::launch(Core {
  token: Token::capped(MAX),
  vault: Vault::backed(),
  kernel: Kernel::unified(),
});

system.settle(Settle::Mint { .. })?;
// reverts unless backing-per-token holds