Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
600e613
feat: v4 e2e tests
yan-man Apr 16, 2026
54456c0
fix: pr comments
yan-man Apr 16, 2026
5414559
feat: ts based diffs
yan-man Apr 16, 2026
ad0c6c9
fix: gitignore cleanup; add more ts tests
yan-man Apr 16, 2026
0797f33
fix: pr comments; lint
yan-man Apr 16, 2026
784979b
rft: _setCapsToMax; diffWriter
yan-man Apr 16, 2026
5617739
test: liquidation assertions; lint
yan-man Apr 16, 2026
b656833
test: liq assertions; refactor; fix precision loss
yan-man Apr 17, 2026
a9d4c6e
fix: pr comments
yan-man Apr 17, 2026
b8d73f8
fix: edge cases on liquidations tests/assertions
yan-man Apr 18, 2026
013f491
feat: aave-helpers-js change set
yan-man Apr 18, 2026
63d6bcb
test: fix assertion; validate decimals; clean up
yan-man Apr 22, 2026
e42c3fc
test: relax bounds on asset amts
yan-man May 4, 2026
8bb4375
feat: formatting on caps vals w units
yan-man May 4, 2026
f6d8f1c
fix: format RP threshold bps
yan-man May 4, 2026
364a0c5
fix: bump helpers js dep
yan-man May 7, 2026
84be1ba
test: configChangePlausibilityTest; revert version dep
yan-man May 7, 2026
bcecc9b
chore: lint
yan-man May 7, 2026
18185fd
fix: more formatting on numbers, exp
yan-man May 7, 2026
5694666
fix: nit space
yan-man May 11, 2026
cb62cc2
feat: tests for v4 snapshot; mocks
yan-man May 11, 2026
637047f
fix: v4 diff writer tests
yan-man May 11, 2026
ed9b99c
fix: mv harness file
yan-man May 11, 2026
0474ce2
fix: rename struct, obj
yan-man May 11, 2026
1346518
test: split out into separate files, more granular snapshot scenarios
yan-man May 11, 2026
6163126
test: snapshot scenarios comments
yan-man May 11, 2026
c462902
chore: lint
yan-man May 12, 2026
3339333
fix: address pr comment
yan-man May 12, 2026
87e297d
fix: expand bounds for asset amt
yan-man May 14, 2026
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
5 changes: 5 additions & 0 deletions .changeset/cool-feet-fall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@aave-dao/aave-helpers-js': minor
---

Add Aave V4 snapshot diff support and CLI command
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ yarn-error.log
.vscode/

dist

reports/v4*
diffs/v4*
5 changes: 4 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ script = 'scripts'
out = 'out'
libs = ['lib']
remappings = []
fs_permissions = [{ access = "read-write", path = "./reports" }]
fs_permissions = [
{ access = "read-write", path = "./reports" },
{ access = "read-write", path = "./diffs" },
]
ffi = true
evm_version = 'cancun'
decode_external_storage = true
Expand Down
Loading