2️⃣Minting Assets with Sugar 2

here were going to be doing some crazy solana stuff LOL

Now lets create two vanity keypair wallets and fund them with faucet (test SOL )since we are working on devnet RPC

solana-keygen grind --starts-with CrT:1 for the creator

solana-keygen grind --starts-with HuS:1 for the project

Once this keypairs are generated, run

Solana airdrop 2 <keypair pub key> --url https://api.devnet.solana.com

Next,run in the project dir

sugar.exe config create

This should create a config.json

Note sugar.exe comand is for windows, wsl/linux and mac varies read through the metaplex doc here https://developers.metaplex.com/candy-machine/sugar/getting-started ,

Next, run

sugar.exe upload

This checks all the png and json file starting with 0 (0 - n with collection.png and collection.json file)

sugar.exe deploy

This promt you to upload to a preferred storage as well as generating a candy machine ID used

sugar.exe verify

Checks if all png and json were uploaded successful and no breaks during the process

Last updated