dylan_apr% of Addresses Ethereum Mainnet Balance >0.01
    Updated 2025-02-25


    select
    stat_date
    -- ,mainnet_address_count
    -- ,total_claim_address_count
    ,mainnet_address_count /total_claim_address_count as main_percent
    from
    (
    select
    TO_CHAR(stat_date, 'YYYY-MM-DD HH24') as stat_date
    ,count(case when transfer_type='out' and value>=2 then other_address else null end ) as mainnet_address_count
    ,count(case when transfer_type='out' then other_address else null end ) as total_claim_address_count
    from
    (
    SELECT
    FROM_ADDRESS AS core_address,
    TO_ADDRESS AS other_address,
    'out' AS transfer_type,
    value,
    BLOCK_TIMESTAMP AS stat_date,
    TX_HASH as hash
    FROM monad.testnet.fact_transactions
    WHERE from_address=lower('0xD7a24d1F1435CD314E86736E139f8431D4498D4e')
    and BLOCK_TIMESTAMP>='2025-02-19 14:00:00'
    ) a
    group by 1
    order by 1
    ) a
    order by 1



    Last run: 12 days ago
    STAT_DATE
    MAIN_PERCENT
    1
    2025-02-19 140.444444
    2
    2025-02-19 150.394277
    3
    2025-02-19 160.469368
    4
    2025-02-19 170.314374
    5
    2025-02-19 180.144733
    6
    2025-02-19 190.076286
    7
    2025-02-19 200.106047
    8
    2025-02-19 210
    9
    2025-02-20 040.247312
    10
    2025-02-20 050.22866
    11
    2025-02-20 060.244881
    12
    2025-02-20 080.287356
    13
    2025-02-20 090.280502
    14
    2025-02-20 120
    15
    2025-02-20 130.237209
    16
    2025-02-20 140.286817
    17
    2025-02-22 031
    18
    2025-02-22 040.289308
    19
    2025-02-22 121
    20
    2025-02-23 151
    ...
    249
    5KB
    7s