Questions tagged [candy-machine]

103 questions
1
vote
2 answers

Can't withdraw a Candy Machine

I can't withdraw any of my CMs. I've got timeout error every time I try. I've tried multiple times for several days but result is the same. The result is the same using withdraw_all and withdraw commands. Command: ts-node…
1
vote
2 answers

can't upload candy machine collection because of time out error

i am trying to upload a collection on solana devnet through metaplex candy machine cli by running ts-node metaplex/js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k wallet/devnet.json \ -cp config.json \ -c example…
upoferw
  • 11
  • 2
1
vote
2 answers

Why are there 2 creators in the metadata in my NFT on Solana?

I have been playing around with Solana, deploying NFTs on the devnet. I noticed one thing that when I mint an NFT, it has 2 creators, even though I mention only one in the metadata. I am minting the collection using candymachine v2. I would like to…
1
vote
1 answer

Setting up GenesysGo as RPC Host on Candy Machine V2

I am finalizing my first Candy Machine minting project using Candy Machine V2. I have read that its not a good idea to use the default https://api.mainnet-beta.solana.com host because it can't handle large amounts of traffic. I've update the Candy…
bschmitty
  • 1,118
  • 3
  • 16
  • 46
1
vote
2 answers

How to list collection first holders?

I'm developing an NFT collection on Solana using Metaplex Candy Machine V2 program. One of the requirements of the project is to be able to programmatically list the very first minters of each NFT (the wallet addresses which first minted and owned…
1
vote
1 answer

How to point candy machine to domain name?

Havent been able to find much on this at all, on here or on google. But I currently have my own domain, and i want to host my candy machine on it. how would I go about doing that? I've been trying to look around for config files to change it from…
netsocket
  • 117
  • 1
  • 10
1
vote
2 answers

One Collection, Multiple Candy Machines

I'm trying to create a NFT collection of 999 pieces. Out of this 999 pieces 23 will be reserved for early investors (they will receive a custom NFT). Because there is no way to mint a specific NFT (investor NFT) - I was advised to create 2 candy…
buttcreamz
  • 28
  • 2
1
vote
1 answer

"Candy Machine v2" - Solana uploading NFT assets failed - "Transaction was not confirmed in 60.01 seconds". Unknown "Candy Machine PublicKey"

I've prepared NFT collection of 2 items for uploading it to the Solana blockchain with using "Candy Machine v2" on the mainnet-beta cluster. According Solana documentation > Creating the Candy Machine I've tried to upload assets with the CLI. I've…
adam
  • 11
  • 1
1
vote
0 answers

How to get the last NFT minted on candy machine

After a user mints an nft, I want to get the token address or metadata and display it. I'm using the Candy machine's ui from Metaplex They're using the mintOneToken function and it only returns a confirmation code, and that's not helpful. const…
1
vote
1 answer

How do I get my NFT picture to show in Crossmint

I am using www.crossmint.io to accept credit cards on my NFT drop. For some reason, the image preview is showing a green leaf (crossmint logo) instead of my NFT collection image. This is my code:
alfongj
  • 2,255
  • 1
  • 19
  • 23
1
vote
1 answer

SOLANA: How to display my candy machine NFT's on metaplex's storefront?

I minted 30 tokens with candy machine's cli, following the metaplex's github boilerplate project Uploaded, verified, minted and signed all the NFT's. I can see them on my phantom wallet and it created a cache file on the main directory with the…
jalapina
  • 3,962
  • 3
  • 12
  • 19
1
vote
1 answer

Get NFTs by CandyMachineId always returning an empty array

I am trying to write a script to pull NFTs by candy machine id, but it is either failing or returning an empty array each time. I am using the genesysgo mainnet rpc. Here is the relevant code. const rpc = process.env.REACT_APP_RPC_HOST!; const…
MMelvin0581
  • 509
  • 6
  • 20
1
vote
3 answers

unable to upload nfts using metaplex

while am uploading Nft asset to Solana network and have this error : Beginning the upload for 22 (img+json) pairs started at: 1646166389888 initializing candy machine Error deploying config to Solana network. Error: Invalid config, there must be a…
1
vote
2 answers

Metaplex Candy machine mainnet NFT depoly issue

I have made Solana NFT using Metaplex Candy Machine. I have uploaded 1000 NFT. But In candy machine UI, shows available count is 985. I lost 15 NFTs. Also, if I click Mint Button, the count was reduced to 3 at once. and can't see NFT on my phantom…
1
vote
2 answers

I'm trying to complete the upload step to deploy a candy machine and I get the below output

I'm trying to complete the upload step to deploy a candy machine and I am using Metaplex v2 and I am using devnet(not using minnet-beta) and "storage": "arweave" also set to devnet but still I get the below output error: EDIT: Thank you for…