hessTop Holders
Updated 2023-03-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with sol_price as ( select date(RECORDED_HOUR) as date, symbol, avg(CLOSE) as avg_price
from solana.core.fact_token_prices_hourly
where RECORDED_HOUR::date >= '2022-10-01'
and symbol = 'SOL'
group by 1,2)
,
sales as ( select date(block_timestamp) as date, case when block_timestamp::date <= '2023-01-01' then 'Before New Year'
else 'After New Year' end as date_type, tx_id, purchaser,seller, a.mint, sales_amount, sales_amount*avg_price as volume, avg_price
from solana.core.fact_nft_sales a left outer join sol_price b on a.block_timestamp::date = b.date
join solana.core.dim_nft_metadata c on a.mint = c.mint
where block_timestamp::date >= '2022-10-01'
and project_name = '{{Collection}}'
and SUCCEEDED = 'TRUE')
,
before_buy as ( select purchaser , count(DISTINCT(mint)) as total_buy
from sales
where date_type = 'Before New Year'
group by 1)
,
befor_sell as ( select seller , count(DISTINCT(mint)) as total_sell
from sales
where date_type = 'Before New Year'
group by 1)
,
gods_top_ as (select purchaser as buyer_address, total_buy-total_sell as current_balance
from before_buy a join befor_sell b on a.purchaser = b.seller
order by 2 desc
limit 5)
,
after_buy as ( select purchaser , count(DISTINCT(mint)) as total_buy
from sales
where date_type = 'After New Year'
group by 1)
,
after_sell as ( select seller , count(DISTINCT(mint)) as total_sell
from sales
Run a query to Download Data