From ea34470ebec605c55351fb7c3d1d744d73dccf8f Mon Sep 17 00:00:00 2001 From: Joaquin Gonzalez Date: Thu, 23 May 2024 14:15:58 -0300 Subject: [PATCH] refactor: Update base script import in DeploySimplePlusAccountFactory --- script/DeploySimplePlusAccountFactory.s.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/DeploySimplePlusAccountFactory.s.sol b/script/DeploySimplePlusAccountFactory.s.sol index 1b952f2..29ef9ca 100644 --- a/script/DeploySimplePlusAccountFactory.s.sol +++ b/script/DeploySimplePlusAccountFactory.s.sol @@ -4,8 +4,9 @@ pragma solidity ^0.8.25; import { Script, console } from "forge-std/src/Script.sol"; import { EntryPoint } from "@account-abstraction/contracts/core/EntryPoint.sol"; import { SimplePlusAccountFactory } from "../src/SimplePlusAccountFactory.sol"; +import { BaseScript } from "./Base.s.sol"; -contract DeploySimplePlusAccountFactory is Script { +contract DeploySimplePlusAccountFactory is BaseScript { // Load entrypoint from env address public entryPointAddr = vm.envAddress("ENTRYPOINT"); EntryPoint public entryPoint = EntryPoint(payable(entryPointAddr));