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
14 changes: 9 additions & 5 deletions erc4626/FluidVaults.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# ERC4626 Vault: `Fluid Wrapped Ether`
# ERC4626 Vault: `Fluid Wrapped Ether & Wrapped Staked ETH`

## Details
- Reviewed by: @mkflow27
- Checked by: @mattpereira
- Deployed at:
- [ethereum:0x90551c1795392094FE6D29B758EcCD233cFAa260](https://etherscan.io/address/0x90551c1795392094FE6D29B758EcCD233cFAa260)
- [arbitrum:0x45Df0656F8aDf017590009d2f1898eeca4F0a205](https://arbiscan.io/address/0x45Df0656F8aDf017590009d2f1898eeca4F0a205)
- [base:0x9272d6153133175175bc276512b2336be3931ce9](https://basescan.org/address/0x9272d6153133175175bc276512b2336be3931ce9)
- WETH:
- [ethereum:0x90551c1795392094FE6D29B758EcCD233cFAa260](https://etherscan.io/address/0x90551c1795392094FE6D29B758EcCD233cFAa260)
- [arbitrum:0x45Df0656F8aDf017590009d2f1898eeca4F0a205](https://arbiscan.io/address/0x45Df0656F8aDf017590009d2f1898eeca4F0a205)
- [base:0x9272d6153133175175bc276512b2336be3931ce9](https://basescan.org/address/0x9272d6153133175175bc276512b2336be3931ce9)
- wstETH:
- [ethereum:0x2411802D8BEA09be0aF8fD8D08314a63e706b29C](https://etherscan.io/address/0x2411802D8BEA09be0aF8fD8D08314a63e706b29C)
- Audit report(s):
- [Fluid audits](https://docs.fluid.instadapp.io/audits-and-security.html)

Expand Down Expand Up @@ -45,4 +48,5 @@ To save time, we do not bother pointing out low-severity/informational issues or
Passing fork tests:
- [fluid weth mainnet](https://github.com/balancer/balancer-v3-erc4626-tests/blob/main/test/mainnet/ERC4626MainnetFluidWeth.t.sol)
- [fluid weth base](https://github.com/balancer/balancer-v3-erc4626-tests/pull/32)
- [fluid weth arbitrum](https://github.com/balancer/balancer-v3-erc4626-tests/pull/32)
- [fluid weth arbitrum](https://github.com/balancer/balancer-v3-erc4626-tests/pull/32)
- [fluid wsteth mainnet](https://github.com/balancer/balancer-v3-erc4626-tests/pull/27)
10 changes: 10 additions & 0 deletions erc4626/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,16 @@
"canUseBufferForSwaps": true,
"useUnderlyingForAddRemove": true,
"useWrappedForAddRemove": false
},
"0x2411802D8BEA09be0aF8fD8D08314a63e706b29C": {
"asset": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0",
"name": "fluid wsteth",
"summary": "safe",
"review": "/FluidVaults.md",
"warnings": [],
"canUseBufferForSwaps": true,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quoting John

Hey. We want to be strict in the process of deciding if an ERC4626 is valid for swaps. Mainly because we cause 1inch, etc issues if we give them false info. During the review process canUseBufferForSwaps will only be set to true when both are true: - passes the ERC4626 fork tests - has an initialised Balancer V3 Buffer.

So, go ahead and init the buffer. Afterwards I will merge.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"useUnderlyingForAddRemove": true,
"useWrappedForAddRemove": true
}
},
"gnosis": {
Expand Down
7 changes: 4 additions & 3 deletions rate-providers/FluidRateProviders.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
- Reviewed by: @mkflow27
- Checked by: @mattpereira
- Deployed at:
- [ethereum:0x8fC43e76874CaE40939eDeB90E5683258B63c508](https://etherscan.io/address/0x8fC43e76874CaE40939eDeB90E5683258B63c508#readContract)
- [arbitrum:0xeAaf42989c294e2280eFbB0B0f368E806AD8cA69](https://arbiscan.io/address/0xeAaf42989c294e2280eFbB0B0f368E806AD8cA69)
- [base:0x0bB7028D24b24424485E769bD44b936B315Cb8FC](https://basescan.org/address/0x0bB7028D24b24424485E769bD44b936B315Cb8FC)
- wETH [ethereum:0x8fC43e76874CaE40939eDeB90E5683258B63c508](https://etherscan.io/address/0x8fC43e76874CaE40939eDeB90E5683258B63c508#readContract)
- wstETH [ethereum:0x73a9fc5173d211F0D264Af4E816cb44F61E5f4a2](https://etherscan.io/address/0x73a9fc5173d211F0D264Af4E816cb44F61E5f4a2#readContract)
- wETH [arbitrum:0xeAaf42989c294e2280eFbB0B0f368E806AD8cA69](https://arbiscan.io/address/0xeAaf42989c294e2280eFbB0B0f368E806AD8cA69)
- wETH [base:0x0bB7028D24b24424485E769bD44b936B315Cb8FC](https://basescan.org/address/0x0bB7028D24b24424485E769bD44b936B315Cb8FC)

- Audit report(s):
- [Fluid audits](https://docs.fluid.instadapp.io/audits-and-security.html)
Expand Down
9 changes: 9 additions & 0 deletions rate-providers/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2630,6 +2630,15 @@
"factory": "0xFC541f8d8c5e907E236C8931F0Df9F58e0C259Ec",
"upgradeableComponents": []
},
"0x73a9fc5173d211F0D264Af4E816cb44F61E5f4a2": {
"asset": "0x2411802D8BEA09be0aF8fD8D08314a63e706b29C",
"name": "Fluid wstETH rate provider",
"summary": "safe",
"review": "./FluidRateProviders.md",
"warnings": [""],
"factory": "0xFC541f8d8c5e907E236C8931F0Df9F58e0C259Ec",
"upgradeableComponents": []
},
"0x05E956cb3407b1B22F4ed8568F3C28644Da28B85": {
"asset": "0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0",
"name": "cUSDO OpenEden Rate Provider",
Expand Down