Skip to content

dav3yblaz3/cdp-wallet-manager

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

Get your API keys

Go to https://portal.cdp.coinbase.com/ and create an API key if you don't already have one.

Create an encryption key

openssl rand -hex 32

Setup your environment variables

Create a .env file in the root of the project with the following:

CDP_API_KEY_NAME="your-api-key-name"
CDP_API_KEY_SECRET="your-api-key-secret"
ENCRYPTION_KEY="your-encryption-key"
POSTGRES_URL="postgresql://admin:password@localhost:5432/seeds"
NEXT_PUBLIC_CDP_PROJECT_ID="your-cdp-project-id"

Run the Postgres DB

npm run db:up

If you don't see database logs, double check Postgres is installed:

docker run --name test-postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=seeds -e POSTGRES_USER=admin -p 5432:5432 postgres:14

Set up the Prisma schema in the DB

npm install
npm run db:setup

Run the app

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

Deploy CDP Wallet Manager with Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

Desired features

  • Tagging wallets with display name; more generally, metadata.

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.7%
  • CSS 2.9%
  • JavaScript 0.4%