rajsUntitled Query
Updated 2022-10-04Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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