DeFi_reindsTop program types
Updated 2022-07-04Copy 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 labels as (select * from solana.core.dim_labels),
txn1 as (select block_timestamp,
tx_id,
program_id
from solana.core.fact_events
where succeeded = 'TRUE'
and program_id != '11111111111111111111111111111111'
and block_timestamp::date between '2022-01-01' and '2022-01-31'),
txn2 as (select block_timestamp,
tx_id,
program_id
from solana.core.fact_events
where succeeded = 'TRUE'
and program_id != '11111111111111111111111111111111'
and block_timestamp::date between '2022-02-01' and '2022-02-28'),
txn3 as (select block_timestamp,
tx_id,
program_id
from solana.core.fact_events
where succeeded = 'TRUE'
and program_id != '11111111111111111111111111111111'
and block_timestamp::date between '2022-03-01' and '2022-03-31'),
txn4 as (select block_timestamp,
tx_id,
program_id
from solana.core.fact_events
where succeeded = 'TRUE'
and program_id != '11111111111111111111111111111111'
and block_timestamp::date between '2022-04-01' and '2022-04-30'),
txn5 as (select block_timestamp,
tx_id,
Run a query to Download Data