emirprince95Top 10 Frequencies of Interaction per Currency
    Updated 2021-10-11
    select event_from as address, event_currency as currency, count(event_currency) as frequency
    from terra.transfers
    where date_trunc('day', block_timestamp) >= date_trunc('day', current_date) - 90 and event_amount_usd != 0
    group by event_from, event_currency
    order by frequency DESC
    limit 10
    Run a query to Download Data