Moesei lp pools
Updated 2023-08-29
999
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
36
›
⌄
with
MAINTAB as
(select
BLOCK_TIMESTAMP ,
tx_id from
sei.core.fact_msg_attributes
where
MSG_TYPE = 'wasm'
and
ATTRIBUTE_KEY = 'action'
and
ATTRIBUTE_VALUE = 'provide_liquidity' )
, tb2 as (
select
tx_id ,
ATTRIBUTE_VALUE as LPer
from
sei.core.fact_msg_attributes
where
MSG_TYPE = 'wasm'
and
ATTRIBUTE_KEY = 'receiver'
) ,
-- tb3 as
-- (
-- select
-- tx_id ,
Run a query to Download Data