mlhTop 10 airdrop winners
    Updated 2022-09-28
    select date_trunc('day', block_timestamp) as day,
    event_inputs:amount/pow(10,18) as airdrop_volume,
    event_inputs:recipient as airdrop_claimer
    from optimism.core.fact_event_logs
    where contract_address = '0xfedfaf1a10335448b7fa0268f56d2b44dbd357de'
    and event_name = 'Claimed'
    order by 2 DESC
    limit 10
    Run a query to Download Data