https://github.com/kashifch-eth/priceselecter-for-hashlip-minting-dapp
Price Selecter for minting dapp
https://github.com/kashifch-eth/priceselecter-for-hashlip-minting-dapp
dapp-developers dapps dapps-development mint minting-dapp minting-dapp-price-selecter minting-nfts mintingwebsite price price-selecter-for-minting-dapp
Last synced: 5 months ago
JSON representation
Price Selecter for minting dapp
- Host: GitHub
- URL: https://github.com/kashifch-eth/priceselecter-for-hashlip-minting-dapp
- Owner: KashifCh-eth
- License: mit
- Created: 2022-09-22T13:40:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-20T18:56:12.000Z (about 2 years ago)
- Last Synced: 2024-11-08T03:44:16.168Z (about 1 year ago)
- Topics: dapp-developers, dapps, dapps-development, mint, minting-dapp, minting-dapp-price-selecter, minting-nfts, mintingwebsite, price, price-selecter-for-minting-dapp
- Language: JavaScript
- Homepage: https://changepricewithselect.netlify.app/
- Size: 2.78 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to HashLips đ

All the code in these repos was created and explained by HashLips on the main YouTube channel.
To find out more please visit:
[âšī¸ Buy Dapp Services ](https://www.fiverr.com/chzhob)
# HashLips NFT minting dapp đĨ

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.
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).
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).
## Installation đ ī¸
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.
```sh
git clone https://github.com/skillscodified/PriceSelecter-For-Hashlip-minting-dapp
```
Make sure you have node.js installed so you can use npm, then run:
```sh
npm install
```
## Usage âšī¸
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.
For the most part all the changes will be in the `public` folder.
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.
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.
After all the changes you can run.
```sh
npm run start
```
Or create the build if you are ready to deploy.
```sh
npm run build
```
Now you can host the contents of the build folder on a server.
That's it! you're done.