013-OVM_SafetyChecker.deploy.ts 377 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Imports: External */
import { DeployFunction } from 'hardhat-deploy/dist/types'

/* Imports: Internal */
import { deployAndRegister } from '../src/hardhat-deploy-ethers'

const deployFn: DeployFunction = async (hre) => {
  await deployAndRegister({
    hre,
    name: 'OVM_SafetyChecker',
    args: [],
  })
}

deployFn.tags = ['OVM_SafetyChecker']

export default deployFn