Updated 2023-03-10
    select origin_from_address as receiver,
    sum (event_inputs:value/1e18) as received_volume
    from ethereum.core.fact_event_logs
    where origin_to_address = '0xf2d15c0a89428c9251d71a0e29b39ff1e86bce25' -- Blur Airdrop Contract
    and contract_address = '0x5283d291dbcf85356a21ba090e6db59121208b44' --Blur Token
    and origin_function_signature = '0x3d13f874' -- Claim
    and event_name = 'Transfer'
    and tx_status = 'SUCCESS'
    group by 1
    order by 2 DESC
    limit 50

    Run a query to Download Data