This starter app provides a minimal front-end (plain HTML/CSS/JS) and a backend Express API that performs static on-chain checks for token contracts on PulseChain.
Logo and theme:
- Uses the uploaded logo image as the primary logo and color palette.
Environment:
- Default RPC_URL is set to: https://rpc.pulsechain.com
- You can override by setting the RPC_URL environment variable.
Files:
- backend/index.js -> main server
- backend/package.json
- public/index.html -> frontend UI
- public/style.css
- public/app.js
- public/logo.png -> your uploaded logo
Run locally:
- cd backend
- npm install
- export RPC_URL=https://rpc.pulsechain.com
- npm start
- Open http://localhost:3000
Deploy:
- Deploy the whole project folder to Railway or Render. Railway will detect Node and run npm install in backend.
- Make sure RPC_URL is set in Railway variables.
Next steps:
- Add fork-based simulation for honeypot detection (requires fork-capable RPC)
- Integrate holders chart embeds (PulseScan / DexScreener) if desired