day | no. of active holders | |
---|---|---|
1 | 2025-04-21 00:00:00.000 | 37545 |
2 | 2025-04-22 00:00:00.000 | 41151 |
3 | 2025-04-17 00:00:00.000 | 31456 |
4 | 2025-04-13 00:00:00.000 | 25324 |
5 | 2025-04-16 00:00:00.000 | 30028 |
6 | 2025-04-20 00:00:00.000 | 36747 |
7 | 2025-04-11 00:00:00.000 | 21470 |
8 | 2025-04-12 00:00:00.000 | 23942 |
9 | 2025-04-15 00:00:00.000 | 28494 |
10 | 2025-04-18 00:00:00.000 | 33483 |
11 | 2025-04-19 00:00:00.000 | 35097 |
12 | 2025-04-10 00:00:00.000 | 13499 |
13 | 2025-04-23 00:00:00.000 | 41908 |
14 | 2025-04-14 00:00:00.000 | 26895 |
15 | 2025-04-09 00:00:00.000 | 9667 |
defi__joshDaily Active Holders of $FARTCOIN Over the Last 14 Days
Updated 4 days 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
›
⌄
-- forked from $FARTCOIN launch info @ https://flipsidecrypto.xyz/studio/queries/fe4a884c-7f8a-468e-a609-f54525c454d5
with raw as (
select
block_timestamp,
block_timestamp::date as day,
owner,
balance
from solana.core.fact_token_balances
where block_timestamp::date >= '2024-10-18' -- first mint date
and mint = '9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump' -- $FARTCOIN CA
qualify row_number() over (partition by day, owner order by block_timestamp desc) = 1 -- Ensuring Only Latest Balance Per Owner Per Day
),
owners as (
select
distinct owner as owner
from raw
),
all_dates as (
select
date_day as day
from crosschain.core.dim_dates
where date_day::date between current_date - 14 and current_date :: date -- Getting resuts for the last 14 days
),
all_dates_owners as (
select
day,
owner
from all_dates
cross join owners
),
daily_join as (
Last run: 4 days ago
15
510B
151s