hessCurrent Delegators
    Updated 2024-12-18
    -- Credited to https://flipsidecrypto.xyz/MoDeFi/q/aSnyaDNUhdmO/axelar-stake---stakers-over-time

    with date_start as (
    with dates AS (
    SELECT CAST('2022-02-10' AS DATE) AS start_date
    UNION ALL
    SELECT DATEADD(day, 1, start_date)
    FROM dates
    WHERE start_date < CURRENT_DATE())
    SELECT date_trunc(day, start_date) AS start_date
    FROM dates),

    ----------------------- ft transfers -----------------------
    axl_stakers_balance_change as (
    select * from
    (select date_trunc(day, block_timestamp) as date,
    user,
    sum(amount)/1e6 as balance_change
    from
    (
    select block_timestamp, DELEGATOR_ADDRESS as user, -1* amount as amount, TX_ID as tx_hash
    from axelar.gov.fact_staking
    where action='undelegate' and TX_SUCCEEDED=TRUE
    union all
    select block_timestamp, DELEGATOR_ADDRESS, amount, TX_ID
    from axelar.gov.fact_staking
    where action='delegate' and TX_SUCCEEDED=TRUE)
    group by 1,2)),

    axl_stakers_historic_holders as (
    select user
    from axl_stakers_balance_change
    group by 1),

    user_dates as (
    select start_date, user
    Last run: 13 days ago
    Date
    Users
    Total Staked
    Total Supply
    Staked %
    1
    2025-03-30 00:00:00.00021647712112763.917504115000000061.922849036305
    2
    2025-03-29 00:00:00.00021647712112763.917504115000000061.922849036305
    3
    2025-03-28 00:00:00.00021647712112763.917504115000000061.922849036305
    4
    2025-03-27 00:00:00.00021644712071712.172718115000000061.919279319367
    5
    2025-03-26 00:00:00.00021635712073654.116469115000000061.919448184041
    6
    2025-03-25 00:00:00.00021634712187417.138248115000000061.929340620717
    7
    2025-03-24 00:00:00.00021627712027014.333526115000000061.915392550741
    8
    2025-03-23 00:00:00.00021614711777426.649196115000000061.893689273843
    9
    2025-03-22 00:00:00.00021610711703410.879031115000000061.887253119916
    10
    2025-03-21 00:00:00.00021607712963815.25414115000000061.99685350036
    11
    2025-03-20 00:00:00.00021607712962208.147265115000000061.996713751936
    12
    2025-03-19 00:00:00.00021598713231065.117225115000000062.020092618889
    13
    2025-03-18 00:00:00.00021590720987286.668686115000000062.694546666842
    14
    2025-03-17 00:00:00.00021590719828840.865166115000000062.593812249145
    15
    2025-03-16 00:00:00.00021587719180182.689475115000000062.537407190389
    16
    2025-03-15 00:00:00.00021591719196572.696172115000000062.538832408363
    17
    2025-03-14 00:00:00.00021580718990359.016646115000000062.520900784056
    18
    2025-03-13 00:00:00.00021572719024030.648285115000000062.523828752025
    19
    2025-03-12 00:00:00.00021558672533239.950506115000000058.481151300044
    20
    2025-03-11 00:00:00.00021566672287508.172512115000000058.459783319349
    ...
    1141
    84KB
    11s