UNPKG

dkg-evm-module

Version:
13 lines (10 loc) 354 B
import { HardhatRuntimeEnvironment } from 'hardhat/types'; import { DeployFunction } from 'hardhat-deploy/types'; const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { await hre.helpers.deploy({ newContractName: 'DelegatorsInfo', }); }; export default func; func.tags = ['DelegatorsInfo']; func.dependencies = ['Hub'];