yusyusnft holders transfers
Updated 2025-01-07
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
›
⌄
-- forked from Token transfers @ https://flipsidecrypto.xyz/studio/queries/d854a46e-f0a0-4f1b-b40b-8ed9871d900b
with raw as (SELECT block_timestamp, tx_hash,
nft_from_address, nft_to_address ,
tokenid, project_name
nft_address --usdt, usdc, weth
FROM ethereum.nft.ez_nft_transfers
WHERE nft_address = lower('0x062E691c2054dE82F28008a8CCC6d7A1c8ce060D')
qualify row_number() over (partition by tokenid order by block_timestamp desc) = 1
--and origin_function_signature = 'Ox'
)
select nft_to_address,
count(1) as holdings,
FROM raw
group by all
QueryRunArchived: QueryRun has been archived