keean82residential-yellow
Updated 2024-08-25
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
›
⌄
WITH all_prices as (
SELECT
block_timestamp,
tx_id,
swap_to_mint,
swap_from_mint,
swap_from_amount/swap_to_amount as token_buy_price
FROM
solana.defi.fact_swaps
WHERE
date_trunc('month', block_timestamp) = '2024-08-01 00:00:00'
AND swap_from_mint = 'So11111111111111111111111111111111111111112'
AND succeeded = TRUE
AND swap_to_amount > 1
AND swap_from_amount > 0.00001
)
SELECT
swap_to_mint,
MAX(token_buy_price) as max_price,
FROM
all_prices
WHERE
date_trunc('month', block_timestamp) = '2024-08-01 00:00:00'
GROUP BY
swap_to_mint
ORDER BY
max_price DESC
QueryRunArchived: QueryRun has been archived