-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.js
27 lines (24 loc) · 1.11 KB
/
settings.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
const build = {
sourceName: "wombat", // Name of inputs subfolder that contains your raw assets
quantity: 350000, // How many NFTs would you like to generate? Try a small number for test runs.
shouldResume: true, // If your generation is interupted and you want to resume, set this to true
};
// if "false" then "properties" will be deleted from the metadata as this is a Solana specific field
const IS_SOLANA = true;
// This is the information that will show up in your NFT metadata
const PROJECT_NAME = "Faceless"; // title of your NFT
const DESCRIPTION =
"In the deepest, darkest levels of the catacombs, one can find groups of curious little creatures known as The Faceless. They often travel in large numbers, attacking as swarms. Nobody has ever seen behind the masks, but legends tell of an unimaginable sight.";
// DONT EDIT ANYTHING BELOW THIS LINE!
const meta = {
image: "",
name: PROJECT_NAME,
description: DESCRIPTION,
properties: {
category: "image",
files: [{ uri: "", type: "image/png" }],
},
attributes: [],
};
const settings = { build, meta, isSolana: IS_SOLANA };
module.exports = settings;