0-MIDuser dis poly
Updated 2023-09-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with tab1 as (
select
TO_ADDRESS
,count(distinct TX_HASH) as "DEPOSIT COUNT"
from polygon.core.ez_token_transfers
where ORIGIN_TO_ADDRESS='0x88dcdc47d2f83a99cf0000fdf667a468bb958a78'
and ORIGIN_FUNCTION_SIGNATURE in ('0xcdd1b25d')
group by 1)
select "DEPOSIT COUNT"
,count(distinct TO_ADDRESS) as depositors
from tab1
group by 1
Run a query to Download Data