LTirrellvote_fees
    Updated 2023-02-28
    select
    block_timestamp::date as "Date",
    sum(num_votes) * 5000 * pow(10, -9) as fees
    from
    solana.core.fact_votes_agg_block
    where
    block_timestamp::date > current_date -31
    group by "Date"
    Run a query to Download Data