https://github.com/interest-protocol/money-market
A money market protocol with a built-in stable coin.
https://github.com/interest-protocol/money-market
Last synced: 4 months ago
JSON representation
A money market protocol with a built-in stable coin.
- Host: GitHub
- URL: https://github.com/interest-protocol/money-market
- Owner: interest-protocol
- Created: 2023-06-16T14:37:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-21T11:35:13.000Z (almost 3 years ago)
- Last Synced: 2025-07-12T07:22:57.822Z (11 months ago)
- Language: Move
- Size: 1.09 MB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Interest Protocol](https://sui.interestprotocol.com/)

IPX Money Market modules on the [Sui](https://sui.io/) Network.
## Quick start
Make sure you have the latest version of the Sui binaries installed on your machine
[Instructions here](https://docs.sui.io/devnet/build/install)
### Run tests
**To run the tests on the dex directory**
```bash
cd money-market
sui move test
```
### Publish
```bash
cd money-market
sui client publish --gas-budget 500000000
```
## Repo Structure
- **library:** It contains utility functions that are used by other modules
- **money-market:** It contains the logic for users to borrow and lend coins
- **oracle** It provides coin prices from Pyth Network and Switchboard
- **sui-dollar:** The stable coin of Interest Protocol
### Money Market
The Interest Protocol Lending Protocol allows users to borrow and lend cryptocurrencies.
The lending protocol providers the following core functions
- **deposit:** it allows users to put collateral to start earning interest rate + rewards
- **withdraw:** it allows users to remove their collateral
- **borrow:** it allows users to borrow crypto using their deposits as collateral. This allows them to open short/long positions
- **repay:** it allows users to repay their loans
### SUID Coin
It is a stablecoin created by the lending module. It is pegged to he USD dollars. Users pay a constant interest rate to borrow it.
## Live
Go to [here (Sui Interest Protocol)](https://sui.interestprotocol.com/) and see what we have prepared for you
## Contact Us
- Twitter: [@interest_dinero](https://twitter.com/interest_dinero)
- Discord: https://discord.gg/interestprotocol
- Telegram: https://t.me/interestprotocol
- Email: [contact@interestprotocol.com](mailto:contact@interestprotocol.com)
- Medium: [@interestprotocol](https://medium.com/@interestprotocol)