|
1 | 1 | # Source Code from "How To Create An ENTIRE NFT Collection (10,000+) & MINT In Under 1 Hour Without Coding Knowledge"
|
2 | 2 |
|
3 |
| -## Multiple Active Branches |
4 |
| - |
5 |
| -- [main](https://github.com/codeSTACKr/video-source-code-create-nft-collection/tree/main) = Source code from the video |
6 |
| -- [fix-uploads-mints](https://github.com/codeSTACKr/video-source-code-create-nft-collection/tree/fix-uploads-mints) = Updated to fix issues uploading files, metadata, and minting explained [below](#quota-limit-reached-or-too-many-requests-errors). |
7 |
| - |
8 |
| -[Video Link](https://youtu.be/AaCgydeMu64) |
| 3 | +Video: [How To Create An ENTIRE NFT Collection (10,000+) & MINT In Under 1 Hour Without Coding Knowledge](https://youtu.be/AaCgydeMu64) |
9 | 4 |
|
10 | 5 | Base code is from [hashlips_art_engine](https://github.com/HashLips/hashlips_art_engine)
|
11 | 6 |
|
@@ -44,17 +39,16 @@ Ensure that your layer names in the `config.js` file match exactly to your layer
|
44 | 39 |
|
45 | 40 | ### "Quota Limit Reached" or "Too many requests" errors
|
46 | 41 |
|
47 |
| -There have been some changes made to the code in the [fix-uploads-mints](https://github.com/codeSTACKr/video-source-code-create-nft-collection/tree/fix-uploads-mints) branch resulting from some errors when uploading files, metadata, and minting using NFTPort. Depending on your plan, Free vs Community, there are rate limits. |
| 42 | +There have been some changes made to the code from the original video resulting from some errors when uploading files, metadata, and minting using NFTPort. Depending on your plan, Free vs Community, there are rate limits. |
48 | 43 |
|
49 | 44 | To fix these issues, I've updated the code to include a timeout that will allow the files to be uploaded at a slower rate, instead of all at once, eliminating these errors.
|
50 | 45 |
|
51 | 46 | **To use this code:**
|
52 | 47 |
|
53 |
| -- Clone this repo or download the zip file. |
| 48 | +- Clone this repo or download the latest release zip file. |
54 | 49 | - Unzip, if needed, and open the folder in VS Code.
|
55 | 50 | - From the terminal type:
|
56 | 51 | - `npm install`
|
57 |
| -- Ensure you are on the `fix-uploads-mints` branch if you cloned the repo. |
58 | 52 | - Copy your image layers into the `layers` folder.
|
59 | 53 | - Use the `src/config.js` file to set up your layers and NFT information.
|
60 | 54 |
|
|
0 commit comments