kiacryptoTotal ETHs have been bridged so far from Ethereum to StarkNet or vice versa? by how many depositors? (events_log_table)
    Updated 2022-06-29
    select sum(event_inputs:amount/1e18) as eth_volume, count(distinct origin_from_address) as unique_user
    from ethereum.core.fact_event_logs
    where contract_address = lower('0xae0Ee0A63A2cE6BaeEFFE56e7714FB4EFE48D419') and origin_function_signature in ('0x00f714ce', '0xb6b55f25') and event_inputs:amount is not null

    Run a query to Download Data