Create NFT on Form Submission
Last updated
Last updated
const response = await fetch(
'https://dev.underdogprotocol.com/v2/projects/n/1/nfts' ,
{
method: "POST",
body: JSON.stringify ({
name: "The 1990s",
image: "https://www.gamespot.com/a/uploads/scale_super/1562/15626911/3501525-remembering1999-movies-tv-promo.jpg",
}),
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer b4e9ee1d2420d0.ec947c3bfd2049059d3962e74be1959c'
}
});
const responsejson = await response.json();
output.set("mintAddress", responsejson.mintAddress)