A vesting route: when 99.5% of the supply actually arrives #21
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The network page says 5,669,940 QTC sits in the vesting pot and stops there.
That is the largest economic fact about this chain and the site currently treats
it as a single number.
Why this earns a route rather than a panel
It is the only forward-looking data the observer has. Everything else here
is history — blocks won, notes moved, balances now. A release schedule says what
will happen, and it is exact rather than projected:
Zero before the cliff,
totalfromend, linear between. Summing that acrossevery schedule at a series of instants is an unlock curve computed from chain
state with no assumption in it.
Measured now, decoded from
Vesting::Scheduleson mainnet:It retires a weak claim. "Held in the vesting pot" currently rests on an
eight-byte
PalletIdspellingqvestingand atype PalletIdline read from asource tree that may not be the deployed commit — the trap
CLAUDE.mdwarnsabout. A page where the schedules visibly sum to the pot turns a name-based
inference into a demonstrated fact.
Precedent:
/:chain/reversibleexists for a feature used zero times. Thisis 99.5% of the money.
What it shows
claimable date, final date, and whether the schedules still sum to the pot.
vested_amount(t)sampled across the window. Singleseries, one hue, magnitude over time.
start/cliff/end, vested now, claimable now.
Constraints
reading 89 bytes positionally, which happened to sum exactly right and is
still the shortcut this repository has a rule against. The route uses
decode_map_valueagainst the declared type.vested_amountgoes inblackbeard-corewith tests, mirroring thepallet's own arithmetic — before the cliff, at the cliff, mid-window, at
end, pastend, and thestart < cliffcase where a chunk unlocks at once.It must not overflow:
total × elapsedfor a 840,000 QTC grant over athree-year window passes 10^28.
retarget_schedulecan change a beneficiaryand
end_schedulecan end a grant; the page says so.anyone a founder, a team or an investor, so neither does the page.
that justifies the network page's wording is enforced rather than asserted.
Refs #17.