mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-14 09:35:37 +00:00
74f15fca9c
Currently only errors without arguments
7 lines
229 B
JavaScript
7 lines
229 B
JavaScript
module.exports = async ({ deployments, getNamedAccounts }) => {
|
|
const { deployer } = await getNamedAccounts();
|
|
await deployments.deploy("TestCustomErrors", { from: deployer });
|
|
};
|
|
|
|
module.exports.tags = ["TestCustomErrors"];
|