DATE | TOTS | SENDERS | |
---|---|---|---|
1 | 2020-11-12 00:00:00.000 | 197 | 72 |
2 | 2020-11-11 00:00:00.000 | 212 | 75 |
3 | 2020-11-10 00:00:00.000 | 357 | 157 |
4 | 2020-11-09 00:00:00.000 | 409 | 229 |
5 | 2020-11-08 00:00:00.000 | 299 | 160 |
6 | 2020-11-07 00:00:00.000 | 194 | 60 |
7 | 2020-11-06 00:00:00.000 | 297 | 69 |
8 | 2020-11-05 00:00:00.000 | 323 | 84 |
9 | 2020-11-04 00:00:00.000 | 517 | 102 |
10 | 2020-11-03 00:00:00.000 | 487 | 122 |
11 | 2020-11-02 00:00:00.000 | 332 | 117 |
12 | 2020-11-01 00:00:00.000 | 264 | 104 |
13 | 2020-10-31 00:00:00.000 | 226 | 95 |
14 | 2020-10-30 00:00:00.000 | 326 | 118 |
15 | 2020-10-29 00:00:00.000 | 238 | 104 |
16 | 2020-10-28 00:00:00.000 | 266 | 106 |
17 | 2020-10-27 00:00:00.000 | 309 | 166 |
18 | 2020-10-26 00:00:00.000 | 204 | 88 |
19 | 2020-10-25 00:00:00.000 | 255 | 123 |
20 | 2020-10-24 00:00:00.000 | 255 | 122 |
messaripolygon new users
Updated 2024-02-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
date(block_timestamp) as date,
count(*) as tots,
count(DISTINCT from_address) as senders
from
polygon.core.fact_transactions
where
nonce = 0
and date >= date('2020-05-30')
and date <= date('2020-11-12')
group by
1
order by
date desc
limit
100;
Last run: about 1 year ago
100
3KB
1s