DATE | # of New Takers | # of Total Takers | |
---|---|---|---|
1 | 2024-05-13 00:00:00.000 | 146 | 6436 |
2 | 2024-06-15 00:00:00.000 | 268 | 7564 |
3 | 2024-05-14 00:00:00.000 | 71 | 6507 |
4 | 2024-04-30 00:00:00.000 | 59 | 5205 |
5 | 2024-06-01 00:00:00.000 | 17 | 7052 |
6 | 2024-05-10 00:00:00.000 | 41 | 6195 |
7 | 2024-04-28 00:00:00.000 | 23 | 5065 |
8 | 2025-03-21 00:00:00.000 | 1 | 7885 |
9 | 2024-06-10 00:00:00.000 | 9 | 7212 |
10 | 2024-11-03 00:00:00.000 | 1 | 7863 |
11 | 2024-12-09 00:00:00.000 | 1 | 7874 |
12 | 2024-05-04 00:00:00.000 | 55 | 5618 |
13 | 2024-04-25 00:00:00.000 | 27 | 4977 |
14 | 2024-10-11 00:00:00.000 | 1 | 7861 |
15 | 2024-03-14 00:00:00.000 | 28 | 762 |
16 | 2024-06-03 00:00:00.000 | 14 | 7076 |
17 | 2024-06-13 00:00:00.000 | 10 | 7262 |
18 | 2024-06-08 00:00:00.000 | 21 | 7196 |
19 | 2024-12-12 00:00:00.000 | 1 | 7875 |
20 | 2024-07-07 00:00:00.000 | 1 | 7812 |
rezarwz# of Takers copy
Updated 10 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 Takers @ https://flipsidecrypto.xyz/studio/queries/ef49ade1-b667-47e7-bb27-27baba2170d2
with all_takers as (
SELECT
tx_hash,
block_timestamp,
decoded_log:taker AS taker_Ad,
CASE
WHEN (decoded_log:taker, block_timestamp) IN (
SELECT
taker,
MIN(min_block_time)
FROM (
SELECT
decoded_log:taker AS taker,
MIN(block_timestamp) AS min_block_time
FROM
Arbitrum.core.ez_decoded_event_logs
WHERE
contract_address = '0x109d9cdfa4ac534354873ef634ef63c235f93f61' AND
event_name = 'OrderComplete'
GROUP BY
decoded_log:taker
UNION ALL
SELECT
decoded_log:taker AS taker,
MIN(block_timestamp) AS min_block_time
FROM
blast.core.ez_decoded_event_logs
WHERE
contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c' AND
event_name = 'OrderComplete'
GROUP BY
decoded_log:taker
) GROUP BY taker
) THEN 'New User'
Last run: 10 days agoAuto-refreshes every 24 hours
...
171
6KB
238s