winnie-fsAppcues 3 copy
Updated 2023-04-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
-- forked from Appcues 3 @ https://staging.flipsidecrypto.xyz/edit/queries/01a8680b-2c2d-4799-8f0c-16bef8521ee4
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 eth_spent desc
limit 10
Run a query to Download Data