From 12ab55bb63631c418fa7abc9a68b4b645f45864a Mon Sep 17 00:00:00 2001 From: "GMGN.AI" <141223802+GMGNAI@users.noreply.github.com> Date: Thu, 14 May 2026 20:43:36 +0800 Subject: [PATCH] docs(token): move native_transfer to Shared Funding section with updated description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit native_transfer records the first native token (SOL/BNB/ETH) transfer into a wallet, not the most recent — it indicates the original funding source. Wallets sharing the same native_transfer.address are likely funded from a common origin (coordinated wallets / same operator). Move it out of Last Transaction Records into its own Shared Funding section to reflect its distinct purpose. Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-token/SKILL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/skills/gmgn-token/SKILL.md b/skills/gmgn-token/SKILL.md index 9934cda..1c13877 100644 --- a/skills/gmgn-token/SKILL.md +++ b/skills/gmgn-token/SKILL.md @@ -418,13 +418,18 @@ The response is an object with a `list` array. Each item in `list` represents on | `maker_token_tags` | Token-specific behavior tags for this wallet (e.g. `["bundler"]`, `["paper_hands"]`, `["top_holder"]`) | | `created_at` | Wallet creation timestamp (Unix seconds); `0` if unknown | +**Shared Funding** + +| Field | Description | +|-------|-------------| +| `native_transfer` | First native token (SOL/BNB/ETH) transfer into this wallet — indicates the original funding source; wallets sharing the same `native_transfer.address` are likely funded from a common origin (coordinated wallets / same operator) | + **Last Transaction Records** Each of the following is an object with `name`, `address`, `timestamp`, `tx_hash`, `type`: | Field | Description | |-------|-------------| -| `native_transfer` | Most recent native token (SOL/BNB/ETH) transfer associated with this wallet | | `token_transfer` | Most recent token transfer (buy or sell) | | `token_transfer_in` | Most recent inbound token transfer | | `token_transfer_out` | Most recent outbound token transfer |