Growth Metrics and Analytics
Web3 Metrics Are Different
In Web2, you measure success with signups, monthly active users, and revenue. In Web3, the data is fundamentally different because everything happens on-chain and user identity is pseudonymous.
You cannot track emails. You cannot track logins. You track wallet addresses and smart contract interactions.
The Core Metrics
1. Total Value Locked (TVL)
TVL is the total dollar value of crypto deposited in a protocol's smart contracts. It is the most-quoted metric in DeFi and the most misunderstood.
What it tells you: How much capital the protocol has attracted. A lending protocol with $2B TVL has $2B available for borrowers.
What it doesn't tell you: Whether that capital is sticky. During yield farming booms, TVL can 10x overnight when a protocol offers generous token rewards, then collapse to near-zero when those rewards end.
The better metric: TVL adjusted for incentives. How much TVL remains when you subtract the token rewards? That's your organic demand.
Track at: DeFiLlama
2. Unique Active Wallets (UAW)
The on-chain equivalent of MAU. Count the distinct wallet addresses that interacted with your contracts in a given period.
| Timeframe | What it measures |
|---|---|
| Daily Active Wallets (DAW) | Engagement intensity |
| Weekly Active Wallets (WAW) | Healthy usage cadence |
| Monthly Active Wallets (MAW) | Broad adoption |
Caveat: One person can own many wallets. Airdrop farmers routinely operate 50-100 wallets (sybil activity). Cross-reference with other signals like transaction value and frequency to filter noise.
3. Protocol Revenue
The real fees users pay. Not token incentives, not VC money — actual demand for the protocol's service.
| Protocol | Revenue Source | Daily Revenue (2025) |
|---|---|---|
| Uniswap | 0.01-1% swap fee | ~$2-5M |
| Aave | Interest spread on loans | ~$500K-1M |
| Lido | 10% of staking rewards | ~$1-2M |
| OpenSea | 2.5% marketplace fee | ~$200-500K |
Track at: Token Terminal
4. Retention
What percentage of wallets that transact in week 1 return in week 2, 4, and 12?
This is harder to measure on-chain than in Web2 (no session tracking), but Dune Analytics queries can approximate it by tracking wallet cohorts over time.
-- Example: 7-day retention for a DEX
WITH first_swap AS (
SELECT
sender,
MIN(DATE_TRUNC('week', block_time)) AS first_week
FROM dex.trades
WHERE project = 'uniswap'
GROUP BY sender
)
SELECT
first_week,
COUNT(DISTINCT f.sender) AS cohort_size,
COUNT(DISTINCT CASE
WHEN t.block_time BETWEEN f.first_week + INTERVAL '7 days'
AND f.first_week + INTERVAL '14 days'
THEN f.sender
END) AS retained_week_2
FROM first_swap f
LEFT JOIN dex.trades t ON f.sender = t.sender
GROUP BY first_week
ORDER BY first_week DESC
Good DeFi protocols retain 15-25% of users after 30 days. Exceptional ones retain 30%+.
5. Token Holder Distribution
How concentrated is token ownership? If 10 wallets hold 80% of the supply, governance is effectively centralized regardless of what the documentation says.
Healthy distribution: Top 10 holders control <40% of circulating supply, with a clear separation between protocol treasury, vesting contracts, and individual holders.
Tools of the Trade
| Tool | What it does | Cost |
|---|---|---|
| Dune Analytics | Custom SQL dashboards on blockchain data | Free (paid for private queries) |
| DeFiLlama | TVL tracking across all chains and protocols | Free |
| Token Terminal | Revenue, earnings, and valuation metrics | Free tier + paid |
| Flipside Crypto | Blockchain analytics with bounty programs | Free |
| Nansen | Wallet labeling and smart money tracking | Paid ($150+/mo) |
Key takeaways
- TVL is the most-quoted metric but is easily inflated by token incentives. Always look at TVL alongside revenue.
- Unique Active Wallets is the closest on-chain equivalent to MAU, but is susceptible to sybil inflation.
- Protocol revenue is the single best indicator of product-market fit — real users paying real fees.
- Retention analysis requires Dune SQL queries tracking wallet cohorts over time.
- Dune Analytics and DeFiLlama are free and cover 90% of what you need.
Quiz: Growth Metrics and Analytics
1 / 5What does Total Value Locked (TVL) measure?