hbd1994Untitled Query
Updated 2023-02-12
99
1
2
3
4
5
6
7
8
9
10
›
⌄
(select 'Ethereum' as chain, *
from ethereum.core.fact_event_logs
where ORIGIN_FUNCTION_SIGNATURE = '0x8ca3bf68'
and block_timestamp>= '2023-02-02')
union
(select 'Binance Smart Chain' as chain, *
from bsc.core.fact_event_logs
where ORIGIN_FUNCTION_SIGNATURE = '0x8ca3bf68'
and block_timestamp>= '2023-02-02')
order by 3 , 8
Run a query to Download Data