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