Updated 2022-11-17
    select
    distinct SIGNERS[0] ,sum(fee)/pow(10,9)
    from solana.core.fact_transactions
    where block_timestamp >= CURRENT_DATE - 30
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data