campaigns

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: "0xf80d7F47412A372463F969A54A57e468C5F81598", method: "function campaigns(uint256) view returns (address owner, string title, string description, uint256 target, uint256 deadline, uint256 amountCollected, string image)", params: [] } ], chainId: 11155111 }) }); const data = await response.json();