@nbouvier/hardhat-configs-proxy
Version:
Contract addresses managment for Hardhat project
10 lines • 447 B
TypeScript
import type { HardhatRuntimeEnvironment } from 'hardhat/types';
import type { Contract } from 'ethers';
export declare class ProxyUpgradeException extends Error {
constructor(name: string);
}
export interface UpgradeProxyFunction {
(name: string, artifactName: string): Promise<Contract>;
}
export declare function makeUpgradeProxy(hre: HardhatRuntimeEnvironment): UpgradeProxyFunction;
//# sourceMappingURL=upgrade-proxy.d.ts.map