kingharald-ethMost Popular Pool in term of Deposited Amount
    Updated 2022-09-06
    select symbol, sum(amount_deposited) as total_amount, count(distinct(tx_hash)) as tx_num from ethereum.maker.ez_deposits
    where tx_status = 'SUCCESS'
    and symbol != ''
    group by symbol
    order by total_amount desc
    Run a query to Download Data