Attest your holdings on-chain — the real balance, the hour, a short label — and it stands as a matter of record permanently. Anyone may audit it. No one may revise it.
Each mark is a single attestation. The line holds flat between them because the record asserts nothing it did not measure — only the balance read from the chain at the moment of each entry.
Each entry records the wallet's actual native balance at the instant of the call, read directly from the chain. There is no field in which to state a number, and so none to overstate.
An entry, once made, cannot be amended or withdrawn — not by its author, not by us, not by anyone. The record accumulates. It is never rewritten.
No owner, no admin key, no fees. The contract holds no balance and has no payable function — it can only ever attest, never move a single unit of value.
The contract is a few dozen lines and there is no second path through it. This is the whole of what an entry does.
01// record what is there — not what was claimed 02history.push(Snapshot({ 03 balance: msg.sender.balance, 04 timestamp: uint64(block.timestamp), 05 label: label 06}));
0x57CBd8798A4921f6Ab9778b2B44DF0c918b98B83
Deployed through the standard CREATE2 proxy from bytecode carrying no constructor arguments, so every browser derives this address by arithmetic before anything exists at it. Where a chain holds no ledger yet, the application offers to open one; whoever does so stands up the ledger everyone thereafter shares.