mhmUntitled Query
    Updated 2022-07-27
    select distinct(tx:actions[0]:FunctionCall:method_name), sum(gas_used/1e12) as a
    from near.core.fact_transactions
    -- where tx_hash = '3QYKuYV8eWPFEiJAwtCwoWcdk3effTavDXftUMhA8NSh'
    group by 1
    order by 2 desc
    limit 10

    Run a query to Download Data