mmdrezatotal_users
Updated 2022-06-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with users as (
select DISTINCT from_address as users
from ethereum.core.ez_token_transfers
where (
origin_to_address = lower('0x3e4a3a4796d16c0cd582c382691998f7c06420b6')
OR origin_to_address = lower('0x3666f603cc164936c1b87e207f36beba4ac5f18a')
OR origin_to_address = lower('0x3d4cc8A61c7528fd86c55cfe061a78dcba48edd1')
OR origin_to_address = lower('0x22B1cbb8d98a01a3b71d034bb899775a76eb1cc2')
)
union
select DISTINCT ORIGIN_FROM_ADDRESS as users
from ethereum.core.ez_eth_transfers
where ORIGIN_TO_ADDRESS = '0xb8901acb165ed027e32754e0ffe830802919727f'
)
select count(DISTINCT users)
from users
Run a query to Download Data