bachinear gas 2
Updated 2022-07-27
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
tx_receiver as contract,
round(sum(gas_used/POW(10,12)),2) as total_gas
FROM near.core.fact_transactions
where block_timestamp >= dateadd(week, -1, getdate())
GROUP BY tx_receiver
ORDER BY total_gas DESC
limit 5000
Run a query to Download Data