@nbouvier/hardhat-configs-proxy
Version:
Contract addresses managment for Hardhat project
12 lines • 618 B
TypeScript
import '@openzeppelin/hardhat-upgrades';
import type { HardhatConfigs } from '@nbouvier/hardhat-configs';
import type { DeployProxyFunction } from './environment/deploy-proxy';
import type { UpgradeProxyFunction } from './environment/upgrade-proxy';
import './environment/type-extensions';
export { ProxyDeploymentException } from './environment/deploy-proxy';
export { ProxyUpgradeException } from './environment/upgrade-proxy';
export interface HardhatConfigsProxy extends HardhatConfigs {
deployProxy: DeployProxyFunction;
upgradeProxy: UpgradeProxyFunction;
}
//# sourceMappingURL=index.d.ts.map