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