⚡️ StarkStorm is the P2P lending version of Stormbit on Starknet ⚡️
This is a peer-to-peer lending platform developed on Starknet. It allows borrowers to request loans and multiple lenders to fund the loans by specifying the amount they want to contribute.
StarkStorm, a product of Stormbit on the Starknet blockchain, addresses the need for a trust-based, modular, and highly customizable lending platform. StarkStorm offers decentralized and efficient P2P lending supported by robust off-chain data aggregation, targeting financial inclusion and offering better APYs than traditional banking systems.
- Enable users to register on the platform with their desired name
- Only registered users can use the platform
- Borrowers can request a loan by specifying the token address, amount, interest, and deadline for allocation
- Lenders can view a list of loans and choose which to fund based on their preferences
- Funds are transferred directly to the borrower
- The platform does not restrict who can repay the loan; it can be the borrower or another user
- Repayment funds are automatically transferred back to lenders
Before you begin, you need to install the following tools:
- Node (>= v18.17)
- Yarn (v1 or v2+)
- Git
To ensure the proper functioning of scaffold-stark, your local Scarb
version must be 2.5.4
. To accomplish this, first check your local Scarb version:
scarb --version
If your local Scarb version is not 2.5.4
, you need to install it.
Scarb Installation Process
To install Scarb, please refer to the installation instructions. We strongly recommend that you install Scarb via asdf, a CLI tool that can manage multiple language runtime versions on a per-project basis. This will ensure that the version of Scarb you use to work on a project always matches the one defined in the project settings, avoiding problems related to version mismatches.
Please refer to the asdf documentation to install all prerequisites.
Once you have asdf
installed locally, you can download Scarb plugin with the following command:
asdf plugin add scarb
This will allow you to download specific versions. You can choose the same version as the Dojo's Cairo version, for example, 2.5.4, with the following command:
asdf install scarb 2.5.4
and set a global version:
asdf global scarb 2.5.4
Otherwise, you can simply run the following command in your terminal, and follow the onscreen instructions. This
will install the version 2.5.4
of Scarb.
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh -s -- -v 2.5.4
To ensure the proper functioning of the tests on scaffold-stark, your Starknet Foundry version must be 0.23.0. To accomplish this, first check your Starknet Foundry version:
snforge --version
If your Starknet Foundry version is not 0.23.0
, you need to install it.
- Scarb - v2.5.4
- Snforge - v0.23
- Cairo - v2.5.4
- Rpc - v0.5.1
To get started, follow the steps below:
- Clone this repo and install dependencies
git clone https://github.com/bowbowzai/starkhack-p2p-lending.git
cd starkhack-p2p-lending
git clone https://github.com/0xSpaceShard/starknet-devnet-rs -b json-rpc-v0.5.1 packages/snfoundry/local-devnet
yarn install
- Run a local network in the first terminal.
yarn chain
This command starts a local Starknet network using Devnet. The network runs on your local machine and can be used for testing and development. You can customize the network configuration in scaffold.config.ts
for your nextjs app.
- On a second terminal, deploy the sample contract:
yarn deploy --network {NETWORK_NAME} // when NETWORK_NAME is not specified, it defaults to "devnet"
Note: To use sepolia tesnet, you have to set {NETWORK_NAME} to sepolia
.
This command deploys a sample smart contract to the local network. The contract is located in packages/snfoundry/contracts/src
. The yarn deploy
command uses the deploy script located in packages/snfoundry/scripts-ts/deploy.ts
to deploy the contract to the network.
- On a third terminal, start your NextJS app:
yarn start
Visit your app on: http://localhost:3000
. You can interact with your smart contract using the Debug Contracts
page. You can tweak the app config in packages/nextjs/scaffold.config.ts
.