JimMyersTechUntitled Query
    Updated 2022-05-20
    SELECT contract_name, count(1) as event_count
    FROM flipside_prod_db.ethereum_core.fact_event_logs
    WHERE ORIGIN_FROM_ADDRESS = LOWER('0x4a9318F375937B56045E5a548e7E66AEA61Dd610')
    GROUP BY 1
    ORDER BY 2 desc

    Run a query to Download Data