MONTH | NEW_ADDRESSES | CUMULATIVE_NEW_ADDRESSES | |
---|---|---|---|
1 | 2025-03-01 00:00:00.000 | 92 | 333378 |
2 | 2025-02-01 00:00:00.000 | 4837 | 333286 |
3 | 2025-01-01 00:00:00.000 | 4336 | 328449 |
4 | 2024-12-01 00:00:00.000 | 4181 | 324113 |
5 | 2024-11-01 00:00:00.000 | 3743 | 319932 |
6 | 2024-10-01 00:00:00.000 | 2829 | 316189 |
7 | 2024-09-01 00:00:00.000 | 3282 | 313360 |
8 | 2024-08-01 00:00:00.000 | 5234 | 310078 |
9 | 2024-07-01 00:00:00.000 | 7313 | 304844 |
10 | 2024-06-01 00:00:00.000 | 7215 | 297531 |
11 | 2024-05-01 00:00:00.000 | 15708 | 290316 |
12 | 2024-04-01 00:00:00.000 | 14392 | 274608 |
13 | 2024-03-01 00:00:00.000 | 7779 | 260216 |
14 | 2024-02-01 00:00:00.000 | 33691 | 252437 |
15 | 2024-01-01 00:00:00.000 | 8017 | 218746 |
16 | 2023-12-01 00:00:00.000 | 7954 | 210729 |
17 | 2023-11-01 00:00:00.000 | 6033 | 202775 |
18 | 2023-10-01 00:00:00.000 | 9709 | 196742 |
19 | 2023-09-01 00:00:00.000 | 8903 | 187033 |
20 | 2023-08-01 00:00:00.000 | 11571 | 178130 |
MLDZMNLDO- new addresses
Updated 2024-08-03
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
›
⌄
with eth_deposits as (
select
block_timestamp,
block_number,
tx_hash,
event_index,
'deposit' as action,
decoded_log:sender as user,
decoded_log:amount as underlying_amount_raw,
null as lst_amount_raw
from ethereum.core.ez_decoded_event_logs
where block_timestamp >= '2020-12-17'
and contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and topics[0] = '0x96a25c8ce0baabc1fdefd93e9ed25d8e092a3332f3aa9a41722b5697231d1d1a'
),
steth_mints as (
select
block_timestamp,
block_number,
tx_hash,
event_index,
'mint' as action,
decoded_log:to as user,
null as underlying_amount_raw,
decoded_log:value as lst_amount_raw
from ethereum.core.ez_decoded_event_logs
where block_timestamp >= '2020-12-17'
and contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
and decoded_log:from = '0x0000000000000000000000000000000000000000'
),
request_withdrawal as (
select
block_timestamp,
Last run: about 1 month ago
51
2KB
131s