DATE | # of New Makers | # total of Makers | |
---|---|---|---|
1 | 2024-03-04 00:00:00.000 | 5 | 13 |
2 | 2024-07-22 00:00:00.000 | 1 | 311 |
3 | 2024-06-04 00:00:00.000 | 8 | 296 |
4 | 2024-03-18 00:00:00.000 | 2 | 16 |
5 | 2024-03-29 00:00:00.000 | 2 | 28 |
6 | 2024-04-19 00:00:00.000 | 2 | 135 |
7 | 2024-05-22 00:00:00.000 | 1 | 261 |
8 | 2024-07-02 00:00:00.000 | 2 | 309 |
9 | 2024-04-20 00:00:00.000 | 1 | 136 |
10 | 2024-02-29 00:00:00.000 | 2 | 2 |
11 | 2024-05-23 00:00:00.000 | 2 | 263 |
12 | 2024-05-03 00:00:00.000 | 11 | 212 |
13 | 2024-07-25 00:00:00.000 | 5 | 316 |
14 | 2024-04-04 00:00:00.000 | 10 | 64 |
15 | 2024-08-10 00:00:00.000 | 1 | 326 |
16 | 2024-05-06 00:00:00.000 | 2 | 232 |
17 | 2024-05-28 00:00:00.000 | 1 | 278 |
18 | 2024-04-02 00:00:00.000 | 2 | 49 |
19 | 2024-04-01 00:00:00.000 | 7 | 47 |
20 | 2024-08-15 00:00:00.000 | 1 | 327 |
rezarwz# of Makers copy
Updated 9 days 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
›
⌄
-- forked from # of Makers @ https://flipsidecrypto.xyz/studio/queries/39aa789d-8ddf-4a73-9088-64a7d551c251
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'
Last run: 9 days agoAuto-refreshes every 24 hours
94
3KB
255s