nitsLil Nouns
Updated 2022-07-06
9
1
2
3
4
5
6
7
›
⌄
SELECT date(block_timestamp) as day, count(DISTINCT tx_hash) as total_nfts_sold,
sum(total_nfts_sold) over (order by day) as cumulative_nfts
from ethereum.core.fact_event_logs
where contract_address = '0x4b10701bfd7bfedc47d50562b76b436fbb5bdb3b' and event_name = 'Transfer'
and event_inputs:to = '0x0bc3807ec262cb779b38d65b38158acc3bfede10'
GROUP by 1
LIMIT 100
Run a query to Download Data