CHAIN | WEEK_ | # Active Addresses | # Score 4+ | |
---|---|---|---|---|
1 | ethereum | 2024-01-01 00:00:00.000 | 10718046 | 629010 |
2 | solana | 2024-01-01 00:00:00.000 | 4776250 | 1418601 |
3 | solana | 2024-01-08 00:00:00.000 | 5069502 | 1529830 |
4 | ethereum | 2024-01-08 00:00:00.000 | 10846370 | 636931 |
5 | solana | 2024-01-15 00:00:00.000 | 5431962 | 1673614 |
6 | ethereum | 2024-01-15 00:00:00.000 | 11142325 | 646336 |
7 | solana | 2024-01-22 00:00:00.000 | 5829333 | 1878167 |
8 | ethereum | 2024-01-22 00:00:00.000 | 11362969 | 661593 |
9 | solana | 2024-01-29 00:00:00.000 | 6433149 | 2146654 |
10 | ethereum | 2024-01-29 00:00:00.000 | 11499290 | 676811 |
11 | solana | 2024-02-05 00:00:00.000 | 6755245 | 2275560 |
12 | ethereum | 2024-02-05 00:00:00.000 | 11592426 | 686705 |
13 | ethereum | 2024-02-12 00:00:00.000 | 11734028 | 696191 |
14 | solana | 2024-02-12 00:00:00.000 | 6991251 | 2393564 |
15 | solana | 2024-02-19 00:00:00.000 | 7353925 | 2473175 |
16 | ethereum | 2024-02-19 00:00:00.000 | 11856372 | 704530 |
17 | solana | 2024-02-26 00:00:00.000 | 7774796 | 2669778 |
18 | ethereum | 2024-02-26 00:00:00.000 | 12167593 | 715010 |
19 | solana | 2024-03-04 00:00:00.000 | 8568454 | 2982247 |
20 | ethereum | 2024-03-04 00:00:00.000 | 12400814 | 720683 |
winnie-fsselect-chains-score historical 0/4+ compare copy copy
Updated 5 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 theericstone / select-chains-score historical 0/4+ compare copy @ https://flipsidecrypto.xyz/theericstone/q/nhDDXJPZifIj/select-chains-score-historical-0-4-compare-copy
-- forked from charliemarketplace / select-chains-score historical 0/4+ compare @ https://flipsidecrypto.xyz/charliemarketplace/q/NOZr-hhX7kZr/select-chains-score-historical-0-4-compare
-- forked from select-chains-score historical 0/1/4+ @ https://flipsidecrypto.xyz/studio/queries/a5b7796c-9f8e-4528-93ac-4acb095a6e87
-- forked from select-chains-score historical @ https://flipsidecrypto.xyz/studio/queries/f73bc347-2acd-49e1-ba64-d88e5db21ded
with daily_score_tiers AS (
select
chain,
score_date,
sum (case when score >= 0 then count_with_score else 0 end) as n_scored,
sum (case when score >= 4 then count_with_score else 0 end) as n_4plus
from
datascience_public_misc.score_analytics.chain_score_distribution
where chain IN (
SELECT value
FROM TABLE(SPLIT_TO_TABLE('{{Chains}}', ' '))
)
group by chain, score_date
)
select
chain,
date_trunc('week', score_date) as week_,
median(n_scored) as "# Active Addresses",
median(n_4plus) as "# Score 4+"
from daily_score_tiers
group by chain, week_
order by week_ asc
Last run: 5 days ago
...
130
7KB
2s