/* AGYST — main app */ const { useState: useStateA, useEffect: useEffectA } = React; const CFG = (typeof window !== "undefined" && window.AGYST_CFG) || { tgBotUrl: "#", discordInviteUrl: "#", startOnboardingUrl: "/api/web/start_onboarding", }; function ConnectWalletForm({ className, children, style }) { return (
); } function Nav() { const [scrolled, setScrolled] = useStateA(false); useEffectA(() => { const onS = () => setScrolled(window.scrollY > 8); onS(); window.addEventListener("scroll", onS, { passive: true }); return () => window.removeEventListener("scroll", onS); }, []); return ( ); } function AnimatedLogo() { return (
AGYST mascot
); } function Hero() { return (
Powered by HIP-3 · Live on Hyperliquid

The 24/7 terminal
for on-chain stocks.

AGYST turns your Discord or Telegram into a trading desk. Tokenized NVDA, TSLA, SPY — tradable from a slash command, ranked across your clan, settled on Hyperliquid. Markets close at four. We don't.

Onboard now Add to Discord Open in Telegram
24/7
Always open
~8s settle
On Hyperliquid
No custody
Your wallet, your keys
); } function Wedge() { return (
The wedge
23/ 30

of the top pairs on Hyperliquid are now HIP-3 tokenized equities. The order book moved on-chain. The product layer hasn't — yet.

We're building the vertical app for the TradFi-curious — weekend traders, degens who want NVDA exposure after the bell, and clans who'd rather compete than scroll.

↳ NO VERTICAL PRODUCT EXISTS. WE'RE FIRST.
24h Volume
$1.42B
Across HIP-3 equity pairs on HL
Tradable instruments
47
Single-name equities & index ETFs
Median fill
8.2s
From command to receipt
Open hours
24 / 7
Settles while NYSE sleeps
); } function Demo() { const [platform, setPlatform] = useStateA("discord"); return (
Built where you already are

Trade like you chat.

No new app to download. No browser tab to babysit. Drop AGYST into your server, type a slash command, get a real fill on Hyperliquid. Charts, receipts, leaderboards — all in the channel.
01
Slash commands, real fills.
/price, /buy, /sell, /watch, /chart. Each one hits Hyperliquid directly — no IOU, no internal book.
02
Receipts in the channel.
Every fill posts publicly to the clan. Your edge is visible. So are your losses.
03
Watchlists & alerts.
Tag a ticker and the bot pings the channel on breakouts, halts, and after-hours moves.
04
Wallet-native.
Connect once via /onboard. We never touch your keys. Withdrawals settle straight to your address.
); } function Clans() { const rows = [ { rank: 1, av: "RN", name: "ronin.eth", clan: "RONIN", pnl: "+$184,210", wr: "68%", up: true }, { rank: 2, av: "VX", name: "vexley", clan: "OBELISK", pnl: "+$132,402", wr: "61%", up: true }, { rank: 3, av: "TK", name: "tanaka_k", clan: "RONIN", pnl: "+$98,755", wr: "57%", up: true }, { rank: 4, av: "0X", name: "0xparallel", clan: "MERIDIAN",pnl: "+$74,118", wr: "54%", up: true }, { rank: 5, av: "AB", name: "abel.sol", clan: "OBELISK", pnl: "+$41,902", wr: "52%", up: true }, { rank: 6, av: "JU", name: "junipr", clan: "MERIDIAN",pnl: "-$8,420", wr: "46%", up: false }, ]; return (
Clans · Seasons · Edge

Your clan is your edge.

Trading alone is a hobby. Trading with people who watch your screen is a job. AGYST organizes traders into clans with shared leaderboards, weekly seasons, and prize pools paid in USDC.
Season 04 · Leaderboard
Live · 14d remaining
{rows.map((r) => (
{String(r.rank).padStart(2, "0")}
{r.av}
{r.name} {r.clan}
{r.pnl}
{r.wr}
))}
PRIZE POOL · USDC $42,500
Weekly seasons.
Two-week cycles. PnL resets. Prize pools fund from a 0.5% taker rebate — no entry fees.
PAID IN USDC
Streaks & XP.
Win streaks compound XP. Clans level up. Top clans unlock priority fills and lower fees.
ON-CHAIN BADGES
Copy any clan-mate.
One command mirrors a teammate's position with your own sizing. Performance attribution is transparent.
/copy @vexley
No custody. Ever.
Trades route through your connected wallet. AGYST never holds your funds, your keys, or your edge.
SELF-CUSTODIED
); } function Markets() { return (
Markets · Live now

NVDA, TSLA, SPY — after the bell.

47 single-name equities and index ETFs, traded as HIP-3 perpetuals on Hyperliquid. Prices index to real spot via oracle, settle in USDC, open 24/7. New tickers added weekly by community vote.
{MARKETS.map((m, i) => (
{m.sym}
{m.name}
HIP-3
${m.px.toFixed(2)}
= 0 ? "up" : "dn"}`}> {m.chg >= 0 ? "+" : ""}{m.chg.toFixed(2)}% · 24h
= 0} color={m.chg >= 0 ? "#4F8F5C" : "#B05647"} />
{m.sym}-USDC PERP VOL {m.vol}
))}
SHOWING 12 OF 47 · UPDATES EVERY 250MS
Browse all markets
); } function HowItWorks() { return (
From zero to first fill

Three steps. Under two minutes.

No KYC walls, no onboarding funnels, no app store waits. If you can type, you can trade.
STEP 01

Add the bot.

Drop AGYST into your Discord server or open @agyst_bot on Telegram. Permissions take one click.

$ /install agyst
permissions: send_messages, slash_commands
installed ✓
STEP 02

Connect a wallet.

Run /onboard — the bot sends you a private link. Sign once with any EVM wallet. Funds stay self-custodied.

$ /onboard
wallet: 0xA4..91F
connected · clan: RONIN
STEP 03

Type your first trade.

Any ticker, any size, any time. The fill posts to the channel. Your XP starts climbing. Welcome to the floor.

$ /buy NVDA 500
filled @ $142.88 · 8.2s
+12.4 XP · streak: 03
); } function CTA() { return (
Now in open beta

Markets close at four.
We don't.

Join the first cohort of clans trading HIP-3 equities on Hyperliquid. Free during beta. Priority access for early servers.

Onboard now Add to Discord Open Telegram bot
NO KYC · NO CUSTODY · NO EMAIL REQUIRED
); } function Foot() { return ( ); } function MascotDock() { return ( ); } function App() { return ( <>