{"id":19885892,"url":"https://github.com/konjoinfinity/baebee","last_synced_at":"2026-06-13T10:32:25.913Z","repository":{"id":113904219,"uuid":"560106748","full_name":"konjoinfinity/baebee","owner":"konjoinfinity","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-02T15:44:06.000Z","size":101339,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-01T03:47:53.341Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/konjoinfinity.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":"2022-10-31T18:47:42.000Z","updated_at":"2023-11-30T02:07:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f806e5c-d925-4d1c-a134-b8fabf62e581","html_url":"https://github.com/konjoinfinity/baebee","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/konjoinfinity/baebee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konjoinfinity%2Fbaebee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konjoinfinity%2Fbaebee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konjoinfinity%2Fbaebee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konjoinfinity%2Fbaebee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/konjoinfinity","download_url":"https://codeload.github.com/konjoinfinity/baebee/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konjoinfinity%2Fbaebee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34281700,"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-06-13T02:00:06.617Z","response_time":62,"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":"2024-11-12T17:35:45.046Z","updated_at":"2026-06-13T10:32:25.876Z","avatar_url":"https://github.com/konjoinfinity.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to HashLips 👄\n\n![](https://github.com/HashLips/hashlips_nft_minting_dapp/blob/main/logo.png)\n\nAll the code in these repos was created and explained by HashLips on the main YouTube channel.\n\nTo find out more please visit:\n\n[📺 YouTube](https://www.youtube.com/channel/UC1LV4_VQGBJHTJjEWUmy8nA)\n\n[👄 Discord](https://discord.com/invite/qh6MWhMJDN)\n\n[💬 Telegram](https://t.me/hashlipsnft)\n\n[🐦 Twitter](https://twitter.com/hashlipsnft)\n\n[ℹ️ Website](https://hashlips.online/HashLips)\n\n# HashLips NFT minting dapp 🔥\n\n![](https://github.com/HashLips/hashlips_nft_minting_dapp/blob/main/banner.png)\n\nThis repo provides a nice and easy way for linking an existing NFT smart contract to this minting dapp. There are two ways of using this repo, you can go the simple route or the more complex one.\n\nThe simple route is so simple, all you need to do is download the build folder on the release page and change the configuration to fit your needs. (Follow the video for a walk through).\n\nThe more complex route allows you to add additional functionality if you are comfortable with coding in react.js. (Follow the below instructions for a walk through).\n\n## Installation 🛠️\n\nIf you are cloning the project then run this first, otherwise you can download the source code on the release page and skip this step.\n\n```sh\ngit clone https://github.com/HashLips/hashlips_nft_minting_dapp.git\n```\n\nMake sure you have node.js installed so you can use npm, then run:\n\n```sh\nnpm install\n```\n\n## Usage ℹ️\n\nIn order to make use of this dapp, all you need to do is change the configurations to point to your smart contract as well as update the images and theme file.\n\nFor the most part all the changes will be in the `public` folder.\n\nTo link up your existing smart contract, go to the `public/config/config.json` file and update the following fields to fit your smart contract, network and marketplace details. The cost field should be in wei.\n\nNote: this dapp is designed to work with the intended NFT smart contract, that only takes one parameter in the mint function \"mintAmount\". But you can change that in the App.js file if you need to use a smart contract that takes 2 params.\n\n```json\n{\n  \"CONTRACT_ADDRESS\": \"0x827acb09a2dc20e39c9aad7f7190d9bc53534192\",\n  \"SCAN_LINK\": \"https://polygonscan.com/token/0x827acb09a2dc20e39c9aad7f7190d9bc53534192\",\n  \"NETWORK\": {\n    \"NAME\": \"Polygon\",\n    \"SYMBOL\": \"Matic\",\n    \"ID\": 137\n  },\n  \"NFT_NAME\": \"Nerdy Coder Clones\",\n  \"SYMBOL\": \"NCC\",\n  \"MAX_SUPPLY\": 1000,\n  \"WEI_COST\": 75000000000000000,\n  \"DISPLAY_COST\": 0.075,\n  \"GAS_LIMIT\": 285000,\n  \"MARKETPLACE\": \"OpenSea\",\n  \"MARKETPLACE_LINK\": \"https://opensea.io/collection/nerdy-coder-clones\",\n  \"SHOW_BACKGROUND\": true\n}\n```\n\nMake sure you copy the contract ABI from remix and paste it in the `public/config/abi.json` file.\n(follow the youtube video if you struggle with this part).\n\nNow you will need to create and change 2 images and a gif in the `public/config/images` folder, `bg.png`, `example.gif` and `logo.png`.\n\nNext change the theme colors to your liking in the `public/config/theme.css` file.\n\n```css\n:root {\n  --primary: #ebc908;\n  --primary-text: #1a1a1a;\n  --secondary: #ff1dec;\n  --secondary-text: #ffffff;\n  --accent: #ffffff;\n  --accent-text: #000000;\n}\n```\n\nNow you will need to create and change the `public/favicon.ico`, `public/logo192.png`, and\n`public/logo512.png` to your brand images.\n\nRemember to update the title and description the `public/index.html` file\n\n```html\n\u003ctitle\u003eNerdy Coder Clones\u003c/title\u003e\n\u003cmeta name=\"description\" content=\"Mint your Nerdy Coder Clone NFT\" /\u003e\n```\n\nAlso remember to update the short_name and name fields in the `public/manifest.json` file\n\n```json\n{\n  \"short_name\": \"NCC\",\n  \"name\": \"Coder Clone NFT\"\n}\n```\n\nAfter all the changes you can run.\n\n```sh\nnpm run start\n```\n\nOr create the build if you are ready to deploy.\n\n```sh\nnpm run build\n```\n\nNow you can host the contents of the build folder on a server.\n\nThat's it! you're done.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkonjoinfinity%2Fbaebee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkonjoinfinity%2Fbaebee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkonjoinfinity%2Fbaebee/lists"}