kingharald-ethRepay Amount Per User
    Updated 2022-09-06
    select payer, count(distinct(tx_hash)) as tx_num, sum(amount_paid) as total_amount_dai from ethereum.maker.ez_repayments
    where tx_status = 'SUCCESS'
    and symbol = 'DAI'
    group by payer
    order by tx_num desc
    limit 10
    Run a query to Download Data