mlhUntitled Query
Updated 2022-07-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select *
from (select *
from (select TX_RECEIVER,
sum(fee) as total_fee,
sum(used_gas) as gas,
count(*) as total_txs
from (SELECT BLOCK_TIMESTAMP,
TX_RECEIVER,
TRANSACTION_FEE/1e24 as fee,
gas_used/1e12 as used_gas,
TX_HASH
FROM near.core.fact_transactions
)
group by 1
order by 3 desc
)
)
order by 3 desc
limit 10
Run a query to Download Data