mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-21 12:59:07 +00:00
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
|
module.exports = async ({deployments, getNamedAccounts}) => {
|
||
|
const { deployer } = await getNamedAccounts()
|
||
|
await deployments.deploy('TestHelpers', { from: deployer })
|
||
|
}
|
||
|
|
||
|
module.exports.tags = ["TestHelpers"];
|