This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"number": 10, | |
"symbol": "NB", | |
"sellerFeeBasisPoints": 500, | |
"isMutable": true, | |
"isSequential": false, | |
"creators": [ | |
{ | |
"address": "<Creator Wallet", | |
"share": 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Candy Machine Windows Edition! Launch Solana NFT Collection with Metaplex Candy Machine V3 and Sugar | |
# Install Git | |
# https://git-scm.com/download/win | |
git --version | |
# Install Node | |
# https://nodejs.org/en/download | |
npm --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"number": 10, | |
"symbol": "NB", | |
"sellerFeeBasisPoints": 500, | |
"isMutable": true, | |
"isSequential": false, | |
"creators": [ | |
{ | |
"address": "3pPYvzUriN9iCA4P4Pu2Z6KiQ4cDff6dUJjjXGYNQMGX", | |
"share": 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Launching NFT Collection with Wallet Based Whitelist using Candy Machine V3 | |
# Setup Solana Tool Suite | |
solana --version | |
solana-keygen --version | |
# Setup Sugar alpha version | |
# Download: https://github.com/metaplex-foundation/sugar/releases/tag/v2.0.0-beta.1 | |
chmod 755 sugarCM3 | |
./sugarCM3 --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getTotalSquares(x, y) { | |
let total = 0; | |
for (let loop = 0; loop < Math.min(x, y); loop++) { | |
total += ((x-loop) * (y-loop)); | |
} | |
return total; | |
} | |
console.log(getTotalSquares(4, 11)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"number": 10, | |
"symbol": "NB", | |
"sellerFeeBasisPoints": 500, | |
"isMutable": true, | |
"isSequential": false, | |
"creators": [ | |
{ | |
"address": "3icSnuo5kFS7BE5HPXLMrz1x1duK7bt69PJ4vvg2LDV9", | |
"share": 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Launching NFT Collection using Candy Machine V3 | |
# https://youtu.be/0KHv1dMV8zU | |
# Setup Solana Tool Suite | |
solana --version | |
solana-keygen --version | |
# Setup Sugar alpha version | |
chmod 755 sugarCM3 | |
./sugarCM3 --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Setup Sugar | |
bash <(curl -sSf https://sugar.metaplex.com/install.sh) | |
sugar --version | |
### Setup wallets | |
# Setup Solana Tool Suite | |
sh -c "$(curl -sSfL https://release.solana.com/v1.10.32/install)" | |
solana --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Verify that the required tools are installed | |
git version | |
node --version | |
yarn --version | |
ts-node --version | |
solana --version | |
# Setup Metaplex | |
git clone https://github.com/metaplex-foundation/metaplex.git ./metaplex | |
yarn install --cwd ./metaplex/js/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reference for the video: https://youtu.be/K2ykv9IffdA | |
## Create wallets | |
# BkuPyM8HV8Ea1RhwpydEjJ2YKMjXA81KxKME2AVXaCRW | |
solana-keygen new --outfile ~/KeyStrokes/nft/wallets/Payer.json | |
# CQdR5xa2u85GiBpt9hBMrcHN9Z6Jf6QNN1jjaAg7TPBu | |
solana-keygen new --outfile ~/KeyStrokes/nft/wallets/Minter.json |
NewerOlder