Skip to content

Commit

Permalink
final updates
Browse files Browse the repository at this point in the history
  • Loading branch information
codeSTACKr committed Mar 18, 2022
1 parent c78524b commit 4a45607
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 63 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
## Table of Contents

- [RESOURCES](#resources)
- [Installation](#installation)
- [INSTALLATION](#installation)
- [COMMANDS](#commands)

## RESOURCES

Video:

🌟 [DAPP VIDEO HERE]()
🌟 [EASY Minting dApp | Whitelisting | Entire Process!! Create an Entire NFT Collection (10,000+)](https://youtu.be/cLB7u0KQFIs)

Base art generator code is from [hashlips_art_engine](https://github.com/HashLips/hashlips_art_engine)

Expand Down Expand Up @@ -133,4 +133,4 @@ $ npm run refresh_os --start=1 --end=100
- Refreshes the listing for the specified editions on OpenSea.
- Both the `--start` and `--end` flags are required.

## Reference the [video]() for more details.
## Reference the [video](https://youtu.be/cLB7u0KQFIs) for more details.
File renamed without changes.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "minter-dapp",
"name": "minter-dapp-backend",
"version": "0.0.1",
"description": "Generate an NFT collection and deploy a minting dapp easy!!",
"main": "index.js",
Expand Down
47 changes: 19 additions & 28 deletions backend/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,22 @@ const { NETWORK } = require(`${basePath}/constants/network.js`);
const network = NETWORK.eth;

// General metadata for Ethereum
const namePrefix = "cbirdz.xyz";
const description = "This is a cool bird project";
const namePrefix = "YOUR COLLECTION NAME";
const description = "Remember to replace this description";
const baseUri = "ipfs://NewUriToReplace"; // This will be replaced automatically

// If you have selected Solana then the collection starts from 0 automatically
const layerConfigurations = [
{
growEditionSizeTo: 10,
growEditionSizeTo: 5,
layersOrder: [
{ name: "Background" },
{ name: "Cleo Body" },
{ name: "Cleo Base" },
{ name: "Cleo Eyes" },
{ name: "Cleo Beak" },
{ name: "Cleo Symbol" },
],
},{
growEditionSizeTo: 20,
layersOrder: [
{ name: "Background" },
{ name: "Cletus Body" },
{ name: "Cletus Base" },
{ name: "Cletus Eyes" },
{ name: "Cletus Beak" },
{ name: "Cletus Symbol" },
{ name: "Eyeball" },
{ name: "Eye color" },
{ name: "Iris" },
{ name: "Shine" },
{ name: "Bottom lid" },
{ name: "Top lid" },
],
},
];
Expand All @@ -41,13 +32,13 @@ const shuffleLayerConfigurations = true;
const debugLogs = false;

const format = {
width: 3000,
height: 3000,
width: 512,
height: 512,
smoothing: false,
};

const extraMetadata = {
external_url: "https://cbirdz.xyz", // Replace with your website or remove this line if you do not have one.
external_url: "https://codecats.xyz", // Replace with your website or remove this line if you do not have one.
};

// NFTPort Info
Expand All @@ -58,13 +49,13 @@ const LIMIT = 2; // Your API key rate limit
const CHAIN = 'rinkeby'; // only rinkeby or polygon

// REQUIRED CONTRACT DETAILS THAT CANNOT BE UPDATED LATER!
const CONTRACT_NAME = 'cbirdz.xyz';
const CONTRACT_SYMBOL = 'CBZ';
const CONTRACT_NAME = 'CRYPTOPUNKS';
const CONTRACT_SYMBOL = 'CP';
const METADATA_UPDATABLE = true; // set to false if you don't want to allow metadata updates after minting
const OWNER_ADDRESS = '0xd8B808A887326F45B2D0cd999709Aa6264CeF919';
const TREASURY_ADDRESS = '0xd8B808A887326F45B2D0cd999709Aa6264CeF919';
const OWNER_ADDRESS = 'YOUR WALLET ADDRESS HERE';
const TREASURY_ADDRESS = 'YOUR WALLET ADDRESS HERE';
const MAX_SUPPLY = 5000; // The maximum number of NFTs that can be minted. CANNOT BE UPDATED!
const MINT_PRICE = 0.001; // Minting price per NFT. Rinkeby = ETH, Polygon = MATIC. CANNOT BE UPDATED!
const MINT_PRICE = 1; // Minting price per NFT. Rinkeby = ETH, Polygon = MATIC. CANNOT BE UPDATED!
const TOKENS_PER_MINT = 10; // maximum number of NFTs a user can mint in a single transaction. CANNOT BE UPDATED!

// REQUIRED CONTRACT DETAILS THAT CAN BE UPDATED LATER.
Expand All @@ -84,8 +75,8 @@ let CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS"; // If you want to manually inclu
// Generic Metadata is optional if you want to reveal your NFTs
const GENERIC = true; // Set to true if you want to upload generic metas and reveal the real NFTs in the future
const GENERIC_TITLE = CONTRACT_NAME; // Replace with what you want the generic titles to say if you want it to be different from the contract name.
const GENERIC_DESCRIPTION = "Which bird will you get?"; // Replace with what you want the generic descriptions to say.
const GENERIC_IMAGE = "https://ipfs.io/ipfs/bafybeihdunsq6cggufg2rsypxagv4llnih3skciprxhl2gfeufelgwmhpm"; // Replace with your generic image that will display for all NFTs pre-reveal.
const GENERIC_DESCRIPTION = "REPLACE THIS"; // Replace with what you want the generic descriptions to say.
const GENERIC_IMAGE = "https://ipfs.io/ipfs/QmUf9tDbkqnfHkQaMdFWSGAeXwVXWA61pFED7ypx4hcsfh"; // Replace with your generic image that will display for all NFTs pre-reveal.

// Automatically set contract address if deployed using the deployContract.js script
try {
Expand Down
30 changes: 0 additions & 30 deletions backend/utils/functions/txnCheck.js

This file was deleted.

3 changes: 2 additions & 1 deletion frontend/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ header .container {

/* NOT CONNECTED */
.not-connected {
align-items: center;
height: 100%;
text-align: center;
margin: 0 auto 0 35vw;
opacity: 0;
Expand Down Expand Up @@ -319,7 +321,6 @@ section {
top: 90px;
left: 5rem;
z-index: -1;
opacity: 0.7;
}

.splide__slide {
Expand Down
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "minter-dapp",
"version": "0.0.1",
"description": "Generate an NFT collection and deploy a minting dapp easy!!",
"scripts": {

},
"author": "Jesse Hall (codeSTACKr)",
"license": "MIT",
"dependencies": {

}
}

0 comments on commit 4a45607

Please sign in to comment.