Gets a deployed module implementation contract.
import { getDeployedModule } from "thirdweb/modules"; const module = await getDeployedModule({ client, chain, contractId, publisher,});
function getDeployedModule(options: { chain: Readonly<ChainOptions & { rpc: string }>; client: ThirdwebClient; contractId: string; publisher?: string;}): Promise<null | Readonly<ContractOptions<[]>>>;
The options to use.
let options: { chain: Readonly<ChainOptions & { rpc: string }>; client: ThirdwebClient; contractId: string; publisher?: string;};
let returnType: Promise<null | Readonly<ContractOptions<[]>>>;
The module.