hessMonthly New
    Updated 2024-12-18
    with validator as (select min(block_timestamp) as date,
    VALIDATOR_ADDRESS,
    sum(amount/pow(10,6)) as delegate_amount,
    count(DISTINCT tx_id) as delegate_tx,
    count(DISTINCT DELEGATOR_ADDRESS) as delegate_user,
    avg(amount/pow(10,6)) as avg_delegate_amount
    from axelar.gov.fact_staking
    group by 2
    )

    select trunc(date,'month') as monthly,
    count(DISTINCT VALIDATOR_ADDRESS) as "New Validators",
    suM("New Validators") over (order by monthly asc) as "Cumulative New Validators",
    75 as active_validators
    from validator
    group by 1






    Last run: 19 days ago
    MONTHLY
    New Validators
    Cumulative New Validators
    ACTIVE_VALIDATORS
    1
    2024-05-01 00:00:00.000214575
    2
    2021-12-01 00:00:00.0006675
    3
    2022-01-01 00:00:00.000263275
    4
    2022-02-01 00:00:00.00053775
    5
    2022-12-01 00:00:00.000711175
    6
    2024-11-01 00:00:00.000114875
    7
    2024-10-01 00:00:00.000114775
    8
    2024-08-01 00:00:00.000114675
    9
    2022-06-01 00:00:00.00034875
    10
    2023-02-01 00:00:00.000211675
    11
    2023-09-01 00:00:00.000212975
    12
    2022-10-01 00:00:00.000119275
    13
    2022-05-01 00:00:00.00014575
    14
    2023-06-01 00:00:00.000412275
    15
    2023-07-01 00:00:00.000412675
    16
    2024-03-01 00:00:00.000514275
    17
    2023-05-01 00:00:00.000211875
    18
    2024-01-01 00:00:00.000213775
    19
    2023-08-01 00:00:00.000112775
    20
    2023-01-01 00:00:00.000311475
    30
    1KB
    2s