Skip to content

Commit

Permalink
Revert "chore: use relative imports"
Browse files Browse the repository at this point in the history
This reverts commit 33e6343.
  • Loading branch information
highskore committed Nov 21, 2024
1 parent 33e6343 commit 9e10db0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/accounts/nexus/interfaces/INexusBootstrap.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import { IERC7579Module } from "../../../external/ERC7579.sol";
import { IERC7579Module } from "src/external/ERC7579.sol";
import { IERC7484 } from "src/Interfaces.sol";

struct BootstrapConfig {
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/registry/ExampleFactory.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

import { IMSA, ERC7579Bootstrap, IERC7579Module } from "../../external/ERC7579.sol";
import { IMSA, ERC7579Bootstrap, IERC7579Module } from "src/external/ERC7579.sol";
import { FactoryBase } from "./FactoryBase.sol";
import { IMSA } from "erc7579/interfaces/IMSA.sol";
import { MSAProxy } from "erc7579/utils/MSAProxy.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/test/helpers/ERC7579Helpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { AccountInstance } from "../RhinestoneModuleKit.sol";
import { HelperBase } from "./HelperBase.sol";
import { IAccountModulesPaginated } from "./interfaces/IAccountModulesPaginated.sol";
import { IERC1271, EIP1271_MAGIC_VALUE } from "src/Interfaces.sol";
import { CallType } from "../../external/ERC7579.sol";
import { CallType } from "src/external/ERC7579.sol";

contract ERC7579Helpers is HelperBase {
/*//////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/test/helpers/KernelHelpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { Kernel } from "kernel/Kernel.sol";
import { etch } from "../utils/Vm.sol";
import { IValidator, IModule } from "kernel/interfaces/IERC7579Modules.sol";
import { IERC1271, EIP1271_MAGIC_VALUE } from "src/Interfaces.sol";
import { CallType, Execution } from "../../external/ERC7579.sol";
import { CallType, Execution } from "src/external/ERC7579.sol";
import { MockHookMultiPlexer } from "src/Mocks.sol";
import { TrustedForwarder } from "src/Modules.sol";
import { PackedUserOperation } from "src/external/ERC4337.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/test/helpers/NexusHelpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { AccountInstance } from "../RhinestoneModuleKit.sol";
import { HelperBase } from "./HelperBase.sol";
import { IAccountModulesPaginated } from "./interfaces/IAccountModulesPaginated.sol";
import { IERC1271, EIP1271_MAGIC_VALUE } from "src/Interfaces.sol";
import { CallType } from "../../external/ERC7579.sol";
import { CallType } from "src/external/ERC7579.sol";

contract NexusHelpers is HelperBase {
/*//////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/test/helpers/SafeHelpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { IAccountModulesPaginated } from "./interfaces/IAccountModulesPaginated.
import { CALLTYPE_STATIC } from "safe7579/lib/ModeLib.sol";
import { IERC1271, EIP1271_MAGIC_VALUE } from "src/Interfaces.sol";
import { startPrank, stopPrank } from "../utils/Vm.sol";
import { CallType } from "../../external/ERC7579.sol";
import { CallType } from "src/external/ERC7579.sol";

contract SafeHelpers is HelperBase {
/*//////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 9e10db0

Please sign in to comment.