MLDZMNMech request by traders
    Updated 2025-03-14
    with t1 as (
    select
    BLOCK_TIMESTAMP,
    tx_hash,
    SERVICE_ID,
    NAME,
    MULTISIG_ADDRESS,
    AGENT_IDS[0] as agent_Id

    from crosschain.olas.ez_service_registrations
    where NAME ilike '%Trader%'
    )

    select
    date_trunc('day',BLOCK_TIMESTAMP) as day,
    count(*) as no_requests,
    sum(no_requests) over (order by day) as total_requests

    from crosschain.olas.fact_mech_activity
    where SENDER_ADDRESS in (select MULTISIG_ADDRESS from t1)
    group by 1
    order by 1 desc


    Last run: about 1 month ago
    DAY
    NO_REQUESTS
    TOTAL_REQUESTS
    1
    2025-03-14 00:00:00.00031473014134
    2
    2025-03-13 00:00:00.000186853010987
    3
    2025-03-12 00:00:00.000194302992302
    4
    2025-03-11 00:00:00.000211032972872
    5
    2025-03-10 00:00:00.000199012951769
    6
    2025-03-09 00:00:00.000169732931868
    7
    2025-03-08 00:00:00.000189552914895
    8
    2025-03-07 00:00:00.000190732895940
    9
    2025-03-06 00:00:00.000197042876867
    10
    2025-03-05 00:00:00.000198982857163
    11
    2025-03-04 00:00:00.000184002837265
    12
    2025-03-03 00:00:00.000195202818865
    13
    2025-03-02 00:00:00.000208672799345
    14
    2025-03-01 00:00:00.000221272778478
    15
    2025-02-28 00:00:00.000194132756351
    16
    2025-02-27 00:00:00.000226002736938
    17
    2025-02-26 00:00:00.000128502714338
    18
    2025-02-25 00:00:00.000206252701488
    19
    2025-02-24 00:00:00.000195462680863
    20
    2025-02-23 00:00:00.000193112661317
    ...
    501
    19KB
    6s