> For the complete documentation index, see [llms.txt](https://docs.fira.money/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fira.money/developers/user-flows/variable-rate-lending.md).

# Variable Rate Lending

```mermaid
sequenceDiagram
  actor User
  participant VRLM as Variable Rate LendingMarket
  participant Oracle as Oracle

  Note over User,VRLM: User approves collateralToken to VRLM (ERC20 approve)
  User->>VRLM: supplyCollateral(marketParamsUSDC, collateral, user, "")
  VRLM-->>User: position updated (collateral credited)
  User->>VRLM: borrow(marketParamsUSDC, usdcToBorrow, 0, user, receiver)
  VRLM-->>User: USDC transferred to receiver
  Note over VRLM,Oracle: Interest accrues, LTV/LLTV enforced via oracle price
```

**Key references**: `src/LendingMarket.sol` (`supplyCollateral`, `borrow`, `getUserPosition`).

## Details

* **Goal**: Supply collateral and borrow variable-rate assets (e.g., USDC) directly from the lending market.
* **Preconditions**:
  * Market created with `loanToken = USDC`, appropriate `oracle`, `ltv/lltv` enabled.
  * Approvals for `collateralToken` to LendingMarket.
* **Notes**:
  * FW deposits may be rehypothecated into this market on the supply side, while borrowers take variable-rate loans.

## Views and events

**Views**

* Lending: `getUserPosition(marketParamsUSDC, user)` → `supplyAssets`, `supplyShares`, `borrowAssets`, `borrowShares`, `collateralAssets`.
* Lending: `position(id, user)`, `market(id)`.
* Oracle: `price()` (via marketParams' oracle) for health checks.

**Events**

* Lending: `EventsLib.SupplyCollateral`, `EventsLib.Borrow`, `EventsLib.AccrueInterest`.

## Reward share (variable-rate borrow)

* Formula: `userBorrowAssets / totalBorrowAssets` over the epoch (TWAP).
* Functions to call:
  * `LendingMarket.getUserPosition(marketParamsUSDC, user)` → `borrowAssets`
  * `LendingMarket.position(idUSDC, user)`, `LendingMarket.market(idUSDC)` (optional)
  * Index events: `EventsLib.Borrow`, `EventsLib.AccrueInterest`

## Reward share (variable-rate lend)

* Formula: `userVaultAssets / totalVaultAssets` over the epoch (TWAP).
* Functions to call:
  * `ISisuVault.balanceOf(user)`; `ISisuVault.convertToAssets(shares)` → `userVaultAssets`
  * `ISisuVault.totalAssets()` (denominator); `ISisuVault.totalSupply()` (optional)
  * Index events (optional): vault `Deposit`/`Withdraw` if exposed


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.fira.money/developers/user-flows/variable-rate-lending.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
