Skip to content

Commit

Permalink
refactor: Update base script import in DeploySimplePlusAccountFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgonzalezra committed May 23, 2024
1 parent ac98f8d commit ea34470
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/DeploySimplePlusAccountFactory.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit ea34470

Please sign in to comment.