The project aims to create a decentralized application for managing records on a blockchain network. The dApp enables users to add and search records securely and transparently on the blockchain. The system is designed to provide an immutable and tamper-proof ledger to maintain data integrity and prevent unauthorized changes.
Before deploying and using the application, ensure you have the following:
- Node.js and npm installed on your local machine.
- Truffle framework installed for contract compilation and deployment.
- Clone the repository:
git clone https://github.com/your-username/your-repo.git
cd your-repo
- Install the project dependencies using npm:
npm install
- Compile Smart Contracts: Before deploying the smart contracts, compile them using Truffle:
truffle compile
2.Deploy Contracts: Deploy the compiled smart contracts to the desired blockchain network:
truffle migrate --network <network-name>
- Start the Application: Finally, start the application on your local machine:
npm start