{"id":51364908,"url":"https://github.com/soheimam/zora-mini-app","last_synced_at":"2026-07-03T01:17:07.675Z","repository":{"id":289343491,"uuid":"970917201","full_name":"soheimam/zora-mini-app","owner":"soheimam","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-22T19:05:19.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-22T20:23:34.530Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/soheimam.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-04-22T18:22:42.000Z","updated_at":"2025-04-22T18:23:14.000Z","dependencies_parsed_at":"2025-04-22T20:23:43.639Z","dependency_job_id":"31d8e45c-af8a-4edd-a19d-3c07c7b08d1f","html_url":"https://github.com/soheimam/zora-mini-app","commit_stats":null,"previous_names":["soheimam/zora-mini-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/soheimam/zora-mini-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soheimam%2Fzora-mini-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soheimam%2Fzora-mini-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soheimam%2Fzora-mini-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soheimam%2Fzora-mini-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soheimam","download_url":"https://codeload.github.com/soheimam/zora-mini-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soheimam%2Fzora-mini-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35068448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2026-07-03T01:17:06.292Z","updated_at":"2026-07-03T01:17:07.666Z","avatar_url":"https://github.com/soheimam.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MiniKit Template\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 Assocation 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 assocation - 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%2Fsoheimam%2Fzora-mini-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoheimam%2Fzora-mini-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoheimam%2Fzora-mini-app/lists"}