This repo contains:
backend: Express.js API servercontracts: Hardhat Solidity projectfrontend: React app (Vite)
Install dependencies per package and run the dev servers.
cd backend
npm install
npm run dev
cd contracts
npm install
npm run compile
npm run test
Deploy example contract (set RPC/keys in .env):
npm run deploy
cd frontend
npm install
npm run dev