DATE | CATEGORY | USERS | |
---|---|---|---|
1 | 2024-12-12 00:00:00.000 | New | 4905 |
2 | 2025-04-04 00:00:00.000 | New | 1561 |
3 | 2025-03-12 00:00:00.000 | New | 1574 |
4 | 2024-11-18 00:00:00.000 | New | 2121 |
5 | 2025-01-16 00:00:00.000 | New | 7896 |
6 | 2024-12-20 00:00:00.000 | New | 6729 |
7 | 2025-02-03 00:00:00.000 | New | 956 |
8 | 2025-01-26 00:00:00.000 | New | 2508 |
9 | 2024-12-28 00:00:00.000 | New | 6927 |
10 | 2025-01-19 00:00:00.000 | New | 11780 |
11 | 2025-03-17 00:00:00.000 | New | 1692 |
12 | 2025-02-01 00:00:00.000 | New | 1095 |
13 | 2025-03-11 00:00:00.000 | New | 2911 |
14 | 2025-04-14 00:00:00.000 | New | 1459 |
15 | 2024-11-27 00:00:00.000 | New | 3096 |
16 | 2025-02-21 00:00:00.000 | New | 3273 |
17 | 2025-04-17 00:00:00.000 | New | 348 |
18 | 2025-01-08 00:00:00.000 | New | 7290 |
19 | 2025-03-20 00:00:00.000 | New | 1371 |
20 | 2024-10-27 00:00:00.000 | New | 4619 |
ArioPolyMarket - Old & New Users
Updated 9 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 CFTE_NRCFTE as (
select
CONVERT_TIMEZONE( 'America/New_York' , BLOCK_TIMESTAMP ) as BLOCK_TIMESTAMP
,TX_HASH
,CONTRACT_ADDRESS
,EVENT_NAME
,DECODED_LOG:fee::float as fee
,DECODED_LOG:maker::string as maker
,DECODED_LOG:makerAmountFilled::float as makerAmountFilled
,DECODED_LOG:makerAssetId::string as makerAssetId
,DECODED_LOG:orderHash::string as orderHash
,DECODED_LOG:taker::string as taker
,DECODED_LOG:takerAmountFilled::float as takerAmountFilled
,DECODED_LOG:takerAssetId::string as takerAssetId
from polygon.core.ez_decoded_event_logs
where
CONTRACT_ADDRESS in ('0x4bfb41d5b3570defd03c39a9a4d8de6bd8b8982e', '0xc5d563a36ae78145c45a50134d48a1215220f80a')
and
EVENT_NAME = 'OrderFilled'
and
TX_STATUS = 'SUCCESS'
)
, users as (
SELECT
BLOCK_TIMESTAMP
,taker AS user_address
,TX_HASH
FROM
CFTE_NRCFTE
WHERE 1=1
AND taker != contract_address
AND maker NOT IN (
'0x4D97DCd97eC945f40cF65F87097ACe5EA0476045',
'0x4bfb41d5b3570defd03c39a9a4d8de6bd8b8982e',
'0x78769D50Be1763ed1CA0D5E878D93f05aabff29e'
)
Last run: 9 days ago
...
362
15KB
254s