{"id":27261335,"url":"https://github.com/skullcrawler/fyp_project_web3","last_synced_at":"2026-04-04T08:42:13.127Z","repository":{"id":287020324,"uuid":"791445469","full_name":"SkullCrawler/fyp_project_web3","owner":"SkullCrawler","description":"BCrypty- A FullStack D-App FYP Project","archived":false,"fork":false,"pushed_at":"2025-04-09T14:30:27.000Z","size":36793,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T15:41:07.428Z","etag":null,"topics":["chai","cors","ethereum","express","hardhat","material-ui","metamask","mongodb","nodemon","react","solidity"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SkullCrawler.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}},"created_at":"2024-04-24T18:23:30.000Z","updated_at":"2025-04-09T14:30:34.000Z","dependencies_parsed_at":"2025-04-09T15:52:15.703Z","dependency_job_id":null,"html_url":"https://github.com/SkullCrawler/fyp_project_web3","commit_stats":null,"previous_names":["skullcrawler/fyp_project_web3"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkullCrawler%2Ffyp_project_web3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkullCrawler%2Ffyp_project_web3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkullCrawler%2Ffyp_project_web3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkullCrawler%2Ffyp_project_web3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SkullCrawler","download_url":"https://codeload.github.com/SkullCrawler/fyp_project_web3/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248347233,"owners_count":21088611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["chai","cors","ethereum","express","hardhat","material-ui","metamask","mongodb","nodemon","react","solidity"],"created_at":"2025-04-11T05:29:34.190Z","updated_at":"2025-12-30T20:10:53.781Z","avatar_url":"https://github.com/SkullCrawler.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BCrypty - A FullStack D-App FYP Project\n\nBCrypty is a decentralized application (D-App) that showcases the integration of Ethereum-based smart contracts with a modern web development stack. This project leverages React, Vite, Solidity, and Material-UI to create a seamless user experience for blockchain-based operations.\n\n## Table of Contents\n\n- [Features](#features)\n- [Tech Stack](#tech-stack)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Smart Contract Details](#smart-contract-details)\n- [Testing](#testing)\n- [License](#license)\n\n---\n\n## Features\n\n- **Blockchain Integration**: Ethereum-based smart contracts for secure and transparent operations.\n- **Wallet Connectivity**: Integrated MetaMask API for seamless wallet connection.\n- **Modern Frontend**: Built with React and styled using Material-UI.\n- **Developer-Friendly**: Vite for fast builds and Hot Module Replacement (HMR).\n- **Local Development**: Hardhat Node for deploying and testing smart contracts locally.\n- **Robust Testing**: Chai assertion library for comprehensive testing of smart contracts.\n\n---\n\n## Tech Stack\n\n### Frontend\n- **React** with **Vite**: A fast frontend framework and build tool.\n- **Material-UI**: For a sleek, responsive, and modern UI design.\n\n### Backend\n- **Solidity**: Ethereum-based smart contracts.\n- **Hardhat**: Local Ethereum node for development and testing.\n\n### Blockchain\n- **Ethereum**: Blockchain for executing smart contracts.\n\n### Testing\n- **Chai**: Assertion library for smart contract testing.\n- **Hardhat Testing Suite**: For local contract deployment and testing.\n\n---\n\n## Installation\n\nTo set up and run the project locally, follow these steps:\n\n### Prerequisites\n- Node.js (v14 or higher)\n- npm or yarn\n- MetaMask browser extension\n- Hardhat CLI\n\n### Steps\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/SkullCrawler/fyp_project_web3.git\n   cd fyp_project_web3\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   npm install\n   ```\n\n3. **Set up Hardhat for local blockchain**:\n   ```bash\n   npx hardhat node\n   ```\n\n4. **Compile and deploy smart contracts**: Open a new terminal and run:\n   ```bash\n   npx hardhat compile\n   npx hardhat run scripts/deploy.js --network localhost\n   ```\n\n5. **Start the development server**:\n   ```bash\n   npm run dev\n   ```\n\n6. **Connect to MetaMask**:\n   * Add the local Hardhat network to MetaMask.\n   * Use the private keys from Hardhat Node to import accounts into MetaMask.\n\n## Usage\n\n1. Launch the application in your browser (default: http://localhost:5173).\n2. Connect your MetaMask wallet.\n3. Interact with the D-App features powered by Ethereum smart contracts.\n\n## Smart Contract Details\n\nThe smart contracts are written in Solidity and deployed on a local Hardhat node for testing. Key features include:\n* **Secure Transactions**: Ensure integrity and transparency.\n* **Modular Design**: Easy to extend and integrate additional functionality.\n\nDeployment contracts are deployed using Hardhat scripts located in the `scripts/` directory.\n\n## Testing\n\n1. Run the Hardhat Node:\n   ```bash\n   npx hardhat node\n   ```\n\n2. Execute test cases:\n   ```bash\n   npx hardhat test\n   ```\n\n3. Testing Framework:\n   * **Chai**: Used for assertions.\n   * **Mocha**: Run the test cases.\n\n## License\n\nThis project is licensed under the MIT License. See the LICENSE file for more details.\n\n## Contributing\n\nContributions are welcome! Please fork this repository and submit a pull request for review.\n\n## Acknowledgments\n\n* React\n* Hardhat\n* Material-UI\n* MetaMask\n* Ethereum\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskullcrawler%2Ffyp_project_web3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskullcrawler%2Ffyp_project_web3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskullcrawler%2Ffyp_project_web3/lists"}