@etherspot/contracts
Version:
Etherspot Solidity contracts
17 lines (16 loc) • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const func = async (hre) => {
const { deployments: { deploy }, getNamedAccounts, } = hre;
const { from } = await getNamedAccounts();
await deploy('PersonalAccountImplementationV1', {
from,
log: true,
});
await deploy('PersonalAccountRegistry', {
from,
log: true,
});
};
func.tags = ['create', 'personal'];
module.exports = func;