Loading repository data…
Loading repository data…
ShivankK26 / repository
NFT LendSwap is a decentralized NFT lending and borrowing platform built on Solana blockchain. It allows users to lend and borrow NFT assets securely using smart contracts. This repository contains the codebase for NFT LendSwap platform.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
NFT LendSwap is a decentralized NFT lending and borrowing platform built on Solana blockchain. It allows users to lend and borrow NFT assets securely using smart contracts. This repository contains the codebase for NFT LendSwap platform.
git clone https://github.com/ShivankK26/NFT-LendSwap.git
npm install # or yarn install
anchor build
anchor keys list
Anchor.toml file, by using the address generated in the previous step:[programs.devnet]
nft_lend_borrow = "<ADD YOUR ADDRESS HERE>"
lib.rs file by adding the the address generated in step 4 to the declare_id!() macro // code
pub use errors::ErrorCodes;
pub use instructions::*;
pub use states::*;
declare_id!("<YOUR ADDRESS HERE>");
#[program]
pub mod nft_lend_borrow {
// code