How PARE works.

PARE splits a tokenized stock into two things you can trade separately: the stock itself, and the stream of dividends it earns. This page is the whole mechanism, plainly.

[01]The split

Robinhood Chain Stock Tokens don't pay cash dividends. When the underlying pays one, it is auto-reinvested and the token's on-chain multiplier (uiMultiplier, ERC-8056) rises — your raw balance never changes, but each token represents more shares. That growth is a yield stream, and PARE splits it off.

Deposit a Stock Token and PARE mints two ERC-20s, one series at a time (asset × maturity date):

Merge is the anchor: PT + YT always recombines into the underlying token, in full, for free, at any time — before and after maturity. That exit is what keeps PT priced honestly.

[02]Where this comes from

PARE is not a new financial idea — it is a tokenized rebuild of structures that have traded on Wall Street for four decades. Separating an asset from its income stream is one of the oldest, most proven trades in fixed income and equities.

What PARE changes is the rails, not the idea: the claims are ERC-20s over tokenized stocks, the split is self-service, the accounting is on-chain through the token's own ERC-8056 multiplier — and unlike the Americus Trusts, which only recombined round lots through the trust, PT + YT merges back to the underlying at par, free, at any time.

[03]The math

The accountant tracks a dividend index d that grows only with dividend reinvestments (stock splits move a separate factor and change nothing here). Let d0 = the index when the series opened and dT = the index at maturity.

// split(a): always mints at par a AAPL → a pAAPL + a yAAPL (minus the split fee) // at maturity, per token: PT redeems a · d0/dT AAPL — the baseline, drip removed YT redeems a · (dT−d0)/dT AAPL — the whole term's drip // conservation: the two legs sum to exactly the deposit d0/dT + (dT−d0)/dT = 1

Because PT + YT redeem to exactly what was deposited, the vault is always fully collateralized by construction — it holds precisely the raw tokens deposited, and a stock split scales everyone's share exposure through the token's own multiplier without touching d0 or dT.

[04]Fees

ACTIONFEENOTES
split10 bpstaken from the deposit, once, on the way in
merge0free, always — free exit is the peg
redeem PT0the baseline is untouched
redeem YT5% of the dripof the dividend growth only, never principal

One line: thin fee in the door, thin slice of the yield. Nothing on exit, nothing on price exposure.

[05]Dividends vs stock splits

The multiplier rises for both dividend reinvestments (adds value → belongs to YT) and stock splits (value-neutral — the share price offsets). Telling them apart is the protocol's one hard problem, and it is enforced on-chain:

Every classified event is public — the terminal's ledger shows each one with its ratio and date.

[06]Lifecycle

A series runs ACTIVE → MATURED → SETTLED. While active: split, merge, trade. At the maturity timestamp the series is matured; anyone may then call settle() — it is permissionless, but it refuses to run until every multiplier change is classified, freezing dT honestly. Once settled, PT and YT redeem at the amounts above. Merge keeps working through all three states.

[07]Risks, plainly

NOT INVESTMENT ADVICE. NOT AVAILABLE WHERE ROBINHOOD STOCK TOKENS ARE NOT AVAILABLE.

[08]Contracts

CONTRACTADDRESS
AAPL Stock Token (issuer: RHJ)0xaF3D…93f9
MultiplierAccountant0x7e18…5090
StripVault (series 01, AAPL-MAR27)0x4C3B…e365
pAAPL-MAR270x48Af…87B9
yAAPL-MAR270x3868…eA50

Contract source will be verified on the block explorer at the addresses above.