{"id":24018983,"url":"https://github.com/booze33/sharky-fi-clone-using-escrow","last_synced_at":"2026-06-18T07:32:11.386Z","repository":{"id":248191829,"uuid":"827557767","full_name":"Booze33/Sharky-Fi-clone-using-Escrow","owner":"Booze33","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-12T23:27:45.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T22:16:47.330Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Booze33.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-11T22:25:25.000Z","updated_at":"2024-07-12T23:27:49.000Z","dependencies_parsed_at":"2024-07-13T00:42:07.598Z","dependency_job_id":null,"html_url":"https://github.com/Booze33/Sharky-Fi-clone-using-Escrow","commit_stats":null,"previous_names":["booze33/sharky-fi-clone-using-escrow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Booze33/Sharky-Fi-clone-using-Escrow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Booze33%2FSharky-Fi-clone-using-Escrow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Booze33%2FSharky-Fi-clone-using-Escrow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Booze33%2FSharky-Fi-clone-using-Escrow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Booze33%2FSharky-Fi-clone-using-Escrow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Booze33","download_url":"https://codeload.github.com/Booze33/Sharky-Fi-clone-using-Escrow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Booze33%2FSharky-Fi-clone-using-Escrow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34481313,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-08T10:49:45.721Z","updated_at":"2026-06-18T07:32:11.364Z","avatar_url":"https://github.com/Booze33.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build A Lending \u0026 Borrowing Platform\n\nBased on the [Build A Lending \u0026 Borrowing Platform](https://calyptus.co/courses/9-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](https://www.anchor-lang.com/).\n\n## Table of Contents\n- [Getting Started](#getting-started)\n- [Contributing](#contributing)\n- [Questions](#questions)\n- [License](#license)\n\n## Getting Started\n\nTo use this fork, you need to have [yarn](https://yarnpkg.com/getting-started/install), [Anchor](https://www.anchor-lang.com/docs/installation) and the [Solana cli suite](https://solana.com/developers/guides/getstarted/setup-local-development) installed on your machine. \n\nIt is highly recommended that you start this project from scratch, following along with the tutorial. \n\nTo use the fork, follow the steps outlined below: \n\n1. Clone your forked repo.\n\n```bash\ngit clone https://github.com/\u003cYOUR-USERNAME\u003e/Sharky-Fi-clone-using-Escrow\n```\n\n2. Change directory into the root of your cloned repo and install missing node packages\n\n```bash\nyarn install\n```\n\n**NOTE:** You must use yarn to install the dependencies. If you use a different package manager, you will run into issues minting the NFT.\n\n3. Build your anchor project.\n\n```bash\nanchor build\n```\n\n4. List the project deployment keys and copy the address to a clipboard\n\n```bash\nanchor keys list\n```\n\n5. Update your [`Anchor.toml`](Anchor.toml) file, by using the address generated in the previous step. \n\n```toml\n[programs.devnet]\nnft_lend_borrow = \"\u003cADD YOUR ADDRESS HERE\u003e\"\n```\n\n6. Update your [`lib.rs`](programs/nft-lend-borrow/src/lib.rs) file by adding the the address generated in step 4 to the `declare_id!()` macro\n\n```rust\n    // snip\n\npub use errors::ErrorCodes;\npub use instructions::*;\npub use states::*;\n\ndeclare_id!(\"\u003cPLACE YOUR ADDRESS HERE\u003e\");\n\n#[program]\npub mod nft_lend_borrow {\n    // snip\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## Questions\n\nDid you encounter a challenge following the tutorial or running the fork? \nHead over to our [learning support](https://discord.com/channels/1130457754826461216/1132978998155165806) channel on our [Discord](https://discord.gg/38KftAhW) or alternatively, raise a ticket. \n\nWe are always happy to lend a helping hand\n\n## License\n\nAll files within this repository are licensed under the MIT License unless explicitly stated otherwise.\n\n100% Open Source software.\n\n© 2023 [Calyptus] - See [LICENSE](https://opensource.org/license/mit/) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooze33%2Fsharky-fi-clone-using-escrow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbooze33%2Fsharky-fi-clone-using-escrow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooze33%2Fsharky-fi-clone-using-escrow/lists"}