MCP Ethers Wallet

  • src
#!/usr/bin/env node import { startServer } from './server.js'; import { config } from 'dotenv'; config(); startServer().catch((error: Error) => { console.error('Failed to start server:', error); process.exit(1); });