Skip to content

Commit 773acf4

Browse files
committed
chore: mv TypeImporter to interfaces/ICore.sol
1 parent d895b84 commit 773acf4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/test/integration/TypeImporter.t.sol renamed to src/contracts/interfaces/ICore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ import "src/contracts/interfaces/IStrategyManager.sol";
1515
/// `AllocateParams memory params;`
1616
/// vs
1717
/// `IAllocationManagerTypes.AllocateParams memory params;`
18-
interface TypeImporter is IAllocationManagerTypes, IAVSDirectoryTypes, IDelegationManagerTypes, IEigenPodManagerTypes, IEigenPodTypes {}
18+
interface ICoreTypes is IAllocationManagerTypes, IAVSDirectoryTypes, IDelegationManagerTypes, IEigenPodManagerTypes, IEigenPodTypes {}

src/test/integration/IntegrationDeployer.t.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
88
import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
99
import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";
1010

11+
import {ICoreTypes} from "src/contracts/interfaces/ICore.sol";
12+
1113
import "src/test/integration/users/AVS.t.sol";
1214
import "src/test/integration/users/User.t.sol";
1315
import "src/test/integration/users/User_M1.t.sol";

src/test/integration/IntegrationGetters.t.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
// SPDX-License-Identifier: BUSL-1.1
22
pragma solidity ^0.8.27;
33

4-
import "src/test/integration/TypeImporter.t.sol";
54
import "src/test/integration/IntegrationDeployer.t.sol";
65

7-
contract IntegrationGetters is IntegrationDeployer, TypeImporter {
6+
contract IntegrationGetters is IntegrationDeployer, ICoreTypes {
87
using ArrayLib for *;
98
using SlashingLib for *;
109

0 commit comments

Comments
 (0)