{"id":49727155,"url":"https://github.com/slycompiler/solana-review-dapp","last_synced_at":"2026-05-09T05:10:55.629Z","repository":{"id":333472707,"uuid":"815688368","full_name":"slycompiler/solana-review-dapp","owner":"slycompiler","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-15T20:56:55.000Z","size":166,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-30T21:34:28.866Z","etag":null,"topics":["full-stack","rust","solana","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/slycompiler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-15T20:56:29.000Z","updated_at":"2024-09-10T13:27:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/slycompiler/solana-review-dapp","commit_stats":null,"previous_names":["slycompiler/solana-review-dapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/slycompiler/solana-review-dapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2Fsolana-review-dapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2Fsolana-review-dapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2Fsolana-review-dapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2Fsolana-review-dapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slycompiler","download_url":"https://codeload.github.com/slycompiler/solana-review-dapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2Fsolana-review-dapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807885,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["full-stack","rust","solana","typescript"],"created_at":"2026-05-09T05:10:54.841Z","updated_at":"2026-05-09T05:10:55.613Z","avatar_url":"https://github.com/slycompiler.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Full-stack Solana DApp - README\n\nWelcome to the **Full-stack Solana DApp** project repository! This decentralized application (DApp) leverages blockchain technology to implement a movie review platform on the Solana network. Participants can rate a movie by sharing its title, description and the location information.\n\n## Table of Contents\n\n- [Features](#features)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [Programs](#programs)\n- [Testing](#testing)\n- [Frontend](#frontend)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- Publish movie review\n- Update an existing movie review\n- Security-related implementations such as rating validations and checking the PDA accounts\n\n## Getting Started\n\n/program folder contains all the files that needed to build and deploy our Solana program to Solana Devnet.\n/frontend folder contains all the files and folders for building and serving our frontend application.\n\n### Prerequisites\n\n1. NPM\n2. Program ID given from the Solana Playground after deploying the program (can be found from the Solana Explorer by using the used wallet address.)\n\n### Installation\n\n#### Solana Program Deployment\n\n1. Navigate to [soldev](https://beta.solpg.io/)\n2. Import the files in the program folder to the playground compiler\n3. Make sure you're connected to Devnet with a wallet that has a SOL balance for the deployment (go to [faucet](https://faucet.solana.com/) for free SOL airdrop)\n4. Navigate to Build \u0026 Deploy tab to build and deploy your program\n5. After a successful deployment, copy the Program ID from the Build \u0026 Deploy page\n\n#### Front-end Build\n\n1. Clone the repository:\n\n```bash\n  git clone https://github.com/mustafademiray/restaurant_review_program.git\n```\n\n2. Navigate to the frontend directory:\n\n```bash\n  cd frontend\n```\n\n3. Install required npm packages:\n\n```bash\n npm install\n```\n\n## Usage\n\n1. Navigate to /frontend/src/pages/index.tsx and replace the Program ID we have got from the Playground.\n\n2. Start the development server:\n\n```bash\n npm start\n```\n\n3. Open your web browser and navigate to `http://localhost:3000` to access the DApp.\n\n4. Connect your Solana wallet (e.g., Phantom, Backpack) to the DApp.\n\n5. Enter the relevant information for submitting a movie review.\n\n## Programs\n\nThe files in the ./program directory contains the following three files:\n\n- `instruction.rs`: Contains an implementation of the program logic to select the correct instruction.\n- `state.rs`: Helps us accessing the data types and data itself on the Solana account, basically keeps the current state.\n- `lib.rs`: Configures the entrypoint of our program and processes the returned instruction.\n\n## Contributing\n\nContributions to this project are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a new branch for your feature/bug fix.\n3. Make changes and test thoroughly.\n4. Commit with clear and concise messages.\n5. Push changes to your fork.\n6. Submit a pull request describing your changes.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslycompiler%2Fsolana-review-dapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslycompiler%2Fsolana-review-dapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslycompiler%2Fsolana-review-dapp/lists"}