mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-13 17:15:26 +00:00
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
module.exports = async ({deployments, getNamedAccounts}) => {
|
|
const { deployer } = await getNamedAccounts()
|
|
await deployments.deploy('TestToken', { from: deployer })
|
|
}
|
|
|
|
module.exports.tags = ['TestToken']
|