rajsUntitled Query
    Updated 2022-10-04
    SELECT
    -- *
    date_trunc('day', block_timestamp),
    count(*)
    from ethereum.core.fact_event_logs
    where origin_to_address = '0x5564886ca2c518d1964e5fcea4f423b41db9f561'
    and origin_function_signature = '0x432ced04'
    -- and block_timestamp::date = '2022-09-28'
    -- and origin_from_address = '0x7e1877d6ed0574181e5508952cfcd057b5ac5832'
    group by 1
    order by 1 desc
    -- order by block_timestamp
    Run a query to Download Data