UNPKG

@etherspot/contracts

Version:

Etherspot Solidity contracts

13 lines (12 loc) 367 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const func = async (hre) => { const { deployments: { deploy }, getNamedAccounts, } = hre; const { from } = await getNamedAccounts(); await deploy('ExternalAccountRegistry', { from, log: true, }); }; func.tags = ['create', 'external']; module.exports = func;