articoloquintoTop 20 Gas Guzzlers during the last month
    Updated 2022-07-25
    select sum(gas_used)/10e12 as "gas used",
    tx_receiver as "gas guzzlers"
    from flipside_prod_db.mdao_near.transactions
    where block_timestamp >= dateadd(month, -1, getdate())
    group by 2
    order by 1 desc
    limit 20
    Run a query to Download Data