messariaptos validator stake (marqu)
    Updated 2025-03-09
    with
    stake_txs as (
    select
    date_trunc('day', block_timestamp) as date
    , address as pool_address
    , change_data :active :value ::int / pow(10,8) as active_stake
    from aptos.core.fact_changes
    where success
    and change_type = 'write_resource'
    and inner_change_type = '0x1::stake::StakePool'
    and block_timestamp > '2022-10-19'
    qualify row_number() over (partition by address, date order by version desc, change_index desc) = 1
    ),

    dates as (
    select distinct
    date_trunc('day', date_hour) as date
    , pool_address
    from crosschain.core.dim_date_hours
    cross join (select distinct pool_address from stake_txs) pools
    ),
    filled_dates as (
    select
    date
    , pool_address
    , coalesce(active_stake
    , lag(active_stake) ignore nulls over (partition by pool_address order by date)
    , 0) as active_stake
    from dates
    full outer join stake_txs
    using(date, pool_address)
    where active_stake is not null
    ),
    aggregated as (
    select
    date
    Last run: 26 days ago
    DATE
    Active Validators
    Total Staked (APT)
    1
    2025-03-09 00:00:00.000148872475315.268716
    2
    2025-03-08 00:00:00.000148872231770.667143
    3
    2025-03-07 00:00:00.000148872049316.279381
    4
    2025-03-06 00:00:00.000143866472483.191164
    5
    2025-03-05 00:00:00.000143866250188.732414
    6
    2025-03-04 00:00:00.000144869491394.849645
    7
    2025-03-03 00:00:00.000143868538852.359531
    8
    2025-03-02 00:00:00.000143868597348.336622
    9
    2025-03-01 00:00:00.000143868439698.448341
    10
    2025-02-28 00:00:00.000143868532825.225719
    11
    2025-02-27 00:00:00.000143867819274.861128
    12
    2025-02-26 00:00:00.000148872441356.738981
    13
    2025-02-25 00:00:00.000148872549687.937841
    14
    2025-02-24 00:00:00.000146870216051.098071
    15
    2025-02-23 00:00:00.000145869078145.917317
    16
    2025-02-22 00:00:00.000145868849442.463311
    17
    2025-02-21 00:00:00.000146869633662.805186
    18
    2025-02-20 00:00:00.000142861685054.955293
    19
    2025-02-19 00:00:00.000142861467888.705781
    20
    2025-02-18 00:00:00.000141858873439.61914
    ...
    873
    42KB
    259s