const Denom
Denom is the only asset this realm accepts.
Realm coindemo is a deliberately minimal third consumer proving the extracted primitives compose: coinio handles ever...
Realm coindemo is a deliberately minimal third consumer proving the extracted primitives compose: coinio handles every coin movement, feeledger handles every balance. It is an echo-vault: deposit GNOT, claim it back in full (no fees), owner sweeps out-of-band surplus.
Conservation: H == U + S (no fee pot, no app escrow), where U is the ledger's users total and S >= 0 is out-of-band surplus, recoverable only via the owner's Sweep which reserves U.
BalanceOf returns addr's claimable balance.
ClaimAll sends the caller's entire balance back. Fails if empty.
Deposit credits the caller with the attached GNOT, in full.
Held returns the ugnot actually held at the realm address.
Render shows totals and the conservation check.
Surplus returns Held() - UsersTotal().
Sweep sends ugnot held above user liabilities to the owner. Owner only; user balances are reserved by construction.
TransferOwner hands the sweep role to next. Owner only; zero address rejected (audit Y3: without rotation, key loss permanently orphans surplus sweeping).
UsersTotal returns the sum of all claimable balances.