Live on Robinhood Chain
WallStreetcloses.Thechaindoesn't.
When the real market sleeps, on-chain stock prices drift from the last quote. Longbow turns that gap into a trigger: nock a non-custodial order at “≥1% discount to the real quote” and keepers loose the arrow the moment it prints — verified on-chain, funds never leaving your wallet.
Try it right here
The terminal, live on this page.
Same data feed, same math as the real app — poke the radar, drag a limit trigger, build a DCA plan. No wallet, no sign-up.
| Asset | 24h | On-chain | Real quote | Prem / Disc |
|---|---|---|---|---|
Live from the same /api/markets feed the app uses — discount (orange) means on-chain trades below the real quote.
The toolkit
Built around the gap the market leaves open.
Gap Radar
Stock markets sleep 17 hours a day — pools never do. The radar tracks every token's on-chain price against its last real quote and flags the drift, premium or discount, live.
Gap Orders
The trigger nobody else has: fire on the gap itself, not a price. “Buy TSLA at ≥1% discount to the quote” — verified on-chain against the pool and the Chainlink print, then loosed through Uniswap V2.
Gap-Guarded DCA
Recurring buys that refuse to overpay: set a premium cap and time-due runs simply wait until the pool trades back through it. Amount, interval, runs — one order, N executions.
Portfolio P&L
Holdings, USD value and cost-basis P&L in one view — with share-equivalent balances that respect each token's ERC-8056 multiplier.
How it works
Three steps. Zero custody.
Connect
Connect your wallet — Longbow adds Robinhood Chain automatically. No sign-up, no custody, no email.
Approve
Grant the LongbowExecutor contract an allowance for the token you're spending. Funds stay in your wallet until the moment of execution.
Set & Forget
Place your limit or DCA order. Keepers watch Chainlink 24/7 and fire the swap the moment your conditions verifiably hold.
0+
Tokenized stocks & ETFs
0ms
Robinhood Chain block time
0.0%
Uniswap V2 swap fee
0/7
On-chain markets, never closed
The token
$LONGBOW. The terminal’s token.
One dev, one product, one token. $LONGBOW trades on Flap on Robinhood Chain, and its 2/2 tax is what funds this terminal — no VC, no presale. Verify everything on-chain before you touch it.
Contract address
0x8cd5ea98bce84c2b73dedba0fd3c5b8e97f37777
Fair launch on Flap
Launched on the Flap bonding curve on Robinhood Chain. No presale, no team allocation — every token starts on the curve.
2% / 2% tax, immutable
A 2% tax on buys and sells funds terminal development. The rates are locked at launch and can never be changed.
Liquidity handled by Flap
At graduation, Flap moves the curve reserves into DEX liquidity automatically — no manual LP to trust.
1B fixed supply
One billion tokens, 18 decimals, no mint function. What exists at launch is all there will ever be.
For developers
Limit orders in your dApp, in 5 minutes.
LongbowExecutor is a permissionless, MIT-licensed contract. Approve, call placeOrder, listen for OrderExecuted — the docs cover addresses, ABI downloads and full viem examples.
import { createWalletClient, custom, parseUnits } from "viem";
import { longbowExecutorAbi } from "@longbow/shared";
// buy TSLA at the next NYSE open — the on-chain market-on-open order
const hash = await wallet.writeContract({
address: LONGBOW_EXECUTOR,
abi: longbowExecutorAbi,
functionName: "placeOrder",
args: [
USDG, TSLA, TSLA_FEED,
parseUnits("1500", 6), // USDG is 6 decimals
minAmountOut, // slippage guard
0n, // no price trigger needed
0, 0, // DIR_BELOW, ORDER_LIMIT
0n, 1, 0n, // interval, runs, expiry
nextOpen, nextOpen + 1800n, // execution window: the opening 30 min
0, 0, // gapMode, triggerGapBps
],
});FAQ
Questions, answered straight.
The short version of the docs — custody, keepers, fees and the gap, in seven answers.
No. Your tokens sit in your own wallet until the exact block an order executes. Placing an order only grants the LongbowExecutor contract an allowance — you can revoke it any time, and cancelling an order costs one transaction.