KeyrockTop 10 Wallets
    Updated 2024-10-25
    SELECT sender as wallet , COUNT(DISTINCT tx_hash) as total_transactions
    FROM aptos.core.fact_transactions
    where success = TRUE AND wallet != ''
    GROUP BY sender
    ORDER BY 2 DESC
    LIMIT 10


    QueryRunArchived: QueryRun has been archived