andreafiandromantle Bridge sum
Updated 2023-09-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
SUM(AMOUNT) as AMOUNT_BRIDGED
from
ethereum.core.ez_ETH_transfers
where
AMOUNT > 0
AND BLOCK_TIMESTAMP > '{{start_date_mantle}}'
AND BLOCK_TIMESTAMP < '{{end_date_mantle}}'
AND ORIGIN_TO_ADDRESS = '0x95fc37a27a2f68e3a647cdc081f0a89bb47c3012'
AND ORIGIN_FUNCTION_SIGNATURE in ('0xb1a1a882') -- Deposit ETH
ORDER BY BLOCK_TIMESTAMP
Run a query to Download Data