mattkstewLAAF Staking 2
    Updated 2023-01-25
    select
    date_trunc('day', block_timestamp),
    case
    when block_timestamp >= '2023-01-14' then 'After Station Launch'
    else 'Before Station Launch'
    END as Station_launch,
    sum(amount)
    from terra.core.ez_staking
    where action not like '%Un%'
    and block_timestamp > '2023-01-07'
    group by 1,2

    Run a query to Download Data