rackhael$PENDLE Swap Volume
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT block_timestamp::date as date,
sum(amount_in_usd) as volume_bought,
sum(amount_out_usd) as volume_sold
FROM ethereum.core.ez_dex_swaps
WHERE token_in = '0x808507121b80c02388fad14726482e061b8da827'
OR token_out = '0x808507121b80c02388fad14726482e061b8da827'
GROUP BY date
Run a query to Download Data