articoloquintoETH withdrawn from StarkNet over time
    Updated 2023-12-04
    select date_trunc('day', BLOCK_TIMESTAMP) as "date", sum(ETH_VALUE) as "ETH withdrawn from StarkNet" from ethereum.core.fact_traces
    where FROM_ADDRESS = lower('0xae0Ee0A63A2cE6BaeEFFE56e7714FB4EFE48D419') and TX_STATUS = 'SUCCESS'
    group by 1
    order by 1 asc
    Run a query to Download Data