UNPKG

bufan-hardhat-strip-comments

Version:

Hardhat plugin to strip comments from contracts during verification with custom Dubai ASCII art headers

34 lines 944 B
declare module "hardhat/types" { interface HardhatUserConfig { stripComments?: { enabled?: boolean; customHeader?: string; excludedFiles?: string[]; preserveLicense?: boolean; authorInfo?: { author?: string; createdDate?: string; purpose?: string; description?: string; }; headerStyle?: string; }; } interface HardhatConfig { stripComments: { enabled: boolean; customHeader: string; excludedFiles: string[]; preserveLicense: boolean; authorInfo: { author: string; createdDate: string; purpose: string; description: string; }; headerStyle: string; }; } } export {}; //# sourceMappingURL=index.d.ts.map