diff --git a/script/PostChecker.sol b/script/PostChecker.sol index e3639ffb..71c9d3e8 100644 --- a/script/PostChecker.sol +++ b/script/PostChecker.sol @@ -8,7 +8,7 @@ import { TContract, Contract } from "script/utils/Contract.sol"; import { Network } from "script/utils/Network.sol"; import { TNetwork, DefaultNetwork } from "@fdk/utils/DefaultNetwork.sol"; import { LibCompanionNetwork } from "script/shared/libraries/LibCompanionNetwork.sol"; -import { PostCheck_BridgeManager } from "./post-check/bridge-manager/PostCheck_BridgeManager.s.sol"; +import { PostCheck_BridgeManager } from "./post-check/manager/PostCheck_BridgeManager.s.sol"; import { PostCheck_Gateway } from "./post-check/gateway/PostCheck_Gateway.s.sol"; import { Migration } from "./Migration.s.sol"; import { ScriptExtended } from "@fdk/extensions/ScriptExtended.s.sol"; diff --git a/script/post-check/bridge-manager/BridgeManager.post_check.tree b/script/post-check/manager/BridgeManager.post_check.tree similarity index 100% rename from script/post-check/bridge-manager/BridgeManager.post_check.tree rename to script/post-check/manager/BridgeManager.post_check.tree diff --git a/script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol b/script/post-check/manager/PostCheck_BridgeManager.s.sol similarity index 60% rename from script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol rename to script/post-check/manager/PostCheck_BridgeManager.s.sol index 09d131a0..ba953ae9 100644 --- a/script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol +++ b/script/post-check/manager/PostCheck_BridgeManager.s.sol @@ -1,10 +1,10 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; -import { PostCheck_BridgeManager_CRUD_AddBridgeOperators } from "script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_AddBridgeOperators.s.sol"; -import { PostCheck_BridgeManager_CRUD_RemoveBridgeOperators } from "script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_RemoveBridgeOperators.s.sol"; -import { PostCheck_BridgeManager_Proposal } from "script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol"; -import { PostCheck_BridgeManager_Quorum } from "script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol"; +import { PostCheck_BridgeManager_CRUD_AddBridgeOperators } from "./crud/PostCheck_BridgeManager_CRUD_AddBridgeOperators.s.sol"; +import { PostCheck_BridgeManager_CRUD_RemoveBridgeOperators } from "./crud/PostCheck_BridgeManager_CRUD_RemoveBridgeOperators.s.sol"; +import { PostCheck_BridgeManager_Proposal } from "./proposal/PostCheck_BridgeManager_Proposal.s.sol"; +import { PostCheck_BridgeManager_Quorum } from "./quorum/PostCheck_BridgeManager_Quorum.s.sol"; abstract contract PostCheck_BridgeManager is PostCheck_BridgeManager_Quorum, diff --git a/script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol b/script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol similarity index 100% rename from script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol rename to script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol diff --git a/script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol b/script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol similarity index 100% rename from script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol rename to script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol diff --git a/script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol b/script/post-check/manager/proposal/PostCheck_BridgeManager_Proposal.s.sol similarity index 100% rename from script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol rename to script/post-check/manager/proposal/PostCheck_BridgeManager_Proposal.s.sol diff --git a/script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol b/script/post-check/manager/quorum/PostCheck_BridgeManager_Quorum.s.sol similarity index 100% rename from script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol rename to script/post-check/manager/quorum/PostCheck_BridgeManager_Quorum.s.sol