type UninstallPublishedExtensionOptions = { chain: Chain; client: ThirdwebClient; constructorParams?: Array<unknown>; contract: ThirdwebContract; extensionData?: `0x${string}`; extensionName: string; publisherAddress?: string; version?: string;};
type chain = Chain;
type client = ThirdwebClient;
type constructorParams = Array<unknown>;
type contract = ThirdwebContract;
type extensionData = `0x${string}`;
type extensionName = string;
type publisherAddress = string;
type version = string;