Skip to content

Instantly share code, notes, and snippets.

@doingthisalright
Created November 28, 2022 09:24
Show Gist options
  • Save doingthisalright/22cdbb356e22bf22a53fc9d458e947bc to your computer and use it in GitHub Desktop.
Save doingthisalright/22cdbb356e22bf22a53fc9d458e947bc to your computer and use it in GitHub Desktop.
Create Solana NFT Collection using Candy Machine V3: Commands used in the video: https://youtu.be/0KHv1dMV8zU
# 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
# Check your current directory
pwd
# Setup Wallets
### pubkey: 2tKPRocGEkTsUoVMfwVuL1mcJhjqDeJ8ttxvx4vSMPTN
### play leave bleak sausage volcano range picture autumn bring silly anchor scissors
solana-keygen new --outfile /Users/neo/KeyStrokes/candymachinev3/Owner.json
### pubkey: 3icSnuo5kFS7BE5HPXLMrz1x1duK7bt69PJ4vvg2LDV9
### ride unfold taste want head shop author unlock glance surface coconut physical
solana-keygen new --outfile /Users/neo/KeyStrokes/candymachinev3/Creator.json
# Setup Solana CLI
solana config set --keypair /Users/neo/KeyStrokes/candymachinev3/Owner.json
solana config set --url https://metaplex.devnet.rpcpool.com/
solana config get
# Fund Wallets
### Use this if airdrop does not work https://solfaucet.com/
solana airdrop 2 2tKPRocGEkTsUoVMfwVuL1mcJhjqDeJ8ttxvx4vSMPTN
solana airdrop 2 3icSnuo5kFS7BE5HPXLMrz1x1duK7bt69PJ4vvg2LDV9
# Download Metaplex Sample NFT Collection
# https://docs.metaplex.com/assets/files/assets-ff6bd873ecd07b49c86faf3c7aab82d2.zip
# Create Candy Machine V3 Config
./sugarCM3 create-config
# Upload Assets
./sugarCM3 upload
# Deploy Candy Machine V3
### Candy machine ID: 6PwQ4kq8DxqGSg7GiSy3pqTMsuVVM3H8r1XJX8D2rRUy
### Collection mint ID: 6iVgZXRB3csLvBfeYHVoGMgbKEXJEWsYCD2wLSU4HzfB
./sugarCM3 deploy
# Verify Candy Machine V3
./sugarCM3 verify
# Add Candy Guards to Candy Machine V3
./sugarCM3 guard add
# Show Candy Guards added Candy Machine V3
./sugarCM3 guard show
# Setup Key Stroke's Candy Machine V3 UI
### Download from:
cd cm-v3-ui-v0/
# Copy env file
cp .env.example .env
# Install dependencies
npm install
# Run Key Stroke's Candy Machine V3 UI
npm start
@taporyclub
Copy link

Perfect and I want to add my Secondary sales Fees on the seller who going to sell under floor to tax him. Replay me bro

@doingthisalright
Copy link
Author

Perfect and I want to add my Secondary sales Fees on the seller who going to sell under floor to tax him. Replay me bro

Hello @taporyclub! I don't think that Metaplex Candy Machine currently supports this. But, after listing, you might want to check ME (or the marketplaces where you list) in case they support it as a feature. :)

@taporyclub
Copy link

Actually I want to add that fees on those who sells under mint Price or below the floor Price. I want to make a Treasury bot to buyback and tax 44.44% the person who selling under floor or other nft marketplace.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment