Tokenomist emission report
Skill tokenomist-ai/tokenomist-cli/skills/tokenomist-emission-report
CLI and AI agent skills for the Tokenomist crypto data API: token unlocks, vesting, emissions, allocations, fundraising, burns and buybacks.
npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-emission-reportAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 24 stars24 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Get daily or weekly token emission data with allocation breakdowns. Use when analyzing token inflation, comparing emission rates, or understanding supply increases.
SKILL.md
3.5 KB, as published. Nobody here has run it
Skill: Emission Report
Get daily or weekly token emission data with allocation breakdowns.
When to use
When you need to analyze token inflation over time, compare emission rates across periods, or understand which allocations are contributing to supply increases.
Commands
Daily emission
tok emission daily <tokenId> --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
--standard-allocation <names> | Filter by allocation (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok emission daily arbitrum --start 2024-08-01 --end 2024-08-31 --output json
tok emission daily arbitrum --standard-allocation "privateInvestors" --output json
Available --standard-allocation values: community, founderTeam, privateInvestors, publicInvestors, others, reserve (comma-separated for multiple).
Weekly emission
tok emission weekly <tokenId> --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
--standard-allocation <names> | Filter by allocation (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok emission weekly arbitrum --start 2024-01-01 --end 2024-06-30 --output json
tok emission weekly arbitrum --standard-allocation "founderTeam" --output json
Key output fields
| Field | Description |
|---|---|
startDate | Period start |
endDate | Period end |
unlockAmount | Tokens emitted in period |
unlockValue | USD value of emitted tokens |
referencePrice | Token price used for value calculation |
allocations | Breakdown by allocation (name, amount, value) |
totalCumulativeUnlockedAmount | Running total of all unlocked tokens |
Analysis workflow
- Get weekly emissions to see the trend:
tok emission weekly <id> --output json - Look at
unlockAmountover time to spot acceleration or deceleration - Check
allocationsto see if emissions are going to investors (sell pressure) vs community/ecosystem (growth) - Compare
unlockValueagainst market cap fromtok token listto assess dilution
Domain Context
- Emission data shows scheduled releases per allocation. Actual on-chain supply may differ due to relocks, delays, or early releases.
- Compare
unlockValueagainst market cap (fromtok token list) to assess dilution impact. - Emissions going to "Investor" or "Team" allocations typically represent higher sell pressure than "Community" or "Ecosystem" allocations.
Workflow
- Combine with
tok unlock events <id>to distinguish between cliff unlocks (large one-time events) and continuous emissions (steady daily/weekly releases). - Chain with
tok burn detail <id>to calculate net inflation: emissions minus burns = net new supply. - Use
tok allocation detail <id>to see the full allocation picture and understand where emissions are going.