mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 13:43:06 +00:00
7 lines
231 B
JavaScript
7 lines
231 B
JavaScript
module.exports = async ({ deployments, getNamedAccounts }) => {
|
|
const { deployer } = await getNamedAccounts();
|
|
await deployments.deploy("TestGasEstimation", { from: deployer });
|
|
};
|
|
|
|
module.exports.tags = ["TestGasEstimation"];
|