UNPKG

deployment-tool

Version:

Tool to deploy and upgrade contracts on Ethereum Mainnet

17 lines 491 B
import 'hardhat/types/config'; import 'hardhat/types/runtime'; import { ContractDeployment } from './ContractDeployment'; declare module 'hardhat/types/config' { interface ProjectPathsUserConfig { deployment?: string; } interface ProjectPathsConfig { deployment: string; } } declare module 'hardhat/types/runtime' { interface HardhatRuntimeEnvironment { contractDeployment: ContractDeployment; } } //# sourceMappingURL=type-extensions.d.ts.map