kingharald-ethTop 10 Withdrawer
    Updated 2022-09-06
    select withdrawer, count(distinct(tx_hash)) as tx_num, sum(amount_withdrawn) as total_amount_weth from ethereum.maker.ez_withdrawals
    where tx_status = 'SUCCESS'
    group by withdrawer
    order by tx_num desc
    limit 10
    Run a query to Download Data