DeployPublishedContractOptions
type DeployPublishedContractOptions = { compilerType?: "solc" | "zksolc"; contractId: string; contractParams?: Record<string, unknown>; implementationConstructorParams?: Record<string, unknown>; publisher?: string; salt?: string; version?: string;};
type compilerType = "solc" | "zksolc";
type contractId = string;
type contractParams = Record<string, unknown>;
type implementationConstructorParams = Record<string, unknown>;
type publisher = string;
type salt = string;
type version = string;