Skip to content

Commit 8e51dc3

Browse files
committed
init
0 parents  commit 8e51dc3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3023
-0
lines changed

.gitignore

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
# Logs
2+
3+
logs
4+
_.log
5+
npm-debug.log_
6+
yarn-debug.log*
7+
yarn-error.log*
8+
lerna-debug.log\*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
12+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
13+
14+
# Runtime data
15+
16+
pids
17+
_.pid
18+
_.seed
19+
\*.pid.lock
20+
21+
# Directory for instrumented libs generated by jscoverage/JSCover
22+
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
27+
coverage
28+
\*.lcov
29+
30+
# nyc test coverage
31+
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
40+
bower_components
41+
42+
# node-waf configuration
43+
44+
.lock-wscript
45+
46+
# Compiled binary addons (https://nodejs.org/api/addons.html)
47+
48+
build/Release
49+
50+
# Dependency directories
51+
52+
build/
53+
dist/
54+
node_modules/
55+
jspm_packages/
56+
57+
# TypeScript v1 declaration files
58+
59+
typings/
60+
61+
# TypeScript cache
62+
63+
\*.tsbuildinfo
64+
65+
# Optional npm cache directory
66+
67+
.npm
68+
69+
# Optional eslint cache
70+
71+
.eslintcache
72+
73+
# Microbundle cache
74+
75+
.rpt2_cache/
76+
.rts2_cache_cjs/
77+
.rts2_cache_es/
78+
.rts2_cache_umd/
79+
80+
# Optional REPL history
81+
82+
.node_repl_history
83+
84+
# Output of 'npm pack'
85+
86+
\*.tgz
87+
88+
# Yarn Integrity file
89+
90+
.yarn-integrity
91+
92+
# dotenv environment variables file
93+
94+
.env
95+
.env.test
96+
97+
# parcel-bundler cache (https://parceljs.org/)
98+
99+
.cache
100+
101+
# Next.js build output
102+
103+
.next
104+
105+
# Nuxt.js build / generate output
106+
107+
.nuxt
108+
dist
109+
110+
# Gatsby files
111+
112+
.cache/
113+
114+
# Comment in the public line in if your project uses Gatsby and _not_ Next.js
115+
116+
# https://nextjs.org/blog/next-9-1#public-directory-support
117+
118+
# public
119+
120+
# vuepress build output
121+
122+
.vuepress/dist
123+
124+
# Serverless directories
125+
126+
.serverless/
127+
128+
# FuseBox cache
129+
130+
.fusebox/
131+
132+
# DynamoDB Local files
133+
134+
.dynamodb/
135+
136+
# TernJS port file
137+
138+
.tern-port
139+
140+
# OSX
141+
142+
.DS_Store

LICENSE

Lines changed: 21 additions & 0 deletions
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Source Code from "How To Create An ENTIRE NFT Collection (10,000+) & MINT In Under 1 Hour Without Coding Knowledge"
2+
3+
[Video Link](https://youtu.be/AaCgydeMu64)
4+
5+
Base code is from [hashlips_art_engine](https://github.com/HashLips/hashlips_art_engine)
6+
7+
Minting uses [NFTPort](https://nftport.xyz)
8+
9+
See video for instructions.

banner.png

431 KB
Loading

constants/blend_mode.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
const MODE = {
2+
sourceOver: "source-over",
3+
sourceIn: "source-in",
4+
sourceOut: "source-out",
5+
sourceAtop: "source-out",
6+
destinationOver: "destination-over",
7+
destinationIn: "destination-in",
8+
destinationOut: "destination-out",
9+
destinationAtop: "destination-atop",
10+
lighter: "lighter",
11+
copy: "copy",
12+
xor: "xor",
13+
multiply: "multiply",
14+
screen: "screen",
15+
overlay: "overlay",
16+
darken: "darken",
17+
lighten: "lighten",
18+
colorDodge: "color-dodge",
19+
colorBurn: "color-burn",
20+
hardLight: "hard-light",
21+
softLight: "soft-light",
22+
difference: "difference",
23+
exclusion: "exclusion",
24+
hue: "hue",
25+
saturation: "saturation",
26+
color: "color",
27+
luminosity: "luminosity",
28+
};
29+
30+
module.exports = {
31+
MODE,
32+
};

constants/network.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const NETWORK = {
2+
eth: "eth",
3+
sol: "sol",
4+
};
5+
6+
module.exports = {
7+
NETWORK,
8+
};

index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const basePath = process.cwd();
2+
const { startCreating, buildSetup } = require(`${basePath}/src/main.js`);
3+
4+
(() => {
5+
buildSetup();
6+
startCreating();
7+
})();

layers/Background/Black.png

2.37 KB
Loading

layers/Bottom lid/High High #20.png

92.5 KB
Loading

layers/Bottom lid/Low#40.png

76.2 KB
Loading

0 commit comments

Comments
 (0)