theericstoneselect-chains-score historical copy
    Updated 2025-03-12
    -- forked from charliemarketplace / select-chains-score historical @ https://flipsidecrypto.xyz/charliemarketplace/q/UC2HutShHFCm/select-chains-score-historical


    select
    chain, -- the blockchain, e.g., aptos, arbitrum, avalanche, base.
    date_trunc('week', score_date) as week_, -- the date when scores for all users on the chain were calculated.
    median(median_score) as "Median Score", -- The median score across all scored addresses on the chain-score_date. .e., 0, 1, 2, 3, etc. up to 15.
    AVG(avg_score) as "Avg. Score", -- the average score across all scored addresses on the chain as of the score_date
    median(percentile90_score) as "90th Percentile (top 10%)", -- 90th percentile score (uses approximation for speed which is fine) 90% of users have this score or lower.
    median(percentile99_score) as "99th Percentile (top 1%)" -- 99th percentile score, i.e., top 1% active users have this score or higher.
    from
    datascience_public_misc.score_analytics.chain_score_spread
    where chain IN ('{{Chain}}')
    group by 1,2
    order by week_ ASC






    Last run: 11 days ago
    CHAIN
    WEEK_
    Median Score
    Avg. Score
    90th Percentile (top 10%)
    99th Percentile (top 1%)
    1
    near2024-01-01 00:00:00.00011.17835723122
    2
    near2024-01-08 00:00:00.00011.16280742722
    3
    near2024-01-15 00:00:00.00011.14807192822
    4
    near2024-01-22 00:00:00.00011.17098164222
    5
    near2024-01-29 00:00:00.00011.19317333422
    6
    near2024-02-05 00:00:00.00011.20738703222
    7
    near2024-02-12 00:00:00.00011.21935361822
    8
    near2024-02-19 00:00:00.00011.2312834722
    9
    near2024-02-26 00:00:00.00011.23316565223
    10
    near2024-03-04 00:00:00.00011.2354592423
    11
    near2024-03-11 00:00:00.00011.25463682523
    12
    near2024-03-18 00:00:00.00011.32426694124
    13
    near2024-03-25 00:00:00.00011.3964709524
    14
    near2024-04-01 00:00:00.00011.41593696124
    15
    near2024-04-08 00:00:00.00011.42580812524
    16
    near2024-04-15 00:00:00.00011.43462219624
    17
    near2024-04-22 00:00:00.00011.44375223724
    18
    near2024-04-29 00:00:00.00011.43503841824
    19
    near2024-05-06 00:00:00.00011.4156860524
    20
    near2024-05-13 00:00:00.00011.42465071124
    63
    3KB
    1s