forked from aave/gho-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add update on GHO integration with Aave Pool (aave#366)
* fix: Update variable debt gho with full repayment * certora: Update scripts for Certora Formal Verification
- Loading branch information
1 parent
0d9d26d
commit b2db754
Showing
19 changed files
with
418 additions
and
394 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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// erc20 methods | ||
methods { | ||
name() returns (string) => DISPATCHER(true) | ||
symbol() returns (string) => DISPATCHER(true) | ||
decimals() returns (string) => DISPATCHER(true) | ||
totalSupply() returns (uint256) => DISPATCHER(true) | ||
balanceOf(address) returns (uint256) => DISPATCHER(true) | ||
allowance(address,address) returns (uint) => DISPATCHER(true) | ||
approve(address,uint256) returns (bool) => DISPATCHER(true) | ||
transfer(address,uint256) returns (bool) => DISPATCHER(true) | ||
transferFrom(address,address,uint256) returns (bool) => DISPATCHER(true) | ||
function _.name() external => DISPATCHER(true); | ||
function _.symbol() external => DISPATCHER(true); | ||
function _.decimals() external => DISPATCHER(true); | ||
function _.totalSupply() external => DISPATCHER(true); | ||
function _.balanceOf(address) external => DISPATCHER(true); | ||
function _.allowance(address,address) external => DISPATCHER(true); | ||
function _.approve(address,uint256) external => DISPATCHER(true); | ||
function _.transfer(address,uint256) external => DISPATCHER(true); | ||
function _.transferFrom(address,address,uint256) external => DISPATCHER(true); | ||
} |
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
Oops, something went wrong.