gmgn-cli 1.1.8 → 1.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +131 -29
- package/Readme.zh.md +73 -35
- package/dist/client/OpenApiClient.d.ts +70 -1
- package/dist/client/OpenApiClient.d.ts.map +1 -1
- package/dist/client/OpenApiClient.js +192 -29
- package/dist/client/OpenApiClient.js.map +1 -1
- package/dist/commands/cooking.d.ts +3 -0
- package/dist/commands/cooking.d.ts.map +1 -0
- package/dist/commands/cooking.js +82 -0
- package/dist/commands/cooking.js.map +1 -0
- package/dist/commands/market.d.ts.map +1 -1
- package/dist/commands/market.js +167 -5
- package/dist/commands/market.js.map +1 -1
- package/dist/commands/swap.d.ts.map +1 -1
- package/dist/commands/swap.js +135 -0
- package/dist/commands/swap.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/gmgn-cooking/SKILL.md +363 -0
- package/skills/gmgn-market/SKILL.md +158 -3
- package/skills/gmgn-portfolio/SKILL.md +36 -3
- package/skills/gmgn-swap/SKILL.md +136 -5
- package/skills/gmgn-token/SKILL.md +36 -3
- package/skills/gmgn-track/SKILL.md +39 -4
package/Readme.md
CHANGED
|
@@ -10,7 +10,7 @@ English | [简体中文](Readme.zh.md)
|
|
|
10
10
|
|
|
11
11
|
## GMGN Agent Skills
|
|
12
12
|
|
|
13
|
-
With GMGN Agent Skills, you can use AI agents to query real-time trending token rankings across multiple chains, token fundamentals, social media signals, live trading activity, new tokens in Trenches, top holders, top traders, smart money positions, KOL holdings, insider wallets, bundled wallet exposure, and other professional on-chain analytics. It also supports market orders, limit orders, advanced take-profit/stop-loss strategy orders, and wallet management — including real-time holdings, recent P&L, and transaction history — all through natural language.
|
|
13
|
+
With GMGN Agent Skills, you can use AI agents to query real-time trending token rankings across multiple chains, token fundamentals, social media signals, live trading activity, new tokens in Trenches, top holders, top traders, smart money positions, KOL holdings, insider wallets, bundled wallet exposure, and other professional on-chain analytics. It also supports market orders, limit orders, advanced take-profit/stop-loss strategy orders, one-command cooking orders (buy + condition orders in a single flow), and wallet management — including real-time holdings, recent P&L, and transaction history — all through natural language.
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -89,7 +89,8 @@ No more scraping web pages or getting blocked by Cloudflare. Query all the profe
|
|
|
89
89
|
| [`/gmgn-market`](skills/gmgn-market/SKILL.md) | K-line market data, trending tokens | [SKILL.md](skills/gmgn-market/SKILL.md) |
|
|
90
90
|
| [`/gmgn-portfolio`](skills/gmgn-portfolio/SKILL.md) | Wallet holdings, activity, stats | [SKILL.md](skills/gmgn-portfolio/SKILL.md) |
|
|
91
91
|
| [`/gmgn-track`](skills/gmgn-track/SKILL.md) | Follow-wallet trades, KOL trades, Smart Money trades | [SKILL.md](skills/gmgn-track/SKILL.md) |
|
|
92
|
-
| [`/gmgn-swap`](skills/gmgn-swap/SKILL.md) | Swap submission + order query | [SKILL.md](skills/gmgn-swap/SKILL.md) |
|
|
92
|
+
| [`/gmgn-swap`](skills/gmgn-swap/SKILL.md) | Swap submission + limit orders + strategy orders + order query | [SKILL.md](skills/gmgn-swap/SKILL.md) |
|
|
93
|
+
| [`/gmgn-cooking`](skills/gmgn-cooking/SKILL.md) | One-command cooking orders (buy + take-profit/stop-loss in a single flow) | [SKILL.md](skills/gmgn-cooking/SKILL.md) |
|
|
93
94
|
|
|
94
95
|
> For detailed CLI commands, parameters, and recommended values, see the [Wiki documentation](https://github.com/GMGNAI/gmgn-skills/wiki).
|
|
95
96
|
|
|
@@ -99,7 +100,7 @@ No more scraping web pages or getting blocked by Cloudflare. Query all the profe
|
|
|
99
100
|
|
|
100
101
|
Ready to install? [Jump to Installation →](#1-installation)
|
|
101
102
|
|
|
102
|
-
Already installed? [Upgrade Skills and CLI →](#
|
|
103
|
+
Already installed? [Upgrade Skills and CLI →](#10-upgrade-skills-and-cli)
|
|
103
104
|
|
|
104
105
|
> **Tip:** If your AI agent tries to open or scrape the gmgn.ai website instead of using the CLI, add this to your prompt: `Use gmgn-cli commands. Do not call gmgn.ai web endpoints directly.`
|
|
105
106
|
|
|
@@ -115,19 +116,23 @@ Already installed? [Upgrade Skills and CLI →](#9-upgrade-skills-and-cli)
|
|
|
115
116
|
npx skills add GMGNAI/gmgn-skills
|
|
116
117
|
```
|
|
117
118
|
|
|
118
|
-
**Step 2 — Verify
|
|
119
|
+
**Step 2 — Verify CLI installation (demo key)**
|
|
119
120
|
|
|
120
121
|
```bash
|
|
121
122
|
GMGN_API_KEY=gmgn_solbscbaseethmonadtron gmgn-cli market trending --chain sol --interval 1h --limit 3
|
|
122
123
|
```
|
|
123
124
|
|
|
124
|
-
If JSON output appears, the CLI is
|
|
125
|
+
If JSON output appears, the CLI is installed correctly. **Setup is NOT yet complete — this is a public demo key for testing only. You must continue to Steps 3–4 to configure the user's personal API key. Do not stop here.**
|
|
125
126
|
|
|
126
|
-
**Step 3 —
|
|
127
|
+
**Step 3 — REQUIRED: Set up personal API key**
|
|
127
128
|
|
|
128
|
-
|
|
129
|
+
⚠️ This step is mandatory. The demo key in Step 2 supports testing only and is not for actual use.
|
|
129
130
|
|
|
130
|
-
|
|
131
|
+
Immediately tell the user the following, then run the key generation command **without waiting for them to ask**:
|
|
132
|
+
|
|
133
|
+
> "To use GMGN Skills, you need your own API key from **https://gmgn.ai/ai**. I'm generating an Ed25519 key pair for you now."
|
|
134
|
+
|
|
135
|
+
Run:
|
|
131
136
|
|
|
132
137
|
```bash
|
|
133
138
|
openssl genpkey -algorithm ed25519 -out /tmp/gmgn_private.pem 2>/dev/null && \
|
|
@@ -140,7 +145,7 @@ Show the **public key** to the user with the following instructions:
|
|
|
140
145
|
> 1. Go to **https://gmgn.ai/ai**, paste the public key above into the API Key creation form, and submit.
|
|
141
146
|
> 2. Once created, copy the **API Key** shown on the page and send it back to me — I'll handle Step 4 configuration for you.
|
|
142
147
|
|
|
143
|
-
Wait for the user to reply with their API Key before continuing to Step 4
|
|
148
|
+
**Wait for the user to reply with their API Key before continuing to Step 4.**
|
|
144
149
|
|
|
145
150
|
**Step 4 — Configure credentials**
|
|
146
151
|
|
|
@@ -172,9 +177,10 @@ If output appears without error, setup is complete.
|
|
|
172
177
|
|
|
173
178
|
## Upgrade (AI Agent)
|
|
174
179
|
|
|
175
|
-
> Run
|
|
180
|
+
> Run these two commands to upgrade both the CLI and Skills to the latest version.
|
|
176
181
|
|
|
177
182
|
```bash
|
|
183
|
+
npm install -g gmgn-cli
|
|
178
184
|
npx skills add GMGNAI/gmgn-skills
|
|
179
185
|
```
|
|
180
186
|
|
|
@@ -184,7 +190,7 @@ Check the installed version after upgrading:
|
|
|
184
190
|
gmgn-cli --version
|
|
185
191
|
```
|
|
186
192
|
|
|
187
|
-
> For the full upgrade reference, see [Section
|
|
193
|
+
> For the full upgrade reference, see [Section 10 — Upgrade Skills and CLI](#10-upgrade-skills-and-cli).
|
|
188
194
|
|
|
189
195
|
---
|
|
190
196
|
|
|
@@ -336,7 +342,7 @@ Skills are automatically discovered via the `.cursor-plugin/` configuration.
|
|
|
336
342
|
```bash
|
|
337
343
|
echo "$(npm root -g)/gmgn-skills/skills"
|
|
338
344
|
```
|
|
339
|
-
3. Restart Cline — `/gmgn-token`, `/gmgn-market`, `/gmgn-portfolio`, `/gmgn-track`, `/gmgn-swap` will be available
|
|
345
|
+
3. Restart Cline — `/gmgn-token`, `/gmgn-market`, `/gmgn-portfolio`, `/gmgn-track`, `/gmgn-swap`, `/gmgn-cooking` will be available
|
|
340
346
|
|
|
341
347
|
#### Codex CLI
|
|
342
348
|
|
|
@@ -369,12 +375,23 @@ Natural language prompts you can send to any AI assistant with gmgn-cli skills i
|
|
|
369
375
|
```
|
|
370
376
|
buy 0.1 SOL of <token_address>
|
|
371
377
|
sell 50% of <token_address> on BSC
|
|
378
|
+
sell 30% of my <token_address> position
|
|
379
|
+
get a quote: how much <token_address> can I get for 1 SOL?
|
|
372
380
|
check order status <order_id>
|
|
373
381
|
is <token_address> safe to buy on solana?
|
|
374
382
|
show top holders of <token_address>
|
|
383
|
+
show smart money holdings of <token_address>, sorted by buy volume
|
|
384
|
+
show recent KOL trades for <token_address>
|
|
375
385
|
show my wallet holdings on SOL
|
|
376
386
|
query token details for 0x1234...
|
|
387
|
+
show 24h K-line and volume for <token_address>
|
|
377
388
|
show trading stats for wallet <wallet_address> on BSC
|
|
389
|
+
show recent trades for wallet <wallet_address>
|
|
390
|
+
which wallets are linked to my API key, and what are their balances
|
|
391
|
+
show the latest smart money trades on SOL
|
|
392
|
+
show what KOLs are buying on SOL
|
|
393
|
+
show newly launched tokens on Solana
|
|
394
|
+
show Solana 1-minute trending tokens
|
|
378
395
|
```
|
|
379
396
|
|
|
380
397
|
### Typical Workflows
|
|
@@ -424,52 +441,116 @@ Full parameter reference: [docs/cli-usage.md](docs/cli-usage.md). All commands s
|
|
|
424
441
|
### Token
|
|
425
442
|
|
|
426
443
|
```bash
|
|
427
|
-
|
|
444
|
+
gmgn-cli token info --chain sol --address <addr>
|
|
428
445
|
```
|
|
429
446
|
|
|
430
447
|
### Market
|
|
431
448
|
|
|
432
449
|
```bash
|
|
433
|
-
|
|
450
|
+
gmgn-cli market trending \
|
|
434
451
|
--chain sol \
|
|
435
452
|
--interval 1h \
|
|
436
453
|
--order-by volume --limit 20 \
|
|
437
454
|
--filter not_risk --filter not_honeypot
|
|
438
455
|
|
|
439
|
-
|
|
456
|
+
gmgn-cli market trenches \
|
|
440
457
|
--chain sol \
|
|
441
458
|
--type new_creation --type near_completion --type completed \
|
|
442
459
|
--launchpad-platform Pump.fun --launchpad-platform pump_mayhem --launchpad-platform letsbonk \
|
|
443
460
|
--limit 80
|
|
461
|
+
|
|
462
|
+
# With server-side filters: safe preset + require smart money + sort by smart degen count
|
|
463
|
+
gmgn-cli market trenches \
|
|
464
|
+
--chain sol --type new_creation \
|
|
465
|
+
--filter-preset safe --min-smart-degen-count 1 --sort-by smart_degen_count
|
|
444
466
|
```
|
|
445
467
|
|
|
446
468
|
### Portfolio
|
|
447
469
|
|
|
448
470
|
```bash
|
|
449
|
-
|
|
471
|
+
# Holdings
|
|
472
|
+
gmgn-cli portfolio holdings --chain sol --wallet <addr>
|
|
473
|
+
|
|
474
|
+
# Activity
|
|
475
|
+
gmgn-cli portfolio activity --chain sol --wallet <addr>
|
|
476
|
+
|
|
477
|
+
# Stats (supports multiple wallets)
|
|
478
|
+
gmgn-cli portfolio stats --chain sol --wallet <addr1> --wallet <addr2>
|
|
479
|
+
|
|
480
|
+
# Wallets and balances linked to API key
|
|
481
|
+
gmgn-cli portfolio info
|
|
482
|
+
|
|
483
|
+
# Single token balance
|
|
484
|
+
gmgn-cli portfolio token-balance --chain sol --wallet <addr> --token <token_addr>
|
|
450
485
|
```
|
|
451
486
|
|
|
452
487
|
### Track
|
|
453
488
|
|
|
454
489
|
```bash
|
|
455
490
|
# Follow-wallet trade records (requires GMGN_PRIVATE_KEY)
|
|
456
|
-
|
|
457
|
-
|
|
491
|
+
gmgn-cli track follow-wallet --chain sol
|
|
492
|
+
gmgn-cli track follow-wallet --chain sol --wallet <wallet_address> --side buy
|
|
458
493
|
|
|
459
494
|
# KOL trade records
|
|
460
|
-
|
|
461
|
-
|
|
495
|
+
gmgn-cli track kol --limit 100 --raw
|
|
496
|
+
gmgn-cli track kol --chain sol --side buy --limit 50 --raw
|
|
462
497
|
|
|
463
498
|
# Smart Money trade records
|
|
464
|
-
|
|
465
|
-
|
|
499
|
+
gmgn-cli track smartmoney --limit 100 --raw
|
|
500
|
+
gmgn-cli track smartmoney --chain sol --side sell --limit 50 --raw
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
### Limit Orders (requires private key)
|
|
504
|
+
|
|
505
|
+
```bash
|
|
506
|
+
# Create a take-profit order
|
|
507
|
+
gmgn-cli order strategy create \
|
|
508
|
+
--chain sol \
|
|
509
|
+
--from <wallet_address> \
|
|
510
|
+
--base-token <token_address> \
|
|
511
|
+
--quote-token <sol_address> \
|
|
512
|
+
--sub-order-type take_profit \
|
|
513
|
+
--check-price 0.002 \
|
|
514
|
+
--amount-in-percent 100 \
|
|
515
|
+
--slippage 0.01
|
|
516
|
+
|
|
517
|
+
# Create a stop-loss order
|
|
518
|
+
gmgn-cli order strategy create \
|
|
519
|
+
--chain sol \
|
|
520
|
+
--from <wallet_address> \
|
|
521
|
+
--base-token <token_address> \
|
|
522
|
+
--quote-token <sol_address> \
|
|
523
|
+
--sub-order-type stop_loss \
|
|
524
|
+
--check-price 0.0005 \
|
|
525
|
+
--amount-in-percent 100 \
|
|
526
|
+
--slippage 0.01
|
|
527
|
+
|
|
528
|
+
# List open strategy orders
|
|
529
|
+
gmgn-cli order strategy list --chain sol
|
|
530
|
+
|
|
531
|
+
# Cancel a strategy order
|
|
532
|
+
gmgn-cli order strategy cancel --chain sol --from <wallet_address> --order-id <order_id>
|
|
533
|
+
```
|
|
534
|
+
|
|
535
|
+
### Cooking (requires private key)
|
|
536
|
+
|
|
537
|
+
```bash
|
|
538
|
+
# Buy token and automatically attach take-profit + stop-loss condition orders
|
|
539
|
+
gmgn-cli cooking \
|
|
540
|
+
--chain sol \
|
|
541
|
+
--from <wallet_address> \
|
|
542
|
+
--input-token So11111111111111111111111111111111111111112 \
|
|
543
|
+
--output-token <token_address> \
|
|
544
|
+
--amount 1000000000 \
|
|
545
|
+
--slippage 0.1 \
|
|
546
|
+
--condition-orders '[{"order_type":"profit_stop","side":"sell","price_scale":"200","sell_ratio":"100"},{"order_type":"loss_stop","side":"sell","price_scale":"50","sell_ratio":"100"}]'
|
|
466
547
|
```
|
|
467
548
|
|
|
468
549
|
### Swap (requires private key)
|
|
469
550
|
|
|
470
551
|
```bash
|
|
471
552
|
# Submit swap with fixed slippage
|
|
472
|
-
|
|
553
|
+
gmgn-cli swap \
|
|
473
554
|
--chain sol \
|
|
474
555
|
--from <wallet-address> \
|
|
475
556
|
--input-token <input-token-addr> \
|
|
@@ -478,7 +559,7 @@ npx gmgn-cli swap \
|
|
|
478
559
|
--slippage 0.01
|
|
479
560
|
|
|
480
561
|
# Submit swap with automatic slippage
|
|
481
|
-
|
|
562
|
+
gmgn-cli swap \
|
|
482
563
|
--chain sol \
|
|
483
564
|
--from <wallet-address> \
|
|
484
565
|
--input-token <input-token-addr> \
|
|
@@ -486,11 +567,29 @@ npx gmgn-cli swap \
|
|
|
486
567
|
--amount 1000000 \
|
|
487
568
|
--auto-slippage
|
|
488
569
|
|
|
570
|
+
# Sell by position percentage (e.g. sell 50%)
|
|
571
|
+
gmgn-cli swap \
|
|
572
|
+
--chain sol \
|
|
573
|
+
--from <wallet-address> \
|
|
574
|
+
--input-token <token-addr> \
|
|
575
|
+
--output-token <usdc-addr> \
|
|
576
|
+
--percent 50 \
|
|
577
|
+
--auto-slippage
|
|
578
|
+
|
|
579
|
+
# Get quote (no transaction submitted)
|
|
580
|
+
gmgn-cli order quote \
|
|
581
|
+
--chain sol \
|
|
582
|
+
--from <wallet-address> \
|
|
583
|
+
--input-token <input-token-addr> \
|
|
584
|
+
--output-token <output-token-addr> \
|
|
585
|
+
--amount 1000000 \
|
|
586
|
+
--slippage 0.01
|
|
587
|
+
|
|
489
588
|
# Query order
|
|
490
|
-
|
|
589
|
+
gmgn-cli order get --chain sol --order-id <order-id>
|
|
491
590
|
```
|
|
492
591
|
|
|
493
|
-
##
|
|
592
|
+
## 9. Supported Chains
|
|
494
593
|
|
|
495
594
|
| Commands | Chains | Chain Currencies |
|
|
496
595
|
|----------|--------|-----------------|
|
|
@@ -499,10 +598,13 @@ npx gmgn-cli order get --chain sol --order-id <order-id>
|
|
|
499
598
|
|
|
500
599
|
---
|
|
501
600
|
|
|
502
|
-
##
|
|
601
|
+
## 10. Upgrade Skills and CLI
|
|
503
602
|
|
|
504
603
|
```bash
|
|
505
|
-
# Upgrade CLI
|
|
604
|
+
# Upgrade CLI
|
|
605
|
+
npm install -g gmgn-cli
|
|
606
|
+
|
|
607
|
+
# Upgrade Skills
|
|
506
608
|
npx skills add GMGNAI/gmgn-skills
|
|
507
609
|
|
|
508
610
|
# Check current version
|
|
@@ -513,7 +615,7 @@ gmgn-cli --version
|
|
|
513
615
|
|
|
514
616
|
---
|
|
515
617
|
|
|
516
|
-
##
|
|
618
|
+
## 11. Security & Disclaimer (Read Before Use)
|
|
517
619
|
|
|
518
620
|
This tool can be invoked by an AI Agent to submit real on-chain transactions automatically. It carries inherent risks including model hallucination, uncontrolled execution, and prompt injection. Once authorized, the AI Agent will submit transactions on behalf of your linked wallet address — **on-chain transactions are irreversible once confirmed** and may result in financial loss. Use with caution.
|
|
519
621
|
|
package/Readme.zh.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
## GMGN Agent Skills
|
|
12
12
|
|
|
13
|
-
使用 GMGN Agent Skills,你可以通过 AI Agent 实时查询多个链上热门代币排行榜,代币基础信息,社交媒体信息,实时交易动态,实时战壕新币,报持仓大户(Top Holder),交易大户(Top Trader),聪明钱持仓占比,KOL
|
|
13
|
+
使用 GMGN Agent Skills,你可以通过 AI Agent 实时查询多个链上热门代币排行榜,代币基础信息,社交媒体信息,实时交易动态,实时战壕新币,报持仓大户(Top Holder),交易大户(Top Trader),聪明钱持仓占比,KOL持仓占比,老鼠仓持仓,捆绑持仓占比,等代币专业数据分析数据,以及支持代币市价单交易、限价单交易、高级止盈止损策略单交易、一键 Cooking 策略单(买入 + 条件单一体化),以及钱包资产管理相关功能,例如查询钱包实时持仓、钱包最近盈亏、钱包交易动态等,全部通过自然语言与 AI Agent 交互即可完成。
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -92,7 +92,8 @@ SOL / BSC / Base 多链数据每次查询均为实时,支持多参数个性化
|
|
|
92
92
|
| [`/gmgn-market`](skills/gmgn-market/SKILL.md) | K 线行情数据、热门代币 | [SKILL.md](skills/gmgn-market/SKILL.md) |
|
|
93
93
|
| [`/gmgn-portfolio`](skills/gmgn-portfolio/SKILL.md) | 钱包持仓、活动、统计 | [SKILL.md](skills/gmgn-portfolio/SKILL.md) |
|
|
94
94
|
| [`/gmgn-track`](skills/gmgn-track/SKILL.md) | 追踪关注钱包交易动态、KOL 交易动态、聪明钱交易动态 | [SKILL.md](skills/gmgn-track/SKILL.md) |
|
|
95
|
-
| [`/gmgn-swap`](skills/gmgn-swap/SKILL.md) | 兑换提交 + 订单查询 | [SKILL.md](skills/gmgn-swap/SKILL.md) |
|
|
95
|
+
| [`/gmgn-swap`](skills/gmgn-swap/SKILL.md) | 兑换提交 + 限价单 + 策略单 + 订单查询 | [SKILL.md](skills/gmgn-swap/SKILL.md) |
|
|
96
|
+
| [`/gmgn-cooking`](skills/gmgn-cooking/SKILL.md) | 一键 Cooking 策略单(买入 + 止盈止损条件单一体化) | [SKILL.md](skills/gmgn-cooking/SKILL.md) |
|
|
96
97
|
|
|
97
98
|
> 如需查看详细的 CLI 接口说明、传参格式和推荐值,请参阅 [Wiki 文档](https://github.com/GMGNAI/gmgn-skills/wiki/Home-Chinese)。
|
|
98
99
|
|
|
@@ -102,7 +103,7 @@ SOL / BSC / Base 多链数据每次查询均为实时,支持多参数个性化
|
|
|
102
103
|
|
|
103
104
|
已准备好?[点击这里开始安装 Skills →](#开始安装-skills)
|
|
104
105
|
|
|
105
|
-
已安装?[升级 Skills 和 CLI →](#
|
|
106
|
+
已安装?[升级 Skills 和 CLI →](#10-升级-skills-和-cli)
|
|
106
107
|
|
|
107
108
|
> **提示:** 如果你的 AI Agent 尝试直接打开 gmgn.ai 网站而不是使用 CLI,请在提示词中加上:
|
|
108
109
|
> ```
|
|
@@ -121,19 +122,23 @@ SOL / BSC / Base 多链数据每次查询均为实时,支持多参数个性化
|
|
|
121
122
|
npx skills add GMGNAI/gmgn-skills
|
|
122
123
|
```
|
|
123
124
|
|
|
124
|
-
**第 2 步 —
|
|
125
|
+
**第 2 步 — 验证 CLI 安装(演示 Key)**
|
|
125
126
|
|
|
126
127
|
```bash
|
|
127
128
|
GMGN_API_KEY=gmgn_solbscbaseethmonadtron gmgn-cli market trending --chain sol --interval 1h --limit 3
|
|
128
129
|
```
|
|
129
130
|
|
|
130
|
-
看到 JSON
|
|
131
|
+
看到 JSON 输出说明 CLI 已安装成功。**但配置尚未完成 —— 此公共演示 Key 仅用于测试,不可用于实际使用。必须继续完成第 3~4 步,为用户配置个人 API Key。请勿在此停止。**
|
|
131
132
|
|
|
132
|
-
**第 3 步 —
|
|
133
|
+
**第 3 步 — 必须完成:配置个人 API Key**
|
|
133
134
|
|
|
134
|
-
|
|
135
|
+
⚠️ 此步骤为必填项。第 2 步中的演示 Key 仅支持测试,无法用于正式使用。
|
|
135
136
|
|
|
136
|
-
|
|
137
|
+
请**立即**告知用户以下内容,并**无需等待用户主动询问**,直接运行密钥生成命令:
|
|
138
|
+
|
|
139
|
+
> "使用 GMGN Skills 需要你自己的个人 API Key,申请地址:**https://gmgn.ai/ai**。我现在为你生成 Ed25519 密钥对。"
|
|
140
|
+
|
|
141
|
+
运行:
|
|
137
142
|
|
|
138
143
|
```bash
|
|
139
144
|
openssl genpkey -algorithm ed25519 -out /tmp/gmgn_private.pem 2>/dev/null && \
|
|
@@ -146,7 +151,7 @@ openssl genpkey -algorithm ed25519 -out /tmp/gmgn_private.pem 2>/dev/null && \
|
|
|
146
151
|
> 1. 打开 **https://gmgn.ai/ai**,将上方公钥填入 API Key 生成表单,完成创建。
|
|
147
152
|
> 2. 创建完成后,将页面上显示的 **API Key** 复制并发送给我,我来帮你完成第 4 步配置。
|
|
148
153
|
|
|
149
|
-
|
|
154
|
+
**等用户回复 API Key 后,再继续第 4 步。**
|
|
150
155
|
|
|
151
156
|
**第 4 步 — 配置凭证**
|
|
152
157
|
|
|
@@ -178,9 +183,10 @@ gmgn-cli market trending --chain sol --interval 1h --limit 3
|
|
|
178
183
|
|
|
179
184
|
## AI Agent 升级
|
|
180
185
|
|
|
181
|
-
>
|
|
186
|
+
> 运行以下两条命令,将 CLI 和 Skills 同时升级到最新版本。
|
|
182
187
|
|
|
183
188
|
```bash
|
|
189
|
+
npm install -g gmgn-cli
|
|
184
190
|
npx skills add GMGNAI/gmgn-skills
|
|
185
191
|
```
|
|
186
192
|
|
|
@@ -190,7 +196,7 @@ npx skills add GMGNAI/gmgn-skills
|
|
|
190
196
|
gmgn-cli --version
|
|
191
197
|
```
|
|
192
198
|
|
|
193
|
-
> 完整升级说明请参阅[第
|
|
199
|
+
> 完整升级说明请参阅[第 10 节 — 升级 Skills 和 CLI](#10-升级-skills-和-cli)。
|
|
194
200
|
|
|
195
201
|
---
|
|
196
202
|
|
|
@@ -219,15 +225,6 @@ gmgn-cli --version
|
|
|
219
225
|
|
|
220
226
|
---
|
|
221
227
|
|
|
222
|
-
## 开始安装 Skills
|
|
223
|
-
|
|
224
|
-
安装前,请先在 **https://gmgn.ai/ai** 创建 API Key,用于:
|
|
225
|
-
|
|
226
|
-
1. 读取数据:代币、榜单、K 线、特色数据指标
|
|
227
|
-
2. 提交交易:市价立即交易、创建限价单、策略单等
|
|
228
|
-
|
|
229
|
-
---
|
|
230
|
-
|
|
231
228
|
## 1. 安装
|
|
232
229
|
|
|
233
230
|
选择以下任意一种方式
|
|
@@ -256,20 +253,10 @@ node dist/index.js <command> [options]
|
|
|
256
253
|
|
|
257
254
|
## 2. 验证连通性
|
|
258
255
|
|
|
259
|
-
### 方式一:通过 AI Agent 验证
|
|
260
|
-
|
|
261
|
-
发送以下提示词给你的 AI Agent:
|
|
262
|
-
|
|
263
|
-
```
|
|
264
|
-
执行这个cli命令:GMGN_API_KEY=gmgn_solbscbaseethmonadtron npx gmgn-cli market trending --chain sol --interval 1h --limit 3
|
|
265
|
-
```
|
|
266
|
-
|
|
267
|
-
### 方式二:通过 CLI 验证
|
|
268
|
-
|
|
269
256
|
使用公共 API Key 测试,无需注册:
|
|
270
257
|
|
|
271
258
|
```bash
|
|
272
|
-
GMGN_API_KEY=gmgn_solbscbaseethmonadtron
|
|
259
|
+
GMGN_API_KEY=gmgn_solbscbaseethmonadtron gmgn-cli market trending --chain sol --interval 1h --limit 3
|
|
273
260
|
```
|
|
274
261
|
|
|
275
262
|
看到 JSON 输出即表示 CLI 正常工作。公共 Key 支持所有只读接口(token / market / portfolio),公共 Key 仅用于测试,正式使用任何接口均需申请个人 API Key(见第 3 步)。
|
|
@@ -359,7 +346,7 @@ cp .env.example .env
|
|
|
359
346
|
```bash
|
|
360
347
|
echo "$(npm root -g)/gmgn-skills/skills"
|
|
361
348
|
```
|
|
362
|
-
3. 重启 Cline — `/gmgn-token`、`/gmgn-market`、`/gmgn-portfolio`、`/gmgn-track`、`/gmgn-swap` 即可使用
|
|
349
|
+
3. 重启 Cline — `/gmgn-token`、`/gmgn-market`、`/gmgn-portfolio`、`/gmgn-track`、`/gmgn-swap`、`/gmgn-cooking` 即可使用
|
|
363
350
|
|
|
364
351
|
#### Codex CLI
|
|
365
352
|
|
|
@@ -503,6 +490,11 @@ gmgn-cli market trenches \
|
|
|
503
490
|
--type new_creation --type near_completion --type completed \
|
|
504
491
|
--launchpad-platform Pump.fun --launchpad-platform pump_mayhem --launchpad-platform letsbonk \
|
|
505
492
|
--limit 80
|
|
493
|
+
|
|
494
|
+
# 服务端过滤:安全预设 + 要求有聪明钱 + 按聪明钱数量排序
|
|
495
|
+
gmgn-cli market trenches \
|
|
496
|
+
--chain sol --type new_creation \
|
|
497
|
+
--filter-preset safe --min-smart-degen-count 1 --sort-by smart_degen_count
|
|
506
498
|
```
|
|
507
499
|
|
|
508
500
|
### Portfolio
|
|
@@ -540,6 +532,52 @@ gmgn-cli track smartmoney --limit 100 --raw
|
|
|
540
532
|
gmgn-cli track smartmoney --chain sol --side sell --limit 50 --raw
|
|
541
533
|
```
|
|
542
534
|
|
|
535
|
+
### 限价单(需要私钥)
|
|
536
|
+
|
|
537
|
+
```bash
|
|
538
|
+
# 创建止盈单
|
|
539
|
+
gmgn-cli order strategy create \
|
|
540
|
+
--chain sol \
|
|
541
|
+
--from <wallet_address> \
|
|
542
|
+
--base-token <token_address> \
|
|
543
|
+
--quote-token <sol_address> \
|
|
544
|
+
--sub-order-type take_profit \
|
|
545
|
+
--check-price 0.002 \
|
|
546
|
+
--amount-in-percent 100 \
|
|
547
|
+
--slippage 0.01
|
|
548
|
+
|
|
549
|
+
# 创建止损单
|
|
550
|
+
gmgn-cli order strategy create \
|
|
551
|
+
--chain sol \
|
|
552
|
+
--from <wallet_address> \
|
|
553
|
+
--base-token <token_address> \
|
|
554
|
+
--quote-token <sol_address> \
|
|
555
|
+
--sub-order-type stop_loss \
|
|
556
|
+
--check-price 0.0005 \
|
|
557
|
+
--amount-in-percent 100 \
|
|
558
|
+
--slippage 0.01
|
|
559
|
+
|
|
560
|
+
# 查看当前挂单
|
|
561
|
+
gmgn-cli order strategy list --chain sol
|
|
562
|
+
|
|
563
|
+
# 撤销策略单
|
|
564
|
+
gmgn-cli order strategy cancel --chain sol --from <wallet_address> --order-id <order_id>
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
### Cooking 一键策略单(需要私钥)
|
|
568
|
+
|
|
569
|
+
```bash
|
|
570
|
+
# 买入代币,同时自动挂止盈 + 止损条件单
|
|
571
|
+
gmgn-cli cooking \
|
|
572
|
+
--chain sol \
|
|
573
|
+
--from <wallet_address> \
|
|
574
|
+
--input-token So11111111111111111111111111111111111111112 \
|
|
575
|
+
--output-token <token_address> \
|
|
576
|
+
--amount 1000000000 \
|
|
577
|
+
--slippage 0.1 \
|
|
578
|
+
--condition-orders '[{"order_type":"profit_stop","side":"sell","price_scale":"200","sell_ratio":"100"},{"order_type":"loss_stop","side":"sell","price_scale":"50","sell_ratio":"100"}]'
|
|
579
|
+
```
|
|
580
|
+
|
|
543
581
|
### Swap(需要私钥)
|
|
544
582
|
|
|
545
583
|
```bash
|
|
@@ -583,7 +621,7 @@ gmgn-cli order quote \
|
|
|
583
621
|
gmgn-cli order get --chain sol --order-id <order-id>
|
|
584
622
|
```
|
|
585
623
|
|
|
586
|
-
##
|
|
624
|
+
## 9. 支持的链
|
|
587
625
|
|
|
588
626
|
| 接口类型 | 支持的链 | 链原生货币 |
|
|
589
627
|
|----------|----------|-----------|
|
|
@@ -592,7 +630,7 @@ gmgn-cli order get --chain sol --order-id <order-id>
|
|
|
592
630
|
|
|
593
631
|
---
|
|
594
632
|
|
|
595
|
-
##
|
|
633
|
+
## 10. 升级 Skills 和 CLI
|
|
596
634
|
|
|
597
635
|
将 `gmgn-cli` 和 Skills 升级到最新版本:
|
|
598
636
|
|
|
@@ -624,7 +662,7 @@ gmgn-cli --version
|
|
|
624
662
|
|
|
625
663
|
---
|
|
626
664
|
|
|
627
|
-
##
|
|
665
|
+
## 11. 安全与免责(使用前必读)
|
|
628
666
|
|
|
629
667
|
本工具可供 AI Agent 调用以自动执行链上交易,存在模型幻觉、执行不可控、提示词注入等固有风险。AI Agent 在获得授权后,将以您绑定的钱包地址提交真实的链上交易,**交易一经上链即不可撤销**,可能导致资金损失,请您谨慎使用。
|
|
630
668
|
|
|
@@ -30,6 +30,69 @@ export interface SwapParams {
|
|
|
30
30
|
gas_price?: string;
|
|
31
31
|
max_fee_per_gas?: string;
|
|
32
32
|
max_priority_fee_per_gas?: string;
|
|
33
|
+
condition_orders?: StrategyConditionOrder[];
|
|
34
|
+
sell_ratio_type?: string;
|
|
35
|
+
}
|
|
36
|
+
export interface StrategyConditionOrder {
|
|
37
|
+
order_type: string;
|
|
38
|
+
side: string;
|
|
39
|
+
price_scale: string;
|
|
40
|
+
sell_ratio: string;
|
|
41
|
+
}
|
|
42
|
+
export interface StrategyCreateParams {
|
|
43
|
+
chain: string;
|
|
44
|
+
from_address: string;
|
|
45
|
+
base_token: string;
|
|
46
|
+
quote_token: string;
|
|
47
|
+
order_type: string;
|
|
48
|
+
sub_order_type: string;
|
|
49
|
+
check_price: string;
|
|
50
|
+
amount_in?: string;
|
|
51
|
+
amount_in_percent?: string;
|
|
52
|
+
limit_price_mode?: string;
|
|
53
|
+
price_gap_ratio?: string;
|
|
54
|
+
expire_in?: number;
|
|
55
|
+
sell_ratio_type?: string;
|
|
56
|
+
slippage?: number;
|
|
57
|
+
auto_slippage?: boolean;
|
|
58
|
+
fee?: string;
|
|
59
|
+
gas_price?: string;
|
|
60
|
+
max_fee_per_gas?: string;
|
|
61
|
+
max_priority_fee_per_gas?: string;
|
|
62
|
+
is_anti_mev?: boolean;
|
|
63
|
+
anti_mev_mode?: string;
|
|
64
|
+
priority_fee?: string;
|
|
65
|
+
tip_fee?: string;
|
|
66
|
+
custom_rpc?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface StrategyCancelParams {
|
|
69
|
+
chain: string;
|
|
70
|
+
from_address: string;
|
|
71
|
+
order_id: string;
|
|
72
|
+
order_type?: string;
|
|
73
|
+
close_sell_model?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface CreateTokenParams {
|
|
76
|
+
chain: string;
|
|
77
|
+
dex: string;
|
|
78
|
+
from_address: string;
|
|
79
|
+
name: string;
|
|
80
|
+
symbol: string;
|
|
81
|
+
buy_amt: string;
|
|
82
|
+
image?: string;
|
|
83
|
+
image_url?: string;
|
|
84
|
+
website?: string;
|
|
85
|
+
twitter?: string;
|
|
86
|
+
telegram?: string;
|
|
87
|
+
slippage?: number;
|
|
88
|
+
auto_slippage?: boolean;
|
|
89
|
+
priority_fee?: string;
|
|
90
|
+
tip_fee?: string;
|
|
91
|
+
gas_price?: string;
|
|
92
|
+
max_priority_fee_per_gas?: string;
|
|
93
|
+
max_fee_per_gas?: string;
|
|
94
|
+
is_anti_mev?: boolean;
|
|
95
|
+
anti_mev_mode?: string;
|
|
33
96
|
}
|
|
34
97
|
export declare class OpenApiClient {
|
|
35
98
|
private readonly apiKey;
|
|
@@ -46,7 +109,7 @@ export declare class OpenApiClient {
|
|
|
46
109
|
getWalletActivity(chain: string, walletAddress: string, extra?: Record<string, string | number | string[]>): Promise<unknown>;
|
|
47
110
|
getWalletStats(chain: string, walletAddresses: string[], period?: string): Promise<unknown>;
|
|
48
111
|
getWalletTokenBalance(chain: string, walletAddress: string, tokenAddress: string): Promise<unknown>;
|
|
49
|
-
getTrenches(chain: string, types?: string[], platforms?: string[], limit?: number): Promise<unknown>;
|
|
112
|
+
getTrenches(chain: string, types?: string[], platforms?: string[], limit?: number, filters?: Record<string, number | string>): Promise<unknown>;
|
|
50
113
|
getTrendingSwaps(chain: string, interval: string, extra?: Record<string, string | number | string[]>): Promise<unknown>;
|
|
51
114
|
getUserInfo(): Promise<unknown>;
|
|
52
115
|
getFollowWallet(chain: string, extra?: Record<string, string | number | string[]>): Promise<unknown>;
|
|
@@ -55,8 +118,14 @@ export declare class OpenApiClient {
|
|
|
55
118
|
quoteOrder(chain: string, from_address: string, input_token: string, output_token: string, input_amount: string, slippage: number): Promise<unknown>;
|
|
56
119
|
swap(params: SwapParams): Promise<unknown>;
|
|
57
120
|
queryOrder(orderId: string, chain: string): Promise<unknown>;
|
|
121
|
+
createStrategyOrder(params: StrategyCreateParams): Promise<unknown>;
|
|
122
|
+
getStrategyOrders(chain: string, extra?: Record<string, string | number>): Promise<unknown>;
|
|
123
|
+
cancelStrategyOrder(params: StrategyCancelParams): Promise<unknown>;
|
|
124
|
+
getCookingStatistics(): Promise<unknown>;
|
|
125
|
+
createToken(params: CreateTokenParams): Promise<unknown>;
|
|
58
126
|
private normalRequest;
|
|
59
127
|
private criticalRequest;
|
|
128
|
+
private executePreparedRequest;
|
|
60
129
|
private doFetch;
|
|
61
130
|
private parseResponse;
|
|
62
131
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenApiClient.d.ts","sourceRoot":"","sources":["../../src/client/OpenApiClient.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"OpenApiClient.d.ts","sourceRoot":"","sources":["../../src/client/OpenApiClient.ts"],"names":[],"mappings":"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"}
|