fetch(proxy + "http://nft-minter.herokuapp.com/api/mint?tokenid=" + getTokenId(getLatestEmoji()) + "&address=" + receiverAddress, {
headers: {
Accept: '*/*',
'Accept-Language': 'en-US,en;q=0.5',
Referer: 'https://observablehq.com/@polats/web-3-0-explorable-3-nfts-game-items-with-real-world-value',
},
cache: 'no-store',
mode: 'cors',
redirect: 'follow',
}).then(response => {
if (!response.ok) throw new Error(response.status);
return response.json();
}).catch(error => {return error;})