tomwanhhHistorical Mint & Burnt
Updated 2023-01-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
select
date_trunc('day',block_timestamp) as day,
tx_id,
(instruction :parsed :info :amount ::double)/1e6 as amount
from solana.core.fact_events
where succeeded
and program_id = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'
and instruction :parsed :info :mint ::string = '2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk' --soETH
and event_type = 'mintTo'
union all
select
date_trunc('day',block_timestamp) as day,
tx_id,
(instruction :parsed :info :tokenAmount :amount ::double)/1e6 * -1 as amount
from solana.core.fact_events
where succeeded
and program_id = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'
and instruction :parsed :info :mint ::string = '2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk' --soETH
and event_type = 'burnChecked'
Run a query to Download Data