dkg-evm-module
Version:
Smart contracts for OriginTrail V8
23 lines (20 loc) • 487 B
text/typescript
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { DeployFunction } from 'hardhat-deploy/types';
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
await hre.helpers.deploy({
newContractName: 'Profile',
});
};
export default func;
func.tags = ['Profile'];
func.dependencies = [
'Hub',
'Identity',
'IdentityStorage',
'ParametersStorage',
'ProfileStorage',
'WhitelistStorage',
'Ask',
'DelegatorsInfo',
'Chronos',
];