select PLATFORM, sum(eth_amount_usd) AS USD
from ethereum.defi.ez_liquid_staking_deposits
Where (cast(block_timestamp as DATE)
BETWEEN '2023-01-01' AND '2023-12-17') AND (platform in ('swell','stader','lido','rocketpool', 'stakewise'))
group by PLATFORM;