Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Nov 13, 2023
1 parent a271976 commit 60e1c5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/test/accounts/BiconomyAccountFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20; // temp
// Could also use published package or added submodule.

// temp
import {SmartAccountFactory} from "@biconomy-devx/account-contracts-v2/contracts/smart-account/factory/SmartAccountFactory.sol";
import {SmartAccountFactory} from "lib/scw-contracts/contracts/smart-account/factory/SmartAccountFactory.sol";

contract BiconomyAccountFactory is SmartAccountFactory {
constructor(
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/accounts/BiconomyAccountImpl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.20;

import {IEntryPoint} from "@account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {SmartAccount} from "@biconomy-devx/account-contracts-v2/contracts/smart-account/SmartAccount.sol";
import {SmartAccount} from "lib/scw-contracts/contracts/smart-account/SmartAccount.sol";

// Note: Could also use published package or added submodule.

Expand Down
6 changes: 3 additions & 3 deletions test/TokenPaymaster.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import {UserOperation} from "@account-abstraction/contracts/interfaces/UserOpera
import {IStakeManager} from "@account-abstraction/contracts/interfaces/IStakeManager.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

import {SmartAccountFactory} from "@biconomy-devx/account-contracts-v2/contracts/smart-account/factory/SmartAccountFactory.sol";
import {SmartAccount} from "@biconomy-devx/account-contracts-v2/contracts/smart-account/SmartAccount.sol";
import {EcdsaOwnershipRegistryModule} from "@biconomy-devx/account-contracts-v2/contracts/smart-account/modules/EcdsaOwnershipRegistryModule.sol";
import {SmartAccountFactory} from "lib/scw-contracts/contracts/smart-account/factory/SmartAccountFactory.sol";
import {SmartAccount} from "lib/scw-contracts/contracts/smart-account/SmartAccount.sol";
import {EcdsaOwnershipRegistryModule} from "lib/scw-contracts/contracts/smart-account/modules/EcdsaOwnershipRegistryModule.sol";


import {MockToken} from "../contracts/test/helpers/MockToken.sol";
Expand Down

0 comments on commit 60e1c5b

Please sign in to comment.