DATE | # of New Trades | # of total Traders | |
---|---|---|---|
1 | 2024-05-22 00:00:00.000 | 21 | 7115 |
2 | 2024-03-07 00:00:00.000 | 24 | 578 |
3 | 2024-05-09 00:00:00.000 | 61 | 6386 |
4 | 2024-03-04 00:00:00.000 | 76 | 472 |
5 | 2024-04-19 00:00:00.000 | 54 | 4732 |
6 | 2024-03-29 00:00:00.000 | 108 | 2069 |
7 | 2024-03-18 00:00:00.000 | 49 | 898 |
8 | 2024-06-04 00:00:00.000 | 15 | 7375 |
9 | 2024-07-22 00:00:00.000 | 2 | 8149 |
10 | 2024-08-11 00:00:00.000 | 1 | 8169 |
11 | 2024-11-30 00:00:00.000 | 1 | 8200 |
12 | 2024-05-03 00:00:00.000 | 176 | 5771 |
13 | 2024-05-28 00:00:00.000 | 37 | 7256 |
14 | 2024-03-24 00:00:00.000 | 141 | 1549 |
15 | 2024-03-23 00:00:00.000 | 106 | 1408 |
16 | 2024-05-06 00:00:00.000 | 140 | 6166 |
17 | 2024-04-02 00:00:00.000 | 371 | 2918 |
18 | 2024-04-04 00:00:00.000 | 154 | 3247 |
19 | 2024-05-19 00:00:00.000 | 16 | 7055 |
20 | 2024-05-08 00:00:00.000 | 80 | 6325 |
rezarwz# of Traders copy
Updated 3 hours ago
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: about 3 hours agoAuto-refreshes every 24 hours
...
181
6KB
346s