QUANTO · AUTONOMOUS MACHINE FINANCE · ROBINHOOD CHAIN
MINTED ----/5555 · TIER - · --:--:--Z
SPECIMEN VIEWPORT · LIVE FROM THE VAULT
QNTO-----
CLASS -
-
-
sealed · rendered from seed

MINT CONSOLE READ-ONLY

QUANTO
AUTONOMOUS MACHINE FINANCE
MINTED0 / 5555
CURRENT TIER0 / 4
PRICE1.00× BASE
CEILING2.00× · IMMUTABLE
1
no allowlist · tier is evaluated at transaction execution · team mints 55 on the same curve
royalties: 5% · 100% to sealed holders · 0% to team
// INTERACTIVE — MOVE YOUR CURSOR OVER THE CURVE

THE MINT CAN ONLY DOUBLE

Five tiers of 1111. Each tier +25%. The last specimen costs exactly twice the first — the table is immutable at deploy. Hover to price any token; the fill is the live counter.

TOKEN —
// INTERACTIVE — CONTAINMENT DIVIDEND

EVERY SELLER PAYS THE HOLDERS

5% of every secondary sale goes to an escrow pool. Each 7-day epoch the pool splits pro-rata across specimens that stayed sealed — no listing, no approval, no transfer. Drag the sliders. Then try listing.

EPOCH SIMULATOR

WEEKLY VOLUME250 ETH
SEALED SUPPLY4100 / 5555

YOUR EPOCH PAYOUT PER SPECIMEN

POOL (5% OF VOLUME)12.50 ETH
YOUR SHARE0.00305 ETH
sealed all epoch → paid pro rata. unclaimed rolls forward.
4 EPOCHS — CLICK TO LIST/UNLIST
LISTING IS AN ATTEMPTED RELEASE · CONTAINMENT PAY IS FOR CONTAINMENT
// RENDERED LIVE IN THIS PAGE — CLICK A CLASS TO REROLL

5555 SPECIMENS · FULLY ON-CHAIN

Every image is a pure function of its seed. Measured distribution over the full set:

// VAULT SAMPLE
// DOCUMENTATION

DOCS

$ ls /quanto/docs → 5 files · plain text · no PDF, no notion, no gitbook
01_renderer_and_seeds.txt 4.1 KB

Each token's image is a pure function of its seed: render(seed) → 64×64 RGB. The renderer is ~14 KB of dependency-free code producing bit-identical output in this page, in the metadata endpoint and in the reference implementation. Parity is verified by hashing the pixel buffer (FNV-1a over 12,288 bytes).

Seeds were not chosen — they were found by a fleet of autonomous agents running a bounded search against a Module-LWE lattice commitment. Consequences: the trait distribution is not editable (nobody curated rares into existence), and the set is reproducible — the seed manifest is public, re-render and diff the hashes.

1,104 agent processes terminated without returning. Logged as overhead.

02_mint_curve.txt 2.8 KB
tier(id)  = floor((id - 1) / 1111)          // 0..4
price(id) = base * (1 + 0.25 * tier(id))    // base .. 2.00 * base
TIERRANGEPRICE
01 – 11111.00× base
11112 – 22221.25× base
22223 – 33331.50× base
33334 – 44441.75× base
44445 – 55552.00× base — ceiling

Tier is evaluated at transaction execution and emitted in the mint event. The tier table is immutable at deploy; the only post-deploy parameter is base, set once before tier 1 opens. No allowlist, no private tier; team allocation is 55 through the same function.

03_royalty_routing.txt 3.5 KB

Secondary royalty is 5% (EIP-2981). Receiver is an escrow contract. Epoch = 7 days. At epoch close the pool splits pro rata across every token that remained SEALED the full epoch. Claims are pull-based and batchable; unclaimed rolls forward. 0% to the team, ever.

// a token is UNSEALED for the epoch if any of these fired:
Transfer(from, to, id)                  // any transfer
Approval(owner, operator, id)           // marketplace approval
ApprovalForAll(owner, operator, true)   // blanket approval

Listing requires an approval, which is what makes the rule enforceable without an oracle or marketplace whitelist. Revoke → re-sealed from next epoch. Nothing retroactive, nothing permanent.

04_parameters.txt 1.2 KB
SUPPLY5555 · immutable
CHAINRobinhood Chain (Arbitrum Orbit L2)
STANDARDERC-721 + EIP-2981 (5%)
IMAGE64×64 · on-chain render from seed · no IPFS dependency
MINTstandard tx · 5×1111 tiers · 1.00×→2.00× base
ROYALTY ROUTING100% sealed holders · 0% team · pull-based
EPOCH7 days
ALLOWLISTnone
05_faq.txt 2.2 KB

Do I need a bot to mint? No. The agents' job ended before the mint — they produced the seed set. Minting is one ordinary transaction.

Is the dividend a yield? No — redistribution of realised royalties. Zero volume in an epoch → zero payout. No emission, no APY to quote.

Marketplace ignores royalties? That sale adds nothing to the pool and the seller is still unsealed — the approval event fired. The rule keys on behaviour, not platform compliance.

Can parameters change? Tier table, cap, epoch length and routing are immutable at deploy. The only post-deploy parameter is base, set once before tier 1 opens.

What does the team earn? Mint proceeds. Royalty flow and mint flow are separate contracts; they never share a balance.