dkg-evm-module
Version:
Smart contracts for OriginTrail V8
26 lines (23 loc) • 595 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: 'RandomSampling',
});
};
export default func;
func.tags = ['RandomSampling'];
func.dependencies = [
'Hub',
'Chronos',
'RandomSamplingStorage',
'StakingStorage',
'ProfileStorage',
'EpochStorage',
'AskStorage',
'DelegatorsInfo',
'KnowledgeCollectionStorage',
'IdentityStorage',
'ShardingTableStorage',
'ParametersStorage',
];