Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Oct 7, 2024
1 parent 6eeb651 commit c7c7d64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@uniswap/v3-periphery": "https://github.com/Uniswap/v3-periphery#0.8",
"accountabstraction": "https://github.com/eth-infinitism/account-abstraction#develop",
"excessively-safe-call": "github:nomad-xyz/ExcessivelySafeCall",
"nexus": "https://github.com/bcnmy/nexus#feat/remap-fix"
"nexus": "https://github.com/bcnmy/nexus#dev"
},
"devDependencies": {
"@bonadocs/docgen": "^1.0.1-alpha.1",
Expand Down
6 changes: 3 additions & 3 deletions test/base/TestHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { MockDelegateTarget } from "@nexus/contracts/mocks/MockDelegateTarget.so
import { MockValidator } from "@nexus/contracts/mocks/MockValidator.sol";
import { MockMultiModule } from "@nexus/contracts/mocks/MockMultiModule.sol";
import { MockPaymaster } from "@nexus/contracts/mocks/MockPaymaster.sol";
import { RegistryBootstrap, BootstrapConfig } from "@nexus/contracts/utils/RegistryBootstrap.sol";
import { NexusBootstrap, BootstrapConfig } from "@nexus/contracts/utils/NexusBootstrap.sol";
import { BiconomyMetaFactory } from "@nexus/contracts/factory/BiconomyMetaFactory.sol";
import { NexusAccountFactory } from "@nexus/contracts/factory/NexusAccountFactory.sol";
import { BootstrapLib } from "@nexus/contracts/lib/BootstrapLib.sol";
Expand Down Expand Up @@ -59,7 +59,7 @@ contract TestHelper is CheatCodes, EventsAndErrors {
MockMultiModule internal MULTI_MODULE;
Nexus internal ACCOUNT_IMPLEMENTATION;

RegistryBootstrap internal BOOTSTRAPPER;
NexusBootstrap internal BOOTSTRAPPER;

// -----------------------------------------
// Setup Functions
Expand Down Expand Up @@ -113,7 +113,7 @@ contract TestHelper is CheatCodes, EventsAndErrors {
HANDLER_MODULE = new MockHandler();
VALIDATOR_MODULE = new MockValidator();
MULTI_MODULE = new MockMultiModule();
BOOTSTRAPPER = new RegistryBootstrap();
BOOTSTRAPPER = new NexusBootstrap();
REGISTRY = new MockRegistry();
}

Expand Down

0 comments on commit c7c7d64

Please sign in to comment.