/* 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
-
smartcontracts authored
Adds deployment artifacts for our Kovan deployment of the NFT bridge and all related proxy contracts. Also includes an update to contracts-bedrock to properly export contract sources. Co-authored-by:
mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
9aa8049c