Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update exit queue #87

Closed
wants to merge 29 commits into from
Closed
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
514d916
Add blocklist factory, update exit queue
tsudmi Feb 12, 2024
25c3be6
Fix exiting assets constructor arg
tsudmi Feb 13, 2024
212f30e
Move genesis vault legacy rewards update to _processTotalAssetsDelta
tsudmi Feb 28, 2024
8b92b50
Remove ejectUser functions, change genesis withdrawal creds to pool e…
tsudmi Mar 1, 2024
99a8074
Update snapshots
tsudmi Mar 5, 2024
3731bad
Fix linting
tsudmi Mar 6, 2024
4be225b
Move queued shares in interface
tsudmi Mar 6, 2024
2e0946d
Emit Transfer event on update exit queue
tsudmi Mar 6, 2024
9fdce3f
Disable slither shadow state variable warning
tsudmi Mar 6, 2024
1a6c8b2
Rename ExitQueueEntered to V2ExitQueueEntered
tsudmi Mar 7, 2024
27384df
Revert changing withdrawal creds to pool escrow for genesis vault
tsudmi Mar 8, 2024
95a493e
Deploy new factories, implementations to holesky
tsudmi Mar 10, 2024
4bc8079
Fix genesis vault snapshot
tsudmi Mar 10, 2024
5b93a9c
Fix genesis vault fork tests
tsudmi Mar 10, 2024
ac91863
Fix incorrect calculateExitedAssets interface outputs
tsudmi Mar 18, 2024
9f0212a
Extract Vault deposit data management to separate contract
tsudmi Mar 21, 2024
a2e5a20
Remove redundant error
tsudmi Mar 21, 2024
9e15aab
Gas optimiziation
tsudmi Mar 21, 2024
e525a39
Upgrade packages, fix coverage
tsudmi Mar 22, 2024
7d65bf5
Move DepositDataManager from misc to validators
tsudmi Mar 30, 2024
d9a1235
Rename keysManager to validatorsManager
tsudmi Mar 31, 2024
7faacb9
Add version check to DepositDataManager
tsudmi Apr 1, 2024
708645b
Fix deprecated events
tsudmi Apr 1, 2024
01f9b36
Add multicall to the DepositDataManager
tsudmi Apr 2, 2024
1ba48ae
Update snapshots
tsudmi Apr 2, 2024
d7b3222
Update IDepositDataManager interface
tsudmi Apr 2, 2024
e472c74
Rename DepositDataManager to DepositDataRegistry
tsudmi Apr 2, 2024
3d601cb
Make _withdrawalCredentials function private
tsudmi Apr 2, 2024
939a39f
Add state update to DepositDataRegistry
tsudmi Apr 3, 2024
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
3 changes: 3 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
- run: npm run compile
env: { SKIP_LOAD: true }
- run: npm run test:gas
env:
SKIP_LOAD: true
- run: npm run test:fork
env:
SKIP_LOAD: true
MAINNET_FORK_RPC_URL: ${{ secrets.MAINNET_FORK_RPC_URL }}
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ npm-debug.log

# Hardhat
cache
artifacts
/artifacts

# Typechain
/typechain-types
Expand Down
Loading
Loading