JhanlycnHyperliquid Users
    Updated 13 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 13 hours agoAuto-refreshes every 12 hours
    DATE
    UNIQUE_DEPOSITORS
    UNIQUE_WITHDRAWERS
    ALL_TIME_UNIQUE_DEPOSITORS
    1
    2025-04-12 00:00:00.00021301597439165
    2
    2025-04-11 00:00:00.00029492245439165
    3
    2025-04-10 00:00:00.00027052115439165
    4
    2025-04-09 00:00:00.00039202834439165
    5
    2025-04-08 00:00:00.00030142299439165
    6
    2025-04-07 00:00:00.00050273454439165
    7
    2025-04-06 00:00:00.00037732351439165
    8
    2025-04-05 00:00:00.00016151506439165
    9
    2025-04-04 00:00:00.00025502081439165
    10
    2025-04-03 00:00:00.00034422519439165
    11
    2025-04-02 00:00:00.00028492205439165
    12
    2025-04-01 00:00:00.00022712184439165
    13
    2025-03-31 00:00:00.00025321944439165
    14
    2025-03-30 00:00:00.00019501540439165
    15
    2025-03-29 00:00:00.00026232019439165
    16
    2025-03-28 00:00:00.00027982350439165
    17
    2025-03-27 00:00:00.00025312905439165
    18
    2025-03-26 00:00:00.00040606173439165
    19
    2025-03-25 00:00:00.00026132308439165
    20
    2025-03-24 00:00:00.00033292912439165
    ...
    497
    21KB
    104s