type DeployPublishedContractOptions = { account: Account; chain: Chain; client: ThirdwebClient; contractId: string; contractParams: Array<unknown>; implementationConstructorParams?: Array<unknown>; publisher?: string; version?: string;};
type account = Account;
type chain = Chain;
type client = ThirdwebClient;
type contractId = string;
type contractParams = Array<unknown>;
type implementationConstructorParams = Array<unknown>;
type publisher = string;
type version = string;