← /dysnomia · guide index

The ladder — derived physics and the tile oracle

Between the venues and the (undeployed) world layer sits the strangest and most characteristic piece of Dysnomia: a ladder of tokens, named after Chinese-medicine concepts, that compute derived quantities over users and venues — and pay themselves one unit per read [src: domain/soeng/*.sol].

The soeng chain

Every rung is a public, stateful function — reading it mints it. The formulas, in construction order [src]:

rung computes in plain terms
QI (气) Eris.balanceOf(user) ÷ user.Entropy energy — your constellation-channel holdings over your entropy
MAI (脈) qing.balanceOf(user) ÷ user.Entropy pulse — your venue holdings over your entropy
XIA (夏) modExp(QI_venue, MAI_user, Fomalhaute.balanceOf(user)) charge — a modular exponentiation over both
XIE (泄) (Charge, Fornax(user)/Entropy, Fornax(qing)/Entropy) the leak — charge plus two Fornax ratios
ZI (子) Iota = modExp(Omicron, Charge, CHOA.Yuan(CHO)) spin — against the hub’s purchasing power
PANG (碰) two modExps against Yuan(qing) moduli collision push

Note what is hardwired in: QI divides by Eris, XIA’s modulus is Fomalhaute, XIE reads Fornax, ZI’s modulus is the CHO hub itself [src] — the wave-1 constellation channels are the physics constants of the world, exactly as the treasury reserves are the constants of the minters.

The account/oracle loop

The ladder feeds two consumers:

Every rung is metered like all system contracts — one self-mint per call against a lottery budget. At the research census the whole ladder sat at cap: the call counters froze exactly at their constructor-lottery budgets (QI ≈ 91.8k calls, CHOA ≈ 42.1k, MAI ≈ 26.4k, XIE ≈ 20.8k, PANG ≈ 15.4k, ZI ≈ 13.2k, XIA ≈ 5.6k [chain: meter census]) — usage was heavy, and when the budgets ran out the reads kept working and the meters stopped. The hub’s generated table carries the live numbers.

The rolling-state engine

The core finding of the crypto-layer study, worth knowing before you touch the ladder: the system’s randomness is a shared deterministic chain, and the ladder reads it statefully. CHO’s global Entropy head advances inside the ordinary GetUser() path several times per action — so anyone’s committed call moves everyone’s next outputs, while eth_call previews are pure [src: 01_cho.sol, fork-verified]. Consequences:

The full mechanics of the shared orbit — and how the same design choice makes the treasury-side MATH/RNG pair predictable — are consolidated on the randomness reference page.