hardhat-deployed
Version:
Hardhat plugin for saving deployed contract address.
20 lines (19 loc) • 505 B
TypeScript
import "hardhat/types/config";
declare module "hardhat/types/config" {
interface DeployedUserConfig {
deployedDir?: string;
ignoreContracts?: string[];
externalContracts?: string[];
}
interface DeployedConfig {
deployedDir: string;
ignoreContracts: string[];
externalContracts: string[];
}
interface HardhatUserConfig {
deployed?: DeployedUserConfig;
}
interface HardhatConfig {
deployed: DeployedConfig;
}
}