keean82probable-pink copy copy
Updated 2024-09-11
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 max_amounts AS (
SELECT
swapper,
swap_to_mint,
swap_from_mint,
tx_id,
MAX(swap_to_amount) AS max_swap_to_amount,
MAX(swap_from_amount) AS max_swap_from_amount
FROM
solana.defi.fact_swaps s
WHERE
succeeded = TRUE
AND block_timestamp > '2024-09-03 00:00:00'
GROUP BY
swapper,
swap_to_mint,
swap_from_mint,
tx_id
),
buy_transactions AS (
SELECT
swapper as trader,
swap_to_mint as token_bought,
SUM(max_swap_to_amount) as total_tokens_bought,
SUM(max_swap_from_amount) as total_sol_spent
FROM
max_amounts
WHERE
swap_from_mint = 'So11111111111111111111111111111111111111112'
GROUP BY
swapper,
swap_to_mint
),
sell_transactions AS (
SELECT
swapper as trader,
QueryRunArchived: QueryRun has been archived