ChillpillStaking

Ethereum
etherscanblockscout
Code Snippets

balanceOf

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