itsxenuxTotal number of withdrawers
    Updated 2022-06-25
    with query AS (select count(distinct eth_to_address) AS total_wallets,
    Sum(amount) AS total_volume
    from ethereum.core.ez_eth_transfers eet
    where date_trunc('day', eet.block_timestamp) >= '2022-04-26'
    and eet.eth_from_address in ('0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419'))

    select total_wallets, total_volume
    from query
    Run a query to Download Data