LTirrellnebula_hunt
    Updated 2022-05-01
    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