Skip to content

Commit f751638

Browse files
authoredSep 28, 2021
Added starter files
0 parents  commit f751638

30 files changed

+33104
-0
lines changed
 

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 HashLips
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
# Welcome to HashLips 👄
2+
3+
![](https://github.com/HashLips/hashlips_nft_minting_dapp/blob/main/logo.png)
4+
5+
All the code in these repos was created and explained by HashLips on the main YouTube channel.
6+
7+
To find out more please visit:
8+
9+
[📺 YouTube](https://www.youtube.com/channel/UC1LV4_VQGBJHTJjEWUmy8nA)
10+
11+
[👄 Discord](https://discord.com/invite/qh6MWhMJDN)
12+
13+
[💬 Telegram](https://t.me/hashlipsnft)
14+
15+
[🐦 Twitter](https://twitter.com/hashlipsnft)
16+
17+
[ℹ️ Website](https://hashlips.online/HashLips)
18+
19+
# HashLips NFT minting dapp 🔥
20+
21+
![](https://github.com/HashLips/hashlips_nft_minting_dapp/blob/main/banner.png)
22+
23+
This 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.
24+
25+
The 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).
26+
27+
The 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).
28+
29+
## Installation 🛠️
30+
31+
If you are cloning the project then run this first, otherwise you can download the source code on the release page and skip this step.
32+
33+
```sh
34+
git clone https://github.com/HashLips/hashlips_nft_minting_dapp.git
35+
```
36+
37+
Make sure you have node.js installed so you can use npm, then run:
38+
39+
```sh
40+
npm install
41+
```
42+
43+
## Usage ℹ️
44+
45+
In 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.
46+
47+
For the most part all the changes will be in the `public` folder.
48+
49+
To 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.
50+
51+
Note: 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.
52+
53+
```json
54+
{
55+
"CONTRACT_ADDRESS": "0x827acb09a2dc20e39c9aad7f7190d9bc53534192",
56+
"SCAN_LINK": "https://polygonscan.com/token/0x827acb09a2dc20e39c9aad7f7190d9bc53534192",
57+
"NETWORK": {
58+
"NAME": "Polygon",
59+
"SYMBOL": "Matic",
60+
"ID": 137
61+
},
62+
"NFT_NAME": "Nerdy Coder Clones",
63+
"SYMBOL": "NCC",
64+
"MAX_SUPPLY": 1000,
65+
"WEI_COST": 75000000000000000,
66+
"DISPLAY_COST": 0.075,
67+
"GAS_LIMIT": 285000,
68+
"MARKETPLACE": "Opeansea",
69+
"MARKETPLACE_LINK": "https://opensea.io/collection/nerdy-coder-clones",
70+
"SHOW_BACKGROUND": true
71+
}
72+
```
73+
74+
Make sure you copy the contract ABI from remix and paste it in the `public/config/abi.json` file.
75+
(follow the youtube video if you struggle with this part).
76+
77+
Now 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`.
78+
79+
Next change the theme colors to your liking in the `public/config/theme.css` file.
80+
81+
```css
82+
:root {
83+
--primary: #ebc908;
84+
--primary-text: #1a1a1a;
85+
--secondary: #ff1dec;
86+
--secondary-text: #ffffff;
87+
--accent: #ffffff;
88+
--accent-text: #000000;
89+
}
90+
```
91+
92+
Now you will need to create and change the `public/favicon.ico`, `public/logo192.png`, and
93+
`public/logo512.png` to your brand images.
94+
95+
Remember to update the title and description the `public/index.html` file
96+
97+
```html
98+
<title>Nerdy Coder Clones</title>
99+
<meta name="description" content="Mint your Nerdy Coder Clone NFT" />
100+
```
101+
102+
Also remember to update the short_name and name fields in the `public/manifest.json` file
103+
104+
```json
105+
{
106+
"short_name": "NCC",
107+
"name": "Coder Clone NFT"
108+
}
109+
```
110+
111+
After all the changes you can run.
112+
113+
```sh
114+
npm run start
115+
```
116+
117+
Or create the build if you are ready to deploy.
118+
119+
```sh
120+
npm run build
121+
```
122+
123+
Now you can host the contents of the build folder on a server.
124+
125+
That's it! you're done.

‎banner.png

703 KB
Loading

‎logo.png

36.8 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.