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