DECIMALS
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: "0xDe6B4964c4384BcDfA150a4A8bE9865C5b91E29C",
method: "function DECIMALS() view returns (uint256)",
params: []
}
],
chainId: 42170
})
});
const data = await response.json();