I tried to change token base URL to display the new images of NFTs on opensea.io. But it is not updated immediately.
There is a way to update by specifying force_update=true on Rikeby testnet.
But I don't know how to update it on mainnet. Will it be possible?
Any help will be appreciated.
for (let tokenId = fromTokenId; tokenId <= toTokenId; tokenId++) { const url = "https://api.opensea.io/api/v1/asset/${contractAddress}/${tokenId}/?force_update=true"; await fetch(url); console.log("Done with ${tokenId}"); }
– Abnormality