What it is
Rebase staking is a mechanism where staking rewards are distributed by directly changing the token's supply: every staker's wallet balance automatically increases (or occasionally decreases) at each "rebase" event, without any transaction needed on the user's part. Rather than earning a separate reward token that must be claimed and compounded manually, the staked token itself grows in quantity, so the user's percentage ownership of total supply is what's really being tracked, even though the number displayed in their wallet keeps rising.
How it works
- Users deposit (stake) the base token into a staking contract and receive a staked version of it (often a separate ticker, e.g. a token that tracks a rebasing balance).
- At fixed intervals — commonly every few hours — a rebase function runs, calculated from the protocol's target reward rate (an APY set by governance, treasury backing, or a formula tied to protocol revenue).
- The rebase mints new tokens and increases the
balanceOfvalue returned for every staker's address proportionally, without requiring stakers to submit a transaction or pay gas to receive the increase. - Because balances update automatically, the effect is auto-compounding: the new tokens from one rebase are already included in the base for calculating the next rebase's reward.
- The staker's percentage share of total supply typically stays constant unless they stake or unstake, meaning the "yield" is really new supply being minted and allocated to existing holders, diluting anyone not staked.
- If a staker wants liquidity, they unstake (converting the staked-balance representation back to the freely transferable base token) or trade the staked token directly if a liquid market exists for it.
Why designers use it
- Removes the gas cost and friction of manually claiming and re-staking rewards, since compounding happens automatically at the protocol level.
- Makes very high advertised APYs feel tangible and immediate — users watch their balance grow every few hours rather than waiting for a slow price appreciation.
- Creates a strong incentive to stay staked, since anyone holding the token unstaked is silently diluted by every rebase that mints to stakers only.
Failure modes
- Ponzi dynamics: if the rebase reward rate is far higher than what real protocol revenue can sustain, new supply must be funded by new buyers, and the model collapses once inflows slow (a well-known pattern in high-APY rebase tokens).
- Price-supply illusion: a rising wallet balance can mask a falling token price, so users can end up with more tokens worth less in aggregate — the "APY" being advertised is a supply metric, not a value metric.
- Death spiral: as price falls, the token needed to pay a fixed-rate rebase becomes a larger share of market cap each cycle, accelerating sell pressure and further price decline.
- Integration breakage: rebasing balances are incompatible with many DeFi contracts (AMM pools, lending markets) that assume static balances, so wrapped or non-rebasing versions are often needed and add complexity.
- Perceived vs. real yield confusion: unsophisticated users may not realize their percentage of total supply is unchanged, and treat nominal balance growth as "risk-free" income.
What to check before using it
- Verify the rebase rate is backed by real, sustainable revenue or reserves rather than being funded purely by new token issuance and buyer inflows.
- Check how the staked/rebasing token interacts with external DeFi integrations (DEX pools, lending markets) — rebasing tokens often break or require wrapped equivalents.
- Look at historical price-versus-supply data, not just advertised APY, to judge whether balance growth has actually translated into value growth for holders.
- Confirm what happens to non-stakers: how much dilution do they experience per rebase, and is that disclosed clearly?
- Assess whether the reward rate is fixed by governance/formula or can be adjusted arbitrarily by an admin key, which affects how predictable and trustworthy the mechanism is.