Popex404Total DXDY Holders
Updated 2024-07-24
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with lastdate as (select
USER_ADDRESS as address,
max(LAST_ACTIVITY_BLOCK_TIMESTAMP) as cohortDate
FROM ethereum.core.ez_current_balances
where symbol='DYDX' and token_name='dYdX'
and user_address not in (select address from ethereum.core.dim_labels where address_name is not null)
and current_bal is not null and current_bal >0
GROUP BY 1
)
select
count (distinct user_address) as "Holders"
FROM ethereum.core.ez_current_balances join lastdate on address = user_address and cohortDate = LAST_ACTIVITY_BLOCK_TIMESTAMP
where symbol='DYDX' and token_name='dYdX'
and current_bal is not null and current_bal >0
QueryRunArchived: QueryRun has been archived