Calls the "getPublishedContract" function on the contract.
import { getPublishedContract } from "thirdweb/extensions/thirdweb"; const result = await getPublishedContract({ contract, publisher: ..., contractId: ...,});
function getPublishedContract( options: BaseTransactionOptions<GetPublishedContractParams>,): Promise<{ bytecodeHash: `0x${string}`; contractId: string; implementation: string; publishMetadataUri: string; publishTimestamp: bigint;}>;
The options for the getPublishedContract function.
let options: BaseTransactionOptions<GetPublishedContractParams>;
let returnType: Promise<{ bytecodeHash: `0x${string}`; contractId: string; implementation: string; publishMetadataUri: string; publishTimestamp: bigint;}>;
The parsed result of the function call.