freemartianTop 10 Osmosis Wallets
    Updated 2022-11-15
    select
    tx_from as user,
    (sum(gas_used/pow(10,9)) * avg(price)) as Fee_in_usd
    from osmosis.core.fact_transactions inner join osmosis.core.dim_prices p
    on RECORDED_AT::date = block_timestamp::date and hour(p.RECORDED_AT) = hour(block_timestamp)
    where block_timestamp > CURRENT_DATE - 31
    and tx_status = 'SUCCEEDED'
    and symbol = 'OSMO'
    group by user
    order by Fee_in_usd desc
    limit 10

    Run a query to Download Data