一键导入
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).