DATE | # of New Trades | # of total Traders | |
---|---|---|---|
1 | 2024-04-18 00:00:00.000 | 93 | 4678 |
2 | 2024-04-05 00:00:00.000 | 175 | 3422 |
3 | 2024-03-21 00:00:00.000 | 158 | 1198 |
4 | 2024-05-02 00:00:00.000 | 160 | 5595 |
5 | 2024-03-20 00:00:00.000 | 75 | 1040 |
6 | 2024-04-26 00:00:00.000 | 33 | 5156 |
7 | 2024-07-17 00:00:00.000 | 14 | 8132 |
8 | 2024-07-27 00:00:00.000 | 1 | 8160 |
9 | 2024-04-02 00:00:00.000 | 371 | 2918 |
10 | 2024-05-03 00:00:00.000 | 176 | 5771 |
11 | 2024-05-08 00:00:00.000 | 80 | 6325 |
12 | 2024-05-19 00:00:00.000 | 16 | 7055 |
13 | 2024-03-24 00:00:00.000 | 141 | 1549 |
14 | 2024-04-04 00:00:00.000 | 154 | 3247 |
15 | 2024-03-23 00:00:00.000 | 106 | 1408 |
16 | 2024-05-06 00:00:00.000 | 140 | 6166 |
17 | 2024-07-25 00:00:00.000 | 5 | 8154 |
18 | 2024-05-28 00:00:00.000 | 37 | 7256 |
19 | 2024-12-07 00:00:00.000 | 1 | 8181 |
20 | 2024-08-10 00:00:00.000 | 2 | 8166 |
rezarwz# of Traders
Updated 10 days ago
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_Traders as (
SELECT
tx_hash,
block_timestamp,
decoded_log:maker as trader_ad,
case
when (decoded_log:maker, block_timestamp) in (
SELECT
decoded_log:maker,
min(block_timestamp)
FROM
blast.core.ez_decoded_event_logs
where
contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c'
and event_name = 'OfferWrite'
group by
1
) then 'New User'
else 'Returning User'
end as user_type
from
blast.core.ez_decoded_event_logs
where
contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c'
and event_name = 'OfferWrite'
UNION
all
SELECT
tx_hash,
block_timestamp,
decoded_log:taker as trader_ad,
case
when (decoded_log:taker, block_timestamp) in (
SELECT
decoded_log:taker,
min(block_timestamp)
Last run: 10 days agoAuto-refreshes every 24 hours
...
156
5KB
1s