Welcome to the Example Lending Protocol
++ This is an example application that lets you lend, borrow, and repay + borrowed loans. +
++ Note: Make sure to install the{" "} + + =nil; wallet + {" "} + to get started. +
+This app is for demonstration purposes only.
+Lend Assets
+Deposit ETH or USDT to borrow
+ +Borrow Assets
++ {isLoadingAmounts + ? "Loading borrowable amount..." + : walletConnected + ? `You can borrow up to ${borrowableAmount} ${selectedToken}` + : "Connect your wallet to see borrowable amount"} +
+ +Repay Loan
++ {isLoadingAmounts + ? "Loading repayable amount..." + : walletConnected + ? `You need to repay ${repayableAmount} ${selectedToken}` + : "Connect your wallet to see repayable amount"} +
+ ++ Exchange Rate: 1 ETH = 2 USDT +
+ {/* Display transaction hash if available */} + {lastTxHash && ( ++ Tx Hash: {lastTxHash} +
+ )} +