Returns contract address and ABI for manual contract interaction or
custom client configuration. Useful when you need contract details
but don't want to create a client connection.
Example
constinfo = getContractInfo("DataRegistry"asconst, 14800); console.log(info.address); // Typed as Address console.log(info.abi); // Fully typed ABI
// Use with custom viem client constcontract = getContract({ ...info, client:customClient });
Gets contract information without creating a contract instance.