COHORT_WEEK | # of New Makers | 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 | 2024-12-16 00:00:00.000 | 2 | 100 | 50 | 50 | 50 | 50 | 50 | ||||||
2 | 2024-12-09 00:00:00.000 | 1 | 100 | 100 | ||||||||||
3 | 2024-11-18 00:00:00.000 | 2 | 50 | 100 | 50 | 50 | 50 | 50 | 50 | |||||
4 | 2024-10-28 00:00:00.000 | 1 | ||||||||||||
5 | 2024-10-07 00:00:00.000 | 1 | ||||||||||||
6 | 2024-09-16 00:00:00.000 | 5 | 20 | |||||||||||
7 | 2024-08-12 00:00:00.000 | 1 | 100 | 100 | ||||||||||
8 | 2024-08-05 00:00:00.000 | 4 | 50 | 25 | 25 | |||||||||
9 | 2024-07-29 00:00:00.000 | 2 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 |
10 | 2024-07-22 00:00:00.000 | 10 | ||||||||||||
11 | 2024-07-15 00:00:00.000 | 1 | 100 | 100 | 100 | |||||||||
12 | 2024-07-01 00:00:00.000 | 2 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | ||||
13 | 2024-06-17 00:00:00.000 | 8 | 25 | 12.5 | 12.5 | 12.5 | 12.5 | 12.5 | ||||||
14 | 2024-06-03 00:00:00.000 | 11 | ||||||||||||
15 | 2024-05-27 00:00:00.000 | 12 | 25 | 16.666666667 | 16.666666667 | 16.666666667 | 16.666666667 | 16.666666667 | 16.666666667 | 8.333333333 | ||||
16 | 2024-05-20 00:00:00.000 | 19 | 15.789473684 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | ||||||
17 | 2024-05-13 00:00:00.000 | 19 | 10.526315789 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 | 5.263157895 |
18 | 2024-05-06 00:00:00.000 | 8 | 37.5 | 25 | ||||||||||
19 | 2024-04-29 00:00:00.000 | 58 | ||||||||||||
20 | 2024-04-22 00:00:00.000 | 35 | 14.285714286 | 2.857142857 | 2.857142857 | 2.857142857 |
rezarwzMakers 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_makers as (
SELECT
tx_hash,
block_timestamp,
decoded_log:maker AS maker_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
27
3KB
219s