SocioCryptoLUNA commission per day
    Updated 2022-01-20
    select
    date_trunc('day', block_timestamp) AS date,
    (sum(event_attributes:amount[0]:amount))*0.00000100 as amount
    from
    terra.transitions
    where
    transition_type = 'end_block'
    and event = 'commission'

    group by date
    order by date

    Run a query to Download Data