Install
openclaw skills install monitor-tokenjarMonitor the Uniswap TokenJar with a real-time dashboard showing balances, accumulation rates, burn economics, and projected time to next profitable burn. Supports one-shot snapshot and streaming modes. Use when user asks "Watch the TokenJar", "Track fee accumulation", or "When is the next profitable burn?"
openclaw skills install monitor-tokenjarA monitoring dashboard for Uniswap's protocol fee system. The TokenJar accumulates fees from all Uniswap sources (V2, V3, V4, UniswapX, Unichain native fees). This skill provides a comprehensive view of what's in the jar, how fast it's growing, and when the next burn will be profitable -- the single most actionable question for protocol fee seekers.
Two modes: one-shot (instant snapshot with analytics) and streaming (real-time deposit tracking with live updates).
Why this is 10x better than calling tools individually:
subscribe_tokenjar returns deposit events without context. This skill enriches each deposit with a running total, updated profitability estimate, and alert when the threshold is crossed -- turning raw events into actionable intelligence.Activate when the user says anything like:
Do NOT use when the user wants to execute a burn (use seek-protocol-fees instead) or wants deep historical analysis of burn economics (use analyze-burn-economics instead).
| Parameter | Required | Default | How to Extract |
|---|---|---|---|
| chain | No | ethereum | Always Ethereum mainnet for TokenJar |
| streaming | No | false | "watch", "stream", "live", "real-time" implies true |
| duration | No | 60 | Streaming duration in seconds (1-300). "Watch for 5 minutes" = 300 |
| alert-threshold-usd | No | -- | "Alert me when jar hits $50K" extracts 50000 |
| include-history | No | true | "Skip history" or "just current state" implies false |
Parallel data collection: Make all MCP calls simultaneously for speed:
mcp__uniswap__get_tokenjar_balances -- current jar contentsmcp__uniswap__get_firepit_state -- threshold, nonce, readinessmcp__uniswap__get_fee_accumulation_rate -- daily/weekly/monthly ratesmcp__uniswap__get_burn_history (if include-history: true) -- recent burnsCompound analysis: Delegate to Task(subagent_type:protocol-fee-seeker) in monitoring mode:
Produce a TokenJar monitoring dashboard.
Current data:
- TokenJar balances: {from parallel calls}
- Firepit state: threshold={threshold}, nonce={nonce}
- Accumulation rates: {from parallel calls}
- Recent burn history: {from parallel calls}
Tasks:
1. Price all TokenJar assets in USD using get_token_price.
2. Calculate total jar value.
3. Calculate current burn cost (threshold UNI * UNI price + gas estimate).
4. Determine current profitability: jar value vs. burn cost.
5. Using accumulation rates, project when the next burn will be profitable
(if not already) or when ROI will exceed 10% (if already profitable).
6. Summarize recent burn history: last burn date, frequency, average profit.
7. Identify the top fee-generating tokens and any notable trends.
Return a structured dashboard report.
Format and present: Display the dashboard with all sections.
Initial snapshot: Run the same one-shot workflow above to establish a baseline.
Start streaming: Call mcp__uniswap__subscribe_tokenjar with the user's duration:
alert-threshold-usd is set, include minDepositUsd filter.Enrich deposits: For each deposit event received:
Final summary: After streaming ends, present an updated dashboard with:
TokenJar Dashboard (Ethereum)
══════════════════════════════════════
CURRENT BALANCES
══════════════════════════════════════
Token Balance USD Value Share
WETH 7.20 $18,000 34.6%
USDC 15,000 $15,000 28.8%
USDT 8,500 $8,500 16.3%
WBTC 0.08 $6,400 12.3%
DAI 4,100 $4,100 7.9%
──────────────────────────────────────
Total $52,000 100%
══════════════════════════════════════
ACCUMULATION RATES
══════════════════════════════════════
Daily: ~$7,400/day
Weekly: ~$51,800/week
Monthly: ~$222,000/month
Top Contributors:
WETH ~$2,800/day (37.8%)
USDC ~$2,100/day (28.4%)
USDT ~$1,200/day (16.2%)
══════════════════════════════════════
BURN ECONOMICS
══════════════════════════════════════
Burn Threshold: 4,000 UNI ($28,000)
Gas Estimate: ~$45
Total Burn Cost: $28,045
Current Jar: $52,000
Net Profit: $23,955
ROI: 85.4%
Status: PROFITABLE
══════════════════════════════════════
RECENT HISTORY
══════════════════════════════════════
Last Burn: 2026-02-03 (7 days ago)
Burn Frequency: ~every 5.2 days (avg last 10 burns)
Avg Profit: $18,400 per burn
Nonce: 42
══════════════════════════════════════
PROJECTION
══════════════════════════════════════
Next 10% ROI: Already exceeded (current: 85.4%)
Next 100% ROI: ~0.5 days at current rate
Competitor Risk: HIGH — avg burn interval is 5.2 days, currently at 7 days
TokenJar Live Feed (streaming for 60s)
Baseline: $52,000 across 5 assets
[14:00:12] Deposit: 0.15 WETH ($375) | Running Total: $52,375
[14:00:28] Deposit: 500 USDC ($500) | Running Total: $52,875
[14:00:45] Deposit: 200 USDT ($200) | Running Total: $53,075
──────────────────────────────────────
Session Summary (60s)
──────────────────────────────────────
Deposits: 3 events, $1,075 total
Rate: ~$64,500/hour (this session)
Updated Total: $53,075
Profitability: $25,030 net profit (89.3% ROI)
Status: PROFITABLE — ready to burn
ALERT: TokenJar value ($50,125) has crossed your alert threshold ($50,000).
Current profitability: $22,080 net profit (78.7% ROI).
Consider running: seek-protocol-fees
seek-protocol-fees.| Error | User-Facing Message | Suggested Action |
|---|---|---|
| TokenJar empty | "TokenJar is empty. No fees have accumulated yet." | Wait for protocol activity |
| No accumulation data | "Insufficient data to calculate accumulation rates." | Try a larger lookback window |
| No burn history | "No burn history found. This may be a new deployment." | Set include-history: false |
| Streaming timeout | "Streaming session ended after {duration}s." | Re-run for another session |
| No deposits during stream | "No deposits observed during the {duration}s streaming window." | Try a longer duration or check later |
| Token price unavailable | "Could not price {token}. Dashboard values may be incomplete." | Token may be exotic or illiquid |
| RPC connection failed | "Cannot connect to Ethereum RPC. Dashboard unavailable." | Check RPC configuration |