Updated 2022-05-18

    select

    (symbol) as token,
    min(BLOCK_TIMESTAMP) as started_day

    from flipside_prod_db.ethereum_core.ez_token_transfers

    where TO_ADDRESS = '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2'
    and token is not null

    group by token
    having count(*) > 0

    Run a query to Download Data