0-MIDFirst Join and Last Exit Osmo Amount By 3 Exploiters
Updated 2023-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
›
⌄
--with tab1 as (
select ACTION,LIQUIDITY_PROVIDER_ADDRESS
,case
when ACTION='pool_joined' then AMOUNT/1e6
when ACTION='pool_exited' then AMOUNT/1e6 end as asset_amount
from osmosis.core.fact_liquidity_provider_actions
where POOL_ID[0]='678'
and LIQUIDITY_PROVIDER_ADDRESS in
('osmo1hq8tlgq0kqz9e56532zghdhz7g8gtjymdltqer')
and (BLOCK_ID='4712771' or BLOCK_ID='4713064')
and CURRENCY='uosmo'
union all
select ACTION,LIQUIDITY_PROVIDER_ADDRESS
,case
when ACTION='pool_joined' then AMOUNT/1e6
when ACTION='pool_exited' then AMOUNT/1e6 end as asset_amount
from osmosis.core.fact_liquidity_provider_actions
where POOL_ID[0]='678'
and LIQUIDITY_PROVIDER_ADDRESS in
('osmo1v44mqmhvtn8cw373xv0hw6npddccnr70lqsk9s')
and (BLOCK_ID='4712961' or BLOCK_ID='4713052')
and CURRENCY='uosmo'
union all
select ACTION,LIQUIDITY_PROVIDER_ADDRESS
,case
when ACTION='pool_joined' then AMOUNT/1e6
when ACTION='pool_exited' then AMOUNT/1e6 end as asset_amount
from osmosis.core.fact_liquidity_provider_actions
where POOL_ID[0]='678'
and LIQUIDITY_PROVIDER_ADDRESS in
('osmo1jdh7eeyaar0tyask0r6w2228uh5wrd0pxtcfwr')
and (BLOCK_ID='4712802' or BLOCK_ID='4713002')
and CURRENCY='uosmo'
Run a query to Download Data