@defi-wonderland/keep3r-v2
Version:
The Keep3r Network is a decentralized network for projects that need external devops, and for external teams to find keeper jobs
19 lines (14 loc) • 635 B
text/typescript
import { DeployFunction } from 'hardhat-deploy/types';
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { KEEP3R_MSIG } from './constants';
const deployFunction: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const { deployer } = await hre.getNamedAccounts();
await hre.deployments.deploy('UniV3PairManagerFactory', {
contract: 'solidity/contracts/UniV3PairManagerFactory.sol:UniV3PairManagerFactory',
from: deployer,
log: true,
args: [KEEP3R_MSIG],
});
};
deployFunction.tags = ['deploy-factory', 'uni-v3-pair-manager-factory', 'mainnet'];
export default deployFunction;