banbannardTHORChain Swap Volume 5 (vs DEXes) copy
Updated 2024-06-06
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
›
⌄
-- forked from Rayyyk / THORChain Swap Volume 5 (vs DEXes) @ https://flipsidecrypto.xyz/Rayyyk/q/uWYGBJrat-kD/thorchain-swap-volume-5-vs-dexes
with thorchain as (select date_trunc('week', block_timestamp) as week,
'THORChain' as platform,
sum(from_amount_usd) as tc
from thorchain.defi.fact_swaps
where block_timestamp >= '2022-01-01'
group by 1),
uniswap as (select date_trunc('week', block_timestamp) as week,
'Uniswap' as platform,
sum(amount_in_usd) as uni
from ethereum.defi.ez_dex_swaps
where block_timestamp >= '2022-01-01'
and platform in ('uniswap-v2', 'uniswap-v3')
group by 1),
sushiswap as (select date_trunc('week', date) as week,
'SushiSwap' as protocol,
sum(volume) as sushi
from external.defillama.fact_dex_volume
where protocol in ('sushiswap')
and date >= '2022-01-01'
group by 1)
select a.week,
tc as "THORChain",
uni as "Uniswap",
sushi as "Sushiswap",
from thorchain a
join uniswap b on a.week = b.week
join sushiswap c on a.week = c.week
order by 1
QueryRunArchived: QueryRun has been archived