{"id":28736529,"url":"https://github.com/functionland/claim-ui","last_synced_at":"2025-10-29T16:21:43.960Z","repository":{"id":277932271,"uuid":"921441682","full_name":"functionland/claim-ui","owner":"functionland","description":"This is the UI to claim tokens from Distribution contract","archived":false,"fork":false,"pushed_at":"2025-06-09T15:19:11.000Z","size":448,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-09T16:26:01.949Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://claim-ui.fula.network","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/functionland.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-01-24T00:28:48.000Z","updated_at":"2025-06-09T15:19:15.000Z","dependencies_parsed_at":"2025-04-26T08:19:55.812Z","dependency_job_id":"0b47490b-4c5d-4679-a542-60a32335f00c","html_url":"https://github.com/functionland/claim-ui","commit_stats":null,"previous_names":["functionland/claim-ui"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/functionland/claim-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/functionland%2Fclaim-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/functionland%2Fclaim-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/functionland%2Fclaim-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/functionland%2Fclaim-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/functionland","download_url":"https://codeload.github.com/functionland/claim-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/functionland%2Fclaim-ui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260082766,"owners_count":22956341,"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-06-16T01:40:21.660Z","updated_at":"2025-10-29T16:21:43.906Z","avatar_url":"https://github.com/functionland.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.\n\nThis project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n\n\n## Install\n\n```\nsudo bash ./install.sh --domain x.com\n```\n\n\n## Structure\n\nclaim-ui/\n├── src/\n│   ├── app/\n│   │   ├── layout.tsx\n│   │   ├── page.tsx\n│   │   ├── providers.tsx\n│   │   └── loading.tsx\n│   ├── components/\n│   │   ├── layout/\n│   │   │   ├── Header.tsx\n│   │   │   ├── Footer.tsx\n│   │   │   └── Navigation.tsx\n│   │   ├── vesting/\n│   │   │   ├── VestingDashboard.tsx\n│   │   │   ├── VestingInfo.tsx\n│   │   │   ├── ClaimButton.tsx\n│   │   │   └── VestingSchedule.tsx\n│   │   └── common/\n│   │       ├── ConnectButton.tsx\n│   │       ├── LoadingSpinner.tsx\n│   │       └── ErrorBoundary.tsx\n│   ├── hooks/\n│   │   ├── useVestingContract.ts\n│   │   ├── useWalletInfo.ts\n│   │   └── useTokenBalance.ts\n│   ├── config/\n│   │   ├── constants.ts\n│   │   ├── contracts.ts\n│   │   └── chains.ts\n│   ├── types/\n│   │   ├── vesting.ts\n│   │   └── contracts.ts\n│   ├── utils/\n│   │   ├── formatters.ts\n│   │   ├── calculations.ts\n│   │   └── errors.ts\n│   └── lib/\n│       ├── wagmi.ts\n│       └── rainbowkit.ts\n├── public/\n│   ├── images/\n│   └── fonts/\n└── next.config.js\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunctionland%2Fclaim-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunctionland%2Fclaim-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunctionland%2Fclaim-ui/lists"}