freemartianTop 20 Wallets With Most Transactions
    Updated 2022-12-06
    select
    TX_SENDER as user,
    count(tx_id) as transactions_count
    from terra.core.fact_transactions
    where TX_SUCCEEDED = 'TRUE'
    and block_timestamp >= CURRENT_DATE - {{Past_X_Days}}
    group by 1
    order by transactions_count DESC
    limit 20
    Run a query to Download Data