DeployOptions

type DeployOptions = {
compilerOptions?: CompilerOptions;
defaultModules?: Array<{
moduleName: string;
moduleVersion: string;
publisherAddress: string;
}>;
forceDirectDeploy?: boolean;
notifier?: (
status: "deploying" | "deployed",
contractType: DeployedContractType | string,
) => void;
saltForProxyDeploy?: string;
};