Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion foundry.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
},
"lib/morpho-blue": {
"rev": "e701e7ea524633682f81e355bec0d7c88fe02f65"
"rev": "78a059bd7318418465b06b8da96dc133e31ed3d9"
},
"lib/morpho-blue-irm": {
"rev": "a7d9cce3451b4a106bfd40933ac57a785b5228f3"
Expand Down
4 changes: 2 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[profile.default]
libs = ["lib"]
Comment thread
QGarchery marked this conversation as resolved.
evm_version = "paris"
via_ir = true
optimizer = true
Expand All @@ -17,6 +18,5 @@ exclude_lints = [
"mixed-case-variable",
"unsafe-typecast",
"asm-keccak256",
"block-timestamp",
]

# See more config options https://github.com/foundry-rs/foundry/tree/master/crates/config
2 changes: 1 addition & 1 deletion lib/morpho-blue
Submodule morpho-blue updated 78 files
+5 −11 .github/workflows/certora.yml
+0 −32 .github/workflows/formatting.yml
+14 −30 .github/workflows/foundry.yml
+0 −31 .github/workflows/halmos.yml
+0 −43 .github/workflows/hardhat.yml
+0 −22 .github/workflows/npm-release.yml
+1 −18 .gitignore
+0 −3 .gitmodules
+0 −4 .husky/commit-msg
+0 −5 .husky/post-checkout
+0 −5 .husky/post-merge
+0 −4 .husky/pre-commit
+255 −74 LICENSE
+7 −0 Makefile
+7 −13 README.md
+0 −389 certora/LICENSE
+4 −12 certora/README.md
+1 −0 certora/confs/ConsistentState.conf
+1 −1 certora/confs/ExactMath.conf
+21 −0 certora/confs/LiquidateBuffer.conf
+0 −6 certora/gambit.conf
+10 −0 certora/helpers/Util.sol
+2 −2 certora/specs/AccrueInterest.spec
+144 −78 certora/specs/ConsistentState.spec
+0 −12 certora/specs/ExactMath.spec
+4 −4 certora/specs/ExchangeRate.spec
+4 −34 certora/specs/Health.spec
+71 −0 certora/specs/LiquidateBuffer.spec
+5 −2 certora/specs/Liveness.spec
+2 −2 certora/specs/Reentrancy.spec
+12 −15 certora/specs/StayHealthy.spec
+5 −0 foundry.lock
+14 −13 foundry.toml
+0 −56 hardhat.config.ts
+0 −1 lib/halmos-cheatcodes
+0 −78 package.json
+5 −7 src/Morpho.sol
+6 −3 src/interfaces/IMorpho.sol
+0 −389 src/interfaces/LICENSE
+1 −1 src/libraries/ErrorsLib.sol
+0 −389 src/libraries/LICENSE
+0 −2 src/libraries/periphery/MorphoBalancesLib.sol
+4 −3 src/libraries/periphery/MorphoStorageLib.sol
+0 −389 src/mocks/LICENSE
+22 −18 test/BaseTest.sol
+0 −0 test/InvariantTest.sol
+0 −389 test/LICENSE
+2 −2 test/MarketParamsLibTest.sol
+0 −197 test/halmos/HalmosTest.sol
+0 −248 test/hardhat/Morpho.spec.ts
+0 −0 test/helpers/ArrayLib.sol
+0 −0 test/helpers/Math.sol
+2 −2 test/helpers/SigUtils.sol
+2 −2 test/helpers/WadMath.sol
+5 −4 test/integration/AccrueInterestIntegrationTest.sol
+0 −0 test/integration/AuthorizationIntegrationTest.sol
+0 −0 test/integration/BorrowIntegrationTest.sol
+0 −0 test/integration/CallbacksIntegrationTest.sol
+0 −0 test/integration/CreateMarketIntegrationTest.sol
+0 −0 test/integration/ExtSloadIntegrationTest.sol
+11 −14 test/integration/LiquidateIntegrationTest.sol
+0 −0 test/integration/OnlyOwnerIntegrationTest.sol
+0 −0 test/integration/RepayIntegrationTest.sol
+1 −1 test/integration/SupplyCollateralIntegrationTest.sol
+0 −0 test/integration/SupplyIntegrationTest.sol
+0 −0 test/integration/WithdrawCollateralIntegrationTest.sol
+0 −0 test/integration/WithdrawIntegrationTest.sol
+0 −0 test/invariant/BaseInvariantTest.sol
+0 −0 test/invariant/DynamicInvariantTest.sol
+0 −0 test/invariant/StaticInvariantTest.sol
+2 −2 test/libraries/MathLibTest.sol
+3 −3 test/libraries/SafeTransferLibTest.sol
+3 −3 test/libraries/UtilsLibTest.sol
+4 −6 test/libraries/periphery/MorphoBalancesLibTest.sol
+0 −0 test/libraries/periphery/MorphoLibTest.sol
+1 −1 test/libraries/periphery/MorphoStorageLibTest.sol
+0 −15 tsconfig.json
+0 −6,244 yarn.lock