@coinbase/create-cdp-app 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/README.md +8 -1
  2. package/dist/index.js +10 -8
  3. package/dist/index.js.map +1 -1
  4. package/package.json +1 -1
  5. package/template-nextjs/README.md +85 -0
  6. package/template-nextjs/_gitignore +45 -0
  7. package/template-nextjs/env.example +3 -0
  8. package/template-nextjs/eslint.config.mjs +16 -0
  9. package/template-nextjs/next-env.d.ts +5 -0
  10. package/template-nextjs/next.config.ts +7 -0
  11. package/template-nextjs/package.json +28 -0
  12. package/template-nextjs/public/logo.svg +5 -0
  13. package/template-nextjs/src/app/globals.css +306 -0
  14. package/template-nextjs/src/app/icon.svg +5 -0
  15. package/template-nextjs/src/app/layout.tsx +22 -0
  16. package/template-nextjs/src/app/page.tsx +16 -0
  17. package/template-nextjs/src/components/ClientApp.tsx +27 -0
  18. package/template-nextjs/src/components/Header.tsx +61 -0
  19. package/template-nextjs/src/components/Icons.tsx +68 -0
  20. package/template-nextjs/src/components/Loading.tsx +15 -0
  21. package/template-nextjs/src/components/Providers.tsx +33 -0
  22. package/template-nextjs/src/components/SignInScreen.tsx +17 -0
  23. package/template-nextjs/src/components/SignedInScreen.tsx +64 -0
  24. package/template-nextjs/src/components/Transaction.tsx +128 -0
  25. package/template-nextjs/src/components/UserBalance.tsx +42 -0
  26. package/template-nextjs/tsconfig.json +27 -0
  27. package/{template-react-components → template-react}/README.md +13 -6
  28. package/{template-react-components → template-react}/index.html +1 -1
  29. package/template-react/public/eth.svg +25 -0
  30. package/template-react/public/logo.svg +5 -0
  31. package/{template-react-components → template-react}/src/Header.tsx +1 -1
  32. package/template-react/src/config.ts +9 -0
  33. package/{template-react-components → template-react}/src/main.tsx +2 -2
  34. package/template-react/src/theme.ts +32 -0
  35. package/template-react-components/public/vite.svg +0 -1
  36. package/template-react-components/src/config.ts +0 -3
  37. /package/{template-react-components → template-nextjs}/public/eth.svg +0 -0
  38. /package/{template-react-components/src → template-nextjs/src/components}/theme.ts +0 -0
  39. /package/{template-react-components → template-react}/_gitignore +0 -0
  40. /package/{template-react-components → template-react}/env.example +0 -0
  41. /package/{template-react-components → template-react}/eslint.config.js +0 -0
  42. /package/{template-react-components → template-react}/package.json +0 -0
  43. /package/{template-react-components → template-react}/src/App.tsx +0 -0
  44. /package/{template-react-components → template-react}/src/Icons.tsx +0 -0
  45. /package/{template-react-components → template-react}/src/Loading.tsx +0 -0
  46. /package/{template-react-components → template-react}/src/SignInScreen.tsx +0 -0
  47. /package/{template-react-components → template-react}/src/SignedInScreen.tsx +0 -0
  48. /package/{template-react-components → template-react}/src/Transaction.tsx +0 -0
  49. /package/{template-react-components → template-react}/src/UserBalance.tsx +0 -0
  50. /package/{template-react-components → template-react}/src/index.css +0 -0
  51. /package/{template-react-components → template-react}/src/vite-env.d.ts +0 -0
  52. /package/{template-react-components → template-react}/tsconfig.app.json +0 -0
  53. /package/{template-react-components → template-react}/tsconfig.json +0 -0
  54. /package/{template-react-components → template-react}/tsconfig.node.json +0 -0
  55. /package/{template-react-components → template-react}/vite.config.ts +0 -0