superflyDistribution of Luna staking amount based on action Distribution of Luna staking count based on action Luna staking amount on Daily basis based on action Luna staking count on Daily basis based on action
    Updated 2022-12-14
    with luna_staking_daily as (
    select to_date(block_timestamp) as date,
    sum(AMOUNT) as total_amount_staked,
    count(*) as total_count,
    action
    from terra.core.ez_staking
    group by action, date
    )
    select * from luna_staking_daily
    Run a query to Download Data