Deploy tokens
Create ERC-20 or ERC-721 contracts with a single authenticated POST request.
Control-plane API for ERC-20 and ERC-721 tokens via the Moonwell Factory.
Create an account against the hosted API and authenticate:
# Sign up
curl -X POST https://api-rho-gold-msx2gnbkee.vercel.app/auth/signup \
-H "Content-Type: application/json" \
-d '{"email":"you@example.com","password":"password123"}'Use the returned token as a Bearer header on protected routes:
curl https://api-rho-gold-msx2gnbkee.vercel.app/me \
-H "Authorization: Bearer <token>"See Getting Started for full setup instructions.