JhanlycnHyperliquid Users
    Updated 7 hours ago
    with daily_users as (
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct case
    when to_address = '0x2df1c51e09aecf9cacb7bc98cb1742757f163df7' then from_address
    end) as unique_depositors,
    count(distinct case
    when from_address = '0x2df1c51e09aecf9cacb7bc98cb1742757f163df7' then to_address
    end) as unique_withdrawers
    from
    arbitrum.core.ez_token_transfers
    where
    contract_address = '0xaf88d065e77c8cc2239327c5edb3a432268e5831'
    and (
    to_address = '0x2df1c51e09aecf9cacb7bc98cb1742757f163df7'
    or from_address = '0x2df1c51e09aecf9cacb7bc98cb1742757f163df7'
    )
    group by
    date
    ),
    all_time_depositors as (
    select
    count(distinct from_address) as total_unique_depositors
    from
    arbitrum.core.ez_token_transfers
    where
    contract_address = '0xaf88d065e77c8cc2239327c5edb3a432268e5831'
    and to_address = '0x2df1c51e09aecf9cacb7bc98cb1742757f163df7'
    )
    select
    du.date,
    du.unique_depositors,
    du.unique_withdrawers,
    atd.total_unique_depositors as all_time_unique_depositors
    from
    daily_users du
    Last run: about 7 hours agoAuto-refreshes every 12 hours
    DATE
    UNIQUE_DEPOSITORS
    UNIQUE_WITHDRAWERS
    ALL_TIME_UNIQUE_DEPOSITORS
    1
    2025-04-17 00:00:00.00021321699442349
    2
    2025-04-16 00:00:00.00034372606442349
    3
    2025-04-15 00:00:00.00027642162442349
    4
    2025-04-14 00:00:00.00025762142442349
    5
    2025-04-13 00:00:00.00023851958442349
    6
    2025-04-12 00:00:00.00026362006442349
    7
    2025-04-11 00:00:00.00029492245442349
    8
    2025-04-10 00:00:00.00027052115442349
    9
    2025-04-09 00:00:00.00039202834442349
    10
    2025-04-08 00:00:00.00030142299442349
    11
    2025-04-07 00:00:00.00050273454442349
    12
    2025-04-06 00:00:00.00037732351442349
    13
    2025-04-05 00:00:00.00016151506442349
    14
    2025-04-04 00:00:00.00025502081442349
    15
    2025-04-03 00:00:00.00034422519442349
    16
    2025-04-02 00:00:00.00028492205442349
    17
    2025-04-01 00:00:00.00022712184442349
    18
    2025-03-31 00:00:00.00025321944442349
    19
    2025-03-30 00:00:00.00019501540442349
    20
    2025-03-29 00:00:00.00026232019442349
    ...
    502
    22KB
    130s