codex-contracts-eth/deploy/token.js

7 lines
211 B
JavaScript
Raw Normal View History

2022-02-09 13:17:23 +00:00
module.exports = async ({ deployments, getNamedAccounts }) => {
const { deployer } = await getNamedAccounts()
2022-02-09 13:17:23 +00:00
await deployments.deploy("TestToken", { from: deployer })
}
2022-02-09 13:17:23 +00:00
module.exports.tags = ["TestToken"]