{"id":23885703,"url":"https://github.com/bhivgadearav/eth-token-launchpad","last_synced_at":"2026-04-02T18:52:05.546Z","repository":{"id":270537138,"uuid":"910685976","full_name":"bhivgadearav/eth-token-launchpad","owner":"bhivgadearav","description":"A React-based dApp that allows users to launch their own ERC20 tokens on Ethereum Mainnet or Sepolia testnet. Built with modern web3 technologies and a clean, user-friendly interface.","archived":false,"fork":false,"pushed_at":"2025-01-01T04:27:30.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T03:28:40.209Z","etag":null,"topics":["ethereum","ethereum-dapp","ethereum-token","react","shadcn","tailwindcss","token-launchpad","wagmi"],"latest_commit_sha":null,"homepage":"https://nebula-launchpad.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bhivgadearav.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-01-01T04:14:29.000Z","updated_at":"2025-01-01T04:28:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"78b58572-66b6-48a7-9577-0231cbbe36c0","html_url":"https://github.com/bhivgadearav/eth-token-launchpad","commit_stats":null,"previous_names":["bhivgadearav/eth-token-launchpad"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bhivgadearav/eth-token-launchpad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhivgadearav%2Feth-token-launchpad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhivgadearav%2Feth-token-launchpad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhivgadearav%2Feth-token-launchpad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhivgadearav%2Feth-token-launchpad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bhivgadearav","download_url":"https://codeload.github.com/bhivgadearav/eth-token-launchpad/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhivgadearav%2Feth-token-launchpad/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272541926,"owners_count":24952468,"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","status":"online","status_checked_at":"2025-08-28T02:00:10.768Z","response_time":74,"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":["ethereum","ethereum-dapp","ethereum-token","react","shadcn","tailwindcss","token-launchpad","wagmi"],"created_at":"2025-01-04T05:53:23.775Z","updated_at":"2025-12-30T21:35:14.393Z","avatar_url":"https://github.com/bhivgadearav.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ERC20 Token Launchpad\n\nA React-based dApp that allows users to launch their own ERC20 tokens on Ethereum Mainnet or Sepolia testnet. Built with modern web3 technologies and a clean, user-friendly interface.\n\n## Features\n\n- Connect Ethereum wallet (MetaMask and other Web3 wallets)\n- Switch between Ethereum Mainnet and Sepolia testnet\n- Create custom ERC20 tokens with:\n  - Custom token name\n  - Custom token symbol\n  - Configurable initial supply\n- Automatic minting of initial supply to owner's wallet\n- Additional token minting functionality to any wallet address\n- Real-time network detection and switching\n- Responsive UI with shadcn components\n\n## Tech Stack\n\n- React + Vite\n- Wagmi (Ethereum interactions)\n- Viem (Ethereum data fetching)\n- TanStack Query (Data management)\n- Tailwind CSS (Styling)\n- shadcn/ui (UI components)\n- Lucide React (Icons)\n\n## Prerequisites\n\n- Node.js (v16 or higher)\n- npm or yarn\n- MetaMask or another Web3 wallet\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone \u003crepository-url\u003e\ncd token-launchpad\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Create a `.env` file in the root directory and add your environment variables:\n```env\nVITE_ALCHEMY_ETH_API_KEY=your_alchemy_api_key\nVITE_ALCHEMY_SEPOLIA_API_KEY=your_alchemy_api_key\n```\n\n4. Start the development server:\n```bash\nnpm run dev\n```\n\n## Project Structure\n\n```\nsrc/\n├── components/\n│   ├── TokenLaunchpad.jsx\n│   └── ui/\n├── utils/\n│   └── contracts.js\n├── App.jsx\n└── main.jsx\n```\n\n## Usage\n\n1. Connect your Web3 wallet using the \"Connect Wallet\" button\n2. Select your desired network (Ethereum Mainnet or Sepolia)\n3. Fill in the token details:\n   - Token Name (e.g., \"My Token\")\n   - Token Symbol (e.g., \"MTK\")\n   - Initial Supply (e.g., \"1000000\")\n4. Click \"Deploy Token\" to launch your token\n5. Once deployed, you can mint additional tokens to any address\n\n## Smart Contract\n\nThe project uses a standard ERC20 implementation with additional minting capabilities. The contract includes:\n\n- Standard ERC20 functionality\n- Minting capability for token owner\n- Basic security features\n- Network agnostic deployment\n\n## Security Considerations\n\n- Always test your token on Sepolia testnet first\n- Double-check all transaction parameters before confirming\n- Keep your private keys secure\n- Be cautious with initial supply and minting parameters\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- OpenZeppelin for ERC20 implementation\n- Ethereum community for documentation and support\n- shadcn/ui for beautiful React components","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhivgadearav%2Feth-token-launchpad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhivgadearav%2Feth-token-launchpad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhivgadearav%2Feth-token-launchpad/lists"}