Troubleshooting
Common Issues
Wallet Connection Issues
Ensure you have the wallet extension installed and configured properly
Check if the wallet is connected to the correct Cardano network
Try refreshing the page or reconnecting the wallet
Transaction Errors
Verify you have sufficient ADA for transaction fees
Check wallet UTXOs for conflicts
Ensure correct token amounts are specified
CORS Errors
Configure and use
local-cors-proxy
for API requestsEnsure your config points to the correct proxy URL
Node Version Incompatibility
Error: "Cannot find module 'node:fs'"
Solution: Ensure you're using Node.js v16 or higher
To check your Node version:
node --version
To install/update Node.js:
Dependency Installation Failures
Error: "Failed to install dependencies"
Solution: Try clearing npm/yarn cache:
If issues persist, try:
For network issues:
Port Already in Use
Error: "Port 3000 is already in use"
Solution: Either kill the process using port 3000 or use a different port:
To find and kill the process:
TypeScript Errors
Error: "Type 'X' is not assignable to type 'Y'"
Solution: Check type definitions in
src/types
directoryRun type checking:
npm run type-check
Common fixes:
Build Failures
Error: "Failed to compile"
Common causes and solutions:
Syntax errors: Check for missing semicolons, brackets
Missing dependencies: Run
npm install
oryarn install
Type errors: Run
npm run type-check
Memory issues: Increase Node.js memory limit:
Last updated