select
SUM(AMOUNT) as AMOUNT_BRIDGED
from
ethereum.core.ez_ETH_transfers
where
AMOUNT > 0
AND BLOCK_TIMESTAMP > '{{start_date_zksync}}'
AND BLOCK_TIMESTAMP < '{{end_date_zksync}}'
AND ORIGIN_TO_ADDRESS = '0x32400084c286cf3e17e7b677ea9583e60a000324'
AND ORIGIN_FUNCTION_SIGNATURE in ('0xeb672419') -- Deposit ETH
ORDER BY BLOCK_TIMESTAMP