{"id":28174576,"url":"https://github.com/dgca/test-nft-mint","last_synced_at":"2025-05-15T22:18:23.817Z","repository":{"id":292046012,"uuid":"979631400","full_name":"dgca/test-nft-mint","owner":"dgca","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-07T21:07:23.000Z","size":86,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T22:20:23.416Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://test-nft-mint-coral.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dgca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-07T20:23:42.000Z","updated_at":"2025-05-07T21:08:54.000Z","dependencies_parsed_at":"2025-05-07T22:20:35.508Z","dependency_job_id":"dc636e41-faba-43dd-87ba-56ef8cdba6ba","html_url":"https://github.com/dgca/test-nft-mint","commit_stats":null,"previous_names":["dgca/test-nft-mint"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgca%2Ftest-nft-mint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgca%2Ftest-nft-mint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgca%2Ftest-nft-mint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgca%2Ftest-nft-mint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dgca","download_url":"https://codeload.github.com/dgca/test-nft-mint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254430298,"owners_count":22069909,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-15T22:16:44.958Z","updated_at":"2025-05-15T22:18:23.811Z","avatar_url":"https://github.com/dgca.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Demo to test NFTMintCard in Mini Apps\n\nLink to mini app: https://warpcast.com/miniapps/kvXSOjHsK4Wy/test-nft-mint\n\n---\n\nThis is a [Next.js](https://nextjs.org) project bootstrapped with [`create-onchain --mini`](), configured with:\n\n- [MiniKit](https://docs.base.org/builderkits/minikit/overview)\n- [OnchainKit](https://www.base.org/builders/onchainkit)\n- [Tailwind CSS](https://tailwindcss.com)\n- [Next.js](https://nextjs.org/docs)\n\n## Getting Started\n\n1. Install dependencies:\n```bash\nnpm install\n# or\nyarn install\n# or\npnpm install\n# or\nbun install\n```\n\n2. Verify environment variables, these will be set up by the `npx create-onchain --mini` command:\n\nYou can regenerate the FARCASTER Account Association environment variables by running `npx create-onchain --manifest` in your project directory.\n\nThe environment variables enable the following features:\n\n- Frame metadata - Sets up the Frame Embed that will be shown when you cast your frame\n- Account association - Allows users to add your frame to their account, enables notifications\n- Redis API keys - Enable Webhooks and background notifications for your application by storing users notification details\n\n```bash\n# Required for Frame metadata\nNEXT_PUBLIC_URL=\nNEXT_PUBLIC_VERSION=\nNEXT_PUBLIC_ONCHAINKIT_PROJECT_NAME=\nNEXT_PUBLIC_ICON_URL=\nNEXT_PUBLIC_IMAGE_URL=\nNEXT_PUBLIC_SPLASH_IMAGE_URL=\nNEXT_PUBLIC_SPLASH_BACKGROUND_COLOR=\n\n# Required to allow users to add your frame\nFARCASTER_HEADER=\nFARCASTER_PAYLOAD=\nFARCASTER_SIGNATURE=\n\n# Required for webhooks and background notifications\nREDIS_URL=\nREDIS_TOKEN=\n```\n\n3. Start the development server:\n```bash\nnpm run dev\n```\n\n## Template Features\n\n### Frame Configuration\n- `.well-known/farcaster.json` endpoint configured for Frame metadata and account association\n- Frame metadata automatically added to page headers in `layout.tsx`\n\n### Background Notifications\n- Redis-backed notification system using Upstash\n- Ready-to-use notification endpoints in `api/notify` and `api/webhook`\n- Notification client utilities in `lib/notification-client.ts`\n\n### Theming\n- Custom theme defined in `theme.css` with OnchainKit variables\n- Pixel font integration with Pixelify Sans\n- Dark/light mode support through OnchainKit\n\n### MiniKit Provider\nThe app is wrapped with `MiniKitProvider` in `providers.tsx`, configured with:\n- OnchainKit integration\n- Access to Frames context\n- Sets up Wagmi Connectors\n- Sets up Frame SDK listeners\n- Applies Safe Area Insets\n\n## Customization\n\nTo get started building your own frame, follow these steps:\n\n1. Remove the DemoComponents:\n   - Delete `components/DemoComponents.tsx`\n   - Remove demo-related imports from `page.tsx`\n\n2. Start building your Frame:\n   - Modify `page.tsx` to create your Frame UI\n   - Update theme variables in `theme.css`\n   - Adjust MiniKit configuration in `providers.tsx`\n\n3. Add your frame to your account:\n   - Cast your frame to see it in action\n   - Share your frame with others to start building your community\n\n## Learn More\n\n- [MiniKit Documentation](https://docs.base.org/builderkits/minikit/overview)\n- [OnchainKit Documentation](https://docs.base.org/builderkits/onchainkit/getting-started)\n- [Next.js Documentation](https://nextjs.org/docs)\n- [Tailwind CSS Documentation](https://tailwindcss.com/docs)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgca%2Ftest-nft-mint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgca%2Ftest-nft-mint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgca%2Ftest-nft-mint/lists"}