📜
SRWA Docs
SRWA.ioDemo Application
  • Intro
    • 🥳Welcome!
    • 🔥What's new?
    • 💰Lending
    • 📑RWA Vaulting
    • ✅SRWA Validator
    • 🏅Recognition
    • 🪙SRWA Token - $RWA
  • Products
    • SRWA Lending
      • Core Principles
      • Solution Architecture
      • User Badge
      • Web Application
        • Lending
        • Deposit & Withdraw
        • Borrow & Repay
        • Market
        • Wallet
        • Transactions
      • Lending Protocol
        • Protocol Operation
        • APY Calculation
          • Interest per Epoch
          • Account Position Calculations
        • Liquidations
          • Liquidation Function
          • Regular Liquidation
          • Insolvency Liquidation
          • Micro Liquidation
      • Vaults
        • Pool Params
      • Radix API / Gateway
      • Oracle
      • Risk management
      • Additional Considerations
      • Protocol Incentives
      • Security Audits
      • Release Candidate Config
        • Pool XRD
        • Pool xUSDC
    • SRWA Vaulting
  • Projects
    • 🏗️Ploughshare
  • General Information
    • ☎️Contact
Powered by GitBook
On this page

Was this helpful?

  1. Products
  2. SRWA Lending
  3. Lending Protocol

Liquidations

With the ability to calculate APYs for depositors and borrowers, the blueprint gives value to Depositors and Borrowers. Next, let's focus on Pool protection in the form of liquidations and additional risk management.

Liquidations are governed through the following parameters and cover 3 scenarios described in this chapter.

At Sandbox Release, liquidations are under multisig managed by the team. There is no bonus for protocol for liquidations and rewards will be distributed to XRD Depositors in the future.

Liquidation Params

// Max Percent of the user debt that could be liquidated
max_liquidation_percent
// Liquidation bonus for the user
liquidation_bonus
// Liquidation reserve for the protocol
liquidation_reserve_factor
// Minimum reasonable value to be liquidated
min_liquidable_value

Max Liquidation Percent

The % of the user position that could be liquidated. Configurable per pool. [0-1] Typically 0.5. Set at 0.5 for a Sandbox Release.

Liquidation Incentives

The reward for the liquidation provider. Configurable per pool, [0-1] Typically 0.1. Set at 0.1 for a Sandbox Release.

Liquidation Reserve Factor

The reward for the Blueprint. Configurable per pool, [0-1] Typically 0.5. Set at 0 for a Sandbox Release.

Min Liquidable Value

When the cost of running the liquidation exceeds the potential reward, the exception is made and the whole position could be liquidated max_liquidation_percent = 1.

PreviousAccount Position CalculationsNextLiquidation Function

Last updated 7 months ago

Was this helpful?