$npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-emission-reportGet daily or weekly token emission data with allocation breakdowns. Use when analyzing token inflation, comparing emission rates, or understanding supply increases.
| 1 | # Skill: Emission Report |
| 2 | |
| 3 | Get daily or weekly token emission data with allocation breakdowns. |
| 4 | |
| 5 | ## When to use |
| 6 | |
| 7 | When you need to analyze token inflation over time, compare emission rates across periods, or understand which allocations are contributing to supply increases. |
| 8 | |
| 9 | ## Commands |
| 10 | |
| 11 | ### Daily emission |
| 12 | ```bash |
| 13 | tok emission daily <tokenId> --output json |
| 14 | ``` |
| 15 | |
| 16 | Options: |
| 17 | | Option | Description | |
| 18 | |--------|-------------| |
| 19 | | `--start <date>` | Start date (YYYY-MM-DD) | |
| 20 | | `--end <date>` | End date (YYYY-MM-DD) | |
| 21 | | `--standard-allocation <names>` | Filter by allocation (comma-separated) | |
| 22 | | `--page <number>` | Page number | |
| 23 | | `--page-size <number>` | Items per page | |
| 24 | |
| 25 | ```bash |
| 26 | tok emission daily arbitrum --start 2024-08-01 --end 2024-08-31 --output json |
| 27 | tok emission daily arbitrum --standard-allocation "privateInvestors" --output json |
| 28 | ``` |
| 29 | |
| 30 | Available `--standard-allocation` values: `community`, `founderTeam`, `privateInvestors`, `publicInvestors`, `others`, `reserve` (comma-separated for multiple). |
| 31 | |
| 32 | ### Weekly emission |
| 33 | ```bash |
| 34 | tok emission weekly <tokenId> --output json |
| 35 | ``` |
| 36 | |
| 37 | Options: |
| 38 | | Option | Description | |
| 39 | |--------|-------------| |
| 40 | | `--start <date>` | Start date (YYYY-MM-DD) | |
| 41 | | `--end <date>` | End date (YYYY-MM-DD) | |
| 42 | | `--standard-allocation <names>` | Filter by allocation (comma-separated) | |
| 43 | | `--page <number>` | Page number | |
| 44 | | `--page-size <number>` | Items per page | |
| 45 | |
| 46 | ```bash |
| 47 | tok emission weekly arbitrum --start 2024-01-01 --end 2024-06-30 --output json |
| 48 | tok emission weekly arbitrum --standard-allocation "founderTeam" --output json |
| 49 | ``` |
| 50 | |
| 51 | ## Key output fields |
| 52 | |
| 53 | | Field | Description | |
| 54 | |-------|-------------| |
| 55 | | `startDate` | Period start | |
| 56 | | `endDate` | Period end | |
| 57 | | `unlockAmount` | Tokens emitted in period | |
| 58 | | `unlockValue` | USD value of emitted tokens | |
| 59 | | `referencePrice` | Token price used for value calculation | |
| 60 | | `allocations` | Breakdown by allocation (name, amount, value) | |
| 61 | | `totalCumulativeUnlockedAmount` | Running total of all unlocked tokens | |
| 62 | |
| 63 | ## Analysis workflow |
| 64 | |
| 65 | 1. Get weekly emissions to see the trend: `tok emission weekly <id> --output json` |
| 66 | 2. Look at `unlockAmount` over time to spot acceleration or deceleration |
| 67 | 3. Check `allocations` to see if emissions are going to investors (sell pressure) vs community/ecosystem (growth) |
| 68 | 4. Compare `unlockValue` against market cap from `tok token list` to assess dilution |
| 69 | |
| 70 | ## Domain Context |
| 71 | |
| 72 | - Emission data shows **scheduled** releases per allocation. Actual on-chain supply may differ due to relocks, delays, or early releases. |
| 73 | - Compare `unlockValue` against market cap (from `tok token list`) to assess dilution impact. |
| 74 | - Emissions going to "Investor" or "Team" allocations typically represent higher sell pressure than "Community" or "Ecosystem" allocations. |
| 75 | |
| 76 | ## Workflow |
| 77 | |
| 78 | - Combine with `tok unlock events <id>` to distinguish between cliff unlocks (large one-time events) and continuous emissions (steady daily/weekly releases). |
| 79 | - Chain with `tok burn detail <id>` to calculate net inflation: emissions minus burns = net new supply. |
| 80 | - Use `tok allocation detail <id>` to see the full allocation picture and understand where emissions are going. |