select date_trunc('month', block_timestamp) as date
, platform as project_name
, count(distinct tx_hash) as count_tx
, count(distinct origin_from_address) as count_user
from ethereum.core.ez_dex_swaps
where block_timestamp::Date >= '2022-06-01'
group by 1, 2
order by 1