dkg-evm-module
Version:
Smart contracts for OriginTrail V8
12 lines (9 loc) • 358 B
text/typescript
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { DeployFunction } from 'hardhat-deploy/types';
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
if (hre.network.config.environment !== 'development') {
hre.helpers.saveDeploymentsJson('deployments');
}
};
export default func;
func.runAtTheEnd = true;