shreyash-5873Circulating LUNA Market Cap vs UST Market Cap
Updated 2021-08-04
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 luna_prices as (
select
date(block_timestamp) as block_date,
symbol,
avg(price_usd) as avg_price_usd
from terra.oracle_prices
where symbol = 'LUNA'
group by 1, 2
),
luna_supply as (
select
date(date) as block_date,
sum(balance) as total_luna_supply
from terra.daily_balances
where currency = 'LUNA'
and address != 'terra1fl48vsnmsdzcv85q5d2q4z5ajdha8yu3nln0mh'
and date >= date('2021-01-01')
group by 1
),
illiquid_luna_supply as (
select
date(date) as block_date,
sum(balance) as illiquid_luna_supply
from terra.daily_balances
where currency = 'LUNA'
and (address = 'terra1fl48vsnmsdzcv85q5d2q4z5ajdha8yu3nln0mh'
or address = 'terra1jv65s3grqf6v6jl3dp4t6c9t9rk99cd8pm7utl')
and date >= date('2021-01-01')
group by 1
),
ust_market_cap as (
select
date(date) as block_date,
sum(balance) as total_ust_supply
from terra.daily_balances
where currency = 'UST'
Run a query to Download Data