Jonnie-Dev / Sharky-Fi-clone-using-Escrow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build A Lending & Borrowing Platform

Based on the Build A Lending & Borrowing Platform module, this walkthrough takes you through the process of creating a platform where users can lend SOL in exchange for NFTs from a specific collection, all facilitated through a secure vault system using Anchor.

Table of Contents

Getting Started

To use this fork, you need to have yarn, Anchor and the Solana cli suite installed on your machine.

It is highly recommended that you start this project from scratch, following along with the tutorial.

To use the fork, follow the steps outlined below:

  1. Clone your forked repo.
git clone https://github.com/<YOUR-USERNAME>/Sharky-Fi-clone-using-Escrow
  1. Change directory into the root of your cloned repo and install missing node packages
yarn install

NOTE: You must use yarn to install the dependencies. If you use a different package manager, you will run into issues minting the NFT.

  1. Build your anchor project.
anchor build
  1. List the project deployment keys and copy the address to a clipboard
anchor keys list
  1. Update your Anchor.toml file, by using the address generated in the previous step.
[programs.devnet]
nft_lend_borrow = "<ADD YOUR ADDRESS HERE>"
  1. Update your lib.rs file by adding the the address generated in step 4 to the declare_id!() macro
    // snip

pub use errors::ErrorCodes;
pub use instructions::*;
pub use states::*;

declare_id!("<PLACE YOUR ADDRESS HERE>");

#[program]
pub mod nft_lend_borrow {
    // snip

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Questions

Did you encounter a challenge following the tutorial or running the fork? Head over to our learning support channel on our Discord or alternatively, raise a ticket.

We are always happy to lend a helping hand

License

All files within this repository are licensed under the MIT License unless explicitly stated otherwise.

100% Open Source software.

© 2023 [Calyptus] - See LICENSE for details.

About


Languages

Language:TypeScript 59.3%Language:Rust 40.7%