Filliquid
Filliquid.ioTwitterGithubTelegramMediumYoutube
한국어
한국어
  • 🐷필리퀴드 Docs에 오신 것을 환영합니다!
  • 필리퀴드란?
  • 🧐작동원리
    • 시스템 아키텍처
    • 파일코인 보유자의 스테이킹 및 출금
    • 스토리지 프로바이더(SP)의 대출 및 상환
    • 거래 수수료
    • 리스크 관리 메커니즘
  • 🔮파일코인 스테이킹 가이드
    • 스테이킹 수익 분배
    • 토큰 보유자를 위한 혜택
    • FILLiquid 보상 메커니즘 – FIT
    • Filecoin 스테이킹 방법
      • 🧰 지갑 준비하기
      • 🔗 지갑 연결하기
      • 📥 파일코인 스테이킹하기
      • 🔄 Filecoin 출금하기
    • FIT 활용 방법
      • 🌾 FIT 스테이킹으로 FIG 파밍하기
      • 💰FIG 스테이킹으로 FIL 보상 받기
    • 📘 추가 안내
      • 🧠 Filecoin (FIL) 지갑 주소 이해하기
      • 💰 수수료 (프로토콜 수익)
      • 🔄FIL/FIT 교환 비율 메커니즘
  • 스토리지 프로바이더 가이드
    • Borrowing Interest Rate
    • Borrowing Filecoin
      • Binding and Unbinding For Borrowers
      • How to Bind a Miner in FILLiquid
      • Borrowing FIL For Storage Providers
      • Repayment of Loan
      • Precautions Notes
    • Liquidation Mechanism
    • Family Miners
    • Debt Farming for SP
  • ⚡ECONOMICS
    • FIT 토큰 (LSD)
    • 🐽FIG 토큰
      • 🗳️ FIG 토큰 거버넌스 (투표권 행사)
    • 🔍 스마트 계약 주소 (CA)
    • 🔒 보안 감사 (Audits)
    • 👨‍💻🐞 버그 바운티 프로그램 – 최대 50만 FIG 보상
  • 🆘문제 해결 가이드
    • 🙋❓ 자주 묻는 질문 (FAQ)
      • 💬 FIL 스테이킹 Q&A
      • Farming QnA (FIT Staking)
      • 배당금 QnA (FIG 스테이킹)
  • 🗺️Roadmap
    • 🗺️로드맵
  • ⁉️Understanding Filecoin Ecosystem
    • What is Filecoin
    • What is Storage Provider
    • Background
    • Introduction
    • What is FILLiquid
Powered by GitBook
On this page
  • Design Rationale
  • Borrowing and Repayment
  1. 스토리지 프로바이더 가이드

Borrowing Interest Rate

Previous🔄FIL/FIT 교환 비율 메커니즘NextBorrowing Filecoin

Design Rationale

The interest rate for borrowers in the protocol is automatically updated and implemented by the smart contract by considering the corresponding utilization rate. As a result, the borrowing rate is algorithmically adjusted and defined by a mathematical formula.

When determining the relationship between borrowing interest rates and the utilization rate, several factors were considered:

  • The utilization rate solely determines the borrowing rate. A high utilization rate indicates strong demand relative to supply, resulting in a higher interest rate to increase the cost of capital.

  • The marginal interest rate should be adaptable to changes in the protocol demand. The marginal interest rate, representing the slope of the interest rate curve, should consider diminishing marginal utility. For example, the slope of the curve could increase as the utilization rate rises.

  • The interest rate curve should be dynamic and programmable. Critical points, such as the minimum and maximum interest rates and the interest rate at an optimal utilization, should be defined to allow for flexibility in adjusting the interest rates.

  • Safeguarding mechanisms must be implemented to stabilize the borrowing rate at the inception stage. Safeguards need to be put in place to stabilize the interest rate and prevent the liquidity pool from shortages in the event of a sudden surge in utilization.

The following sections overview how we have implemented these factors into the design of the FILLiquid protocol through borrowing and repayment.

Borrowing and Repayment

Storage Providers (SPs) can borrow FIL tokens for the specific purpose of participating in the Filecoin consensus mechanism using the FILLiquid pool. The borrowed FIL can only be used as an upfront pledge for providing storage to ensure the security of the Filecoin system remains intact.

A critical factor in the model is that the borrowing interest rate considers the ex-post utilization rate. Without considering the ex-post utilization rate, the ecosystem could face rapid liquidity shortages by large loan requests from potentially malicious borrowing requests - particularly when the liquidity pool size is relatively small compared to the borrowing size.

As a result, when an SP submits a borrowing request, the system determines the interest rate based on the borrowing rate function according to the utilization rate while considering the ex-post utilization rate.

For instance, if the utilization rate is 10% before the request and increases to 20% after the borrowed FIL amount is subtracted from the pool, the corresponding borrowing interest rate should be based on the 20% utilization rate.

This approach safeguards the system from facing liquidity shortages. Miners can borrow up to the utilization rate ceiling with a maximum interest rate currently designed as 90% and 60%, respectively.

The borrower’s Filecoin Beneficiary Address [1] is transferred as collateral directly to the FILLiquid smart contract as soon as the borrowing contract is established. The transfer ensures that the smart contract for the FILLiquid pool gains control of the FIL rewards set to be unlocked during the borrowing period instead of the borrower.

Borrowers have the flexibility to initiate repayment at any time, as the loan terms are adjustable.

The interest is compounded continuously[2] but accrued every epoch[3] and is settled along with the principal repayment at the end of the loan term.

For example, an SP borrows at 50% utilization rate with a 10% nominal annual interest rate and plans to repay the loan over a period of 36 months would have to pay 34.986% of the principal as interest when repaying the loan at the end of the period.


[2] Continuous compounding is the mathematical limit that compound interest can reach.

[3] Time in the Filecoin blockchain is discretized into epochs that are currently 30 seconds in length. Calculation of time: t=repaymentEpoch-borrowingEpoch

[1] Only Beneficiary Role could withdraw FIL from an SP node. proposed to re-assign the node control and financial benefit to different roles in order to provide more flexibilities for potential Filecoin financial market.

FIP-0029
Figure 2 Borrowing Interest Rate Simulations