BaseHolders over time
Updated 2024-09-13
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
28
29
30
31
32
33
34
35
36
›
⌄
with mint_tokenid as (
select
tokenid
from base.nft.ez_nft_transfers
where nft_address = '0xbdb1a8772409a0c5eeb347060cbf4b41dd7b2c62'
),
transfers_date as (
select
distinct block_timestamp::date as day
from base.nft.ez_nft_transfers
where nft_address = '0xbdb1a8772409a0c5eeb347060cbf4b41dd7b2c62'
),
mint_x_transfers_date as (
select* from mint_tokenid cross join transfers_date
),
mint_tx as (
select
tx_hash from base.nft.ez_nft_transfers
where nft_address = '0xbdb1a8772409a0c5eeb347060cbf4b41dd7b2c62'
),
minters as (
select
tokenid,
nft_to_address as minters_address
from base.nft.ez_nft_transfers
where nft_address = '0xbdb1a8772409a0c5eeb347060cbf4b41dd7b2c62'
),
raw_transfers as (
select
block_timestamp::date as day,
QueryRunArchived: QueryRun has been archived