elsinadaily activity
    Updated 2025-02-07
    SELECT
    date_trunc ('day', block_timestamp) as date,
    event_name as type,
    count(distinct origin_from_address) as user_count,
    count(distinct tx_hash) as tx_count,
    count(distinct contract_name) as token_count,
    count(distinct case when event_name = 'Deposit' THEN origin_from_address END) as depositors_count,
    count(distinct case when event_name = 'Withdrawal' THEN origin_from_address END) as withdrawers_count,
    count(distinct case when event_name = 'Deposit' THEN tx_hash END) as deposits_count,
    count(distinct case when event_name = 'Withdrawal' THEN tx_hash END) as withdrawals_count,
    from
    swell.core.ez_decoded_event_logs
    where
    event_name in ('Withdrawal', 'Deposit') and
    date >= '2025-01-01'
    group by
    date, type
    order by
    date asc





    Last run: about 2 months ago
    DATE
    TYPE
    USER_COUNT
    TX_COUNT
    TOKEN_COUNT
    DEPOSITORS_COUNT
    WITHDRAWERS_COUNT
    DEPOSITS_COUNT
    WITHDRAWALS_COUNT
    1
    2025-01-01 00:00:00.000Deposit21692210690
    2
    2025-01-01 00:00:00.000Withdrawal422104022
    3
    2025-01-02 00:00:00.000Deposit17562170560
    4
    2025-01-02 00:00:00.000Withdrawal11341011034
    5
    2025-01-03 00:00:00.000Withdrawal916109016
    6
    2025-01-03 00:00:00.000Deposit14462140460
    7
    2025-01-04 00:00:00.000Withdrawal15271015027
    8
    2025-01-04 00:00:00.000Deposit20522200520
    9
    2025-01-05 00:00:00.000Withdrawal14321014032
    10
    2025-01-05 00:00:00.000Deposit28512280510
    11
    2025-01-06 00:00:00.000Withdrawal13301013030
    12
    2025-01-06 00:00:00.000Deposit19462190460
    13
    2025-01-07 00:00:00.000Withdrawal16501016050
    14
    2025-01-07 00:00:00.000Deposit20392200390
    15
    2025-01-08 00:00:00.000Withdrawal2210910220109
    16
    2025-01-08 00:00:00.000Deposit2212922201290
    17
    2025-01-09 00:00:00.000Withdrawal1810610180106
    18
    2025-01-09 00:00:00.000Deposit23922230920
    19
    2025-01-10 00:00:00.000Deposit22962220960
    20
    2025-01-10 00:00:00.000Withdrawal20931020093
    76
    4KB
    3s