hardhat-deployed-records
Version:
Hardhat plugin for deploying records
18 lines (17 loc) • 472 B
TypeScript
import "hardhat/types/config";
declare module "hardhat/types/config" {
interface DeployedRecordsUserConfig {
deployedDir?: string;
ignoreContracts?: string[];
}
interface DeployedRecordsConfig {
deployedDir: string;
ignoreContracts: string[];
}
interface HardhatUserConfig {
deployedRecords?: DeployedRecordsUserConfig;
}
interface HardhatConfig {
deployedRecords: DeployedRecordsConfig;
}
}