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

Was this helpful?

  1. DEVELOPER MATERIAL
  2. V1 Developer Material

Arbiter Role (v1)

In v1 the Servicer acts through the blockchain address of the Arbiter role, an address used in the protocol for some critical system features.

The Arbiter is a role in our contracts that works to ensure a fair treatment in our system.

It can be a third-party trusted by the Borrower and the Lender or it can be a single Lender that can represent all Lenders vis-a-vis a Borrower.

In v1 the Arbiter's main role is to discourage and prevent bad behaviour by Borrowers and to ensure that Lenders are in the best position possible to be repaid.

It does so through having privileged access to certain functions, some of which are highlighted in the following sections.

PreviousValuation OracleNextliquidate() and declareInsolvent()

Last updated 9 months ago

Was this helpful?

⚙️