SELECT
SUM(CASE WHEN amount_in_usd IS NULL THEN amount_out_usd ELSE amount_in_usd END) as volume
, COUNT(distinct(tx_hash)) as tx_count
, COUNT(distinct(origin_from_address)) as wallet_count
FROM kaia.defi.ez_dex_swaps
WHERE block_timestamp >= '2025-01-01'