Moe5 eth open
    Updated 2022-09-21
    select
    count(distinct from_address) as "Number of Unique Wallets they have Deposited ETH",
    count(*) as "Total Number of Deposits",
    sum (eth_value) as "Total Deposited ETHs"
    from ethereum.core.fact_traces
    where identifier ='CALL_ORIGIN'
    and to_address = '0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419'
    and ETH_VALUE > '0'
    and TX_STATUS = 'SUCCESS'
    Run a query to Download Data