Monitize AINFT Holders
Updated 2024-07-14
999
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 claimert as(
SELECT
distinct TO_ADDRESS as claimer,
min(Block_timestamp::date) as claim_date,
sum(amount) as Claimed_Amount
from ethereum.core.ez_token_transfers
where CONTRACT_ADDRESS = lower('0x63696Fc66795B51d02c1590b536484A41fbDDF9a')
and FROM_ADDRESS in ('0x3db08a08434bfb774271e46d277468f8da0da144')
and ORIGIN_FUNCTION_SIGNATURE = '0xf0fd1084'
group by 1
),
Yogapetzt as (
select
distinct holder as Yogapetz_holders,
--BLOCK_TIMESTAMP as "Transfer Date",
count(distinct TOKENID) as Yogapetz
from(
select
TOKENID,
NFT_TO_ADDRESS as holder,
BLOCK_TIMESTAMP,
row_number() over (partition by TOKENID order by BLOCK_TIMESTAMP desc) as rank
from ethereum.nft.ez_nft_transfers
where nft_address = lower('0x142e03367eDE17Cd851477A4287D1F35676E6dC2')
)
where rank = 1
group by 1
order by 2 desc
),
Kubzt as (
select
distinct holder as Kubz_holder,
count(distinct TOKENID) as Kubz
from(
QueryRunArchived: QueryRun has been archived