dylan_apraPriori Faucet MON Distribution Chart
    Updated 2025-02-25

    select
    stat_date,
    daily_claim_MON_amount,
    SUM(daily_claim_MON_amount) OVER (ORDER BY stat_date) AS cumsum_MON_amount,
    daily_claim_tx_count,
    daily_claim_address_count
    from (
    select
    -- date(stat_date) as stat_date
    TO_CHAR(stat_date, 'YYYY-MM-DD HH24') as stat_date
    ,sum(case when transfer_type='out' then value else 0 end ) as daily_claim_MON_amount
    ,count(distinct case when transfer_type='out' then hash else null end ) as daily_claim_tx_count
    ,count(distinct case when transfer_type='out' then other_address else null end ) daily_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'


    UNION ALL

    SELECT
    TO_ADDRESS AS core_address,
    FROM_ADDRESS AS other_address,
    'in' AS transfer_type,
    value,
    Last run: 6 days ago
    STAT_DATE
    DAILY_CLAIM_MON_AMOUNT
    CUMSUM_MON_AMOUNT
    DAILY_CLAIM_TX_COUNT
    DAILY_CLAIM_ADDRESS_COUNT
    1
    2025-02-19 1465654545
    2
    2025-02-19 15877942629627
    3
    2025-02-19 16148724291012982
    4
    2025-02-19 1712713700967929
    5
    2025-02-19 184271797137313731
    6
    2025-02-19 1971531512466466644
    7
    2025-02-19 2048291995343664366
    8
    2025-02-19 2131995633
    9
    2025-02-20 049920055186186
    10
    2025-02-20 052878.8422933.8458345834
    11
    2025-02-20 061208.1424141.9823932393
    12
    2025-02-20 08307.4424449.42522522
    13
    2025-02-20 09504.6224954.04877877
    14
    2025-02-20 120.0424954.0822
    15
    2025-02-20 13842.2425796.3217201720
    16
    2025-02-20 145177.6230973.9488078807
    17
    2025-02-20 15030973.9400
    18
    2025-02-22 031030983.9455
    19
    2025-02-22 0494.2631078.2159159
    20
    2025-02-22 05031078.200
    ...
    310
    12KB
    14s