PeripheryProxyAdmin.ts 588 Bytes
/* Imports: External */
import { DeployFunction } from 'hardhat-deploy/dist/types'

const deployFn: DeployFunction = async (hre) => {
  const { deployer } = await hre.getNamedAccounts()

  const { deploy } = await hre.deployments.deterministic(
    'PeripheryProxyAdmin',
    {
      contract: 'ProxyAdmin',
      salt: hre.ethers.utils.solidityKeccak256(
        ['string'],
        ['PeripheryProxyAdmin']
      ),
      from: deployer,
      args: [hre.deployConfig.ddd],
      log: true,
    }
  )

  await deploy()
}

deployFn.tags = ['PeripheryProxyAdmin']

export default deployFn