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;};
type compilerOptions = CompilerOptions;
type defaultModules = Array<{ moduleName: string; moduleVersion: string; publisherAddress: string;}>;
type forceDirectDeploy = boolean;
function notifier( status: "deploying" | "deployed", contractType: DeployedContractType | string,): void;
type saltForProxyDeploy = string;