kiacryptoTop 5 Kashi pairs based on the number of loans they have generated
    Updated 2022-05-25
    select symbol, count(*) as number_of_loans
    from ethereum.udm_events
    where symbol like '%km%' and symbol like '%/%-%' and event_name = 'transfer' and origin_function_signature = '0x656f3d64'
    group by 1
    order by 2 desc
    limit 5

    Run a query to Download Data