mo115Cards - Top 10 Highest Amount
    Updated 2024-12-15
    select FROM_ADDRESS as "Card"
    , SYMBOL as currency
    , count(distinct TX_HASH) as "Transactions"
    , sum(AMOUNT)as "Total Purchase Amount"
    from gnosis.core.ez_token_transfers
    where to_address ='0x4822521e6135cd2599199c83ea35179229a172ee'
    group by 1,2
    order by 4 DESC
    limit 10

    QueryRunArchived: QueryRun has been archived