mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 21:53:08 +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']
|