@thenextblock/hardhat-weth
Version:
WETH deployment plugin for Hardhat
10 lines • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.deployWeth = void 0;
const typechain_1 = require("../typechain");
async function deployWeth(deployer) {
const contract = await new typechain_1.WETH9__factory(deployer).deploy();
return contract.deployed();
}
exports.deployWeth = deployWeth;
//# sourceMappingURL=functions.js.map