mattkstewUniswap 3
Updated 2023-01-14Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with tab1 as (
select
LIQUIDITY_PROVIDER,
datediff('day', min(block_timestamp), max(block_timestamp)) as time_between,
count(distinct tx_hash) as LPs
from ethereum.uniswapv3.ez_lp_actions
where block_timestamp > '2022-03-07' -- same date orca whirlpools start
group by 1 )
select
avg(time_between/LPs),
median(time_between/LPs) ,
max(time_between/LPs)
from tab1
Run a query to Download Data