tkvresearchBase airdrop point base on Arbitrum criteria
    Updated 2024-08-20
    with bridged_user as
    (select distinct user,
    1 as point
    from
    (select from_address as user
    from ethereum.core.ez_native_transfers
    where to_address = '0x49048044d57e1c92a77f79988d21fa8faf74e97e'
    union all
    select from_address
    from ethereum.core.ez_token_transfers
    where to_address = '0x3154cf16ccdb4c6d922629664174b904d80f2c35')
    ),

    bridged_volume as
    (
    select user,
    case
    when amt_bridged between 10000 and 50000 then 1
    when amt_bridged between 50001 and 250000 then 2
    when amt_bridged > 250000 then 3
    else 0
    end as point
    from
    (select user,
    sum(AMOUNT_USD) as amt_bridged
    from
    (select from_address as user,
    amount_usd
    from ethereum.core.ez_native_transfers
    where to_address = '0x49048044d57e1c92a77f79988d21fa8faf74e97e'
    union all
    select from_address,
    amount_usd
    from ethereum.core.ez_token_transfers
    where to_address = '0x3154cf16ccdb4c6d922629664174b904d80f2c35')
    group by 1)
    Last run: 3 months ago
    TOTAL_POINT
    STATUS
    USER_CNT
    1
    3Eligible2469746
    2
    4Eligible1210496
    3
    5Eligible776117
    4
    6Eligible570942
    5
    7Eligible352001
    6
    8Eligible204590
    7
    9Eligible107710
    8
    10Eligible57967
    9
    11Eligible14930
    10
    12Eligible3931
    11
    13Eligible1548
    12
    14Eligible432
    12
    263B
    560s