Skip to content

Commit 0751ee6

Browse files
committed
Merge branch 'main' into feat/horizon-rwa-deployment
2 parents 3176182 + 2ac5c2f commit 0751ee6

File tree

7 files changed

+28
-2
lines changed

7 files changed

+28
-2
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @The-3D @yan-man @miguelmtzinf @avniculae @DhairyaSethi @CheyenneAtapour @CanonicalJP

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,13 @@ In addition, Enigma Dark has adapted the Foundry-based fuzzing [invariant suite]
9595

9696
<br>
9797

98+
**-> Horizon Aave v3.3 - July 2025**
99+
100+
- [Certora](./audits/2025-05-30_Certora_Horizon-v3.3.0.pdf)
101+
- [StErMi](./audits/2025-06-25_StErMi_Horizon-v3.3.0.pdf)
102+
103+
<br>
104+
98105
### Bug bounty
99106

100107
This repository will be subjected to [this bug bounty](https://immunefi.com/bounty/aave/) once the Aave Governance upgrades the smart contracts in the applicable production instances.
414 KB
Binary file not shown.
313 KB
Binary file not shown.
27.1 KB
Loading
Lines changed: 18 additions & 0 deletions
Loading

tests/protocol/tokenization/ATokenTransfers.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,15 +297,15 @@ contract ATokenTransferTests is TestnetProcedures {
297297
) public {
298298
uint256 aliceBalance = IERC20(aToken).balanceOf(alice);
299299
vm.assume(amount <= aliceBalance);
300-
vm.assume(timePassed > 0);
300+
timePassed = uint64(bound(timePassed, 1, type(uint64).max - vm.getBlockTimestamp() - 1));
301301
address mockReceiver = vm.addr(42);
302302

303303
// borrow all available usdx
304304
vm.prank(carol);
305305
contracts.poolProxy.borrow(tokenList.usdx, 200_000e6, 2, 0, carol);
306306

307307
// wait to inflate the index
308-
vm.warp(block.timestamp + timePassed);
308+
vm.warp(vm.getBlockTimestamp() + timePassed);
309309
// transfer the usdx
310310
vm.prank(alice);
311311
aToken.transfer(mockReceiver, amount);

0 commit comments

Comments
 (0)