KaskoazulStepN Events
Updated 2022-03-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT
tx.block_timestamp::date as fecha,
tx.tx_id,
tx.program_id,
e.pretokenbalances,
e.posttokenbalances,
e.inner_instruction,
e.instruction,
e.event_type
FROM solana.transactions tx
INNER JOIN solana.events e
ON tx.tx_id = e.tx_id
where fecha >= '2022-01-01' and fecha <= '2022-02-27'
and tx.succeeded = 'TRUE'
and (pre_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB'
or post_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB')
LIMIT 100
Run a query to Download Data