boomer77top 5 whale
    Updated 2021-09-08
    select
    event_to,
    sum(price_usd) as Volume
    from ethereum.nft_events
    where contract_address = '0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270' and event_type = 'sale' and block_timestamp < '2021-08-01' and price_usd is not null
    and token_id in (select distinct token_id
    from ethereum.nft_metadata
    where contract_address = '0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270'
    and lower(token_name) LIKE '%fidenza%')
    group by 1
    order by 2 desc
    limit 5
    Run a query to Download Data