diff --git a/erc4626/BeefyWrapperReview.md b/erc4626/BeefyWrapperReview.md new file mode 100644 index 0000000..51c190c --- /dev/null +++ b/erc4626/BeefyWrapperReview.md @@ -0,0 +1,64 @@ +# ERC4626 Vault: `BeefyWrapper` + +## Details +- Reviewed by: @franzns +- Checked by: @danielmkm +- Deployed at: + - [sonic:0x7870ddFd5ACA4E977B2287e9A212bcbe8FC4135a](https://sonicscan.org/address/0x7870ddFd5ACA4E977B2287e9A212bcbe8FC4135a#code) +- Audits: + - [4626 wrapper audit](https://github.com/beefyfinance/beefy-audits/blob/master/2023-08-03-Beefy-Zellic-4626-Wrapper-Audit.pdf) + + +## Context +A 4626 wrapper that can wrap the various Beefy vaults. Its created using their factory at [sonic:0x234f7f81434e340910a84f45f8e89d07fa86611a](https://sonicscan.org/address/0x234f7f81434e340910a84f45f8e89d07fa86611a). + +## Review Checklist: Bare Minimum Compatibility +Each of the items below represents an absolute requirement for the ERC4626. If any of these is unchecked, the the ERC4626 is unfit to use. + +- [x] Tests based on the [balancer-v3-monorepo](https://github.com/balancer/balancer-v3-monorepo/tree/main/pkg/vault/test/foundry/fork) pass for the given ERC4626 vaults, which can be found [here](https://github.com/balancer/balancer-v3-erc4626-tests/blob/main/test/sonic/ERC4626BeefyUsdcSilo.sol). +- [x] The required Vault implements the required operational ERC4626 Interface + +## Review Checklist: Common Findings +Each of the items below represents a common red flag found in ERC4626 contracts. + +If none of these is checked, then this might be a pretty great ERC4626! If any of these is checked, we must thoroughly elaborate on the conditions that lead to the potential issue. Decision points are not binary; a ERC4626 can be safe despite these boxes being checked. A check simply indicates that thorough vetting is required in a specific area, and this vetting should be used to inform a holistic analysis of the ERC4626. + +### Administrative Privileges +- [ ] The ERC4626 Vault is upgradeable. + + +### Common Manipulation Vectors +- [x] The ERC4626 Vault is susceptible to donation attacks. + - comment: The ERC4626 wrapper calls the vaults balance for totalAssets() which is part of the `totalAssets` used in the `converToAssets` calculation. + + ```solidity + /** + * @notice Fetches the total assets held by the vault + * @dev Returns the total assets held by the vault, not only the wrapper + * @return totalAssets the total balance of assets held by the vault + */ + function totalAssets() public view virtual override returns (uint256) { + return IVault(vault).balance(); + } + ``` + The vault calculates it based on underlying balance inside the vault plus the balance inside the strategy. + ```solidity + /** + * @dev It calculates the total underlying value of {token} held by the system. + * It takes into account the vault contract balance, the strategy contract balance + * and the balance deployed in other contracts as part of the strategy. + */ + function balance() public view returns (uint) { + return want().balanceOf(address(this)) + IStrategyV7(strategy).balanceOf(); + } + ``` + + The underlying balance can be inflated by donating underlying assets to the vault. + +## Additional Findings +To save time, we do not bother pointing out low-severity/informational issues or gas optimizations (unless the gas usage is particularly egregious). Instead, we focus only on high- and medium-severity findings which materially impact the contract's functionality and could harm users. + +## Conclusion +**Summary judgment: USABLE** + +The outlined ERC4626 Vaults should work well with Balancer pools. \ No newline at end of file diff --git a/erc4626/SiloV2Review.md b/erc4626/SiloV2Review.md new file mode 100644 index 0000000..beb98b5 --- /dev/null +++ b/erc4626/SiloV2Review.md @@ -0,0 +1,38 @@ +# ERC4626 Vault: `Silo V2` + +## Details +- Reviewed by: @franzns +- Checked by: +- Deployed at: + - [sonic:0x52Fc9E0a68b6a4C9b57b9D1d99fB71449A99DCd8](https://sonicscan.org/address/0x52Fc9E0a68b6a4C9b57b9D1d99fB71449A99DCd8#code) + - [sonic:0x87178fe8698C7eDa8aA207083C3d66aEa569aB98](https://sonicscan.org/address/0x87178fe8698C7eDa8aA207083C3d66aEa569aB98#code) +- Audits: + - [Silo V2 audits](https://docs.silo.finance/audits-and-tests) + + +## Context +All Silo V2 markets are ERC4626 vaults be default. + +## Review Checklist: Bare Minimum Compatibility +Each of the items below represents an absolute requirement for the ERC4626. If any of these is unchecked, the the ERC4626 is unfit to use. + +- [x] Tests based on the [balancer-v3-monorepo](https://github.com/balancer/balancer-v3-monorepo/tree/main/pkg/vault/test/foundry/fork) pass for the given ERC4626 vaults, which can be found [here](https://github.com/balancer/balancer-v3-erc4626-tests/blob/main/test/sonic/). +- [x] The required Vault implements the required operational ERC4626 Interface + +## Review Checklist: Common Findings +Each of the items below represents a common red flag found in ERC4626 contracts. + +If none of these is checked, then this might be a pretty great ERC4626! If any of these is checked, we must thoroughly elaborate on the conditions that lead to the potential issue. Decision points are not binary; a ERC4626 can be safe despite these boxes being checked. A check simply indicates that thorough vetting is required in a specific area, and this vetting should be used to inform a holistic analysis of the ERC4626. + +### Administrative Privileges +- [ ] The ERC4626 Vault is upgradeable. + +### Common Manipulation Vectors +- [ ] The ERC4626 Vault is susceptible to donation attacks. + +## Additional Findings + +## Conclusion +**Summary judgment: USABLE** + +The outlined ERC4626 Vaults should work well with Balancer pools. The underlying contracts have been audited. Computation of totalAssets do not rely on `balanceOf()` calls and also their audits do not indicate any risk of a donation attack vector. \ No newline at end of file diff --git a/erc4626/StatATokenV2Review.md b/erc4626/StatATokenV2Review.md index b58198e..5670d65 100644 --- a/erc4626/StatATokenV2Review.md +++ b/erc4626/StatATokenV2Review.md @@ -13,7 +13,15 @@ - [ethereum:0x7Bc3485026Ac48b6cf9BaF0A377477Fff5703Af8](https://etherscan.io/address/0x7bc3485026ac48b6cf9baf0a377477fff5703af8#readProxyContract) - [ethereum:0x0FE906e030a44eF24CA8c7dC7B7c53A6C4F00ce9](https://etherscan.io/token/0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9#readProxyContract) - [ethereum:0x775F661b0bD1739349b9A2A3EF60be277c5d2D29](https://etherscan.io/token/0x775f661b0bd1739349b9a2a3ef60be277c5d2d29#readProxyContract) - - + - [base:0xe298b938631f750DD409fB18227C4a23dCdaab9b](https://basescan.org/address/0xe298b938631f750DD409fB18227C4a23dCdaab9b#code) + - [base:0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b](https://basescan.org/address/0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b#readProxyContract) + - [base:0xC768c589647798a6EE01A91FdE98EF2ed046DBD6](https://basescan.org/address/0xC768c589647798a6EE01A91FdE98EF2ed046DBD6#readProxyContract) + - [base:0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF](https://basescan.org/address/0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF#readProxyContract) + - [base:0x0830820D1A9aa1554364752d6D8F55C836871B74](https://basescan.org/address/0x0830820D1A9aa1554364752d6D8F55C836871B74#readProxyContract) + - [base:0x5e8B674127B321DC344c078e58BBACc3f3008962](https://basescan.org/address/0x5e8B674127B321DC344c078e58BBACc3f3008962#readProxyContract) + - [base:0x74D4D1D440c9679b1013999Bd91507eAa2fff651](https://basescan.org/address/0x74D4D1D440c9679b1013999Bd91507eAa2fff651#readProxyContract) + - [base:0xF8F10f39116716e89498c1c5E94137ADa11b2BC7](https://basescan.org/address/0xF8F10f39116716e89498c1c5E94137ADa11b2BC7#readProxyContract) + - Audit report(s): - [StatATokenV2 audits](https://github.com/aave-dao/aave-v3-origin/blob/067d29eb75115179501edc4316d125d9773f7928/audits/11-09-2024_Certora_StataTokenV2.pdf) @@ -100,6 +108,54 @@ If none of these is checked, then this might be a pretty great Rate Provider! If - admin type: Aave governance system. - multisig timelock? YES: 24 hours. + #### Wrapped Aave Base WETH - 0xe298b938631f750DD409fB18227C4a23dCdaab9b + - upgradeable component: `StataTokenV2` ([base:0xe298b938631f750DD409fB18227C4a23dCdaab9b](https://basescan.org/address/0xe298b938631f750DD409fB18227C4a23dCdaab9b#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a#code) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base weETH - 0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b + - upgradeable component: `StataTokenV2` ([base:0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b](https://basescan.org/address/0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a#code) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base USDC - 0xC768c589647798a6EE01A91FdE98EF2ed046DBD6 + - upgradeable component: `StataTokenV2` ([base:0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b](https://basescan.org/address/0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base cbBTC - 0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF + - upgradeable component: `StataTokenV2` ([base:0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF](https://basescan.org/address/0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base wstETH - 0x0830820D1A9aa1554364752d6D8F55C836871B74 + - upgradeable component: `StataTokenV2` ([base:0x0830820D1A9aa1554364752d6D8F55C836871B74](https://basescan.org/address/0x0830820D1A9aa1554364752d6D8F55C836871B74#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base cbETH - 0x5e8B674127B321DC344c078e58BBACc3f3008962 + - upgradeable component: `StataTokenV2` ([base:0x5e8B674127B321DC344c078e58BBACc3f3008962](https://basescan.org/address/0x5e8B674127B321DC344c078e58BBACc3f3008962#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base USDbC - 0x74D4D1D440c9679b1013999Bd91507eAa2fff651 + - upgradeable component: `StataTokenV2` ([base:0x74D4D1D440c9679b1013999Bd91507eAa2fff651](https://basescan.org/address/0x74D4D1D440c9679b1013999Bd91507eAa2fff651#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base ezETH - 0xF8F10f39116716e89498c1c5E94137ADa11b2BC7 + - upgradeable component: `StataTokenV2` ([base:0xF8F10f39116716e89498c1c5E94137ADa11b2BC7](https://basescan.org/address/0xF8F10f39116716e89498c1c5E94137ADa11b2BC7)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + ### Common Manipulation Vectors - [ ] The ERC4626 Vault is susceptible to donation attacks. @@ -110,14 +166,22 @@ To save time, we do not bother pointing out low-severity/informational issues or **Summary judgment: USABLE** The outlined ERC4626 Vaults should work well with Balancer pools. Upgradeability is guarded by Aave governance and the Vaults implement the required interfaces with fork tests passing as can be seen here: -- [0x773cda0cade2a3d86e6d4e30699d40bb95174ff2](https://github.com/balancer/balancer-v3-erc4626-tests/blob/main/test/gnosis/ERC4626GnosisAaveGno.t.sol) -- [0x7c16F0185A26Db0AE7a9377f23BC18ea7ce5d644](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveGno.t.sol#L20) -- [0x51350d88c1bd32cc6a79368c9fb70373fb71f375](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveUsdce.t.sol#L20) -- [0x57f664882F762FA37903FC864e2B633D384B411A](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveWeth.t.sol#L17) -- [0xD4fa2D31b7968E448877f69A96DE69f5de8cD23E](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveUsdcV2.t.sol#L20) -- [0x0bfc9d54Fc184518A81162F8fB99c2eACa081202](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveWeth.t.sol#L20) -- [0x7Bc3485026Ac48b6cf9BaF0A377477Fff5703Af8](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveUsdt2.t.sol#L20) -- [0x0FE906e030a44eF24CA8c7dC7B7c53A6C4F00ce9](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveLidoWeth.t.sol#L20) -- [0x775F661b0bD1739349b9A2A3EF60be277c5d2D29](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveLidoWstEth.t.sol#L20) +- [gnosis:0x773cda0cade2a3d86e6d4e30699d40bb95174ff2](https://github.com/balancer/balancer-v3-erc4626-tests/blob/main/test/gnosis/ERC4626GnosisAaveGno.t.sol) +- [gnosis:0x7c16F0185A26Db0AE7a9377f23BC18ea7ce5d644](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveGno.t.sol#L20) +- [gnosis:0x51350d88c1bd32cc6a79368c9fb70373fb71f375](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveUsdce.t.sol#L20) +- [gnosis:0x57f664882F762FA37903FC864e2B633D384B411A](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/gnosis/ERC4626GnosisAaveWeth.t.sol#L17) +- [ethereum:0xD4fa2D31b7968E448877f69A96DE69f5de8cD23E](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveUsdcV2.t.sol#L20) +- [ethereum:0x0bfc9d54Fc184518A81162F8fB99c2eACa081202](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveWeth.t.sol#L20) +- [ethereum:0x7Bc3485026Ac48b6cf9BaF0A377477Fff5703Af8](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveUsdt2.t.sol#L20) +- [ethereum:0x0FE906e030a44eF24CA8c7dC7B7c53A6C4F00ce9](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveLidoWeth.t.sol#L20) +- [ethereum:0x775F661b0bD1739349b9A2A3EF60be277c5d2D29](https://github.com/balancer/balancer-v3-erc4626-tests/blob/365ee17e8904f4654990434cc3bbc273478d95ef/test/mainnet/ERC4626MainnetAaveLidoWstEth.t.sol#L20) +- Weth [base:0xe298b938631f750DD409fB18227C4a23dCdaab9b](https://github.com/balancer/balancer-v3-erc4626-tests/blob/aave-base/test/base/ERC4626BaseAaveWeth.t.sol) +- weETH [base:0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveWeETH.t.sol#L20) +- USDC [base:0xC768c589647798a6EE01A91FdE98EF2ed046DBD6](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveUSDC.t.sol#L20) +- cbBTC [base:0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveCbBTC.t.sol#L20) +- wstETH [base:0x0830820D1A9aa1554364752d6D8F55C836871B74](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveWstETH.t.sol#L20) +- cbETH [base:0x5e8B674127B321DC344c078e58BBACc3f3008962](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveCbETH.t.sol#L20) +- USDbC [base:0x74D4D1D440c9679b1013999Bd91507eAa2fff651](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveUSDbC.t.sol#L20) +- ezETH [base:0xF8F10f39116716e89498c1c5E94137ADa11b2BC7](https://github.com/balancer/balancer-v3-erc4626-tests/blob/208e800c185f59d3e57f4f228932af59d0458b29/test/base/ERC4626BaseAaveEzETH.t.sol#L20) diff --git a/erc4626/registry.json b/erc4626/registry.json index 30bb480..5a7c51d 100644 --- a/erc4626/registry.json +++ b/erc4626/registry.json @@ -1,4 +1,62 @@ { + "base": { + "0xe298b938631f750DD409fB18227C4a23dCdaab9b": { + "asset": "0x4200000000000000000000000000000000000006", + "name": "Wrapped Aave Base WETH", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b": { + "asset": "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A", + "name": "Wrapped Aave Base weETH", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0xC768c589647798a6EE01A91FdE98EF2ed046DBD6": { + "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "name": "Wrapped Aave Base USDC", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF": { + "asset": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "name": "Wrapped Aave Base cbBTC", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0x0830820D1A9aa1554364752d6D8F55C836871B74": { + "asset": "0xc1CBa3fCea344f92D9239c08C0568f6F2F0ee452", + "name": "Wrapped Aave Base wstETH", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0x5e8B674127B321DC344c078e58BBACc3f3008962": { + "asset": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22", + "name": "Wrapped Aave Base cbETH", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0x74D4D1D440c9679b1013999Bd91507eAa2fff651": { + "asset": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "name": "Wrapped Aave Base USDbC", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + }, + "0xF8F10f39116716e89498c1c5E94137ADa11b2BC7": { + "asset": "0x2416092f143378750bb29b79eD961ab195CcEea5", + "name": "Wrapped Aave Base ezETH", + "summary": "safe", + "review": "./StatATokenV2Review.md", + "warnings": [] + } + }, "ethereum": { "0x2371e134e3455e0593363cBF89d3b6cf53740618": { "asset": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", @@ -143,20 +201,41 @@ "warnings": [] } }, - "sonic":{ + "sonic": { "0xA28d4dbcC90C849e3249D642f356D85296a12954": { "asset": "0xCC0966D8418d412c599A6421b760a847eB169A8c", "name": "Static Avalon Sonic SolvBTC.bbn", "summary": "safe", "review": "./StaticATokenLMAvalonReview.md", "warnings": [] - }, + }, "0xD31E89Ffb929b38bA60D1c7dBeB68c7712EAAb0a": { "asset": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", "name": "Static Avalon Sonic SolvBTC", "summary": "safe", "review": "./StaticATokenLMAvalonReview.md", "warnings": [] + }, + "0x7870ddFd5ACA4E977B2287e9A212bcbe8FC4135a": { + "asset": "0x29219dd400f2Bf60E5a23d13Be72B486D4038894", + "name": "Beefy USDC Wrapper for SiloV2", + "summary": "safe", + "review": "./BeefyWrapperReview.md", + "warnings": [] + }, + "0x52Fc9E0a68b6a4C9b57b9D1d99fB71449A99DCd8": { + "asset": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "name": "SiloV2 solvBTC.bbn ID 13", + "summary": "safe", + "review": "./SiloV2Review.md", + "warnings": [] + }, + "0x87178fe8698C7eDa8aA207083C3d66aEa569aB98": { + "asset": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "name": "SiloV2 solvBTC ID 13", + "summary": "safe", + "review": "./SiloV2Review.md", + "warnings": [] } }, "sepolia": { diff --git a/rate-providers/BeefyUsdcSiloRateprovider.md b/rate-providers/BeefyUsdcSiloRateprovider.md new file mode 100644 index 0000000..c297d8b --- /dev/null +++ b/rate-providers/BeefyUsdcSiloRateprovider.md @@ -0,0 +1,70 @@ +# Rate Provider: `ERC4626RateProvider` + +## Details +- Reviewed by: @franzns +- Checked by: @danielmkm +- Deployed at: + - [sonic:0x5fded3206608d3f33175a8865576431906cdb43b](https://sonicscan.org/address/0x5fded3206608d3f33175a8865576431906cdb43b#code) +- Audits: + - [4626 wrapper audit](https://github.com/beefyfinance/beefy-audits/blob/master/2023-08-03-Beefy-Zellic-4626-Wrapper-Audit.pdf) + + +## Context +The ERC4626 Rate Provider fetches the rate of the Beefy vault for USDC deposited into Silo v2. The rate provider was created using the ERC4626 Rateprovider factory which calls convertToAssets on the ERC4626 to expose the rate. The rate of the ERC4626 is calculated by `shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding)`. + +## Review Checklist: Bare Minimum Compatibility +Each of the items below represents an absolute requirement for the Rate Provider. If any of these is unchecked, the Rate Provider is unfit to use. + +- [x] Implements the [`IRateProvider`](https://github.com/balancer/balancer-v2-monorepo/blob/bc3b3fee6e13e01d2efe610ed8118fdb74dfc1f2/pkg/interfaces/contracts/pool-utils/IRateProvider.sol) interface. +- [x] `getRate` returns an 18-decimal fixed point number (i.e., 1 == 1e18) regardless of underlying token decimals. + +## Review Checklist: Common Findings +Each of the items below represents a common red flag found in Rate Provider contracts. + +If none of these is checked, then this might be a pretty great Rate Provider! If any of these is checked, we must thoroughly elaborate on the conditions that lead to the potential issue. Decision points are not binary; a Rate Provider can be safe despite these boxes being checked. A check simply indicates that thorough vetting is required in a specific area, and this vetting should be used to inform a holistic analysis of the Rate Provider. + +### Administrative Privileges +- [ ] The Rate Provider is upgradeable (e.g., via a proxy architecture or an `onlyOwner` function that updates the price source address). + + +### Oracles +- [ ] Price data is provided by an off-chain source (e.g., a Chainlink oracle, a multisig, or a network of nodes). + +- [ ] Price data is expected to be volatile (e.g., because it represents an open market price instead of a (mostly) monotonically increasing price). + +### Common Manipulation Vectors +- [x] The Rate Provider is susceptible to donation attacks. + - comment: The ERC4626 wrapper calls the vaults balance for totalAssets() which is part of the `totalAssets` used in the `converToAssets` call and therefore in the `getRate` calculation. + + ```solidity + /** + * @notice Fetches the total assets held by the vault + * @dev Returns the total assets held by the vault, not only the wrapper + * @return totalAssets the total balance of assets held by the vault + */ + function totalAssets() public view virtual override returns (uint256) { + return IVault(vault).balance(); + } + ``` + The vault calculates it based on underlying balance inside the vault plus the balance inside the strategy. + ```solidity + /** + * @dev It calculates the total underlying value of {token} held by the system. + * It takes into account the vault contract balance, the strategy contract balance + * and the balance deployed in other contracts as part of the strategy. + */ + function balance() public view returns (uint) { + return want().balanceOf(address(this)) + IStrategyV7(strategy).balanceOf(); + } + ``` + + The underlying balance can be inflated by donating underlying assets to the vault. + +## Additional Findings +To save time, we do not bother pointing out low-severity/informational issues or gas optimizations (unless the gas usage is particularly egregious). Instead, we focus only on high- and medium-severity findings which materially impact the contract's functionality and could harm users. + + +## Conclusion +**Summary judgment: SAFE** + +Overall this Rate Provider should work well in pool operations with Balancer pools. diff --git a/rate-providers/MarketRateTransformerRateProviders.md b/rate-providers/MarketRateTransformerRateProviders.md index aad8991..f25e7cc 100644 --- a/rate-providers/MarketRateTransformerRateProviders.md +++ b/rate-providers/MarketRateTransformerRateProviders.md @@ -20,6 +20,10 @@ - ERC4626RateProvider: MetaMorphoV1_1 - ERC4626Vault's `asset` rate provider: Wrapped USDL (wUSDL) ERC4626 Rate Provider + - WeETH [base:0x4FE32815684C54bB779359A99ff3a7Ef424079E3](https://basescan.org/address/0x4FE32815684C54bB779359A99ff3a7Ef424079E3) + - ERC4626RateProvider: Wrapped Aave Base weETH + - ERC4626Vault's `asset` rate provider: ChainlinkRateProvider + - Audit report(s): - [Formal Verification Report For StaticAToken](https://github.com/aave-dao/aave-v3-origin/blob/067d29eb75115179501edc4316d125d9773f7928/audits/11-09-2024_Certora_StataTokenV2.pdf) - [Security Reviews & Formal Verifications](https://docs.morpho.org/security-reviews/) @@ -104,9 +108,63 @@ If none of these is checked, then this might be a pretty great Rate Provider! If - admin type: multisig - multisig threshold/signers: 3/17 + #### Wrapped Aave Base weETH + - [base:0x4FE32815684C54bB779359A99ff3a7Ef424079E3](https://basescan.org/address/0x4FE32815684C54bB779359A99ff3a7Ef424079E3#readContract) + - upgradeable component: `StataTokenV2` ([base:0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b](https://basescan.org/address/0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + - upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base wstETH + - [base:0xcb1f29103F710A0A562de7f0e9DDE223D0860674](https://basescan.org/address/0xcb1f29103F710A0A562de7f0e9DDE223D0860674#readContract) + - upgradeable component: `StataTokenV2` ([base:0x0830820D1A9aa1554364752d6D8F55C836871B74](https://basescan.org/address/0x0830820D1A9aa1554364752d6D8F55C836871B74)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + - upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base cbETH + - [base:0x940748d30315276362f594ECcCb648A4f9aB7629](https://basescan.org/address/0x940748d30315276362f594ECcCb648A4f9aB7629#readContract) + - upgradeable component: `StataTokenV2` ([base:0x5e8B674127B321DC344c078e58BBACc3f3008962](https://basescan.org/address/0x5e8B674127B321DC344c078e58BBACc3f3008962#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + - upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + #### Wrapped Aave Base ezETH + - [base:0xFF4B2CE4131E0Fb6b8A40447B4dF96Bdc83f759a](https://basescan.org/address/0xFF4B2CE4131E0Fb6b8A40447B4dF96Bdc83f759a#readContract) + - upgradeable component: `StataTokenV2` ([base:0xF8F10f39116716e89498c1c5E94137ADa11b2BC7](https://basescan.org/address/0xF8F10f39116716e89498c1c5E94137ADa11b2BC7#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + - upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + ### Oracles -- [ ] Price data is provided by an off-chain source (e.g., a Chainlink oracle, a multisig, or a network of nodes). +- [x] Price data is provided by an off-chain source (e.g., a Chainlink oracle, a multisig, or a network of nodes). + + #### Wrapped Aave Base weETH + - The ERC4626 Vault utilises a Chainlink Rate Provider at [base:0x5a7A419C59eAAdec8Dc00bc93ac95612e6e154Cf](https://basescan.org/address/0x5a7A419C59eAAdec8Dc00bc93ac95612e6e154Cf#code) + #### Wrapped Aave Base wstETH + - The ERC4626 Vault utilises a Chainlink Rate Provider at [base:0x3b3dd5f913443bb5E70389F29c83F7DCA460CAe1](https://basescan.org/address/0x3b3dd5f913443bb5E70389F29c83F7DCA460CAe1) + #### Wrapped Aave Base cbETH + - The ERC4626 Vault utilises a Chainlink Rate Provider at [base:0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1](https://basescan.org/address/0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1) + #### Wrapped Aave Base ezETH + - The ERC4626 Vault utilises a Chainlink Rate Provider at [base:0x6ac3b3BeCE5AA61C6AB5d50ecd2D47b1f18ACe49](https://basescan.org/address/0x6ac3b3BeCE5AA61C6AB5d50ecd2D47b1f18ACe49) + - [ ] Price data is expected to be volatile (e.g., because it represents an open market price instead of a (mostly) monotonically increasing price). diff --git a/rate-providers/SiloWrappedRateprovider.md b/rate-providers/SiloWrappedRateprovider.md new file mode 100644 index 0000000..8820c9f --- /dev/null +++ b/rate-providers/SiloWrappedRateprovider.md @@ -0,0 +1,43 @@ +# Rate Provider: `ERC4626RateProvider` + +## Details +- Reviewed by: @franzns +- Checked by: +- Deployed at: + - [sonic:0x78557d8a83fe7c6d9f9983d00e5c0e08cc3335e6](https://sonicscan.org/address/0x78557d8a83fe7c6d9f9983d00e5c0e08cc3335e6#code) + - [sonic:0x9d2d4351c1b3718d7a65ef21f54c86c665964670](https://sonicscan.org/address/0x9d2d4351c1b3718d7a65ef21f54c86c665964670#code) +- Audits: + - [Silo V2 audits](https://docs.silo.finance/audits-and-tests) + +## Context +The ERC4626 Rate Provider fetches the rate of the Silo V2 Market. The rate provider was created using the ERC4626 Rateprovider factory which calls convertToAssets on the ERC4626 to expose the rate. + +## Review Checklist: Bare Minimum Compatibility +Each of the items below represents an absolute requirement for the Rate Provider. If any of these is unchecked, the Rate Provider is unfit to use. + +- [x] Implements the [`IRateProvider`](https://github.com/balancer/balancer-v2-monorepo/blob/bc3b3fee6e13e01d2efe610ed8118fdb74dfc1f2/pkg/interfaces/contracts/pool-utils/IRateProvider.sol) interface. +- [x] `getRate` returns an 18-decimal fixed point number (i.e., 1 == 1e18) regardless of underlying token decimals. + +## Review Checklist: Common Findings +Each of the items below represents a common red flag found in Rate Provider contracts. + +If none of these is checked, then this might be a pretty great Rate Provider! If any of these is checked, we must thoroughly elaborate on the conditions that lead to the potential issue. Decision points are not binary; a Rate Provider can be safe despite these boxes being checked. A check simply indicates that thorough vetting is required in a specific area, and this vetting should be used to inform a holistic analysis of the Rate Provider. + +### Administrative Privileges +- [ ] The Rate Provider is upgradeable (e.g., via a proxy architecture or an `onlyOwner` function that updates the price source address). + +- [ ] Some other portion of the price pipeline is upgradeable (e.g., the token itself, an oracle, or some piece of a larger system that tracks the price). + + +### Oracles +- [ ] Price data is provided by an off-chain source (e.g., a Chainlink oracle, a multisig, or a network of nodes). + +- [ ] Price data is expected to be volatile (e.g., because it represents an open market price instead of a (mostly) monotonically increasing price). + +### Common Manipulation Vectors +- [ ] The Rate Provider is susceptible to donation attacks. + +## Conclusion +**Summary judgment: SAFE** + +The Rate Providers should work well with Balancer pools. The underlying contracts have been audited. Computation of totalAssets do not rely on `balanceOf()` calls and also their audits do not indicate any risk of a donation attack vector. \ No newline at end of file diff --git a/rate-providers/registry.json b/rate-providers/registry.json index 1f54dd3..d385e0c 100644 --- a/rate-providers/registry.json +++ b/rate-providers/registry.json @@ -740,6 +740,69 @@ "warnings": [], "factory": "0xEfD3aF73d3359014f3B864d37AC672A6d3D7ff1A", "upgradeableComponents": [] + }, + "0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35": { + "asset": "0xe298b938631f750DD409fB18227C4a23dCdaab9b", + "name": "ERC4626RateProvider", + "summary": "safe", + "review": "./statATokenLMRateProvider.md", + "warnings": [""], + "factory": "0xEfD3aF73d3359014f3B864d37AC672A6d3D7ff1A", + "upgradeableComponents": [] + }, + "0x0368b79b6A173a5aD589594E3227153D8cC7Cecc": { + "asset": "0xC768c589647798a6EE01A91FdE98EF2ed046DBD6", + "name": "ERC4626RateProvider", + "summary": "safe", + "review": "./statATokenLMRateProvider.md", + "warnings": [""], + "factory": "0xEfD3aF73d3359014f3B864d37AC672A6d3D7ff1A", + "upgradeableComponents": [] + }, + "0xbF21251c74208771e25De5C08971cE586236EE89": { + "asset": "0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF", + "name": "ERC4626RateProvider", + "summary": "safe", + "review": "./statATokenLMRateProvider.md", + "warnings": [], + "factory": "", + "upgradeableComponents": [] + }, + "0xcb1f29103F710A0A562de7f0e9DDE223D0860674": { + "asset": "0x0830820D1A9aa1554364752d6D8F55C836871B74", + "name": "AaveMarketRateTransformer", + "summary": "safe", + "review": "./MarketRateTransformerRateProviders.md", + "warnings": [], + "factory": "", + "upgradeableComponents": [] + }, + "0x940748d30315276362f594ECcCb648A4f9aB7629": { + "asset": "0x5e8B674127B321DC344c078e58BBACc3f3008962", + "name": "AaveMarketRateTransformer", + "summary": "safe", + "review": "./MarketRateTransformerRateProviders.md", + "warnings": [], + "factory": "", + "upgradeableComponents": [] + }, + "0xBa0Fd0f3B019e8aBA61FEA2ac4Eb56b29F6808c0": { + "asset": "0x74D4D1D440c9679b1013999Bd91507eAa2fff651", + "name": "ERC4626RateProvider", + "summary": "safe", + "review": "./statATokenLMRateProvider.md", + "warnings": [], + "factory": "", + "upgradeableComponents": [] + }, + "0xFF4B2CE4131E0Fb6b8A40447B4dF96Bdc83f759a": { + "asset": "0xF8F10f39116716e89498c1c5E94137ADa11b2BC7", + "name": "AaveMarketRateTransformer", + "summary": "safe", + "review": "./MarketRateTransformerRateProviders.md", + "warnings": [], + "factory": "", + "upgradeableComponents": [] } }, "ethereum": { @@ -2094,6 +2157,15 @@ "implementationReviewed": "0xaf108ae0AD8700ac41346aCb620e828c03BB8848" } ] + }, + "0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35": { + "asset": "0x6acD0a165fD70A84b6b50d955ff3628700bAAf4b", + "name": "AaveMarketRateTransformer", + "summary": "safe", + "review": "./MarketRateTransformerRateProviders.md", + "warnings": [""], + "factory": "0x4E185b1502Fea7a06B63fDdA6de38F92C9528566", + "upgradeableComponents": [] } }, "fantom": { @@ -2893,7 +2965,8 @@ { "entrypoint": "0xA28d4dbcC90C849e3249D642f356D85296a12954", "implementationReviewed": "0x29c26d85ba819659d084a592b97607a5337de030" - }] + } + ] }, "0xa6c292d06251da638be3b58f1473e03d99c26ff0": { "asset": "0xd31e89ffb929b38ba60d1c7dbeb68c7712eaab0a", @@ -2906,7 +2979,35 @@ { "entrypoint": "0xD31E89Ffb929b38bA60D1c7dBeB68c7712EAAb0a", "implementationReviewed": "0xb9fa01cbd690dfd5be3d8d667c54bbdd9e41e57d" - }] + } + ] + }, + "0x5fded3206608d3f33175a8865576431906cdb43b": { + "asset": "0x7870ddFd5ACA4E977B2287e9A212bcbe8FC4135a", + "name": "Beefy USDC SiloV2 Rateprovider", + "summary": "safe", + "review": "./BeefyUsdcSiloRateprovider.md", + "warnings": [""], + "factory": "0x00de97829d01815346e58372be55aefd84ca2457", + "upgradeableComponents": [] + }, + "0x78557d8a83fe7c6d9f9983d00e5c0e08cc3335e6": { + "asset": "0x52Fc9E0a68b6a4C9b57b9D1d99fB71449A99DCd8", + "name": "Silo bSolvBTC.bbn Rateprovider", + "summary": "safe", + "review": "./SiloWrappedRateprovider.md", + "warnings": [""], + "factory": "0x00de97829d01815346e58372be55aefd84ca2457", + "upgradeableComponents": [] + }, + "0x9d2d4351c1b3718d7a65ef21f54c86c665964670": { + "asset": "0x87178fe8698C7eDa8aA207083C3d66aEa569aB98", + "name": "Silo bSolvBTC Rateprovider", + "summary": "safe", + "review": "./SiloWrappedRateprovider.md", + "warnings": [""], + "factory": "0x00de97829d01815346e58372be55aefd84ca2457", + "upgradeableComponents": [] } } } diff --git a/rate-providers/statATokenLMRateProvider.md b/rate-providers/statATokenLMRateProvider.md index bb97e08..f1027f5 100644 --- a/rate-providers/statATokenLMRateProvider.md +++ b/rate-providers/statATokenLMRateProvider.md @@ -19,7 +19,8 @@ - [gnosis:0x821aFE819450A359E29a5209C48f2Fa3321C8AD2](https://gnosisscan.io/address/0x821aFE819450A359E29a5209C48f2Fa3321C8AD2#readContract) - [gnosis:0x5F62fd24941B585b91EB059E0ea1a7e729357511](https://gnosisscan.io/address/0x5F62fd24941B585b91EB059E0ea1a7e729357511#code) - [avalanche:0x484ebac26a05e1feb7909243f293a4f79eef837a](https://snowtrace.io/address/0x484ebac26a05e1feb7909243f293a4f79eef837a/contract/43114/code) - - [avalanche:0x7E98951ae90fd1Fd7aF3cfe0ACA2A8a8D0FC5767](https://snowtrace.io/address/0x7E98951ae90fd1Fd7aF3cfe0ACA2A8a8D0FC5767/contract/43114/readContract?chainid=43114) + - [avalanche:0x7E98951ae90fd1Fd7aF3cfe0ACA2A8a8D0FC5767](https://snowtrace.io/address/0x7E98951ae90fd1Fd7aF3cfe0ACA2A8a8D0FC5767/contract/43114/readContract?chainid=43114) + - [base:0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35](https://basescan.org/address/0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35) - Audit report(s): - [Formal Verification Report For StaticAToken](https://github.com/bgd-labs/static-a-token-v3/blob/main/audits/Formal_Verification_Report_staticAToken.pdf) @@ -205,6 +206,48 @@ If none of these is checked, then this might be a pretty great Rate Provider! If - admin type: Aave governance system. - multisig timelock? YES: 24 hours + - [base:0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35](https://basescan.org/address/0x14BD1e9b30007510c2aFE3a7a8053A6DE5605d35) + - upgradeable component: `StataTokenV2` ([base:0xe298b938631f750DD409fB18227C4a23dCdaab9b](https://basescan.org/address/0xe298b938631f750DD409fB18227C4a23dCdaab9b)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + -upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://snowtrace.io/address/0x3C06dce358add17aAf230f2234bCCC4afd50d090/contract/43114/code) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours + + - [base:0x0368b79b6A173a5aD589594E3227153D8cC7Cecc](https://basescan.org/address/0x0368b79b6A173a5aD589594E3227153D8cC7Cecc#readContract) + - upgradeable component: `StataTokenV2` ([base:0xC768c589647798a6EE01A91FdE98EF2ed046DBD6](https://basescan.org/address/0xC768c589647798a6EE01A91FdE98EF2ed046DBD6#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + -upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + - [base:0xbF21251c74208771e25De5C08971cE586236EE89](https://basescan.org/address/0xbF21251c74208771e25De5C08971cE586236EE89#readContract) + - upgradeable component: `StataTokenV2` ([base:0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF](https://basescan.org/address/0xFA2A03b6f4A65fB1Af64f7d935fDBf78693df9aF#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + -upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + - [base:0xBa0Fd0f3B019e8aBA61FEA2ac4Eb56b29F6808c0](https://basescan.org/address/0xBa0Fd0f3B019e8aBA61FEA2ac4Eb56b29F6808c0) + - upgradeable component: `StataTokenV2` ([base:0x74D4D1D440c9679b1013999Bd91507eAa2fff651](https://basescan.org/address/0x74D4D1D440c9679b1013999Bd91507eAa2fff651#code)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + -upgradeable component: `L2PoolInstance` ([base:0xA238Dd80C259a72e81d7e4664a9801593F98d1c5](https://basescan.org/address/0xA238Dd80C259a72e81d7e4664a9801593F98d1c5#readProxyContract)) + - admin address: [base:0x9390B1735def18560c509E2d0bc090E9d6BA257a](https://basescan.org/address/0x9390B1735def18560c509E2d0bc090E9d6BA257a) + - admin type: Aave governance system. + - multisig timelock? YES: 24 hours. + + + ### Oracles