1234567891011 |
- module.exports = async ({deployments,getNamedAccounts}) => {
- const {deploy} = deployments;
- const {deployer} = await getNamedAccounts()
- await deploy("MirrorgateEthVault", {
- from: deployer,
- log: true,
- skipIfAlreadyDeployed: true,
- waitConfirmations: 1,
- });
- }
- module.exports.tags = ["MirrorgateEthVault", "test"]
|