andreafiandrozkSync Bridge sum
Updated 2023-09-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
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
Run a query to Download Data