datavortexoverall1
Updated 2025-01-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
WITH sol_swap_data AS (
SELECT
swapper,
tx_id,
swap_from_amount_usd
FROM
solana.defi.ez_dex_swaps
WHERE
swap_from_mint = 'So11111111111111111111111111111111111111112'
AND block_timestamp >= '2024-07-01'
AND block_timestamp < '2024-10-01'
)
SELECT
COUNT(DISTINCT s.swapper) AS "swappers",
COUNT(DISTINCT s.tx_id) AS "total swaps",
SUM(s.swap_from_amount_usd) AS "total volume usd"
FROM
sol_swap_data s;
QueryRunArchived: QueryRun has been archived