sarathop_air1
    Updated 2022-11-12

    select 'Unclaimed users' as type, 248699-count(origin_from_address) as users
    from optimism.core.fact_token_transfers
    where origin_function_signature = '0x2e7ba6ef'
    and origin_to_address = '0xfedfaf1a10335448b7fa0268f56d2b44dbd357de'
    and contract_address = '0x4200000000000000000000000000000000000042'

    union (
    select 'Claimed users' as type, count(origin_from_address) as users
    from optimism.core.fact_token_transfers
    where origin_function_signature = '0x2e7ba6ef'
    and origin_to_address = '0xfedfaf1a10335448b7fa0268f56d2b44dbd357de'
    and contract_address = '0x4200000000000000000000000000000000000042')
    Run a query to Download Data