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