freemartianTotal ETH Unlocked
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
sum(event_inputs:value)/pow(10,18) as Total_ETH_locked
from ethereum.core.fact_event_logs
where origin_to_address = '0xa4b41efc1b6f73355c90119aeefddb1ffcf907b0'
and contract_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
and event_name = 'Transfer'
SELECT
sum(event_inputs:value)/pow(10,18) as Total_ETH_Unlocked
from ethereum.core.fact_event_logs
where origin_to_address = '0xa4b41efc1b6f73355c90119aeefddb1ffcf907b0'
and contract_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
and event_inputs:to != '0xa45645ebb075a96d1c89511e28d3e9b94f3b7905'
and event_inputs:from = '0xa4b41efc1b6f73355c90119aeefddb1ffcf907b0'
Run a query to Download Data