-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9768804
commit e74eb05
Showing
10 changed files
with
287 additions
and
60 deletions.
There are no files selected for viewing
158 changes: 158 additions & 0 deletions
158
docs/build/isc/v1.1/docs/tutorials/defi-lend-borrow-tutorial-part-2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
# DeFi Lend Borrow - Part II | ||
|
||
This is a comprehensive guide to the DeFi Lend Borrow DApp, a decentralized application built using React and the ethers library. The DApp allows users to lend and borrow cryptocurrency assets on Shimmer EVM Testnet. | ||
|
||
|
||
### Prerequisites | ||
|
||
- [Node.js](https://nodejs.org) = v18.0 | ||
- [React.js](https://react.dev/) >= v18.2.0 | ||
- [npx](https://www.npmjs.com/package/npx) >= v7.1.0. | ||
- [Metamask](https://metamask.io/) : Set up a Metamask wallet with some Shimmer EVM testnet tokens. | ||
|
||
## Set Up | ||
|
||
First, [bootsrap a new React project](https://create-react-app.dev/docs/getting-started/), by running: | ||
|
||
```bash | ||
npx create-react-app lend-borrow-ui | ||
cd lend-borrow-ui | ||
``` | ||
|
||
Secondly, install [ethers.js](https://docs.ethers.org/v5/) for interacting with the contracts through UI. | ||
```bash | ||
npm install ethers | ||
``` | ||
|
||
## Creating the UI | ||
### Code Structure | ||
- `Context.js`: Defines the global context for web3 and other account data. | ||
- `Components`: Contains below components for the UI : | ||
- `NavigationBar` | ||
- `LendBorrowPlatformDetails` | ||
- `AllAssetsList` | ||
- `TransactionsCard` | ||
- `Tabs` | ||
- `TransactionsForm` | ||
- `AccountDetails` | ||
- `ConnectWallet` | ||
- `TransactionsAlert` | ||
- `Utils`: | ||
- `etherUtils.js` | ||
- `contractAbi.js` | ||
- `formats.js` | ||
- `sendTransactions.js` | ||
|
||
### Context | ||
|
||
Create a directory named `context` and a file `Context.js`inside the app. | ||
This `Context.js` file sets up a context for managing wallet connection, balance information, and transaction details in a React application. It uses `createContext` to create a `Context` object, and the `WalletProvider` component provides this context to child components. | ||
|
||
The `WalletProvider` manages state for the wallet address, SMR balance, token balance, gas prices, and transaction history. It uses the `useEffect` hook to automatically detect if MetaMask is installed and connects to the Ethereum network. It also handles network switching, wallet connection, and balance fetching using utility functions from `ethersUtils`. Additionally, it includes methods to connect, disconnect, and refresh wallet balances when needed. | ||
|
||
This setup facilitates easy access to wallet-related data and actions across the app. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/context/Context.js#L1-L82 | ||
``` | ||
|
||
### Navbar | ||
The `Navbar` component manages wallet connection and user interactions. It displays the connected wallet address, balance, and provides a dropdown menu with options to view the balance or disconnect the wallet. It uses `context` to retrieve wallet details and fetches the user's native token balance. The component also includes a button to navigate to the accounts section of the app. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/NavigationBar.js#L1-L76 | ||
``` | ||
|
||
### Dashboard | ||
the dashboard page consists of two components, `LendBorrowPlatformDetails` and `AllAssetsList` which shows details of all the supported tokens and details about the tokens and platform. | ||
|
||
#### LendBorrowPlatformDetails component | ||
The `LendBorrowPlatformDetails` component displays a summary of the total supplies and total borrows on a lending/borrowing platform. It accepts two props: `totalSuppliesSum` and `totalBorrowsSum`, which represent the sum of all supplied and borrowed assets. The component formats and truncates these values to display the first six digits and shows them in a styled card layout. If no borrow amount is provided, it defaults to "$ 0". | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/LendBorrowPlatformDetails/index.js#L1-L27 | ||
``` | ||
|
||
|
||
#### AllAssetsList | ||
The AllAssetsList component fetches and displays a list of supported assets (tokens) in a decentralized finance (DeFi) application. It retrieves token data, including their supply, borrow amounts, collateral factor, and price, and renders them in a table format. Here's a breakdown: | ||
|
||
1. State Management: | ||
|
||
- allAssets: Stores the list of assets with their details. | ||
- isLoading: Indicates whether the asset data is being loaded. | ||
|
||
2. Fetching Data: | ||
|
||
- On component load, the useEffect hook calls the `getAllSupportedTokens` function to fetch a list of underlying and iToken addresses. | ||
- For each underlying token, details such as name, supply, borrow amounts, and price are fetched. | ||
- This data is combined and stored in `allAssets`. | ||
- It also calculates the total sum of supplies and borrows and updates the parent component's state using `setTotalSuppliesSum` and `setTotalBorrowsSum`. | ||
|
||
3. Rendering: | ||
- If data is loaded (`!isLoading`), it displays a table with the asset details. | ||
- Each row includes the asset name, address (with a link to the Shimmer EVM explorer), total borrow, total supply, collateral factor, and price. | ||
- Clicking on a row selects the asset by calling `setSelectedAsset`. | ||
|
||
4. Loading State: | ||
|
||
While data is being fetched, it shows a loading spinner with a message. | ||
This component serves as a dynamic asset list for users to view and interact with supported tokens in the platform. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/LendBorrowPlatformDetails/AllAssetsList.js#L1-L126 | ||
``` | ||
|
||
|
||
### TransactionsCard | ||
This component manages and displays a card for performing different types of transactions (like `Supply` or `Borrow`) based on the selected asset. It uses state named `activeTab` to Keeps track of the currently active transaction type (e.g., "Supply", "Withdraw"). | ||
|
||
- `TabsPanel`: Allows users to switch between different transaction types. | ||
- `TransactionForm`: Displays the form for performing the selected transaction on the selectedAsset. | ||
|
||
#### TransactionForm | ||
This component facilitates token transactions (`Supply`, `Withdraw`, `Borrow` or `Repay`) based on the selected asset. It: | ||
|
||
Manages user input for transaction amounts and tracks token balances. | ||
Updates the UI dynamically based on the active transaction type. | ||
Connects to the wallet and opens a modal to confirm the transaction. | ||
Calls specific transaction functions like `mintItokens`, `borrowItokens`, `redeemItokens` or `repayItokens` based on the active tab. | ||
Displays transaction alerts to indicate success or failure after confirmation. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/TransactionsCard/TransactionForm.js#L1-L154 | ||
``` | ||
|
||
:::tip | ||
You can refer this repository for full React UI code : [lend-borrow-ui](https://github.com/iota-community/Defi-lend-borrow/tree/main/lend-borrow-ui) | ||
::: | ||
|
||
### Example usage | ||
|
||
- Connect your Metamask wallet: Click the "Connect Wallet" button on the app to open the below metamask popup: | ||
|
||
![connect metamask](/img/tutorials/defi-lend-borrow/defi-lend-borrow-connect-metamask.png "Connect to MetaMask") | ||
|
||
- View your account balance: See your current token balance. | ||
![accoount balance](/img/tutorials/defi-lend-borrow/defi-lend-borrow-account-bal.png "You can view your account SMR balance here") | ||
- View the Dashboard component: | ||
![dashboard](/img/tutorials/defi-lend-borrow/defi-lend-borrow-dashboard.png "Dashboard UI") | ||
- In the Dashboard component you can view `total supplied` funds and `total borrowed` funds and the list of all the supported tokens with their details. | ||
|
||
- `TransactionsCard` could be used by clicking any of the token mentioned on the list to `supply`, `borrow`, `repay` or `withdraw` funds. | ||
![transactions card](/img/tutorials/defi-lend-borrow/defi-lend-borrow-transaction-card.png "Dashboard UI") | ||
- Example of Supplying tokens below : | ||
- Enter the amount you want to supply and click transact. | ||
- First you will need to approve the underlying token to the contract. | ||
|
||
![approve underlying token](/img/tutorials/defi-lend-borrow/defi-lend-borrow-approve.png "Approve underlying token") | ||
- And a new metamask popup will be shown to mint the eqvivalent amount of ITokens. | ||
|
||
![supply IToken](/img/tutorials/defi-lend-borrow/defi-lend-borrow-mint.png "Supply IToken") | ||
|
||
Similarly you can `borrow`, `repay` or `withdraw` funds. | ||
|
||
|
||
## Conclusion | ||
|
||
This is the last document of DeFi Lend Borrow tutorial, in which we learn how to setup and use the react application to interact with the contracts we created in Part I. |
185 changes: 127 additions & 58 deletions
185
docs/build/isc/v1.3/docs/tutorials/defi-lend-borrow-tutorial-part-2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,158 @@ | ||
# DeFi Lend Borrow UI | ||
|
||
## Part II | ||
# DeFi Lend Borrow - Part II | ||
|
||
This is a comprehensive guide to the DeFi Lend Borrow DApp, a decentralized application built using React and the ethers library. The DApp allows users to lend and borrow cryptocurrency assets on Shimmer EVM Testnet. | ||
|
||
### Table of content | ||
|
||
- [Prerequisites](#prerequisites) | ||
- [Installation](#installation) | ||
- [How to use](#how-to-use) | ||
- [Code Structure](#code-structure) | ||
- [Conclusion](#conclusion) | ||
|
||
|
||
### Prerequisites | ||
|
||
- [Node.js](https://nodejs.org) >= v18.0 | ||
- [Node.js](https://nodejs.org) = v18.0 | ||
- [React.js](https://react.dev/) >= v18.2.0 | ||
- [npx](https://www.npmjs.com/package/npx) >= v7.1.0. | ||
- [Metamask](https://metamask.io/) : Set up a Metamask wallet with some Shimmer EVM testnet tokens. | ||
|
||
### Installation | ||
|
||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/yourusername/defi-lend-borrow.git | ||
cd defi-lend-borrow/lend-borrow-ui | ||
``` | ||
2. Install dependencies: | ||
```bash | ||
npm install | ||
``` | ||
or | ||
```bash | ||
npm install --legacy-peer-deps | ||
``` | ||
3. Start the development server: | ||
```bash | ||
npm start | ||
``` | ||
|
||
|
||
### How to use | ||
## Set Up | ||
|
||
First, [bootsrap a new React project](https://create-react-app.dev/docs/getting-started/), by running: | ||
|
||
```bash | ||
npx create-react-app lend-borrow-ui | ||
cd lend-borrow-ui | ||
``` | ||
|
||
Secondly, install [ethers.js](https://docs.ethers.org/v5/) for interacting with the contracts through UI. | ||
```bash | ||
npm install ethers | ||
``` | ||
|
||
## Creating the UI | ||
### Code Structure | ||
- `Context.js`: Defines the global context for web3 and other account data. | ||
- `Components`: Contains below components for the UI : | ||
- `NavigationBar` | ||
- `LendBorrowPlatformDetails` | ||
- `AllAssetsList` | ||
- `TransactionsCard` | ||
- `Tabs` | ||
- `TransactionsForm` | ||
- `AccountDetails` | ||
- `ConnectWallet` | ||
- `TransactionsAlert` | ||
- `Utils`: | ||
- `etherUtils.js` | ||
- `contractAbi.js` | ||
- `formats.js` | ||
- `sendTransactions.js` | ||
|
||
### Context | ||
|
||
Create a directory named `context` and a file `Context.js`inside the app. | ||
This `Context.js` file sets up a context for managing wallet connection, balance information, and transaction details in a React application. It uses `createContext` to create a `Context` object, and the `WalletProvider` component provides this context to child components. | ||
|
||
The `WalletProvider` manages state for the wallet address, SMR balance, token balance, gas prices, and transaction history. It uses the `useEffect` hook to automatically detect if MetaMask is installed and connects to the Ethereum network. It also handles network switching, wallet connection, and balance fetching using utility functions from `ethersUtils`. Additionally, it includes methods to connect, disconnect, and refresh wallet balances when needed. | ||
|
||
This setup facilitates easy access to wallet-related data and actions across the app. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/context/Context.js#L1-L82 | ||
``` | ||
|
||
### Navbar | ||
The `Navbar` component manages wallet connection and user interactions. It displays the connected wallet address, balance, and provides a dropdown menu with options to view the balance or disconnect the wallet. It uses `context` to retrieve wallet details and fetches the user's native token balance. The component also includes a button to navigate to the accounts section of the app. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/NavigationBar.js#L1-L76 | ||
``` | ||
|
||
### Dashboard | ||
the dashboard page consists of two components, `LendBorrowPlatformDetails` and `AllAssetsList` which shows details of all the supported tokens and details about the tokens and platform. | ||
|
||
#### LendBorrowPlatformDetails component | ||
The `LendBorrowPlatformDetails` component displays a summary of the total supplies and total borrows on a lending/borrowing platform. It accepts two props: `totalSuppliesSum` and `totalBorrowsSum`, which represent the sum of all supplied and borrowed assets. The component formats and truncates these values to display the first six digits and shows them in a styled card layout. If no borrow amount is provided, it defaults to "$ 0". | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/LendBorrowPlatformDetails/index.js#L1-L27 | ||
``` | ||
|
||
|
||
#### AllAssetsList | ||
The AllAssetsList component fetches and displays a list of supported assets (tokens) in a decentralized finance (DeFi) application. It retrieves token data, including their supply, borrow amounts, collateral factor, and price, and renders them in a table format. Here's a breakdown: | ||
|
||
1. State Management: | ||
|
||
- allAssets: Stores the list of assets with their details. | ||
- isLoading: Indicates whether the asset data is being loaded. | ||
|
||
2. Fetching Data: | ||
|
||
- On component load, the useEffect hook calls the `getAllSupportedTokens` function to fetch a list of underlying and iToken addresses. | ||
- For each underlying token, details such as name, supply, borrow amounts, and price are fetched. | ||
- This data is combined and stored in `allAssets`. | ||
- It also calculates the total sum of supplies and borrows and updates the parent component's state using `setTotalSuppliesSum` and `setTotalBorrowsSum`. | ||
|
||
3. Rendering: | ||
- If data is loaded (`!isLoading`), it displays a table with the asset details. | ||
- Each row includes the asset name, address (with a link to the Shimmer EVM explorer), total borrow, total supply, collateral factor, and price. | ||
- Clicking on a row selects the asset by calling `setSelectedAsset`. | ||
|
||
4. Loading State: | ||
|
||
While data is being fetched, it shows a loading spinner with a message. | ||
This component serves as a dynamic asset list for users to view and interact with supported tokens in the platform. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/LendBorrowPlatformDetails/AllAssetsList.js#L1-L126 | ||
``` | ||
|
||
|
||
### TransactionsCard | ||
This component manages and displays a card for performing different types of transactions (like `Supply` or `Borrow`) based on the selected asset. It uses state named `activeTab` to Keeps track of the currently active transaction type (e.g., "Supply", "Withdraw"). | ||
|
||
- `TabsPanel`: Allows users to switch between different transaction types. | ||
- `TransactionForm`: Displays the form for performing the selected transaction on the selectedAsset. | ||
|
||
#### TransactionForm | ||
This component facilitates token transactions (`Supply`, `Withdraw`, `Borrow` or `Repay`) based on the selected asset. It: | ||
|
||
Manages user input for transaction amounts and tracks token balances. | ||
Updates the UI dynamically based on the active transaction type. | ||
Connects to the wallet and opens a modal to confirm the transaction. | ||
Calls specific transaction functions like `mintItokens`, `borrowItokens`, `redeemItokens` or `repayItokens` based on the active tab. | ||
Displays transaction alerts to indicate success or failure after confirmation. | ||
|
||
```javascript reference | ||
https://github.com/iota-community/Defi-lend-borrow/blob/ee1dd2bd3f94ec594163c153886e4c0457654a5b/lend-borrow-ui/src/components/TransactionsCard/TransactionForm.js#L1-L154 | ||
``` | ||
|
||
:::tip | ||
You can refer this repository for full React UI code : [lend-borrow-ui](https://github.com/iota-community/Defi-lend-borrow/tree/main/lend-borrow-ui) | ||
::: | ||
|
||
### Example usage | ||
|
||
- Connect your Metamask wallet: Click the "Connect Wallet" button on the app to open the below metamask popup: | ||
|
||
![connect metamask](../../../../../../static/icons/iota/defi-lend-borrow-connect-metamask.png "Connect metamask") | ||
![connect metamask](/img/tutorials/defi-lend-borrow/defi-lend-borrow-connect-metamask.png "Connect to MetaMask") | ||
|
||
- View your account balance: See your current token balance. | ||
![accoount balance](../../../../../../static/icons/iota/defi-lend-borrow-account-bal.png "You can view your account SMR balance here") | ||
![accoount balance](/img/tutorials/defi-lend-borrow/defi-lend-borrow-account-bal.png "You can view your account SMR balance here") | ||
- View the Dashboard component: | ||
![dashboard](../../../../../../static/icons/iota/defi-lend-borrow-dashboard.png "Dashboard UI") | ||
![dashboard](/img/tutorials/defi-lend-borrow/defi-lend-borrow-dashboard.png "Dashboard UI") | ||
- In the Dashboard component you can view `total supplied` funds and `total borrowed` funds and the list of all the supported tokens with their details. | ||
|
||
- `TransactionsCard` could be used by clicking any of the token mentioned on the list to `supply`, `borrow`, `repay` or `withdraw` funds. | ||
![transactions card](../../../../../../static/icons/iota/defi-lend-borrow-transaction-card.png "Dashboard UI") | ||
![transactions card](/img/tutorials/defi-lend-borrow/defi-lend-borrow-transaction-card.png "Dashboard UI") | ||
- Example of Supplying tokens below : | ||
- Enter the amount you want to supply and click transact. | ||
- First you will need to approve the underlying token to the contract. | ||
|
||
![approve underlying token](../../../../../../static/icons/iota/defi-lend-borrow-approve.png "Approve underlying token") | ||
![approve underlying token](/img/tutorials/defi-lend-borrow/defi-lend-borrow-approve.png "Approve underlying token") | ||
- And a new metamask popup will be shown to mint the eqvivalent amount of ITokens. | ||
|
||
![supply IToken](../../../../../../static/icons/iota/defi-lend-borrow-mint.png "Supply IToken") | ||
![supply IToken](/img/tutorials/defi-lend-borrow/defi-lend-borrow-mint.png "Supply IToken") | ||
|
||
Similarly you can `borrow`, `repay` or `withdraw` funds. | ||
|
||
|
||
### Component Structure | ||
|
||
- `Context.js`: Defines the global context for web3 and other account data. | ||
- `Components`: Contains below components for the UI : | ||
- `NavigationBar` | ||
- `LendBorrowPlatformDetails` | ||
- `AllAssetsList` | ||
- `TransactionsCard` | ||
- `Tabs` | ||
- `TransactionsForm` | ||
- `AccountDetails` | ||
- `ConnectWallet` | ||
- `TransactionsAlert` | ||
- `Utils`: | ||
- Handles interactions with smart contracts using ethers. | ||
- Handle Js logics to manage the UI of the platform. | ||
|
||
### Conclusion | ||
## Conclusion | ||
|
||
This is the last document of DeFi Lend Borrow tutorial, in which we learn how to setup and use the react application to interact with the contracts we created in Part I. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes