freemartianSponsors
Updated 2022-06-25Copy Reference Fork
9
1
2
3
4
5
6
7
8
›
⌄
with funding as (
select contract_address, sum(event_inputs:amountRaised)/pow(10,18) as amount_raised
from ethereum.core.fact_event_logs
where event_name = 'FundingClosed'
group by contract_address)
select count(distinct origin_from_address) from ethereum.core.fact_event_logs
where origin_to_address in (select contract_address from funding)
Run a query to Download Data