{"id":24631008,"url":"https://github.com/jerga99/sui-voting-app","last_synced_at":"2026-04-30T22:37:42.667Z","repository":{"id":273573025,"uuid":"919164407","full_name":"Jerga99/sui-voting-app","owner":"Jerga99","description":"Hands-on Sui dApp development with Move and React. Create a voting system app. Learn smart contracts coding.","archived":false,"fork":false,"pushed_at":"2025-01-30T14:37:50.000Z","size":99,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T04:02:01.044Z","etag":null,"topics":["move","programming","reactjs","sui"],"latest_commit_sha":null,"homepage":"https://academy.eincode.com/courses/sui-dapps-with-move-react-build-real-projects","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/Jerga99.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,"zenodo":null}},"created_at":"2025-01-19T21:22:17.000Z","updated_at":"2025-03-21T21:26:13.000Z","dependencies_parsed_at":"2025-01-21T18:30:43.574Z","dependency_job_id":"0768710f-38b7-43a7-91bc-246b93da9937","html_url":"https://github.com/Jerga99/sui-voting-app","commit_stats":null,"previous_names":["jerga99/sui-voting-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Jerga99/sui-voting-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerga99%2Fsui-voting-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerga99%2Fsui-voting-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerga99%2Fsui-voting-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerga99%2Fsui-voting-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jerga99","download_url":"https://codeload.github.com/Jerga99/sui-voting-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerga99%2Fsui-voting-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32479448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["move","programming","reactjs","sui"],"created_at":"2025-01-25T07:14:08.718Z","updated_at":"2026-04-30T22:37:37.658Z","avatar_url":"https://github.com/Jerga99.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project Setup Instructions\n\nWelcome to the project repository for the course **\"Sui dApps with Move \u0026 React - Build Real Projects\"**.\n\n## About the Course\n\n**Course Title:** Sui dApps with Move \u0026 React - Build Real Projects  \n**Description:** Hands-on Sui dApp development with Move and React. Create a voting system and a meme coin. Learn smart contracts coding.\n\nTo get detailed instructions and learn about SUI and Move, enroll in the course: [Sui dApps with Move \u0026 React - Build Real Projects](https://academy.eincode.com/courses/sui-dapps-with-move-react-build-real-projects)\n\n---\n\n## Project Structure\n\n- **frontend**: Contains a React JS application built using Vite.\n- **contracts**: Contains the Move language smart contracts.\n\n---\n\n## Prerequisites\n\n1. **SUI CLI Setup:**  \n   - Follow the official SUI documentation to install the CLI and create an account: [SUI Setup Instructions](https://docs.sui.io/guides/developer/getting-started/sui-install)\n\n2. **Node.js \u0026 pnpm:**  \n   Ensure you have Node.js installed. Then install pnpm globally:\n\n   ```bash\n   npm install -g pnpm\n   ```\n\n---\n\n## Step-by-Step Setup\n\n### 1. Publish the Smart Contract\n\nNavigate to the `contracts` folder and publish the contract using the SUI CLI:\n\n```bash\nsui client publish\n```\n\nThis will provide you with the package ID and object IDs. Make note of these IDs as they are required in the frontend configuration.\n\n### 2. Configure the Frontend\n\n1. Navigate to the `frontend/src/constants.ts` file.\n2. Replace the placeholder values with your published contract and object IDs:\n\n```typescript\nexport const DEVNET_PACKAGE_ID = \"\u003cyour-devnet-package-id\u003e\";\nexport const TESTNET_PACKAGE_ID = \"\u003cyour-testnet-package-id\u003e\";\nexport const MAINNET_PACKAGE_ID = \"\u003cyour-mainnet-package-id\u003e\";\n\nexport const DEVNET_DASHBOARD_ID = \"\u003cyour-devnet-dashboard-id\u003e\";\nexport const TESTNET_DASHBOARD_ID = \"\u003cyour-testnet-dashboard-id\u003e\";\nexport const MAINNET_DASHBOARD_ID = \"\u003cyour-mainnet-dashboard-id\u003e\";\n```\n\n### 3. Install and Run the Frontend\n\n1. Navigate to the `frontend` folder:\n\n   ```bash\n   cd frontend\n   ```\n\n2. Install the dependencies:\n\n   ```bash\n   pnpm install\n   ```\n\n3. Start the development server:\n\n   ```bash\n   pnpm dev\n   ```\n\n---\n\n## Additional Resources\n\n- Official SUI Documentation: [https://docs.sui.io](https://docs.sui.io)\n- Course Link: [https://academy.eincode.com/courses/sui-dapps-with-move-react-build-real-projects](https://academy.eincode.com/courses/sui-dapps-with-move-react-build-real-projects)\n\nHappy coding! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerga99%2Fsui-voting-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjerga99%2Fsui-voting-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerga99%2Fsui-voting-app/lists"}