ワンクリックで
gdex-trending-promotion
Paid trending-slot promotion — book featured slots on the trending feed and check booking status
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Paid trending-slot promotion — book featured slots on the trending feed and check booking status
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-trending-promotion |
| description | Paid trending-slot promotion — book featured slots on the trending feed and check booking status |
Book paid trending slots so a token appears in the platform's promoted trending feed for a defined period.
@gdexsdk/gdex-skill installedcomputedData payload, OR a
user wallet able to pay on-chain (depending on backend deployment)| Method | Path | Purpose |
|---|---|---|
GET | /v1/trending/list | Currently active / booked promoted tokens |
GET | /v1/trending/options | Available slot packages, durations, prices |
POST | /v1/trending/register | Register / pay for a trending slot |
GET | /v1/trending/booking_status | Check booking status |
import { GdexSkill } from '@gdexsdk/gdex-skill';
const skill = new GdexSkill();
skill.loginWithApiKey(process.env.GDEX_API_KEY!);
// 1. List available packages
const options = await skill.getTrendingOptions();
// 2. Register a slot
const booking = await skill.registerTrending({
tokenAddress: '0x...',
chain: 8453,
slot: 'gold',
durationHours: 24,
userId: '0xUserControlWallet',
computedData, // when paying via managed custody
});
// 3. Poll status
const status = await skill.getTrendingBookingStatus({
bookingId: booking.bookingId as string,
});
bookingId from register that should be persisted
for status polling.pending_payment, active, or
expired.