Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3ad49e3
Add PublicLiquidityPool and ERC4626Adapter, wip
lastperson Oct 28, 2025
d6acef0
Get fill amount from calldata in Public pool
lastperson Oct 30, 2025
28d9f40
Add most of the Public pool tests, wip
lastperson Oct 30, 2025
7845908
Complete Public Liquidity Pool tests
lastperson Nov 3, 2025
dfdfa99
Add ERC4626Adapter tests
lastperson Nov 3, 2025
c83257f
Add totalDeposited getter to public pool
lastperson Nov 5, 2025
930488f
Revert back to FeeConfig in public pool
lastperson Nov 7, 2025
b88443c
Add deploy scripts
lastperson Nov 10, 2025
8cedcc7
Revert back to parsing calldata
lastperson Nov 10, 2025
6022fb4
Merge branch 'feat-public-pool' into chore-public-pool-scripts
lastperson Nov 10, 2025
383df92
Update scripts
lastperson Nov 10, 2025
f3624cf
Merge branch 'main' into feat-public-pool
lastperson Nov 10, 2025
e709b2e
Merge branch 'feat-public-pool' into chore-public-pool-scripts
lastperson Nov 10, 2025
fda91a0
Fix typo
lastperson Nov 10, 2025
74ffb5f
Merge branch 'feat-public-pool' into chore-public-pool-scripts
lastperson Nov 10, 2025
d261742
Add deployment logs
viatrix Nov 10, 2025
4f4d86c
Add rebalancer routes
viatrix Nov 10, 2025
03b50cd
Update network.config.ts
lastperson Nov 11, 2025
7e5c406
Merge branch 'main' into feat-public-pool
lastperson Nov 20, 2025
21e247c
Add public pool deploy scripts (#128)
lastperson Nov 20, 2025
ac40032
Fix chain id in tests
lastperson Nov 20, 2025
6394b9f
Audit fixes 4 (#135)
lastperson Dec 2, 2025
fa934c0
Merge branch 'feat-public-pool' into chore-deploy-public-pool-stage
lastperson Dec 2, 2025
a681d76
Merge branch 'main' into chore-deploy-public-pool-stage
lastperson Dec 2, 2025
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
14 changes: 14 additions & 0 deletions deployments/deploy-arbitrumone-stage.log
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,17 @@ Using config for: stage, ARBITRUM_ONE
Rebalancer: 0x34Df9cD75fA0b4d8fF300AeDf7591f79dFdd61C9
Deploying Aave USDC Long Term Liquidity Pool
LiquidityPoolAaveUSDCLongTerm: 0xd1A7cC673D4cE966AD31FcD8Daccf1C2B5969dA4

Deployment ID: MVP
Deploying USDC Public Pool
Using config for: stage, ARBITRUM_ONE
Deploying USDC Public Liquidity Pool
LiquidityPoolPublicUSDC: 0x451291AdB56ffA03Ef2A542389CeE16Ec3A8295D

Deployment ID: MVP
Deploying ERC4626 Adapter USDC
Using config for: stage, ARBITRUM_ONE
Rebalancer: 0x34Df9cD75fA0b4d8fF300AeDf7591f79dFdd61C9
Target Vault: 0x451291AdB56ffA03Ef2A542389CeE16Ec3A8295D
Deploying ERC4626 Adapter USDC
ERC4626AdapterUSDC: 0xd7B2FC36b3D967DE88f9A4e3C84b7dBEF73e7eF3
6 changes: 6 additions & 0 deletions network.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,9 @@ export const networkConfig: NetworksConfig = {
[LiquidityPoolAaveUSDCLongTermV2]: {
[Network.ARBITRUM_ONE]: [Provider.CCTP],
},
[ERC4626AdapterUSDC]: {
[Network.ARBITRUM_ONE]: [Provider.CCTP],
},
},
RepayerRoutes: {
[LiquidityPoolAaveUSDCV3]: {
Expand Down Expand Up @@ -839,6 +842,9 @@ export const networkConfig: NetworksConfig = {
[LiquidityPoolAaveUSDCLongTermV2]: {
[Network.ARBITRUM_ONE]: [Provider.CCTP],
},
[ERC4626AdapterUSDC]: {
[Network.ARBITRUM_ONE]: [Provider.CCTP],
},
},
RepayerRoutes: {
[LiquidityPoolAaveUSDCV3]: {
Expand Down