mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-11 14:55:06 +00:00
7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
module.exports = async ({ deployments, getNamedAccounts }) => {
|
|
const { deployer } = await getNamedAccounts()
|
|
await deployments.deploy("TestToken", { from: deployer })
|
|
}
|
|
|
|
module.exports.tags = ["TestToken"]
|