hbd1994Top Users with Net Supply USD Volume
Updated 2023-10-29
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 USDC_prices as (
select
hour,
case
when symbol = 'USDC' then 'aBasUSDbC'
end as symbol,
avg(price) as price
from ethereum.price.ez_hourly_token_prices
where symbol in ('USDC')
and hour >= '2023-08-22'
group by 1,2),
WETH_prices as (
select
hour,
case
when symbol = 'WETH' then 'aBasWETH'
end as symbol,
price
from ethereum.price.ez_hourly_token_prices
where symbol in ('WETH')
and hour >= '2023-08-22'),
cbETH_prices as (
select
hour,
case
when symbol = 'cbETH' then 'aBascbETH'
end as symbol,
price
from ethereum.price.ez_hourly_token_prices
where symbol in ('cbETH')
and hour >= '2023-08-22'),
main as (
(select
Run a query to Download Data