ā—Risks

This section describes the risks associated with the Rysk DHV alongside a mitigation for that risk. It is important to note that all mitigations are not complete solutions to the problem as some risks are simply unavoidable, the mitigations are put in place to help reduce risk.

Financial risks

Option Risk

  • DHV could sell options and they can expire in-the-money, meaning that the counterparty can exercise and redeem part of collateral generating a loss for the DHV.

Mitigation

  • Options are sold at competitive prices to reduce the impact of an in the money expiry. Delta is hedged to reduce the loss caused by an in the money event, by harnessing the deltas of the rest of the portfolio the portfolio can become resistant to market movement by hedging delta.

Delta Risk

  • DHV targets delta zero to achieve market neutrality but delta can deviate far from 0, meaning that the DHV could have directional exposure.

Mitigation

  • To mitigate this case the DHV-USDC could dynamically hedge trading other instruments reducing the directionality

Liquidation Risk

  • DHV options collateral positions could be liquidated in adverse scenarios resulting in loss of funds.

Mitigation

  • A liquidation buffer is maintained to ensure that collateral positions can be properly backed, bots check the margin of positions every minute to keep them within healthy bounds.

Each option series has its own "collateral vault" this collateral vault represents all collateral used to collateralise a specific option series. By option series, we mean something like all short ETH 14-OCT-22 $1600 CALLs held by the protocol. Collateral vaults do not share collateral with eachother, they are compartmentalised. e.g. collateral vault with vaultId 1 will represent an options series, will have its own amount of collateral inside and will have its own minimum margin requirements. A collateral vault getting liquidated has no effect on the status of other collateral vaults, i.e. if collateral vault 1 gets liquidated collateral vault 2 will be unaffected by this. Each collateral vault/options series will have its own collateral account (the amount of collateral held in a collateral vault) and a minimum margin requirement which is governed by the collateralisation formula described in Collateralisation. The "margin safety factor" is a proxy for how close a vault is to liquidation. The margin ratio is computed as follows:

mi=ci/rim_i = c_i / r_i

where mim_i represents the margin safety factor of collateral vault i, cic_irepresents the collateral held in collateral vault i and rir_i represents the minimum margin requirement for the options held in collateral vault i. If mim_i is 1 or lower a collateral vault is considered liquidatable, above 1 the collateral vault is safe.

When an option is written to a collateral vault, the smart contract intentionally over-collateralises each vault. The amount of collateralisation is governed by what are known as "health factors": there are 4 distinct health factors to be aware of:

  • callUpperHealthFactor, hcuh_{cu}: when a new call option(s) is written the option(s) will be collateralised with roāˆ—hcur_o * h_{cu} ā€‹collateral, where ror_oā€‹is the minimum margin requirement for that option.Currently set to: 1.3 (subject to change)

  • putUpperHealthFactor, hpuh_{pu}ā€‹: when a new put option(s) is written the option(s) will be collateralised with roāˆ—hpur_o * h_{pu}collateral. Currently set to: 1.2 (subject to change)

  • callLowerHealthFactor, hclh_{cl}: currently set to: 1.1 (subject to change)

  • putLowerHealthFactor, hplh_{pl}ā€‹: currently set to: 1.1 (subject to change)

Every 1 minute a bot (and a redundancy bot) calculates the mm for all collateral vaults by retrieving the cc and rrof each collateral vault. If the mm for the collateral vault iiā€‹ is higher than hcuh_{cu}or hpuh_{pu}for a collateral vault holding a call option series or a collateral vault holding a put option series respectively, then collateral is removed from vault ii and returned to cash, returning the margin safety factor back to the callUpperHealthFactor or putUpperHealthFactor. If the mmā€‹for the collateral vault iiā€‹is lower than hclh_{cl}or hplh_{pl}for a collateral vault holding a call option series or a collateral vault holding a put option respectively then cash is removed from buffer cash or free cash and put into that collateral vault to return the margin safety factor back to the callUpperHealthFactor or putUpperHealthFactor.

Withdrawal Delay Risk

  • If the liquidity pool has insufficient funds to safely process user's request then withdrawals will not be processed for an epoch and will be processed when there are sufficient funds in the liquidity pool.

Mitigation

  • To mitigate this the sale of longer dated options is postponed to reduce collateral lockups. Other measures such as promoting deposit liquidity might be taken.

Smart Contract Risks

Smart Contract Risk

  • The system is complex and inherently experimental and carries risk of a smart contract vulnerability which may result in total loss of funds.

Mitigation

  • The Rysk DHV smart contracts have completed multiple audits, have been thoroughly tested, security best practices have been followed throughout development. Refer to Security for more info.

  • The protocol has monitoring via Tenderly, if a security alert occurs there are guardians who are able to pause the protocol to prevent any further adverse scenarios.

Settlement Risk

  • The contracts require cash settlement, meaning an expiry price must be set at the time of expiry. This is managed by bots which have redundancies associated with them. However, the bot failing to update at the time could result in a delayed price for settlement.

Mitigation

  • A war room protocol has been established for this scenario and it is possible to rescue this scenario if necessary.

Human Risk

  • Some contracts require manual setting of certain values. These are outlined in the Access Control section and are a necessity of the current state of the protocol, the team strives to eventually remove the need for any human intervention in the protocol but unfortunately some intervention is unavoidable in the current state of DeFi technology.

Mitigation

  • All flows are internally documented with strict instructions to follow, these instructions will be made public, all processes are conducted via multisig so no individual can make a mistake or has control.

Last updated