-
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.
Co-authored-by: Jonathan Reem <jonathan.reem@gmail.com> Co-authored-by: Harsh Pandey <harshsatishpandey@gmail.com> Co-authored-by: Lukas <lukasstrassel@googlemail.com>
- Loading branch information
1 parent
88ccbc4
commit b5df36c
Showing
11 changed files
with
105 additions
and
10 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
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
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
Submodule aave-address-book
updated
6 files
+9 −0 | CHANGELOG.md | |
+1 −1 | package.json | |
+2 −1 | scripts/configs/governance/ethereum.ts | |
+1 −0 | scripts/configs/types.ts | |
+5 −2 | src/GovernanceV3Ethereum.sol | |
+5 −2 | src/ts/GovernanceV3Ethereum.ts |
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import {AaveV3Base} from 'aave-address-book/AaveV3Base.sol'; | ||
import './AaveV3PayloadBase.sol'; | ||
|
||
/** | ||
* @dev Base smart contract for an Aave v3.0.2 (compatible with 3.0.0) listing on v3 Base. | ||
* @author BGD Labs | ||
*/ | ||
abstract contract AaveV3PayloadBasenet is AaveV3PayloadBase(IEngine(AaveV3Base.LISTING_ENGINE)) { | ||
function getPoolContext() public pure override returns (IEngine.PoolContext memory) { | ||
return IEngine.PoolContext({networkName: 'Base', networkAbbreviation: 'Bas'}); | ||
} | ||
} |
b5df36c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Foundry report
Build log
Test success 🌈