Updated 2022-12-06
    --creator :: https://app.flipsidecrypto.com/velocity/queries/187806ab-0719-46e4-b7fc-6f775026d0e8

    select
    date_trunc('day',block_timestamp) as date,
    count(distinct tx_hash),
    sum(amount),
    sum(amount_usd),
    count(DISTINCT origin_from_address) as total_unique_wallets
    from ethereum.core.ez_eth_transfers
    where eth_to_address = lower('0xc4448b71118c9071Bcb9734A0EAc55D18A153949')
    and block_timestamp >= current_date - 45
    group by date
    order by date desc
    Run a query to Download Data