Flipside TeamTotal stakers ever
    Updated 8 hours ago
    with staker_expedition as (
    select
    BLOCK_TIMESTAMP,
    tx_hash,
    MULTISIG_ADDRESS as multisig,
    OWNER_ADDRESS as owner,
    SERVICE_ID as serviceId,
    row_number() OVER (
    partition BY serviceId
    order by
    BLOCK_TIMESTAMP desc
    ) as r_no
    from
    crosschain.olas.ez_service_staking
    where
    PROGRAM_NAME in ('Everest', 'Coastal', 'Alpine')
    ),
    last_staked_expedition as (
    select
    BLOCK_TIMESTAMP,
    multisig,
    owner,
    serviceId,
    from
    staker_expedition
    where
    r_no = 1
    ),
    -------------------------------------------------------------------------------------------
    alpha as (
    select
    BLOCK_TIMESTAMP,
    tx_hash,
    MULTISIG_ADDRESS as multisig,
    OWNER_ADDRESS as owner,
    SERVICE_ID as serviceId,
    Last run: about 8 hours agoAuto-refreshes every 12 hours
    TOTAL_STAKERS
    1
    2287
    1
    8B
    70s