mirror of
https://github.com/codex-storage/nim-ethers.git
synced 2025-02-09 18:13:35 +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"];
|