select block_timestamp::date as date,
count (distinct tx_hash) as swap,
count (distinct origin_from_address) as swappers
from optimism.core.fact_event_logs
where origin_to_address = lower('0xa132DAB612dB5cB9fC9Ac426A0Cc215A3423F9c9')
and event_name = 'Swap' and block_timestamp::date>= '2022-01-01' group by 1