UNPKG

@etherspot/contracts

Version:

Etherspot Solidity contracts

18 lines (17 loc) 477 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const func = async (hre) => { const { deployments, getNamedAccounts } = hre; const { deploy } = deployments; const { from } = await getNamedAccounts(); await deploy("BalancesHelper", { from, log: true, }); await deploy("BalancesHelperV2", { from, log: true, }); }; func.tags = ["create", "common", "balanceHelpers"]; module.exports = func;