Skip to content

Commit

Permalink
feat: Add WSTETH/WETH as supported conversion (backport #410) (#411)
Browse files Browse the repository at this point in the history
* feat: Add WSTETH/WETH as supported conversion (#410)

* feat: Add WSTETH/WETH as supported conversion

* one conversion path deeper

* lint

(cherry picked from commit 8876d36)

# Conflicts:
#	oracle/util.go

* fix conflicts

---------

Co-authored-by: ryanbajollari <[email protected]>
Co-authored-by: rbajollari <[email protected]>
  • Loading branch information
3 people authored Sep 5, 2024
1 parent 2d6a07d commit 59c2e44
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 9 deletions.
15 changes: 8 additions & 7 deletions config/supported_assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,14 @@ var (
{Base: "INJ", Quote: "USD"}: {},
{Base: "TIA", Quote: "USD"}: {},

{Base: "OSMO", Quote: "USDT"}: {},
{Base: "JUNO", Quote: "USDT"}: {},
{Base: "WETH", Quote: "USDC"}: {},
{Base: "WBTC", Quote: "BTC"}: {},
{Base: "WBTC", Quote: "WETH"}: {},
{Base: "INJ", Quote: "USDT"}: {},
{Base: "TIA", Quote: "USDT"}: {},
{Base: "OSMO", Quote: "USDT"}: {},
{Base: "JUNO", Quote: "USDT"}: {},
{Base: "WETH", Quote: "USDC"}: {},
{Base: "WBTC", Quote: "BTC"}: {},
{Base: "WBTC", Quote: "WETH"}: {},
{Base: "INJ", Quote: "USDT"}: {},
{Base: "TIA", Quote: "USDT"}: {},
{Base: "WSTETH", Quote: "WETH"}: {},
}

SupportedUniswapCurrencies = map[string]struct{}{
Expand Down
23 changes: 23 additions & 0 deletions oracle/convert.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package oracle

import (
"cosmossdk.io/math"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/rs/zerolog"

Expand All @@ -18,10 +19,32 @@ func ConvertRatesToUSD(rates types.CurrencyPairDec) types.CurrencyPairDec {
continue
}

var converted bool
for cpConvert, rateConvert := range rates {
if cpConvert.Quote == config.DenomUSD && cpConvert.Base == cp.Quote {
convertedPair := types.CurrencyPair{Base: cp.Base, Quote: config.DenomUSD}
convertedRates[convertedPair] = rate.Mul(rateConvert)
converted = true
}
}

// If the rate is not converted, try one conversion path deeper.
if !converted {
for cpConvert, rateConvert := range rates {
if cpConvert.Base == cp.Quote {
var quoteRate math.LegacyDec
var foundQuoteRate bool
for cpConvert2, rateConvert2 := range rates {
if cpConvert2.Quote == config.DenomUSD && cpConvert2.Base == cpConvert.Quote {
quoteRate = rateConvert2
foundQuoteRate = true
}
}
if foundQuoteRate {
convertedPair := types.CurrencyPair{Base: cp.Base, Quote: config.DenomUSD}
convertedRates[convertedPair] = rate.Mul(rateConvert).Mul(quoteRate)
}
}
}
}
}
Expand Down
9 changes: 7 additions & 2 deletions oracle/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"sort"
"time"

"cosmossdk.io/math"
sdk "github.com/cosmos/cosmos-sdk/types"
oracletypes "github.com/ojo-network/ojo/x/oracle/types"

Expand All @@ -13,8 +14,9 @@ import (
)

var (
minimumTimeWeight = sdk.MustNewDecFromStr("0.2000")
minimumCandleVolume = sdk.MustNewDecFromStr("0.0001")
minimumTimeWeight = math.LegacyMustNewDecFromStr("0.2000")
minimumTickerVolume = math.LegacyMustNewDecFromStr("0.000000000000001")
minimumCandleVolume = math.LegacyMustNewDecFromStr("0.0001")
)

const (
Expand Down Expand Up @@ -58,6 +60,9 @@ func ComputeVWAP(prices types.AggregatedProviderPrices) types.CurrencyPairDec {
if _, ok := volumeSum[base]; !ok {
volumeSum[base] = sdk.ZeroDec()
}
if tp.Volume.LT(minimumTickerVolume) {
tp.Volume = minimumTickerVolume
}

// weightedPrices[base] = Σ {P * V} for all TickerPrice
weightedPrices[base] = weightedPrices[base].Add(tp.Price.Mul(tp.Volume))
Expand Down

0 comments on commit 59c2e44

Please sign in to comment.