fat3mehETH Withdrawn from StarkNet
    Updated 2022-06-28
    select
    block_timestamp::date as date ,
    count (distinct origin_from_address) as withdrawn_num_wallets ,
    sum (amount) as withdrawn_ETH_Volume,
    avg (amount) as withdrawn_AVG_ETH_Volume,
    sum (withdrawn_ETH_Volume) over (order by date) as withdrawn_Cumulative_ETH_Volume,
    sum (withdrawn_num_wallets) over (order by date) as withdrawn_cumulative_wallets,
    count (DISTINCT TX_HASH ) as num_transfer
    from ethereum.core.ez_eth_transfers
    where origin_to_address =lower('0xae0Ee0A63A2cE6BaeEFFE56e7714FB4EFE48D419')
    and ORIGIN_FUNCTION_SIGNATURE IN ('0x00f714ce','0x2e1a7d4d')
    group by 1
    Run a query to Download Data