Risk management

Additional Risk params

During the development of the protocol, additional risk mitigation steps are taken into account.

// Max Percent of the pool amount that can not be utilized
pool_reserve

// Max Percent of the pool amount that a single account can borrow
max_borrow_percents

// The minimum collateral ratio = 1
min_collateral_ratio

Pool Reserve

Represents the buffer at the high pool utilization, so the transactions can always be made. It is possible to get at the state when the requirement isn't met. The reserve_factor is then manually set to 0 to prevent further risk.

Once the threshold is met, the reserve_factor is manually set back by the Admin.

Sandbox: 0.2.

Max Borrow Percent

It is a configurable parameter, preventing a single account from being a holder of most borrowed balances in a given pool.

Sandbox: 0.3.

Min Collateral Ratio

tbd. Currently set at 1 - not taken into account

Max Deposit Limit

The total amount that can be deposited in a given pool.

Sandbox: $10.000 USD

Pool Locking

In addition, each pool interaction could be locked by the Admin to prevent calling Deposit, Withdraw, Borrow or Repay functions.

Last updated