ContractAddressChecker

Ethereum
etherscanblockscout
Code Snippets

getContractAddresses

view
Input should be passed in JSON format - Ex: ["0x..."]

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