PROTOCOL_FEE | N_CHAINS | N_POOLS | SWAPS | SWAPPERS | VOLUME | |
---|---|---|---|---|---|---|
1 | 80183542.3527967 | 12 | 61 | 25484351 | 745510 | 103326740927.797 |
BlockTrackerOverall
Updated 2025-04-09
9
1
2
3
4
5
6
7
8
9
›
⌄
select
sum(LIQ_FEE_ASSET_USD) as protocol_fee,
count(distinct blockchain) as n_chains,
count(distinct pool_name) as n_pools,
count(DISTINCT tx_id) as swaps,
count(DISTINCT from_address) as swappers,
sum(case when from_amount_usd is not null then from_amount_usd else to_amount_usd end) as volume
from thorchain.defi.fact_swaps
where tx_id not in (select tx_id from thorchain.defi.fact_refund_events)
Last run: 15 days ago
1
59B
12s