nim-ethers/testnode/deploy/testcustomerrors.js

7 lines
229 B
JavaScript

module.exports = async ({ deployments, getNamedAccounts }) => {
const { deployer } = await getNamedAccounts();
await deployments.deploy("TestCustomErrors", { from: deployer });
};
module.exports.tags = ["TestCustomErrors"];