ArioPolyMarket - Old & New Users
    Updated 9 days ago
    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
    DATE
    CATEGORY
    USERS
    1
    2024-12-12 00:00:00.000New4905
    2
    2025-04-04 00:00:00.000New1561
    3
    2025-03-12 00:00:00.000New1574
    4
    2024-11-18 00:00:00.000New2121
    5
    2025-01-16 00:00:00.000New7896
    6
    2024-12-20 00:00:00.000New6729
    7
    2025-02-03 00:00:00.000New956
    8
    2025-01-26 00:00:00.000New2508
    9
    2024-12-28 00:00:00.000New6927
    10
    2025-01-19 00:00:00.000New11780
    11
    2025-03-17 00:00:00.000New1692
    12
    2025-02-01 00:00:00.000New1095
    13
    2025-03-11 00:00:00.000New2911
    14
    2025-04-14 00:00:00.000New1459
    15
    2024-11-27 00:00:00.000New3096
    16
    2025-02-21 00:00:00.000New3273
    17
    2025-04-17 00:00:00.000New348
    18
    2025-01-08 00:00:00.000New7290
    19
    2025-03-20 00:00:00.000New1371
    20
    2024-10-27 00:00:00.000New4619
    ...
    362
    15KB
    254s