mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-13 00:54:38 +00:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
module.exports = async ({ deployments, getNamedAccounts }) => {
|
|
const { deployer } = await getNamedAccounts();
|
|
await deployments.deploy("TestEnums", { from: deployer });
|
|
};
|
|
|
|
module.exports.tags = ["TestEnums"];
|