MirrorgateEthVault.js 357 B

1234567891011
  1. module.exports = async ({deployments,getNamedAccounts}) => {
  2. const {deploy} = deployments;
  3. const {deployer} = await getNamedAccounts()
  4. await deploy("MirrorgateEthVault", {
  5. from: deployer,
  6. log: true,
  7. skipIfAlreadyDeployed: true,
  8. waitConfirmations: 1,
  9. });
  10. }
  11. module.exports.tags = ["MirrorgateEthVault", "test"]