AndyCoolLoyal Airdrop Receivers
Updated 2022-06-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with top50 as (
select balance, user_address, address_name
from flipside_prod_db.ethereum.erc20_balances
where contract_address = '0x5a98fcbea516cf06857215779fd812ca3bef1b32'
and balance_date = '2022-06-02'
order by balance desc
limit 50)
select distinct to_address, top50.address_name, top50.balance, amount as airdrop_amount
from flipside_prod_db.ethereum.udm_events u
inner join top50 on top50.user_address = u.to_address
where event_name = 'transfer'
and contract_address = '0x5a98fcbea516cf06857215779fd812ca3bef1b32' -- lido token contract
and from_address = '0x4b3edb22952fb4a70140e39fb1add05a6b49622b' -- airdrop early stakers
order by balance desc
Run a query to Download Data