shreex2023-01-31 08:59 PM
    Updated 2023-01-31
    select
    tx_SENDER,
    count(*) as txs
    from terra.core.fact_transactions where block_timestamp >= '2023-01-01'
    GROUP BY 1
    ORDER BY 2 DESC LIMIT 1000