File tree Expand file tree Collapse file tree 5 files changed +2
-12
lines changed Expand file tree Collapse file tree 5 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 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
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff 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/
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import {IPoolAddressesProvider} from "@aave-v3-core/interfaces/IPoolAddressesPro
88import {TransparentUpgradeableProxy} from "@openzeppelin/proxy/transparent/TransparentUpgradeableProxy.sol " ;
99import {ATokenVault} from "./ATokenVault.sol " ;
1010import {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 /*//////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments