AlihastamUntitled Query
    Updated 2022-07-27
    select
    TX_RECEIVER,
    sum(gas_used) / Pow(10, 12) as gas
    from flipside_prod_db.mdao_near.transactions
    where BLOCK_TIMESTAMP > CURRENT_DATE - 30
    group by 1 order by 2 DESC limit 10

    Run a query to Download Data