winnie-fsrename top 8 copy
Updated 2023-03-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
-- forked from 4793c863-dcd0-44fa-9ee2-10f48f989f8c
select
project_name,
round(sum(mint_price_eth * nft_count),0) as eth_spent
from ethereum.core.ez_nft_mints
where project_name is not null
and nft_count > 0
and nft_count is not null
and project_name not in ('uniswap')
and block_timestamp > current_date - interval '7 days'
group by 1
order by 1 asc
limit 10
Run a query to Download Data