An open API service indexing awesome lists of open source software.

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.

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)