0xaimanUntitled Query
    Updated 2021-11-19
    /*
    select from_address, count(tx_id), sum(amount_usd) -- from_label,count(tx_id),sum(amount_usd)
    from ethereum.udm_events
    where to_label='sushiswap'
    group by 1
    limit 100
    */

    select event_name, tx_from_address
    from ethereum.events_emitted
    where tx_to_label='sushiswap' or tx_from_label='sushiswap'
    limit 100
    Run a query to Download Data