Skip to content

Commit c7841f7

Browse files
authored
Merge branch 'main' into review/issue-749
2 parents 4aa4a6d + fe50d3b commit c7841f7

5 files changed

Lines changed: 127 additions & 1 deletion
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# Rate Provider: WrappedAave Monad USDT0 rate provider
3+
4+
## Details
5+
This report was autogenerated on 03/07/2026.
6+
7+
- Deployed at:
8+
- [Monad:0x5E7109A755fD2b86361F95065cDE07FbAb50CA1D](https://monadvision.com/address/0x5E7109A755fD2b86361F95065cDE07FbAb50CA1D)
9+
- Audit report(s):
10+
- [Audits](https://aave.com/security)
11+
12+
## Context
13+
The waMonUSDT0 ERC4626 vault is a Static aToken wrapper developed by Aave that wraps Aave V3's interest-bearing aUSDT0 (USDT0 supplied to the Aave Monad market) into a non-rebasing ERC4626 token whose value continuously appreciates as lending yield accrues.
14+
15+
## Review Checklist: Bare Minimum Compatibility
16+
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.
17+
18+
- [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/tree/main/test).
19+
- [x] The required Vault implements the required operational ERC4626 Interface
20+
21+
### Administrative Privileges
22+
- [ ] The ERC4626 Vault is upgradeable** (e.g., via a proxy architecture).
23+
- [x] Other contracts which are part of the `mint` callchain are upgradeable**. You can find more information
24+
about the involved contracts in this [tenderly simulation](https://www.tdly.co/shared/simulation/16bb694c-27ed-42fa-a0e4-449c837ac584)
25+
26+
## Conclusion
27+
**Summary judgment: USABLE**
28+
Passing fork tests can be found at https://github.com/balancer/balancer-v3-erc4626-tests/pull/143.
29+
30+
** upgradeable in this context means that:
31+
- The contract is a proxy contract with an implementation sourced from Etherscan.
32+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# Rate Provider: WrappedAave Monad WETH rate provider
3+
4+
## Details
5+
This report was autogenerated on 03/07/2026.
6+
7+
- Deployed at:
8+
- [Monad:0x967d427eF0Eb4AEB7a1B523A98B04061F094276B](https://monadvision.com/address/0x967d427eF0Eb4AEB7a1B523A98B04061F094276B)
9+
- Audit report(s):
10+
- [Audits](https://aave.com/security)
11+
12+
## Context
13+
The waMonWETH ERC4626 vault is a Static aToken wrapper developed by Aave that wraps Aave V3's interest-bearing aWETH (WETH supplied to the Aave Monad market) into a non-rebasing ERC4626 token whose value continuously appreciates as lending yield accrues.
14+
15+
## Review Checklist: Bare Minimum Compatibility
16+
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.
17+
18+
- [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/tree/main/test).
19+
- [x] The required Vault implements the required operational ERC4626 Interface
20+
21+
### Administrative Privileges
22+
- [ ] The ERC4626 Vault is upgradeable** (e.g., via a proxy architecture).
23+
- [x] Other contracts which are part of the `mint` callchain are upgradeable**. You can find more information
24+
about the involved contracts in this [tenderly simulation](https://www.tdly.co/shared/simulation/5b559aff-4fd6-48c3-8524-acbd90dc1dee)
25+
26+
## Conclusion
27+
**Summary judgment: USABLE**
28+
Passing fork tests can be found at https://github.com/balancer/balancer-v3-erc4626-tests/pull/143.
29+
30+
** upgradeable in this context means that:
31+
- The contract is a proxy contract with an implementation sourced from Etherscan.
32+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# Rate Provider: WrappedAave Monad USDT0 rate provider
3+
4+
## Details
5+
This report was autogenerated on 03/07/2026.
6+
7+
- Deployed at:
8+
- [Monad:0x34d260A42F3D6b76053bC2d733B109e5708494B3](https://monadvision.com/address/0x34d260A42F3D6b76053bC2d733B109e5708494B3)
9+
- Audit report(s):
10+
- [Audits](https://aave.com/security)
11+
12+
## Context
13+
The rate provider is used to provide the rate of waMonUSDT0 in terms of underlying USDT0 using its ERC4626 contract.
14+
15+
## Review Checklist: Bare Minimum Compatibility
16+
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.
17+
18+
- [x] Implements the [`IRateProvider`](https://github.com/balancer/balancer-v2-monorepo/blob/bc3b3fee6e13e01d2efe610ed8118fdb74dfc1f2/pkg/interfaces/contracts/pool-utils/IRateProvider.sol) interface.
19+
- [x] `getRate` returns an 18-decimal fixed point number (i.e., 1 == 1e18) regardless of underlying token decimals.
20+
21+
### Administrative Privileges
22+
- [ ] The Rate Provider is upgradeable** (e.g., via a proxy architecture).
23+
- [x] Other contracts which are part of the `getRate` callchain are upgradeable**. You can find more information
24+
about the involved contracts in this [tenderly simulation](https://www.tdly.co/shared/simulation/6500ca1d-1ff8-4e4c-893d-4ee5a7530dba)
25+
26+
## Conclusion
27+
**Summary judgment: USABLE**
28+
29+
** upgradeable in this context means that:
30+
- The contract is a proxy contract with an implementation sourced from Etherscan and the proxy emitted an "Upgraded" event.
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# Rate Provider: WrappedAave Monad WETH rate provider
3+
4+
## Details
5+
This report was autogenerated on 03/07/2026.
6+
7+
- Deployed at:
8+
- [Monad:0xAbD0BdCe36f2b8b4051409e780BDb7c4ad5Dc5Bf](https://monadvision.com/address/0xAbD0BdCe36f2b8b4051409e780BDb7c4ad5Dc5Bf)
9+
- Audit report(s):
10+
- [Audits](https://aave.com/security)
11+
12+
## Context
13+
The rate provider is used to provide the rate of waMonWETH in terms of underlying WETH using its ERC4626 contract.
14+
15+
## Review Checklist: Bare Minimum Compatibility
16+
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.
17+
18+
- [x] Implements the [`IRateProvider`](https://github.com/balancer/balancer-v2-monorepo/blob/bc3b3fee6e13e01d2efe610ed8118fdb74dfc1f2/pkg/interfaces/contracts/pool-utils/IRateProvider.sol) interface.
19+
- [x] `getRate` returns an 18-decimal fixed point number (i.e., 1 == 1e18) regardless of underlying token decimals.
20+
21+
### Administrative Privileges
22+
- [ ] The Rate Provider is upgradeable** (e.g., via a proxy architecture).
23+
- [x] Other contracts which are part of the `getRate` callchain are upgradeable**. You can find more information
24+
about the involved contracts in this [tenderly simulation](https://www.tdly.co/shared/simulation/b62487fe-5080-4f50-b07c-e8ece39ae018)
25+
26+
## Conclusion
27+
**Summary judgment: USABLE**
28+
29+
** upgradeable in this context means that:
30+
- The contract is a proxy contract with an implementation sourced from Etherscan and the proxy emitted an "Upgraded" event.
31+

rate-providers/registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5121,4 +5121,4 @@
51215121
]
51225122
}
51235123
}
5124-
}
5124+
}

0 commit comments

Comments
 (0)