filfox-verifier
Version:
CLI tool for verifying smart contracts on Filfox from foundry and hardhat projects
14 lines • 441 B
TypeScript
export interface CompilationResult {
metadata: any;
sourceFiles: Record<string, string>;
}
export declare class FoundryProject {
private rootPath;
private foundryTomlPath;
private srcPath;
constructor(rootPath?: string);
initialize(): Promise<void>;
compile(contractPath: string, contractName: string): Promise<CompilationResult>;
private collectSourceFiles;
}
//# sourceMappingURL=FoundryProject.d.ts.map