SocioAnalyticalist cft-20 tokens
    Updated 2024-01-28
    with txns as (
    SELECT DISTINCT tx_id
    FROM cosmos.core.fact_msg_attributes
    --WHERE tx_id = 'A53E004ECEA26E61608512E251D8503801B71D2E707079DF054A80B716AE0034'
    WHERE msg_type = 'ibc_transfer'
    AND ATTRIBUTE_KEY = 'receiver'
    AND ATTRIBUTE_VALUE = 'neutron1unc0549k2f0d7mjjyfm94fuz2x53wrx3px0pr55va27grdgmspcqgzfr8p'
    AND block_timestamp::date >= '2024-01-01'
    )

    SELECT
    DISTINCT ATTRIBUTE_VALUE
    FROM cosmos.core.fact_msg_attributes a
    JOIN txns b using(tx_id)
    WHERE msg_type = 'send_packet'
    AND ATTRIBUTE_KEY = 'packet_channel_ordering'
    AND block_timestamp::date >= '2024-01-01'




    -- buy cft-token -- first reserve and after that buy
    SELECT *
    FROM cosmos.core.fact_msg_attributes
    WHERE tx_id = '77CB2E1CB93818C16AA1FAEB853B6E13653E0426A69DDC2FCA74F53621C79F33'


    SELECT *
    FROM cosmos.core.fact_transactions
    WHERE tx_id = 'A53E004ECEA26E61608512E251D8503801B71D2E707079DF054A80B716AE0034'