0xaimanuser retention 2
    Updated 2023-04-17
    (with
    t1 as (
    select
    sender,
    block_timestamp as t,
    tx_hash,
    row_number() over (
    partition by
    sender
    order by
    block_timestamp
    ) as RN
    from
    axelar.core.ez_squid
    ),
    t2 as (
    select
    sender,
    block_timestamp as t,
    tx_hash,
    row_number() over (
    partition by
    sender
    order by
    block_timestamp
    ) as RN
    from
    axelar.core.ez_squid
    ),
    raw as (
    select
    t1.sender,
    avg(timediff(hour, t1.t, t2.t)) as Time_Difference
    from
    t1
    join t2 on t1.sender = t2.sender
    Run a query to Download Data