DATE | # of New Trades | # of total Traders | |
---|---|---|---|
1 | 2024-11-19 00:00:00.000 | 2 | 8197 |
2 | 2024-03-17 00:00:00.000 | 31 | 849 |
3 | 2024-05-15 00:00:00.000 | 102 | 6845 |
4 | 2024-06-09 00:00:00.000 | 7 | 7498 |
5 | 2024-04-01 00:00:00.000 | 175 | 2547 |
6 | 2024-06-12 00:00:00.000 | 23 | 7547 |
7 | 2024-06-20 00:00:00.000 | 15 | 8047 |
8 | 2024-06-24 00:00:00.000 | 7 | 8096 |
9 | 2024-10-10 00:00:00.000 | 1 | 8188 |
10 | 2024-12-16 00:00:00.000 | 3 | 8211 |
11 | 2024-08-15 00:00:00.000 | 2 | 8173 |
12 | 2024-09-17 00:00:00.000 | 2 | 8182 |
13 | 2025-01-28 00:00:00.000 | 1 | 8217 |
14 | 2024-07-30 00:00:00.000 | 1 | 8161 |
15 | 2025-01-24 00:00:00.000 | 1 | 8215 |
16 | 2024-05-31 00:00:00.000 | 26 | 7314 |
17 | 2024-04-11 00:00:00.000 | 104 | 4186 |
18 | 2024-06-17 00:00:00.000 | 42 | 7975 |
19 | 2024-03-11 00:00:00.000 | 27 | 706 |
20 | 2024-06-02 00:00:00.000 | 11 | 7346 |
rezarwz# of Traders 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: 13 days agoAuto-refreshes every 24 hours
...
181
6KB
246s