Kujira Scavenger Hunt

    What’s This For? The best way to understand a crypto project is to get involved in it yourself. We at Flipside are here to help you do exactly that. As you cruise through these uncharted waters, these steps help you navigate the liquidation seas through Kujira. Once you’ve completed these steps, you’ll be accustomed to the world of liquidations. You'll also earn 15 UST!

    Overview

    By the end of this tutorial, you should be able to

    • Swap UST to KUJI on Kujira Blue
    • Stake KUJI on Kujira Blue
    • Place a bid for bLUNA on Kujira Orca
    select * from (
    select 'Swapping from UST to KUJI' as type, * from terra.msgs
      where tx_id = '7FE1EB94E59C45D4767690AAF1DB9FE8383812CAF89D28CA09E60504701FD65F'
      and block_timestamp >= '2022-01-20'
    union 
    select 'Staking KUJI' as type, * from terra.msgs
      where tx_id = 'E822FEFAA7E9CB246A4EFDAEC33953E81CC8C2BCBC5C62A40B57F21D78DE00E3'
      and block_timestamp >= '2022-01-20'
    union 
    select 'Deposit UST into Kujira Orca to bid for liquidations' as type, * from terra.msgs
      where tx_id = '69E53FA6EBF7CBEB246581E3088585D8020A8BE590F0034FD680E45C59E6515C'
      and block_timestamp >= '2022-01-20'
    )
    order by block_id
    
    Loading...