DAY | TOTAL_OWNERS | |
---|---|---|
1 | 2025-02-16 00:00:00.000 | 2165 |
2 | 2025-02-15 00:00:00.000 | 2166 |
3 | 2025-02-14 00:00:00.000 | 2167 |
4 | 2025-02-13 00:00:00.000 | 2172 |
5 | 2025-02-12 00:00:00.000 | 2172 |
6 | 2025-02-11 00:00:00.000 | 2173 |
7 | 2025-02-10 00:00:00.000 | 2176 |
8 | 2025-02-08 00:00:00.000 | 2175 |
9 | 2025-02-07 00:00:00.000 | 2178 |
10 | 2025-02-06 00:00:00.000 | 2178 |
11 | 2025-02-05 00:00:00.000 | 2178 |
12 | 2025-02-04 00:00:00.000 | 2179 |
13 | 2025-02-03 00:00:00.000 | 2180 |
14 | 2025-02-02 00:00:00.000 | 2180 |
15 | 2025-02-01 00:00:00.000 | 2180 |
16 | 2025-01-31 00:00:00.000 | 2183 |
17 | 2025-01-30 00:00:00.000 | 2185 |
18 | 2025-01-29 00:00:00.000 | 2189 |
19 | 2025-01-28 00:00:00.000 | 2188 |
20 | 2025-01-27 00:00:00.000 | 2189 |
banterlyticsgenkai-holder
Updated 16 hours ago
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 ethereum.nft.ez_nft_mints
where block_timestamp > '2023-07-25'
and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
),
transfers_date as (
select
distinct block_timestamp::date as day
from ethereum.nft.ez_nft_transfers
where block_timestamp > '2023-07-25'
and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
),
mint_x_transfers_date as (
select* from mint_tokenid cross join transfers_date
),
mint_tx as (
select
tx_hash from ethereum.nft.ez_nft_mints
where block_timestamp > '2023-07-25'
and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
),
minters as (
select
tokenid,
nft_to_address as minters_address
from ethereum.nft.ez_nft_mints
where block_timestamp > '2023-07-25'
and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
),
Last run: about 16 hours agoAuto-refreshes every 24 hours
...
548
18KB
8s