hess15. New Chains
    Updated 2025-03-08
    with base as ( select block_timestamp::Date as date,
    'Ink' as chain,
    tx_hash,
    origin_from_address
    from ink.core.fact_event_logs
    where origin_to_address = lower('0x652e53C6a4FE39B6B30426d9c96376a105C89A95')
    and block_timestamp::Date >= current_date - 7
    union
    select block_timestamp::Date as date,
    'Swell' as chain,
    tx_hash,
    origin_from_address
    from swell.core.fact_event_logs
    where origin_to_address = lower('0x652e53C6a4FE39B6B30426d9c96376a105C89A95')
    and block_timestamp::Date >= current_date - 7)

    select date,
    chain,
    count(distinct origin_from_address) as swappers
    from base
    group by 1,2
    Last run: 30 days ago
    DATE
    CHAIN
    SWAPPERS
    1
    2025-03-08 00:00:00.000Ink313
    2
    2025-03-02 00:00:00.000Ink1295
    3
    2025-03-08 00:00:00.000Swell20
    4
    2025-03-04 00:00:00.000Ink925
    5
    2025-03-01 00:00:00.000Ink1624
    6
    2025-03-06 00:00:00.000Ink729
    7
    2025-03-06 00:00:00.000Swell25
    8
    2025-03-05 00:00:00.000Ink1070
    9
    2025-03-07 00:00:00.000Ink574
    10
    2025-03-07 00:00:00.000Swell24
    11
    2025-03-03 00:00:00.000Swell12
    12
    2025-03-01 00:00:00.000Swell5
    13
    2025-03-05 00:00:00.000Swell12
    14
    2025-03-03 00:00:00.000Ink937
    15
    2025-03-02 00:00:00.000Swell12
    16
    2025-03-04 00:00:00.000Swell13
    16
    619B
    1s