mirror of
https://github.com/GMGNAI/gmgn-skills.git
synced 2026-07-27 16:57:44 +00:00
docs(skills): restore Credential Model to original position in cooking and swap
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -102,6 +102,12 @@ When a request returns `429`:
|
|||||||
- `cooking create` is a real transaction: **never loop or auto-resubmit** after a `429`. Wait until the reset time, then ask for confirmation again before retrying.
|
- `cooking create` is a real transaction: **never loop or auto-resubmit** after a `429`. Wait until the reset time, then ask for confirmation again before retrying.
|
||||||
- For `RATE_LIMIT_EXCEEDED` or `RATE_LIMIT_BANNED`, repeated requests during cooldown extend the ban by 5 seconds each time, up to 5 minutes.
|
- For `RATE_LIMIT_EXCEEDED` or `RATE_LIMIT_BANNED`, repeated requests during cooldown extend the ban by 5 seconds each time, up to 5 minutes.
|
||||||
|
|
||||||
|
### Credential Model
|
||||||
|
|
||||||
|
- `GMGN_PRIVATE_KEY` is used exclusively for **local message signing** — the private key never leaves the machine. The CLI computes an Ed25519 signature in-process and transmits only the base64-encoded result in the `X-Signature` request header.
|
||||||
|
- `GMGN_API_KEY` is transmitted in the `X-APIKEY` header over HTTPS.
|
||||||
|
- Neither credential is ever passed as a command-line argument.
|
||||||
|
|
||||||
## `cooking stats` Usage
|
## `cooking stats` Usage
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -658,12 +664,6 @@ Once all information is collected, present the pre-create confirmation summary (
|
|||||||
- **Order polling** — After `cooking create`, if `status` is `pending`, poll `order get` every 2 seconds up to 30 seconds. The token address is in `report.output_token`. Do not report success until `status` is `confirmed`.
|
- **Order polling** — After `cooking create`, if `status` is `pending`, poll `order get` every 2 seconds up to 30 seconds. The token address is in `report.output_token`. Do not report success until `status` is `confirmed`.
|
||||||
- **Credential sensitivity** — `GMGN_API_KEY` and `GMGN_PRIVATE_KEY` can execute real transactions. Never log, display, or expose these values.
|
- **Credential sensitivity** — `GMGN_API_KEY` and `GMGN_PRIVATE_KEY` can execute real transactions. Never log, display, or expose these values.
|
||||||
|
|
||||||
### Credential Model
|
|
||||||
|
|
||||||
- `GMGN_PRIVATE_KEY` is used exclusively for **local message signing** — the private key never leaves the machine. The CLI computes an Ed25519 signature in-process and transmits only the base64-encoded result in the `X-Signature` request header.
|
|
||||||
- `GMGN_API_KEY` is transmitted in the `X-APIKEY` header over HTTPS.
|
|
||||||
- Neither credential is ever passed as a command-line argument.
|
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
- `cooking create` uses **signed auth** (API Key + signature) — CLI handles signing automatically.
|
- `cooking create` uses **signed auth** (API Key + signature) — CLI handles signing automatically.
|
||||||
|
|||||||
@@ -407,6 +407,12 @@ The response `data` is an array — one element per wallet:
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Credential Model
|
||||||
|
|
||||||
|
- `GMGN_PRIVATE_KEY` is used exclusively for **local message signing** — the private key never leaves the machine. The CLI computes an Ed25519 signature in-process and transmits only the base64-encoded result in the `X-Signature` request header.
|
||||||
|
- `GMGN_API_KEY` is transmitted in the `X-APIKEY` header over HTTPS.
|
||||||
|
- Neither credential is ever passed as a command-line argument.
|
||||||
|
|
||||||
## `order quote` Usage
|
## `order quote` Usage
|
||||||
|
|
||||||
Get an estimated output amount before submitting a swap. Uses normal auth — only `GMGN_API_KEY` required, no `GMGN_PRIVATE_KEY` needed.
|
Get an estimated output amount before submitting a swap. Uses normal auth — only `GMGN_API_KEY` required, no `GMGN_PRIVATE_KEY` needed.
|
||||||
@@ -734,12 +740,6 @@ gmgn-cli order strategy cancel \
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### Credential Model
|
|
||||||
|
|
||||||
- `GMGN_PRIVATE_KEY` is used exclusively for **local message signing** — the private key never leaves the machine. The CLI computes an Ed25519 signature in-process and transmits only the base64-encoded result in the `X-Signature` request header.
|
|
||||||
- `GMGN_API_KEY` is transmitted in the `X-APIKEY` header over HTTPS.
|
|
||||||
- Neither credential is ever passed as a command-line argument.
|
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
- Swap uses **signed auth** (API Key + signature) — CLI handles signing automatically, no manual processing needed
|
- Swap uses **signed auth** (API Key + signature) — CLI handles signing automatically, no manual processing needed
|
||||||
|
|||||||
Reference in New Issue
Block a user