freeman_7NFT (ERC 721) holders daily template query copy
Updated 2024-12-12
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
›
⌄
⌄
-- forked from sam / NFT (ERC 721) holders daily template query @ https://flipsidecrypto.xyz/sam/q/Ie7FHZ2Wa3Ce/nft-erc-721-holders-daily-template-query
/*
explore: daily holders, new holders, accumulation
*/
with raw as (
select
block_timestamp,
event_index,
tokenid,
nft_to_address
from ethereum.nft.ez_nft_transfers
where nft_address = '0xbd3531da5cf5857e7cfaa92426877b022e612cf8'
and block_timestamp::date >= '2021-07-22'
),
all_tokenid as (
select
distinct tokenid as tokenid
from raw
),
all_dates as (
select
date_day as day
from crosschain.core.dim_dates
where date_day::date between '2021-07-22' and current_date()::date
),
full_list as (
select
day,
tokenid
QueryRunArchived: QueryRun has been archived