USER_TYPE | NO_RECEIVERS | TOTAL_AMOUNT | AVG_AMOUNT | |
---|---|---|---|---|
1 | SBT holders | 23884 | 47340875 | 1982.116688997 |
2 | Other users | 601259 | 1114825125 | 1854.151247632 |
HolonymHolonym users vs arb airdrop
Updated 17 hours agoCopy Reference Fork
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from Holonym users vs other users @ https://flipsidecrypto.xyz/edit/queries/b30940b7-2e8b-43e0-bf1f-7b167e7c4892
with holonym_optimism_usresidency as (
select
block_timestamp,
block_number,
tx_hash,
concat('0x',substring(substring(input_data, 11 + 64 * 9, 64), 25, 40)) as userAddress,
'US Residency' as type
from optimism.core.fact_transactions
where to_address = '0x7497636f5e657e1e7ea2e851cdc8649487df3aab'
),
holonym_optimism_sybilphone as (
select
block_timestamp,
block_number,
tx_hash,
concat('0x',substring(substring(input_data, 11 + 64 * 9, 64), 25, 40)) as userAddress,
'Phone' as type
from optimism.core.fact_transactions
where to_address = '0xa40c8aaf7f47b18c1eddbe7855b580f828ed9711'
),
holonym_optimism_sybilresistance as (
select
block_timestamp,
block_number,
tx_hash,
concat('0x',substring(substring(input_data, 11 + 64 * 9, 64), 25, 40)) as userAddress,
'GovID' as type
from optimism.core.fact_transactions
where to_address = '0xdd748977bab5782625af1466f4c5f02eb92fce31'
),
holonym_optimism_results as (
select * from holonym_optimism_usresidency
union all
select * from holonym_optimism_sybilphone
Last run: about 17 hours agoAuto-refreshes every 24 hours
2
96B
207s