원클릭으로
gdex-livestream-discovery
Solana livestream-token discovery — currently-live streams, per-token live status, and big-buy alert feeds
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Solana livestream-token discovery — currently-live streams, per-token live status, and big-buy alert feeds
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
HyperLiquid perpetual futures — open/close positions, set leverage, place market and limit orders with TP/SL, and manage open orders
CSS theming system for GDEX trading UIs — dark/light modes, trading colors, responsive breakpoints, and Tailwind CSS configuration
Troubleshoot GDEX SDK errors — error codes, encryption debugging, chain-specific quirks, HL gotchas, and copy trade pitfalls
Start here — GDEX overview, architecture, supported chains, available skills, and quickstart for cross-chain DeFi trading via managed-custody wallets
HyperLiquid HIP-3 outcome / event markets — list markets, place outcome orders, and manage outcome positions
Deposit and withdraw USDC to/from HyperLiquid for perpetual futures trading — constraints, amounts, and managed-custody flow
| name | gdex-livestream-discovery |
| description | Solana livestream-token discovery — currently-live streams, per-token live status, and big-buy alert feeds |
Surface the Solana livestream token-launch ecosystem inside an AI agent or trading UI: tokens that are currently live-streaming, per-token live status, and the "big buy" alert feed.
@gdexsdk/gdex-skill installed| Method | Path | Purpose |
|---|---|---|
GET | /v1/currently_live | Tokens currently live-streaming |
GET | /v1/live_status/:address | Per-token live status |
GET | /v1/bigbuys/:chainId | Big-buy alert feed for a chain |
import { GdexSkill } from '@gdexsdk/gdex-skill';
const skill = new GdexSkill();
// Currently-live launches (Solana-centric)
const live = await skill.getCurrentlyLiveTokens({ limit: 50 });
// Live status for one token
const status = await skill.getLiveStatus({ address: 'SoLanA1111...' });
// Big-buy feed (chainId 622112261 = Solana)
const bigBuys = await skill.getBigBuys({ chainId: 622112261, limit: 100 });
chainId for bigbuys is 622112261.live_status path includes the token address inline; pass the raw
address (no chain prefix).