mo115DEXs
Updated 2022-04-22
9
1
2
3
4
5
6
7
8
›
⌄
select date_trunc('day',block_timestamp) as date,count(distinct TX_HASH ) as tx, 'cowswap' as PLATFORM
from ethereum_core.fact_event_logs
where CONTRACT_ADDRESS ='0x9008d19f58aabd9ed0d60971565aa8510560ab41'
group by 1
UNION
select date_trunc('day',block_timestamp) as date,count(distinct TX_HASH ) as tx, PLATFORM
from ethereum_core.ez_dex_swaps
group by 1,3
Run a query to Download Data