Methodology

Kavo exists to answer one question: is this Stock Token trading rich or cheap versus the equity it tracks, and can you actually trade that gap right now?

01

What basis means

A Robinhood Stock Token is meant to track one share of a company. In practice its onchain price drifts from the equity, because onchain supply and demand move independently of the stock market.

That gap is the basis. Kavo shows it as a percentage. A premium (positive) means the token costs more onchain than the equity is worth. A discount (negative) means it costs less.

02

The three prices

Reference

The underlying equity price from Robinhood's REST API. This is the raw bid and ask of the actual stock, and it is not adjusted for the token multiplier.

Oracle

The Chainlink feed published on Robinhood Chain. It already reports the price of one token, multiplier included. Kavo shows it as an independent fair-value check.

Executable

What a real swap actually fills at, quoted live from onchain liquidity. This is the number Kavo trades on, because an abstract fair price is not something you can buy.

03

The multiplier

Corporate actions such as splits and dividends are handled by a currentMultiplier on each token. One token is worth the underlying share price times that multiplier.

This matters because the reference and the oracle live on different surfaces. Comparing them naively produces a basis that is pure arithmetic error. Kavo normalises the reference first:

referenceToken = equityPrice * multiplier

basis = (executable - referenceToken)
        / referenceToken

Most tokens have a multiplier of exactly 1, so the distinction is invisible. For the ones that do not, and CRWD sits at 4.0, it is the difference between a correct number and a meaningless one.

04

Routing and liquidity

Kavo holds no inventory, runs no AMM of its own, and never mints Stock Tokens. Every trade is routed into liquidity that already exists on Robinhood Chain: Uniswap v2, v3 and v4, using each protocol’s official quoter.

All candidate routes are quoted at your exact size, and the one returning the most tokens wins. Where an asset has no venue that can fill it, Kavo says No executable route rather than showing a price you cannot get.

The liquidity column is measured, not estimated: it is the largest USDG clip that still fills inside 1% price impact, derived from live quotes. Markets that cannot absorb $500 are labelled Thin and pushed down the default ranking, because a large basis on an empty pool is not an opportunity.

05

What Stock Tokens are not

Stock Tokens are not shares. Holding one gives you no ownership of the company, no voting rights, and none of the protections that come with holding the underlying security. They are instruments issued by Robinhood that reference an equity price.

Kavo is a price-discovery and execution interface. It is not investment advice, and the basis it displays is a market observation, not a prediction that the gap will close.

06

Data freshness

Reference prices come from Robinhood and follow US market hours. Outside a session they are the last published quote, not a live tick. Chainlink equity feeds behave the same way and update 24/5; Kavo shows each feed’s age so you can judge it. Executable quotes are always live, because onchain liquidity trades continuously.