NFT
view
Use this function in your app
const response = await fetch('https://api.thirdweb.com/v1/contracts/read', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-secret-key': '<YOUR_SECRET_KEY>'
},
body: JSON.stringify({
calls: [
{
contractAddress: "0x8eA05F9dD5E6726EfB77Bc341b6a1C158DFe90E5",
method: "function NFT() view returns (address)",
params: []
}
],
chainId: 56
})
});
const data = await response.json();