MLDZMNholders
Updated 2023-05-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
select
date_trunc('week', first_transaction_stamp) as date,
count (distinct sender) as new_receivers,
sum(new_receivers) over (order by date) as total_receivers
from (
select
tx_to as sender,
min(block_timestamp) as first_transaction_stamp
FROM solana.core.fact_transfers
WHERE mint = '4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy'
group by 1
)
where date>='2023-01-01'
group by 1
Run a query to Download Data