janansol price
Updated 2022-03-23Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
block_timestamp::Date as date,
avg(swap_to_amount/swap_from_amount) as price
from solana.fact_swaps
where swap_from_mint = 'So11111111111111111111111111111111111111112'
and swap_to_mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and date >= '2022-01-01'
and succeeded = TRUE
and swap_from_amount > 1
and swap_to_amount > 1
GROUP by 1
order by 1
Run a query to Download Data