Skip to content

Commit 0b87564

Browse files
misc: Unused dependencies removed
1 parent 5a670c1 commit 0b87564

File tree

5 files changed

+2
-12
lines changed

5 files changed

+2
-12
lines changed

.gitmodules

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
[submodule "lib/erc4626-tests"]
2323
path = lib/erc4626-tests
2424
url = https://github.com/a16z/erc4626-tests
25-
[submodule "lib/solidity-utils"]
26-
path = lib/solidity-utils
27-
url = https://github.com/bgd-labs/solidity-utils
28-
[submodule "lib/aave-address-book"]
29-
path = lib/aave-address-book
30-
url = https://github.com/bgd-labs/aave-address-book
3125
[submodule "lib/createx"]
3226
path = lib/createx
3327
url = https://github.com/pcaversaccio/createx

lib/aave-address-book

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/solidity-utils

Lines changed: 0 additions & 1 deletion
This file was deleted.

remappings.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ solmate/=lib/solmate/src/
77
@openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/
88
@openzeppelin-v5/=lib/openzeppelin-contracts-v5.3.0/contracts
99
@openzeppelin/=lib/openzeppelin-contracts/contracts
10-
@bgd-labs/solidity-utils/=lib/solidity-utils/src/contracts/
11-
@bgd-labs/aave-address-book/=lib/aave-address-book/src/
1210
@pcaversaccio/createx/=lib/createx/src/

src/ATokenVaultFactory.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {IPoolAddressesProvider} from "@aave-v3-core/interfaces/IPoolAddressesPro
88
import {TransparentUpgradeableProxy} from "@openzeppelin/proxy/transparent/TransparentUpgradeableProxy.sol";
99
import {ATokenVault} from "./ATokenVault.sol";
1010
import {SafeERC20} from "@openzeppelin/token/ERC20/utils/SafeERC20.sol";
11-
import {IOwnable} from "@bgd-labs/aave-address-book/common/IOwnable.sol";
11+
import {ProxyAdmin} from "@openzeppelin/proxy/transparent/ProxyAdmin.sol";
1212

1313
/**
1414
* @title ATokenVaultImplDeploymentLib
@@ -98,7 +98,7 @@ contract ATokenVaultFactory {
9898
*/
9999
constructor(address proxyAdmin) {
100100
RENOUNCED_PROXY_ADMIN = proxyAdmin;
101-
require(IOwnable(proxyAdmin).owner() == address(0), "PROXY_ADMIN_OWNERSHIP_NOT_RENOUNCED");
101+
require(ProxyAdmin(proxyAdmin).owner() == address(0), "PROXY_ADMIN_OWNERSHIP_NOT_RENOUNCED");
102102
}
103103

104104
/*//////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)