No Data to Display
MetaLighthandsome-orange
Updated 2025-04-14Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH bitz_transactions AS (
SELECT
tx_id AS signature,
signers[0] AS signer,
fee,
block_timestamp AS block_time,
instructions,
inner_instructions,
log_messages
FROM eclipse.core.fact_transactions
WHERE block_timestamp >= DATEADD(DAY, -1, CURRENT_TIMESTAMP)
),
flattened_instructions AS (
SELECT
t.signature,
t.signer,
t.fee,
t.block_time,
f.value:"executing_account"::STRING AS program_id,
f.value:"data"::STRING AS instruction_data
FROM bitz_transactions t,
LATERAL FLATTEN(input => t.instructions) f
),
flattened_inner_instructions AS (
SELECT
t.signature,
t.signer,
t.fee,
t.block_time,
f.value:"executing_account"::STRING AS program_id,
f.value:"data"::STRING AS instruction_data
FROM bitz_transactions t,
LATERAL FLATTEN(input => t.inner_instructions) f
)
Last run: 3 months ago
0
2B
120s