All articles
Robinhood Chain·June 2, 2026·7 min read

How Stock Tokens Work: Economic Exposure, Not Share Ownership

How stock tokens work: on-chain equity exposure via ERC-20 contracts on Robinhood Chain, not legal share ownership, and why that gap matters for bots.

A Stock Token on Robinhood Chain does not make you a shareholder of anything. It makes you the holder of an on-chain token whose price is designed to track a stock's price. That distinction sounds pedantic until you actually read the contract, and it's the single fact that should shape how you build against these instruments, hedge them, or trade them at all.

Robinhood Chain went live on mainnet July 1, 2026, an Ethereum L2 built on the Arbitrum stack, settling to Ethereum, with block times around 100ms. The flagship product is Stock Tokens: on-chain representations of equities like NVDA, GOOG, and AAPL that trade continuously, 24 hours a day, seven days a week. They're available in more than 120 countries, not in the US, and restricted in a handful of others including Canada, the UK, and Switzerland. None of that changes the mechanical question: what do you actually own when you hold one.

What sits behind the ticker

Structurally, a Stock Token is an ERC-20 (or ERC-20-compatible) contract on an EVM chain, the same primitives you already know from Arbitrum, Optimism, or mainnet Ethereum. It has balanceOf, transfer, totalSupply. It does not have a shareholder registry, a proxy voting mechanism, or a guaranteed claim on dividends, because none of that is what the token is. The economic value is intended to track the reference equity, presumably through some combination of issuer backing and market-maker activity, but "intended to track" and "legally entitles you to" are different sentences.

This is not a new pattern. Synthetic exposure to real-world assets has existed on EVM chains for years, from synthetic stocks on Synthetix to mirrored assets on Mirror Protocol before it wound down. All of them ran into the same tension: the token can move independently of the underlying if arbitrage between the two isn't tight, and it conveys none of the legal protections that come with owning shares through a broker or clearinghouse. Robinhood Chain's version is new in distribution, a regulated brokerage putting its name on it, permissionless deployment, and a same-day ecosystem of five DEXs (Uniswap, Arcus, Lighter, 1inch, Rialto) instead of one thin venue, not new in the underlying legal shape. Uniswap's own API now lists Robinhood Chain as a supported venue for building trading applications and bots, covered in our guide to the Uniswap API on Robinhood Chain.

Economic exposure vs. ownership, concretely

If NVDA moves 4% during a US trading session, your Stock Token position should move roughly 4% too, assuming the arbitrage mechanism between on-chain price and the reference market is working. What you don't get:

  • A vote at NVIDIA's annual meeting
  • A guaranteed pass-through of any dividend NVIDIA declares
  • Standing to sue as a shareholder if something goes wrong at the company
  • SIPC-style protection on the token itself

What you do get is a bearer instrument that settles in roughly the time it takes a block to confirm, composable with any other contract on the chain, and postable as collateral, looped, or hedged using the exact same tooling you'd use for any other ERC-20. For a trading-systems team, that composability is the actual product. The "is it a share" question matters for compliance and retail expectations, but for a bot, the token is a price feed with transfer semantics.

The gap that doesn't exist in traditional equities

NASDAQ and NYSE close nights and weekends. Stock Tokens don't. That means for roughly two-thirds of every week, the on-chain price of an NVDA token is set entirely by thin on-chain flow, whatever liquidity exists across Arcus, Uniswap, and the other venues, with no reference market open to arbitrage against. When the underlying market reopens Monday, whatever gap accumulated over the weekend resolves, one way or another, against the newly live NASDAQ print.

This is the same structural gap already present in weekend futures and FX carry over illiquid sessions, compressed into a younger, thinner market with five venues that can drift from one another in the interim. A basis-tracking strategy isn't optional color here, it's the mechanism by which token price and reference price ever converge. We build this as a basis hedge bot for Robinhood Chain, and the same cross-venue drift is what an EVM arbitrage bot is built to capture, whether the spread sits against NASDAQ's last print or another on-chain venue. Worth reading alongside our breakdown of how Arcus's zero-fee model changes execution economics.

Reading the contract like an engineer

Don't take a token's economic-exposure claim on faith, read the interface. A real equity claim needs machinery a plain ERC-20 doesn't have: a registry mapping holders to voting weight, a dividend-distribution function, transfer restrictions tied to KYC'd shareholder status. A Stock Token generally won't expose any of that. Here's the kind of check worth scripting before building a strategy on top of one:

import { createPublicClient, http, getContract, parseAbi } from "viem";

const abi = parseAbi([
  "function name() view returns (string)",
  "function symbol() view returns (string)",
  "function decimals() view returns (uint8)",
  "function totalSupply() view returns (uint256)",
]);

const client = createPublicClient({
  chain: robinhoodChain, // custom chain config: Arbitrum-stack, ~100ms blocks
  transport: http(),
});

const token = getContract({ address: stockTokenAddress, abi, client });

const [name, symbol, decimals, supply] = await Promise.all([
  token.read.name(),
  token.read.symbol(),
  token.read.decimals(),
  token.read.totalSupply(),
]);

console.log({ name, symbol, decimals, supply });
// Note what's absent: no votingPower(), no claimDividend(),
// no shareholderRegistry(). That absence is the product spec.

That's a five-minute check worth automating across every token you plan to trade or hold, especially while contract source may not be verified everywhere you'd expect. The chain is permissionless and young, so we'd treat a Stock Token contract like any new EVM deployment before routing size through it, the review our smart contract audit work covers.

Stock Token vs. brokerage share vs. ADR

Stock Token (Robinhood Chain) Brokerage share ADR
Legal claim None — synthetic price exposure Direct equity ownership Receipt backed by custodied shares
Trading hours 24/7 Exchange session only Exchange session (ADR's own listing)
Settlement On-chain, ~100ms blocks T+1 via clearinghouse Typically T+2
Voting rights No Yes, via broker Sometimes, via depositary
Dividends Not guaranteed, issuer-dependent Yes Yes, minus depositary fees
Custody Self-custody wallet Broker account Depositary bank
Composability Full — usable in any EVM contract None None

Verdict: if you want a legal claim on a company, a Stock Token is the wrong instrument, buy the share. If you want programmable, always-on price exposure you can hedge, loop, or arbitrage against other venues in real time, the token does something a brokerage account structurally cannot. Treating it as "basically a share" is the mistake; treating it as a 24/7 EVM-native price feed with equity-like drift is closer to correct.

What we genuinely don't know yet

A couple weeks of mainnet data isn't enough to say how tightly the arbitrage between on-chain price and NASDAQ close holds under stress, how deep any venue's book gets during a real news event, or how the weekend gap behaves once more capital shows up. Anyone quoting hard slippage or liquidity numbers here right now is guessing. What's knowable is the mechanics: EVM tooling applies directly, the exposure is synthetic and needs to be arbitraged rather than assumed, and the 24/7-versus-closed-market structure is a durable feature, not a launch quirk. If you're weighing whether this chain fits your strategy at all, our comparison of execution environments across chains is a reasonable starting point.

Building a bot that accounts for the ownership gap and the weekend basis is a different project than porting an existing arbitrage strategy over unchanged. If you want that built and stress-tested properly, talk to us about a Robinhood Chain basis hedge bot.

Need a bot like this built?

We design, build and run trading bots on Solana, Hyperliquid and Polymarket.

Start a project
#Robinhood Chain#stock tokens#EVM#smart contracts#trading bots