-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buy more than 1 nft per transaction #11
Comments
Hello, You can do this: const [nft_quantity, setQuantity] = useState(1); function checkQuantity(value) { setQuantity(value); The actual input: <input name="nft-quantity" Mint button onClick action: claimNFTs(nft_quantity); Hope this helps you get an idea on how to achieve this. |
Thanks so much, will give this a try now. |
Hey, could you please explain more in detail? |
Hi guys,
Does anyone know what changes are required to change the buy button section to allow the user to buy more than one nft at a time? The current set-up only allows 1 nft to be purchased per transaction
Thanks in advance
The text was updated successfully, but these errors were encountered: