If you’re looking for help from the community about an issue, please be as detailed as possible. When creating a thread, include the following information:
Mint function name (ex: mintNFT, make sure this function is public and payable)
mintNFT
Mint function params
above the the fields I don’t fully understand how to fill.
I should say I’m stuck at the first step of adding Winter to the manifold smart contract that then ill use to make a token that will have a claim page with Credit card check out.
Open that endpoint, which will give you data about your claim. You’re looking for the following values:
id, creatorContractAddress and extensionAddress
Go to the extensionAddress on etherscan, and look for the mint function. That’s the function signature and the required params.
Note: If it’s a restricted claim, this may not be easily supported as you’d have to pass in merkle info. I would recommend you not do that.
We are planning on introducing fiat payments to claim pages soon though.
OMG this seems perfect and going to test now, hmm my client did request this drop to be gated but if claim pages don’t support I can talk to them about getting that project requirement removed. Sadly this client wants this completed for a launch Thursday.
Going to test this on a live page i have all ready with a free NFT just to see if the CC option appears.
Is there a way to add the clients social media info and eth address instead of my info on the claim page?
Looking forward to being able to accept fiat soon!!! so excited.
If you open that up, you’ll see that:
id - 1878595824
creatorContractAddress - 0xe474f416883c9ea449ebc949a45728cab127af34
extensionAddress - 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444
mintIndex and merkleProof are only for gated claims, and you’re not going to be able to use that with Winter easily, since these are dynamically generated. If it’s non-gated, it would be 0 and 0x0 respectively.
Sorry for the late reply and again thanks for the information and details. Yes this will be an open drop non-gated. Going to retest with the new information provided and let you know the results.
Sorry for the late reply, life you know. I made a few changes based on the new information provided. I changed the ABI from the rosser NFT Gallery smart contract to the Extension adderss.
Changed the Mint function to mint.
The Function parameters, I changed to address 0xe474f416883c9ea449ebc949a45728cab127af34, claimIndex 1878595824, mintIndex,
Looking at the Mint Function I think these are the parms (function mint(address creatorContractAddress, uint256 claimIndex, uint32 mintIndex, bytes32[] calldata merkleProof) external payable;)
I don’t fully understand how to conform for winter.
Error I get when i test, Progress different error.