BURN_ADDRESS
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: "0x88030786602B30f41E9e8ADAfaFb2A7C16A4dBBF",
method: "function BURN_ADDRESS() view returns (address)",
params: []
}
],
chainId: 888888888
})
});
const data = await response.json();