Credit Coop
  • About Us
    • Introduction
    • Get in Touch
  • ⚙️About Our Products
    • Secured Line of Credit
      • Line of Credit Features (v1)
        • Cash Flow Financing
        • Deploying a Secured Line of Credit
        • Core Lending Functionality
        • Revenue-Based Lending Operations
        • Collateral Operations
        • Credit Events
    • The Spigot
      • Key features of the Spigot
      • Spigot Roles
        • Owner
        • Operator
  • ⚙️User Documentation
    • User Documentation (v1)
    • User Documentation (v2)
  • ⚙️DEVELOPER MATERIAL
    • Introduction
    • Deployed Contracts
    • V1 Developer Material
      • Architecture (v1)
      • Functions and Methods
        • LineOfCredit.sol
        • Oracle.sol
        • Spigot.sol
        • SpigotedLine.sol
        • Escrow.sol
        • EscrowedLine.sol
        • SecuredLine.sol
        • LineFactory.sol
        • Libraries
        • InterestRateCredit.sol
          • Accrued Interest Calculation
          • 'Interest Accrued' contract flow
        • Advanced Jargon
      • Repaying Debt - Function View
      • Valuation Oracle
      • Arbiter Role (v1)
        • liquidate() and declareInsolvent()
        • Spigot related functions
        • enableCollateral()
      • Edge Cases and Risk Situations
      • Security Audits
  • 💼Legal
    • Important Legal Notice
    • Terms of Use
    • Privacy Policy
Powered by GitBook
On this page
  • liquidate()
  • declareInsolvency()

Was this helpful?

  1. DEVELOPER MATERIAL
  2. V1 Developer Material
  3. Arbiter Role (v1)

liquidate() and declareInsolvent()

liquidate()

A bespoke approach is taken wish the aim to avoid automatic liquidations. We believe in a process for restructuring debt or in giving borrowers time to top up collateral or add additional revenue streams to the Spigot.

The Arbiter is responsible for initiating and executing liquidations.

This privileged function can only be executed when the loan status is liquidatable, triggered for example when the escrowed token collateral account becomes undercollateralized (relative to the collateral ratio set for the loan) or when a Borrower fails to repay before the deadline.

declareInsolvency()

The Arbiter can declare that a Borrower is incapable of repaying debt any more than the current proceeds after liquidating the Borrower's collateral and/or claiming all of the Revenue Tokens in the Spigot.

PreviousArbiter Role (v1)NextSpigot related functions

Last updated 9 months ago

Was this helpful?

⚙️