hess16. Total 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
    chain,
    count(distinct origin_from_address) as swappers
    from base
    group by 1
    Last run: about 2 months ago
    CHAIN
    SWAPPERS
    1
    Swell71
    2
    Ink6628
    2
    27B
    1s