UNPKG

aa-schnorr-multisig

Version:
13 lines (12 loc) 463 B
export interface Deployment { MultiSigSmartAccountFactory?: string; } export type Deployments = Record<string, Deployment>; export declare class DeploymentManager { readonly deploymentFilePath: string; private deploymentDraft; constructor(deploymentFilePath: string); read: () => Promise<Deployments>; write: (chainId: string | number, deployment: Deployment) => Promise<void>; } export declare const deploymentManager: DeploymentManager;