Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(doc): create a tutorial for DeFi Lend Borrow UI #1685

Merged
merged 14 commits into from
Oct 7, 2024
265 changes: 265 additions & 0 deletions docs/build/isc/v1.3/docs/tutorials/defi-lend-borrow-tutorial-part-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,265 @@
# DeFi Lend Borrow

## Part I
DeFi Lend Borrow is a decentralized finance (DeFi) application that enables users to lend and borrow assets on the Shimmer EVM testnet. The project is built using Solidity and Hardhat, with the core functionality provided by smart contracts.

## Table of Contents

- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Contracts Overview](#contracts-overview)
- [IToken](#itoken)
- [InterestRateModel](#interestratemodel)
- [ITokenManager](#itokenmanager)
- [MockERC20](#mockerc20)
- [Usage](#usage)
- [Deployment](#deployment)
- [Verification](#verification)
- [Conclusion](#conclusion)

## Prerequisites

- [Node.js](https://nodejs.org) >= v18.0
- [Hardhat](https://hardhat.org) >= v2.0.0
- [npx](https://www.npmjs.com/package/npx) >= v7.1.0.

## Installation

1. Clone the repository:
```bash
git clone https://github.com/yourusername/defi-lend-borrow.git
cd defi-lend-borrow
```

2. Install the dependencies:
```bash
npm install
```

3. Compile the contracts:
```bash
npx hardhat compile
```

## Contracts Overview

### IToken

The `IToken` contract is an ERC20 token that represents an interest-bearing asset with lending and borrowing functionalities.

- **Underlying Asset:** The ERC20 token that this contract wraps.
- **Interest Rate Model:** Determines the interest rates for borrowing and supplying assets.
- **ITokenManager:** Manages supported tokens and collateralization.

#### Key Functions:
- Mint: This method allows users to mint `IToken` by depositing a specified amount of the underlying token.
- Transfers the specified amount of the underlying token from the user to the contract.
- Mints an equivalent amount of IToken to the user's balance.
- Updates the user's collateral in the `ITokenManager`.
- Returns a boolean indicating whether the minting process was successful.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L113-L135
```
- Redeem: This method enables users to redeem `IToken` in exchange for the underlying token.

- Ensures the user has enough IToken to redeem.
- Burns the specified amount of IToken from the user's balance.
- Transfers the equivalent amount of the underlying token from the contract to the user.
- Updates the user's collateral in the `ITokenManager`.
- Returns a boolean indicating whether the redemption process was successful.


```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L137-L164
```
- Borrow: Borrows the underlying token from the contract. This method allows users to borrow the underlying token from the contract.
- Calculates the borrow rate and the interest for the specified amount.
- Ensures the contract has enough liquidity and the user has sufficient collateral.
- Increases the user's borrow balance by the borrowed amount plus interest.
- Updates the total amount borrowed in the contract.
- Transfers the borrowed amount of the underlying token to the user.
- Returns a boolean indicating whether the borrowing process was successful.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L166-L196
```
- Repay: This method allows users to repay the borrowed underlying token.
- Ensures the repayment amount does not exceed the user's borrow balance.
- Transfers the repayment amount from the user to the contract.
- Calculates the interest on the repayment amount and adjusts the user's borrow balance accordingly.
- Updates the total amount borrowed and the contract's reserves.
- Updates the user's collateral in the `ITokenManager`.
- Returns a boolean indicating whether the repayment process was successful.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L198-L227
```
- `getBorrowRate()`: Returns the current borrow rate per block.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L229-L236
```
- `getSupplyRate()`: Returns the current supply rate per block.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/IToken.sol#L238-L245
```

### InterestRateModel

The `InterestRateModel` contract calculates the interest rates for borrowing and supplying assets based on the utilization of the underlying assets.

#### Key Functions:
- `utilizationRate(uint cash, uint borrows, uint reserves)`: Calculates the utilization rate of the market.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/InterestRateModel.sol#L41-L57
```
- `getBorrowRate(uint cash, uint borrows, uint reserves)`: Calculates the current borrow rate per block.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/InterestRateModel.sol#L59-L68
```
- `getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa)`: Calculates the current supply rate per block.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/InterestRateModel.sol#L70-L79
```

### ITokenManager Contract

The `ITokenManager` contract is designed to manage supported tokens and collateral balances for a decentralized finance (DeFi) platform. It allows for adding, removing, and updating supported tokens, tracking their USD prices, and performing pre-mint, pre-redeem, and pre-borrow checks for liquidity.

#### Key Features
- **Manage supported tokens:** Add, remove, and view the supported `IToken` contracts.
- **Collateral management:** Track and update collateral balances for each account and token.
- **USD price tracking:** Maintain USD prices for each supported token.
- **Pre-mint/redeem/borrow checks:** Ensure that accounts meet collateral requirements before minting, redeeming, or borrowing tokens.
- **Collateral factor:** Set and use collateral factors for different tokens to adjust borrowing limits.

#### Key Functions

- `addToken(address token, uint256 tokenUSDPrice, uint256 tokenCollateralFactor)`: Adds a new `IToken` to the manager.

- **Parameters:**
- `token`: The address of the `IToken` to be added.
- `tokenUSDPrice`: The USD price of the token.
- `tokenCollateralFactor`: The collateral factor for the token.
- **Modifiers:** `onlyOwner`
- **Events:** Emits `TokenAdded` upon successful addition of the token.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L57-L86
```
- `removeToken(address token)` : Removes an `IToken` from the manager.
- **Parameters:**
- `token`: The address of the `IToken` to be removed.
- **Modifiers:** `onlyOwner`
- **Events:** Emits `TokenRemoved` upon successful removal of the token.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L88-L111
```

- `preMintChecks(address ITokenAddress)` : Ensures that the token is supported before minting.
- **Parameters:**
- `ITokenAddress`: The address of the `IToken` to be minted.
- **Reverts:** `TokenNotListed` if the token is not supported.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L113-L122
```

- `preRedeemChecks(address iTokenAddress, address redeemer, uint256 amount)`: Ensures that the redeemer has sufficient collateral to redeem tokens.

- **Parameters:**
- `iTokenAddress`: The address of the `IToken` to be redeemed.
- `redeemer`: The account attempting to redeem.
- `amount`: The amount of tokens to be redeemed.
- **Reverts:** `RedeemAmountTooMuch` if the collateral is insufficient.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L124-L154
```

- `preBorrowChecks(address iTokenAddress, address redeemer, uint256 amount)`: Ensures that the redeemer has sufficient collateral to borrow tokens.

- **Parameters:**
- `iTokenAddress`: The address of the `IToken` to be borrowed.
- `redeemer`: The account attempting to borrow.
- `amount`: The amount of tokens to be borrowed.
- **Reverts:** `BorrowAmountTooMuch` if the collateral is insufficient.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L156-L185
```

- `hasLiquidity(address account, address iToken, uint256 redeemTokens, uint256 borrowTokens) → (uint256 totalAccountCollaterals, uint256 totalAccountBorrows)`: Calculates the total collateral and borrow balances for an account, accounting for tokens to be redeemed or borrowed.
- **Parameters:**
- `account`: The account to check.
- `iToken`: The token in question.
- `redeemTokens`: The number of tokens to redeem.
- `borrowTokens`: The number of tokens to borrow.
- **Returns:**
- `totalAccountCollaterals`: The total collateral balance.
- `totalAccountBorrows`: The total borrow balance.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L187-L247
```
- `updateTokenUSDPrice(address token, uint256 newUSDPrice)`: Updates the USD price of a supported token.

- **Parameters:**
- `token`: The address of the token.
- `newUSDPrice`: The new USD price for the token.
- **Modifiers:** `onlyOwner`, `onlySupportedToken`
- **Reverts:** `TokenNotListed` if the token is not supported.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/bfb658e82611657a50885a2509f21a07da2bbef1/contracts/ITokenManager.sol#L245-L258
```

- `getTokenUSDPrice(address token) → uint256`: Returns the USD price of a supported token.

- **Parameters:**
- `token`: The address of the token.
- **Returns:** The USD price of the token as a `uint256`.

```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/3a368391f4767d1decb209ad6bfdd20a2b08fa03/contracts/ITokenManager.sol#L249-L262
```

### Underlying Token

The `MockERC20` contract is a simple ERC20 token used for testing purposes. It allows minting of an initial supply to the deployer. You can add this token to the `ITokenManager` and mint new ITokens by depositing the MockERC20 tokens as the underlying Token.


## Scripts

### Compile Your Contracts

```bash
npx hardhat compile
```

First, create a `scripts` folder in the root of the project and add the following files under it:

### Deploy script

The `deploy.js` script will deploy the contract to the ShimmerEVM Testnet.
```javascript reference
https://github.com/iota-community/Defi-lend-borrow/blob/e227092ef1123cf8cff766ee4c786a0c40a62bf3/scripts/deploy.js#L1-L51
```

This will deploy the Defi Lend borrow contract to the ShimmerEVM Testnet. run it by executing:
```bash
npx hardhat run scripts/deploy.js --network shimmer_evm_testnet
```

### Verfication
You can verify your contract by visiting
the [EVM Testnet Explorer](https://explorer.evm.testnet.shimmer.network/),
and searching for the address from the previous step. If you access the `Contract` tab, you should be able to see your code and interact with your contract or you can use the below command to verify the contracts through hardhat :

```bash
npx hardhat verify --network shimmer_evm_testnet CONTRACT_ADDRESS_HERE "CONSTRUCTOR_ARGUMENTS_IF_ANY"
```

### conclusion
In this first part of the DeFi Lend Borrow tutorial, we have set up the project and deployed the Itoken contract to the ShimmerEVM Testnet. We have also deployed the Underlying Token's contract and the Itoken Manager contract.Now using Itoken contract you can lend and borrow tokens. In the next part, we will create the DeFi Lend Borrow UI using React.js.
Loading
Loading