LTirrellnebula_hunt
Updated 2022-05-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select
date_trunc('day', block_timestamp ::date) as datetime,
case
when tx_id in (
'174E3DC45FB94C0CC036B1855DA3449E26D4A27F56D7FF9954D64668C86DAEF4'
) then 'Step 1: Swap UST for Kuji!'
else null
end as Description,
tx_id
from
terra.msgs
where
tx_id in (
'174E3DC45FB94C0CC036B1855DA3449E26D4A27F56D7FF9954D64668C86DAEF4'
)
and datetime > '2022-04-25'
group by
datetime,
Description,
tx_id
order by
Description
Run a query to Download Data