{"id":19305986,"url":"https://github.com/zircuit-labs/web3-telegram-mini-app","last_synced_at":"2025-04-19T18:44:55.841Z","repository":{"id":261168923,"uuid":"883476143","full_name":"zircuit-labs/web3-telegram-mini-app","owner":"zircuit-labs","description":"Web3 Telegram Mini App Boilerplate","archived":false,"fork":false,"pushed_at":"2024-11-06T00:26:35.000Z","size":244,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T11:51:40.612Z","etag":null,"topics":["dapp","ethereum","ethglobal","hackathon","react","telegram-mini-app","tonconnect","wagmi","walletconnect","web3"],"latest_commit_sha":null,"homepage":"https://t.me/web3_telegram_mini_app_bot/Web3","language":"JavaScript","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/zircuit-labs.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}},"created_at":"2024-11-05T03:01:56.000Z","updated_at":"2025-03-06T18:26:07.000Z","dependencies_parsed_at":"2024-11-05T18:43:06.026Z","dependency_job_id":null,"html_url":"https://github.com/zircuit-labs/web3-telegram-mini-app","commit_stats":null,"previous_names":["kevinb1003/web3-telegram-mini-app","zircuit-labs/web3-telegram-mini-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircuit-labs%2Fweb3-telegram-mini-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircuit-labs%2Fweb3-telegram-mini-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircuit-labs%2Fweb3-telegram-mini-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircuit-labs%2Fweb3-telegram-mini-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zircuit-labs","download_url":"https://codeload.github.com/zircuit-labs/web3-telegram-mini-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249768081,"owners_count":21322879,"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":["dapp","ethereum","ethglobal","hackathon","react","telegram-mini-app","tonconnect","wagmi","walletconnect","web3"],"created_at":"2024-11-10T00:03:37.132Z","updated_at":"2025-04-19T18:44:55.817Z","avatar_url":"https://github.com/zircuit-labs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Web3 Telegram Mini App Boilerplate\n\nA ready-to-use boilerplate for building Web3 Telegram Mini Apps.\nThis tech stack includes:\n- [React](https://react.dev/) + [Express](https://expressjs.com/)\n- [Wagmi](https://wagmi.sh/) + [WalletConnect](https://reown.com/)\n- [TON Connect](https://docs.ton.org/develop/dapps/ton-connect/overview)\n- [@telegram-apps SDK](https://docs.telegram-mini-apps.com/packages/telegram-apps-sdk/2-x)\n- [Telegram UI](https://tgui.xelene.me/?path=/docs/getting-started--documentation)\n\n## Install Dependencies\n\nInstall the project dependencies using:\n\n```bash\nyarn install\n```\n\n## Scripts\n\nThis project contains the following scripts:\n\n- `dev`: Runs the application in development mode\n- `build`: Builds the application for production\n- `start`: Starts the production server\n- `test`: Runs tests\n- `eject`: Ejects from create-react-app\n\n## Supported Wallets\n\n- MetaMask\n- Binance Wallet\n- OKX Wallet\n- Bitget Wallet\n- Trust Wallet\n- TONConnect\n\nNote: Deep link support is implemented for common wallets and can be extended in [`App.js`](https://github.com/kevinb1003/web3-telegram-mini-app/blob/master/src/App.js#L21-L59):\n\n- `bitkeep://`\n- `metamask://`\n- `trust://`\n- `wc://`\n- `okex://`\n- `bnc://`\n\n## Setup and Development\n\n### Environment Setup\n\n1. Create a `.env` file in the root directory:\n\n```bash\nWC_WEB3_PROJECT_ID=your_walletconnect_project_id  # Get this from https://cloud.walletconnect.com/\nREACT_APP_PUBLIC_URL=your dApp public url\n```\n\n2. Configure TON Connect manifest:\n   The TON Connect manifest is stored in `public/tonconnect-manifest.json`. Remember to [configure](https://docs.ton.org/develop/dapps/ton-connect/manifest) this file according to your project's information.\n\n3. Install dependencies:\n\n```bash\nyarn install\n```\n\n4. Start the development server:\n\n```bash\nyarn dev\n```\n\nThe app will be available at `http://localhost:3000`.\n\n### Production\n\n1. Build the application:\n\n```bash\nyarn build\n```\n\n2. Start the production server:\n\n```bash\nyarn start\n```\n\nNote: Always ensure your `.env` file is properly configured before starting either development or production servers.\n\n## Useful Links\n\n- [Telegram Mini Apps Documentation](https://docs.telegram-mini-apps.com/)\n- [Wagmi Documentation](https://wagmi.sh/react/getting-started)\n- [TON Connect Documentation](https://docs.ton.org/develop/dapps/ton-connect/overview)\n- [Telegram UI Components](https://tgui.xelene.me/?path=/docs/getting-started--documentation)\n- [Telegram Developers Community](https://t.me/devs)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircuit-labs%2Fweb3-telegram-mini-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzircuit-labs%2Fweb3-telegram-mini-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircuit-labs%2Fweb3-telegram-mini-app/lists"}