一键导入
tokenomist-burn-buyback
Check token burn and buyback activity. Use when analyzing deflationary mechanisms — burns, buybacks, and net inflation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check token burn and buyback activity. Use when analyzing deflationary mechanisms — burns, buybacks, and net inflation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Get the full allocation distribution for a token — who owns what and how much is locked vs unlocked. Use when analyzing supply distribution across team, investors, community, etc.
Get daily or weekly token emission data with allocation breakdowns. Use when analyzing token inflation, comparing emission rates, or understanding supply increases.
Look up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.
Get a summary list of all tracked tokens with market data and supply info. Use when browsing tokens, comparing market caps, or finding which tokens have fundraising/burn/buyback data.
Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns. Use when checking unlock impact on market cap or reviewing unlock schedules.
| name | tokenomist-burn-buyback |
| description | Check token burn and buyback activity. Use when analyzing deflationary mechanisms — burns, buybacks, and net inflation. |
| metadata | {"openclaw":{"requires":{"env":["TOKENOMIST_API_KEY"],"bins":["tok"]},"primaryEnv":"TOKENOMIST_API_KEY","install":[{"kind":"node","package":"@tokenomist-ai/tokenomist-cli","bins":["tok"]}]}} |
| allowed-tools | Bash(tok:*) |
Check token burn and buyback activity.
When you need to analyze deflationary mechanisms — how many tokens have been permanently burned or bought back from the market.
List all tokens with burns:
tok burn list --output json
Options:
| Option | Description |
|---|---|
--token-id <ids> | Filter by token IDs (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok burn list --token-id aptos,stellar --output json
Get burn events for a specific token:
tok burn detail <tokenId> --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
tok burn detail aptos --start 2024-01-01 --end 2024-12-31 --output json
List all tokens with buybacks:
tok buyback list --output json
Options:
| Option | Description |
|---|---|
--token-id <ids> | Filter by token IDs (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok buyback list --token-id aave --output json
Get buyback events for a specific token:
tok buyback detail <tokenId> --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
tok buyback detail aave --start 2024-01-01 --end 2024-12-31 --output json
Burn list:
totalBurnAmount — total tokens burned for this tokenBurn detail:
burns[].burnDate — when the burn happenedburns[].amount — tokens burnedburns[].burnType — type of burn eventburns[].metadata.burnReasons — why tokens were burnedBuyback list:
totalBuybackAmount — total tokens bought backBuyback detail:
buybacks[].buybackDate — when the buyback happenedbuybacks[].tokenAmount — tokens bought backbuybacks[].value — USD value of buybackbuybacks[].spentAmount / spentUnit — what was spent (e.g. USDC)tok burn list --output jsontotalBurnAmount across tokens to find most deflationary projectstok burn detail <id> --output jsontok emission weekly <id> to calculate net inflationstartDate/endDate filters on burn/buyback detail commands filter by last activity date, not the event date range. This is an API quirk — the filters determine which tokens to include based on when they last had activity.tok emission weekly <id> to calculate net inflation: if burns exceed emissions, the token is net deflationary.tok token list --output json to check hasBurn/hasBuyback fields before querying detail commands (these fields are only visible in JSON output, not table mode).totalBurnAmount across tokens to find the most deflationary projects.