194 STOCK TOKENS · 12 HAVE TICKED · 24 REPRICINGS SCHEDULED

Concepts

Where each price comes from

Four sources, and which of them you can check without trusting anyone.

numbersourceon chain?
multiplierthe token contract itselfyes
token worthChainlink aggregator, 35 of 194 tickersyes
token worth, fallbackissuer bid/ask times the multiplierno
pool pricedeepest pool holding the tokenyes
corporate-action scheduleissuer APIno

The Chainlink answer already includes the multiplier. It is the token price, not the share price. Dividing it by the multiplier gives a share; applying the multiplier twice is the most common integration bug on this chain.

Fallback quality

159 tokens have no Chainlink feed. For those, worth is the midpoint of the issuer’s bid and ask multiplied by the multiplier. When the underlying market is closed that spread can widen to double digits, so the site marks the source on every row and flags a wide market rather than pretending the midpoint is a price.

Two basis numbers

the arithmetic, in full
sharePrice   = fairToken / multiplier
naiveBasis   = poolPrice / sharePrice - 1     // what a tracker implies
trueBasis    = poolPrice / fairToken  - 1     // the honest gap
displayError = multiplier - 1                 // how wrong the screen is

// on a token that has never paid, multiplier = 1 and the two basis
// numbers are identical. That is why the column is blank for 183 rows.