rokete4
Updated 2022-10-26
9
1
2
3
4
5
6
7
8
›
⌄
select ORIGIN_FROM_ADDRESS,
count(DISTINCT(tx_hash)) as total_bid, sum(amount) as eth_bid, sum(amount_usd) as usd_bid
from ethereum.core.ez_eth_transfers
where origin_to_address = lower('0x55e0f7a3bb39a28bd7bcc458e04b3cf00ad3219e')
and ETH_FROM_ADDRESS = ORIGIN_FROM_ADDRESS
group by 1
order by 2 desc
limit 10
Run a query to Download Data