thespenceTerra Mint & Burn
Updated 2025-02-27
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
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