DATE | DAILY_NEW_USERS | CUMULATIVE_USERS_COUNT | |
---|---|---|---|
1 | 2024-01-29 00:00:00.000 | 12 | 4391 |
2 | 2024-01-28 00:00:00.000 | 20 | 4379 |
3 | 2024-01-27 00:00:00.000 | 34 | 4359 |
4 | 2024-01-26 00:00:00.000 | 34 | 4325 |
5 | 2024-01-25 00:00:00.000 | 18 | 4291 |
6 | 2024-01-24 00:00:00.000 | 24 | 4273 |
7 | 2024-01-23 00:00:00.000 | 36 | 4249 |
8 | 2024-01-22 00:00:00.000 | 22 | 4213 |
9 | 2024-01-21 00:00:00.000 | 25 | 4191 |
10 | 2024-01-20 00:00:00.000 | 33 | 4166 |
11 | 2024-01-19 00:00:00.000 | 9 | 4133 |
12 | 2024-01-18 00:00:00.000 | 44 | 4124 |
13 | 2024-01-17 00:00:00.000 | 25 | 4080 |
14 | 2024-01-16 00:00:00.000 | 18 | 4055 |
15 | 2024-01-15 00:00:00.000 | 18 | 4037 |
16 | 2024-01-14 00:00:00.000 | 18 | 4019 |
17 | 2024-01-13 00:00:00.000 | 33 | 4001 |
18 | 2024-01-12 00:00:00.000 | 56 | 3968 |
19 | 2024-01-11 00:00:00.000 | 39 | 3912 |
20 | 2024-01-10 00:00:00.000 | 43 | 3873 |
rezarwz Daily new user count and cumulative total user count
Updated 2024-01-29
99
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 all_u as (
SELECT
TX_HASH,
BLOCK_TIMESTAMP,
ORIGIN_FROM_ADDRESS as ua
from
ethereum.core.ez_decoded_event_logs
where
contract_address in( '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2','0x49ad262c49c7aa708cc2df262ed53b64a17dd5ee')
UNION
all
SELECT
tx_hash,
block_timestamp,
ORIGIN_FROM_ADDRESS as ua
FROM
ethereum.defi.ez_dex_swaps
WHERE
TOKEN_IN in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
)
or TOKEN_out in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
)),
Last run: about 1 year agoAuto-refreshes every 3 hours
...
109
4KB
26s