원클릭으로
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.