MufasaLuna staked on weekly basis
    Updated 2023-01-03
    with luna_staking_daily as (
    select date_trunc('week', block_timestamp) as week,
    sum(AMOUNT) as total_amount_staked,
    count(*) as total_count,
    action
    from terra.core.ez_staking
    group by action, week
    )
    select * from luna_staking_daily
    Run a query to Download Data