-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from Synthetixio/yield-tokens
Add yield token support
- Loading branch information
Showing
12 changed files
with
701 additions
and
405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
...ormers/synthetix/models/marts/arbitrum/mainnet/core/fct_token_yields_arbitrum_mainnet.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
with dim as ( | ||
select distinct | ||
p.ts, | ||
p.pool_id, | ||
p.collateral_type, | ||
t.token_symbol, | ||
t.yield_token_symbol | ||
from | ||
{{ ref('fct_pool_pnl_hourly_arbitrum_mainnet') }} | ||
as p | ||
inner join | ||
{{ ref('arbitrum_mainnet_tokens') }} | ||
as t | ||
on lower(p.collateral_type) = lower(t.token_address) | ||
where | ||
t.yield_token_symbol is not null | ||
), | ||
|
||
token_prices as ( | ||
select | ||
dim.ts, | ||
dim.pool_id, | ||
dim.collateral_type, | ||
dim.token_symbol, | ||
dim.yield_token_symbol, | ||
tp.price as token_price, | ||
yp.price as yield_token_price, | ||
tp.price / yp.price as exchange_rate | ||
from | ||
dim | ||
inner join {{ ref('fct_prices_hourly_arbitrum_mainnet') }} as tp | ||
on | ||
dim.token_symbol = tp.market_symbol | ||
and dim.ts = tp.ts | ||
inner join {{ ref('fct_prices_hourly_arbitrum_mainnet') }} as yp | ||
on | ||
dim.yield_token_symbol = yp.market_symbol | ||
and dim.ts = yp.ts | ||
), | ||
|
||
rate_changes as ( | ||
select | ||
ts, | ||
pool_id, | ||
collateral_type, | ||
exchange_rate, | ||
exchange_rate / lag(exchange_rate) over ( | ||
partition by token_symbol, yield_token_symbol | ||
order by | ||
ts | ||
) - 1 as hourly_exchange_rate_pnl | ||
from | ||
token_prices | ||
) | ||
|
||
select | ||
ts, | ||
pool_id, | ||
collateral_type, | ||
exchange_rate, | ||
hourly_exchange_rate_pnl, | ||
avg(hourly_exchange_rate_pnl) over ( | ||
partition by collateral_type | ||
order by | ||
ts | ||
range between interval '24 HOURS' preceding | ||
and current row | ||
) * 24 * 365 as apr_24h_underlying, | ||
avg(hourly_exchange_rate_pnl) over ( | ||
partition by collateral_type | ||
order by | ||
ts | ||
range between interval '7 DAYS' preceding | ||
and current row | ||
) * 24 * 365 as apr_7d_underlying, | ||
avg(hourly_exchange_rate_pnl) over ( | ||
partition by collateral_type | ||
order by | ||
ts | ||
range between interval '28 DAYS' preceding | ||
and current row | ||
) * 24 * 365 as apr_28d_underlying | ||
from | ||
rate_changes |
Oops, something went wrong.