SELECT date (BLOCK_TIMESTAMP) as time,'uniswap' as platform,
sum(amount_usd * 0.003) as fee_uniswap
FROM ethereum.dex_swaps
WHERE platform like 'uniswap%' and amount_usd < 999999999
AND block_timestamp >= '2022-01-01' and block_timestamp <= '2022-04-12' and direction ilike 'OUT'
GROUP BY time, platform