-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
107 lines (103 loc) · 2.19 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
const config = {};
config.DEFAULT_IMAGES_PATH = "./images/";
config.DEFAULT_METADATA_PATH = "./metadata/";
// UPDATE THESE CONSTANTS BELOW WITH YOUR VALUES
config.GIF_FRAMES = 10;
config.IMAGES_BASE_URI = "https://base-uri-to-my-nft-images.com/";
config.IMAGES_HEIGHT = 350;
config.IMAGES_WIDTH = 350;
config.TOKEN_NAME_PREFIX = "My NFT #";
config.TOKEN_DESCRIPTION = "My NFT description.";
config.TOTAL_TOKENS = 100;
// UPDATE THIS ARRAY BELOW WITH YOUR TRAITS LIST
config.ORDERED_TRAITS_LIST = [
{
type: "Background",
options: [
{
image: "./traits/background/baby-purple.png",
value: "Baby Purple",
weight: 1,
},
{
image: "./traits/background/butter.png",
value: "Butter",
weight: 1,
},
{
image: "./traits/background/coral.png",
value: "Coral",
weight: 1,
},
{
image: "./traits/background/mint.png",
value: "Mint",
weight: 1,
},
{
image: "./traits/background/robin.png",
value: "Robin",
weight: 1,
},
],
},
{
type: "Square",
options: [
{
image: "./traits/square/bright-coral.png",
value: "Bright Coral",
weight: 1,
},
{
image: "./traits/square/liliac.png",
value: "Liliac",
weight: 1,
},
{
image: "./traits/square/pumpkin.png",
value: "Pumpkin",
weight: 1,
},
{
image: "./traits/square/spring.png",
value: "Spring",
weight: 1,
},
{
weight: 1,
},
],
},
{
type: "Triangle",
options: [
{
image: "./traits/triangle/brick.png",
value: "Brick",
weight: 1,
},
{
image: "./traits/triangle/green.png",
value: "Green",
weight: 1,
},
{
allowed: ["Coral", "Mint"],
image: "./traits/triangle/orchid.png",
value: "Orchid",
weight: 1,
},
{
forbidden: ["Robin"],
image: "./traits/triangle/teal.png",
value: "Teal",
weight: 1,
},
{
weight: 1,
},
],
},
];
module.exports = config;