Skip to content

Commit

Permalink
rename from aux to auxiliary
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalavedra committed Mar 7, 2024
1 parent 7204c86 commit 3ed1a67
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion script/deployManagedAccounts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Script, console} from "forge-std/Script.sol";
import {IEntryPoint} from "lib/account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {ManagedOpenfortAccount} from "../contracts/core/managed/ManagedOpenfortAccount.sol";
import {ManagedOpenfortFactory} from "../contracts/core/managed/ManagedOpenfortFactory.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract ManagedOpenfortDeploy is Script, CheckOrDeployEntryPoint {
uint256 internal deployPrivKey = vm.envUint("PK_PAYMASTER_OWNER_TESTNET");
Expand Down
2 changes: 1 addition & 1 deletion script/deployOpenfortPaymasterV2.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity =0.8.19;
import {Script} from "forge-std/Script.sol";
import {IEntryPoint} from "lib/account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {OpenfortPaymasterV2} from "../contracts/paymaster/OpenfortPaymasterV2.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract OpenfortPaymasterV2Deploy is Script, CheckOrDeployEntryPoint {
uint256 internal deployPrivKey = vm.envUint("PK_PAYMASTER_OWNER_TESTNET");
Expand Down
2 changes: 1 addition & 1 deletion script/deployUpgradeableAccounts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Script, console} from "forge-std/Script.sol";
import {IEntryPoint} from "lib/account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {UpgradeableOpenfortAccount} from "../contracts/core/upgradeable/UpgradeableOpenfortAccount.sol";
import {UpgradeableOpenfortFactory} from "../contracts/core/upgradeable/UpgradeableOpenfortFactory.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract UpgradeableOpenfortDeploy is Script, CheckOrDeployEntryPoint {
address private CREATE2_DEPLOYER = 0x4e59b44847b379578588920cA78FbF26c0B4956C;
Expand Down
2 changes: 1 addition & 1 deletion script/upgradeManagedAccounts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Script, console} from "forge-std/Script.sol";
import {IEntryPoint} from "lib/account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {ManagedOpenfortAccount} from "../contracts/core/managed/ManagedOpenfortAccount.sol";
import {ManagedOpenfortFactory} from "../contracts/core/managed/ManagedOpenfortFactory.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract ManagedOpenfortUpgrade is Script, CheckOrDeployEntryPoint {
uint256 internal deployPrivKey = vm.envUint("PK_PAYMASTER_OWNER_TESTNET");
Expand Down
2 changes: 1 addition & 1 deletion script/upgradeUpgradeableAccount.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Script, console} from "forge-std/Script.sol";
import {IEntryPoint} from "lib/account-abstraction/contracts/interfaces/IEntryPoint.sol";
import {UpgradeableOpenfortAccount} from "../contracts/core/upgradeable/UpgradeableOpenfortAccount.sol";
import {UpgradeableOpenfortProxy} from "../contracts/core/upgradeable/UpgradeableOpenfortProxy.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract UpgradeableOpenfortUpgrade is Script, CheckOrDeployEntryPoint {
uint256 internal deployPrivKey = vm.envUint("PK_PAYMASTER_OWNER_TESTNET");
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/core/OpenfortBaseTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {MockERC1155} from "contracts/mock/MockERC1155.sol";
import {MockV2UpgradeableOpenfortAccount} from "contracts/mock/MockV2UpgradeableOpenfortAccount.sol";
import {DeployMock} from "script/deployMock.s.sol";
import {SimpleNFT} from "contracts/mock/SimpleNFT.sol";
import {CheckOrDeployEntryPoint} from "script/aux/checkOrDeployEntryPoint.sol";
import {CheckOrDeployEntryPoint} from "script/auxiliary/checkOrDeployEntryPoint.sol";

contract OpenfortBaseTest is Test, CheckOrDeployEntryPoint {
using ECDSA for bytes32;
Expand Down

0 comments on commit 3ed1a67

Please sign in to comment.