Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poocart/lend721
Ethereum ERC-721 tokens lending platform
https://github.com/poocart/lend721
arweave defi erc-721 ethereum ethereum-contract ethereum-dapp lend721 openzeppelin thegraphprotocol
Last synced: 9 days ago
JSON representation
Ethereum ERC-721 tokens lending platform
- Host: GitHub
- URL: https://github.com/poocart/lend721
- Owner: poocart
- Created: 2020-02-16T03:35:23.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-24T01:47:16.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T19:41:46.488Z (17 days ago)
- Topics: arweave, defi, erc-721, ethereum, ethereum-contract, ethereum-dapp, lend721, openzeppelin, thegraphprotocol
- Language: JavaScript
- Homepage: https://lend721.app
- Size: 3.2 MB
- Stars: 19
- Watchers: 4
- Forks: 17
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ethereum ERC-721 tokens lending platform
![](https://github.com/poocart/lend721/blob/develop/preview.png)
## 💡 Description
LEND721 is Ethereum Smart Contract that allows lending ERC-721 Smart Contracts (NFT)
and gain interest from it. On the other hand it allows to borrow same NFT's that are
set for lending by paying collateral to LEND721 which handles the lend process.Current stage: **beta**.
## 🏹 Deployed client dApps on Netlify
- Mainnet: [https://lend721.app](https://lend721.app)
- Rinkeby: [https://rinkeby.lend721.app](https://rinkeby.lend721.app)## 🏠 Smart Contract addresses across Ethereum networks
- Mainnet: [0xA133541435cAeB964f572132acd8FEAC3Ed1D80B](https://etherscan.io/address/0xA133541435cAeB964f572132acd8FEAC3Ed1D80B)
- Rinkeby: [0x1762fd547d6C286a174dD62b6A6fACFAc064A0A0](https://rinkeby.etherscan.io/address/0x1762fd547d6C286a174dD62b6A6fACFAc064A0A0)```
Note: Smart Contract calls are proxied to main Smart Contract so calls destination is the Proxy Smart Contract itself.
```## ✅ To do
- [x] Client dApp: show lent data
- [x] Client dApp: show borrowed data
- [x] Client dApp borrower: call DAI approve method
- [x] Client dApp borrower: call borrow method
- [x] Client dApp lender: call ERC-721 approve method
- [x] Client dApp lender: call ERC-721 lend set method
- [x] Set duration for lendings
- [x] Deploy Smart Contract to mainnet
- [x] Verify Smart Contract in mainnet Etherscan
- [x] Put lenders addresses with lent tokens somwehere outside of smart contract (UX improvement) – (note: solved with thegraph.com)
- [ ] Show message when collateral was already taken on expired lend
- [ ] Show success or error messages on each transaction
- [ ] Email reminders for borrower or lender
- [ ] Allow edit lend## 🧩 Deploy to The Graph
Run from `.thegraph`:
```
yarn subgraph:prepare
yarn subgraph:codegen
yarn subgraph:deploy
```More info – [thegraph.com/docs/deploy-a-subgraph](https://thegraph.com/docs/deploy-a-subgraph).
## 📐 Deploy dApp on Arweave
Setup [Arweave](https://github.com/ArweaveTeam/arweave-deploy):
```
npm i -g arweave-deploy
arweave key-create ~/arweave-key.json
arweave key-save ~/arweave-key.json
```Get AR tokens from [Arweave team](https://www.arweave.org/get-involved/community) and deploy from `client` by running `yarn deploy`.