0xHaM-dTop Projects By AUs - All Time
    Updated 2025-03-14
    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
    Project
    Transactions
    AUs
    Fees
    1
    Liquidswap15896597524116834.674606
    2
    Topaz18046295186967744.298443
    3
    Bluemove228175372251032.098499
    4
    Animeswap280870237141461.612347
    5
    Hippo181918215441344.967177
    6
    Layerzero7072820042282.505528
    7
    Tortuga225061982467.50213
    8
    Souffl3184203167682447.66681
    9
    Aux13031715630894.886127
    10
    Ditto447791463794.85786
    10
    361B
    156s