[VPD-1296]: Add vip and simulations for enabling dbo protection#717
Merged
Conversation
fred-venus
reviewed
Jun 8, 2026
| "isBoundedPricingEnabled": true, | ||
| "cachingEnabled": false | ||
| }, | ||
| { |
fred-venus
reviewed
Jun 8, 2026
| @@ -0,0 +1,121 @@ | |||
| { | |||
| "newAssetConfigs": [ | |||
Contributor
There was a problem hiding this comment.
all those except fil are stablecoin, 16.7% just deesn't make sense, let's go with 5%
Contributor
There was a problem hiding this comment.
also i will suggest include usde and susde as well given that we've already added DAI, FDUSD and liUSD, imo they are at the same risk level
fred-venus
reviewed
Jun 8, 2026
| "asset": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", | ||
| "vToken": "0x689E0daB47Ab16bcae87Ec18491692BF621Dc6Ab", | ||
| "cooldownPeriod": 3600, | ||
| "triggerThreshold": "500000000000000000", |
Contributor
There was a problem hiding this comment.
50% is way too large imo, 5% for all stablecoin as suggested
Contributor
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Resolves VPD-1296
Summary
VIP-630 [BNB Chain] — Enable bounded pricing on the remaining Core Pool assets (VIP 3 of 3)
Final step of the DeviationBoundedOracle (DBO) rollout on BNB Chain. Following VIP-617 (deploy + first asset TRX) and VIP-626 (next 8 assets), this VIP enables bounded pricing across every remaining Core Pool asset, bringing the total to 29 assets pricing through the DBO.
This VIP issues 16 transactions against the DeviationBoundedOracle (
0xc79Cb7efEBd121DC4B39eA141C214606595D665A):1.
setTokenConfigs(...)— adds DBO configs for 5 markets never configured in VIP-617, enabling them in the same call:All 5 are stablecoins, so each uses a tight, flat
triggerThreshold = 5%/resetThreshold = 2%rather than the CF-derived formula used for volatile assets.resetThresholdis strictly belowtriggerThreshold, as the DBO requires.2.
setAssetBoundedPricingEnabled(asset, true)×15 — flips on the remaining already-configured assets:asBNB, BNB, BTCB, CAKE, ETH, slisBNB, SOL, SolvBTC, vPT-clisBNB-25JUN2026, WBETH, WBNB, XAUM, XRP, xSolvBTC, XVS.
After execution, 20 assets transition to active bounded pricing (the 5 new + 15 enabled). Together with the 9 enabled earlier (TRX in VIP-617; AAVE, ADA, BCH, DOGE, LINK, LTC, TWT, UNI in VIP-626), this brings the total to 29 Core Pool assets pricing through the DBO's bounded (protected) price rather than the raw ResilientOracle spot.
On enable, each asset's rolling window re-seeds at the current spot price, so there is no stale-window risk. The DBO returns
(spot, spot)until the keeper observes spot deviating beyond the asset'striggerThreshold, at which point collateral is valued atmin(spot, windowMin)and debt atmax(spot, windowMax).Test