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