KingTigerMafia-7mwRZbswap program
Updated 2022-07-03
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 jupiter AS (
SELECT block_timestamp::date as date,
count(tx_id) as tx_count
FROM solana.core.fact_swaps
WHERE SUCCEEDED = 'TRUE' and
date >= '2022-01-01' AND
swap_program = 'jupiter aggregator v2'
GROUP BY date
ORDER BY date ASC),
saber AS (
SELECT block_timestamp::date as date,
count(tx_id) as tx_count
FROM solana.core.fact_swaps
WHERE SUCCEEDED = 'TRUE' and
date >= '2022-01-01' AND
swap_program = 'saber'
GROUP BY date
ORDER BY date ASC),
raydium AS (
SELECT block_timestamp::date as date,
count(tx_id) as tx_count
FROM solana.core.fact_swaps
WHERE SUCCEEDED = 'TRUE' and
date >= '2022-01-01' AND
swap_program = 'raydium v4'
GROUP BY date
ORDER BY date ASC),
orca AS (
SELECT block_timestamp::date as date,
count(tx_id) as tx_count
FROM solana.core.fact_swaps
WHERE SUCCEEDED = 'TRUE' and
date >= '2022-01-01' AND
swap_program = 'orca'
GROUP BY date
ORDER BY date ASC
Run a query to Download Data