thespenceTerra Mint & Burn
    Updated 2025-02-27
    SELECT
    block_timestamp,
    block_id,
    tx_id,
    chain_id,
    action_method,
    contract_label,
    action_contract_address,
    action_log -- This contains the detailed information about the transaction
    FROM
    terra.classic.ez_event_actions
    WHERE
    (
    action_method ILIKE '%mint%'
    OR action_method ILIKE '%burn%'
    )
    AND block_timestamp BETWEEN '2022-04-30'
    AND '2022-05-16'
    ORDER BY
    block_timestamp DESC;
    QueryRunArchived: QueryRun has been archived