COHORT_WEEK | # of New Traders | WEEK_1 | WEEK_2 | WEEK_3 | WEEK_4 | WEEK_5 | WEEK_6 | WEEK_7 | WEEK_8 | WEEK_9 | WEEK_10 | WEEK_11 | WEEK_12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 2025-03-31 00:00:00.000 | 1 | ||||||||||||
2 | 2025-03-17 00:00:00.000 | 1 | ||||||||||||
3 | 2025-02-17 00:00:00.000 | 1 | ||||||||||||
4 | 2025-01-27 00:00:00.000 | 1 | ||||||||||||
5 | 2025-01-20 00:00:00.000 | 2 | ||||||||||||
6 | 2024-12-16 00:00:00.000 | 6 | 50 | 16.666666667 | 16.666666667 | 16.666666667 | 16.666666667 | 16.666666667 | ||||||
7 | 2024-12-09 00:00:00.000 | 4 | 50 | 50 | 25 | 25 | 25 | 25 | ||||||
8 | 2024-12-02 00:00:00.000 | 4 | 50 | |||||||||||
9 | 2024-11-25 00:00:00.000 | 2 | ||||||||||||
10 | 2024-11-18 00:00:00.000 | 3 | 33.333333333 | 66.666666667 | 33.333333333 | 33.333333333 | 33.333333333 | 33.333333333 | 33.333333333 | |||||
11 | 2024-11-11 00:00:00.000 | 1 | ||||||||||||
12 | 2024-11-04 00:00:00.000 | 2 | ||||||||||||
13 | 2024-10-28 00:00:00.000 | 2 | ||||||||||||
14 | 2024-10-14 00:00:00.000 | 1 | ||||||||||||
15 | 2024-10-07 00:00:00.000 | 2 | ||||||||||||
16 | 2024-09-23 00:00:00.000 | 2 | ||||||||||||
17 | 2024-09-16 00:00:00.000 | 6 | 16.666666667 | |||||||||||
18 | 2024-09-09 00:00:00.000 | 1 | 100 | |||||||||||
19 | 2024-08-26 00:00:00.000 | 3 | ||||||||||||
20 | 2024-08-19 00:00:00.000 | 1 |
rezarwzTraders COHORT copy
Updated 2025-04-15
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 all_Traders as (
SELECT
tx_hash,
block_timestamp,
decoded_log:maker AS trader_ad,
CASE
WHEN (decoded_log:maker, block_timestamp) IN (
SELECT
maker,
MIN(min_block_time)
FROM (
SELECT
decoded_log:maker AS maker,
MIN(block_timestamp) AS min_block_time
FROM
Arbitrum.core.ez_decoded_event_logs
WHERE
contract_address = '0x109d9cdfa4ac534354873ef634ef63c235f93f61' AND
event_name = 'OfferWrite'
GROUP BY
decoded_log:maker
UNION ALL
SELECT
decoded_log:maker AS maker,
MIN(block_timestamp) AS min_block_time
FROM
blast.core.ez_decoded_event_logs
WHERE
contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c' AND
event_name = 'OfferWrite'
GROUP BY
decoded_log:maker
) GROUP BY maker
) THEN 'New User'
ELSE 'Returning User'
END AS user_type
Last run: 11 days agoAuto-refreshes every 24 hours
45
5KB
641s