This commit is contained in:
drethereum 2026-01-05 12:13:50 -07:00
parent d5c6f6e8fa
commit 440b27079c
2 changed files with 7 additions and 3 deletions

View File

@ -4,6 +4,10 @@
This table provides daily Total Value Locked (TVL) metrics for DeFi protocols across EVM-compatible blockchains. It aggregates values by platform to track liquidity and value deposited in various DeFi applications. Methods may vary by protocol and blockchain.
## Methodology Note
For certain protocols (e.g., Uniswap v2/v3/v4 and forks), TVL is calculated only for pools where both tokens are verified. This filtering removes low-quality or spam pools, providing a more accurate representation of "real" TVL rather than values inflated by low-liquidity tokens.
## Key Use Cases
- Tracking protocol TVL growth and trends over time

View File

@ -64,21 +64,21 @@ Sums native ETH balance across all pool contracts, doubled to represent total po
{% docs uniswap_v2_tvl_table_doc %}
Methodology:
Sums getReserves() values for token0 and token1 across all pools
Sums getReserves() values for token0 and token1 across all pools where both tokens are verified. This filtering removes spam/low-liquidity pools to provide a more accurate TVL value.
{% enddocs %}
{% docs uniswap_v3_tvl_table_doc %}
Methodology:
Sums token0 and token1 balances held by each pool contract
Sums token0 and token1 balances held by each pool contract where both tokens are verified. This filtering removes spam/low-liquidity pools to provide a more accurate TVL value.
{% enddocs %}
{% docs uniswap_v4_tvl_table_doc %}
Methodology:
Sums token0 and token1 balances held by the PoolManager singleton + any associated hook contracts
Sums token0 and token1 balances held by the PoolManager singleton + any associated hook contracts where both tokens are verified. This filtering removes spam/low-liquidity pools to provide a more accurate TVL value.
{% enddocs %}