Project | Transactions | AUs | Fees | |
---|---|---|---|---|
1 | Liquidswap | 1589659 | 75241 | 16834.674606 |
2 | Topaz | 1804629 | 51869 | 67744.298443 |
3 | Bluemove | 228175 | 37225 | 1032.098499 |
4 | Animeswap | 280870 | 23714 | 1461.612347 |
5 | Hippo | 181918 | 21544 | 1344.967177 |
6 | Layerzero | 70728 | 20042 | 282.505528 |
7 | Tortuga | 22506 | 19824 | 67.50213 |
8 | Souffl3 | 184203 | 16768 | 2447.66681 |
9 | Aux | 130317 | 15630 | 894.886127 |
10 | Ditto | 44779 | 14637 | 94.85786 |
0xHaM-dTop Projects By AUs - All Time
Updated 2025-03-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select
"Project",
"Transactions",
"AUs",
"Fees",
from
(select
date_trunc({{period_type}}, BLOCK_TIMESTAMP) as "Date",
iff( INITCAP(LABEL)='Move Dollar','Thala',INITCAP(LABEL)) as "Project",
count(*) as "Transactions",
count(distinct sender) as "AUs",
sum(((gas_used * gas_unit_price)/1e8)) as "Fees",
from (
select *,
from aptos.core.fact_events
where SUCCESS=true
and BLOCK_TIMESTAMP::date>='{{start_day}}'
-- and date_trunc({{period_type}}, BLOCK_TIMESTAMP)<='{{target_day}}'
) a
left join aptos.core.dim_labels b
on address = event_address
join aptos.core.fact_transactions using(tx_hash)
group by 1,2
)
-- where "Date" = date_trunc({{period_type}}, current_date) -1
where "Date" ='{{start_day}}' and "Date" <='{{target_day}}'
and "Project" is not NULL
and "Project" != 'Aptos'
order by "AUs" desc
limit 10
Last run: about 1 month ago
10
361B
156s