From 2ef37ec1acc0d420ae4177f47bc285b7a6e3b1c2 Mon Sep 17 00:00:00 2001 From: holidmemecoin Date: Fri, 29 Aug 2025 00:27:50 -0700 Subject: [PATCH] Delete src/config.js --- src/config.js | 122 -------------------------------------------------- 1 file changed, 122 deletions(-) delete mode 100644 src/config.js diff --git a/src/config.js b/src/config.js deleted file mode 100644 index c46d867a0..000000000 --- a/src/config.js +++ /dev/null @@ -1,122 +0,0 @@ -const basePath = process.cwd(); -const { MODE } = require(`${basePath}/constants/blend_mode.js`); -const { NETWORK } = require(`${basePath}/constants/network.js`); - -const network = NETWORK.eth; - -// General metadata for Ethereum -const namePrefix = "Your Collection"; -const description = "Remember to replace this description"; -const baseUri = "ipfs://NewUriToReplace"; - -const solanaMetadata = { - symbol: "YC", - seller_fee_basis_points: 1000, // Define how much % you want from secondary market sales 1000 = 10% - external_url: "https://www.youtube.com/c/hashlipsnft", - creators: [ - { - address: "7fXNuer5sbZtaTEPhtJ5g5gNtuyRoKkvxdjEjEnPN4mC", - share: 100, - }, - ], -}; - -// If you have selected Solana then the collection starts from 0 automatically -const layerConfigurations = [ - { - growEditionSizeTo: 5, - layersOrder: [ - { name: "Background" }, - { name: "Eyeball" }, - { name: "Eye color" }, - { name: "Iris" }, - { name: "Shine" }, - { name: "Bottom lid" }, - { name: "Top lid" }, - ], - }, -]; - -const shuffleLayerConfigurations = false; - -const debugLogs = false; - -const format = { - width: 512, - height: 512, - smoothing: false, -}; - -const gif = { - export: false, - repeat: 0, - quality: 100, - delay: 500, -}; - -const text = { - only: false, - color: "#ffffff", - size: 20, - xGap: 40, - yGap: 40, - align: "left", - baseline: "top", - weight: "regular", - family: "Courier", - spacer: " => ", -}; - -const pixelFormat = { - ratio: 2 / 128, -}; - -const background = { - generate: true, - brightness: "80%", - static: false, - default: "#000000", -}; - -const extraMetadata = {}; - -const rarityDelimiter = "#"; - -const uniqueDnaTorrance = 10000; - -const preview = { - thumbPerRow: 5, - thumbWidth: 50, - imageRatio: format.height / format.width, - imageName: "preview.png", -}; - -const preview_gif = { - numberOfImages: 5, - order: "ASC", // ASC, DESC, MIXED - repeat: 0, - quality: 100, - delay: 500, - imageName: "preview.gif", -}; - -module.exports = { - format, - baseUri, - description, - background, - uniqueDnaTorrance, - layerConfigurations, - rarityDelimiter, - preview, - shuffleLayerConfigurations, - debugLogs, - extraMetadata, - pixelFormat, - text, - namePrefix, - network, - solanaMetadata, - gif, - preview_gif, -};