-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use governance from address book DRY (#16)
- Loading branch information
Showing
7 changed files
with
20 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
[submodule "lib/aave-address-book"] | ||
path = lib/aave-address-book | ||
url = https://github.com/bgd-labs/aave-address-book | ||
[submodule "lib/solidity-utils"] | ||
path = lib/solidity-utils | ||
url = https://github.com/bgd-labs/solidity-utils | ||
[submodule "lib/aave-address-book"] | ||
path = lib/aave-address-book | ||
url = https://github.com/bgd-labs/aave-address-book |
Submodule aave-address-book
updated
72 files
Submodule solidity-utils
updated
1 files
+7 −0 | src/contracts/oz-common/interfaces/IERC20WithPermit.sol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
// SPDX-License-Identifier: AGPL-3.0 | ||
pragma solidity >=0.7.5 <0.9.0; | ||
|
||
import {GovHelpers, IAaveGov} from "./GovHelpers.sol"; | ||
import {ProxyHelpers} from "./ProxyHelpers.sol"; | ||
import {GovHelpers, AaveGovernanceV2} from './GovHelpers.sol'; | ||
import {ProxyHelpers} from './ProxyHelpers.sol'; | ||
import {BridgeExecutorHelpers} from './BridgeExecutorHelpers.sol'; | ||
import {ProtocolV3TestBase} from './ProtocolV3TestBase.sol'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters