mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-13 00:54:38 +00:00
e0ac15b3ba
Add the following helpers to help detect transaction reverts: 1. `reverts` 2. `revertsWith` 3. `doesNotRevert` 4. `doesNotRevertWith`
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"];
|