dkg-evm-module
Version:
Smart contracts for OriginTrail V8
18 lines (14 loc) • 481 B
text/typescript
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { DeployFunction } from 'hardhat-deploy/types';
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const WhitelistStorage = await hre.helpers.deploy({
newContractName: 'WhitelistStorage',
});
await hre.helpers.updateContractParameters(
'WhitelistStorage',
WhitelistStorage,
);
};
export default func;
func.tags = ['WhitelistStorage'];
func.dependencies = ['Hub'];