ydcny555Daily number of unique users that transfer to-from airswap
    Updated 2022-10-22
    select 'transfer to airswap' , count(distinct tx_hash) as Transfer_count , sum(amount_usd) as Transfer_amount , count(distinct from_address) as users , block_timestamp::date
    from ethereum.core.ez_token_transfers
    where to_address='0x579120871266ccd8de6c85ef59e2ff6743e7cd15'
    group by 5
    UNION
    select 'transfer from airswap' , count(distinct tx_hash) as Transfer_count, sum(amount_usd) as Transfer_amount , count(distinct to_address) as users , block_timestamp::date
    from ethereum.core.ez_token_transfers
    where from_address='0x579120871266ccd8de6c85ef59e2ff6743e7cd15'
    group by 5
    Run a query to Download Data