Skip to content

Commit fa6517d

Browse files
authored
Merge pull request #681 from balancer/review/issue-680
Review: Rate Provider from Issue #680
2 parents 7f2e38f + b4b7a57 commit fa6517d

4 files changed

Lines changed: 120 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# Rate Provider: WrappedNeverland gMON rate provider
3+
4+
## Details
5+
This report was autogenerated on 02/03/2026.
6+
7+
- Deployed at:
8+
- [Monad:0x29D2075E5151B1A6863bDC40EA86bD5e8aFd1705](https://monadvision.com/address/0x29D2075E5151B1A6863bDC40EA86bD5e8aFd1705)
9+
- Audit report(s):
10+
- [Audits](https://github.com/Neverland-Money/security-audits)
11+
12+
## Context
13+
The ERC4626 Rate Provider tracks the embedded yield within the vault.
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/75731bf9-cbde-4292-8c02-05d4cb459e73)
25+
26+
## Conclusion
27+
**Summary judgment: USABLE**
28+
Passing fork tests can be found at balancer/balancer-v3-erc4626-tests#111.
29+
30+
** upgradeable in this context means that:
31+
- The contract is a proxy contract with an implementation sourced from Etherscan.
32+

erc4626/registry.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2695,6 +2695,26 @@
26952695
"useUnderlyingForAddRemove": true,
26962696
"useWrappedForAddRemove": true
26972697
},
2698+
"0x29D2075E5151B1A6863bDC40EA86bD5e8aFd1705": {
2699+
"asset": "0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081",
2700+
"name": "WrappedNeverlandgMONErc4626Vault.md",
2701+
"summary": "safe",
2702+
"review": "./WrappedNeverlandgMONErc4626VaultReviewb1c2.md",
2703+
"warnings": [],
2704+
"upgradeableComponents": [
2705+
{
2706+
"entrypoint": "0x29d2075e5151b1a6863bdc40ea86bd5e8afd1705",
2707+
"implementationReviewed": "0xf20a545013b74f7ed0239399217b130e4177e085"
2708+
},
2709+
{
2710+
"entrypoint": "0x80f00661b13cc5f6ccd3885be7b4c9c67545d585",
2711+
"implementationReviewed": "0xe3b56aad3c21531055f39e73a51e8ff29daad049"
2712+
}
2713+
],
2714+
"canUseBufferForSwaps": true,
2715+
"useUnderlyingForAddRemove": true,
2716+
"useWrappedForAddRemove": true
2717+
},
26982718
"0x08139339dd9A480CEB84D9C7CcE48BE436dB20b3": {
26992719
"asset": "0xA3227C5969757783154C60bF0bC1944180ed81B9",
27002720
"name": "WrappedNeverlandsMONErc4626Vault.md",
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# Rate Provider: WrappedNeverland gMON rate provider
3+
4+
## Details
5+
This report was autogenerated on 02/03/2026.
6+
7+
- Deployed at:
8+
- [Monad:0x1ade4352e59A9f6effd652ceC70ad2bf9346ae02](https://monadvision.com/address/0x1ade4352e59A9f6effd652ceC70ad2bf9346ae02)
9+
- Audit report(s):
10+
- [Audits](https://github.com/Neverland-Money/security-audits)
11+
12+
## Context
13+
Neverland is built on the Aave V3 architecture: a battle-tested,highly secure lending protocol.
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/1ac15f42-4e43-4a06-a33e-6b1603f991b7)
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: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6658,6 +6658,40 @@
66586658
}
66596659
]
66606660
},
6661+
"0x1ade4352e59A9f6effd652ceC70ad2bf9346ae02": {
6662+
"asset": "0x29D2075E5151B1A6863bDC40EA86bD5e8aFd1705",
6663+
"name": "WrappedNeverlandgMONRateProvider.md",
6664+
"summary": "safe",
6665+
"review": "./WrappedNeverlandgMONRateProviderReviewaa4c.md",
6666+
"warnings": [],
6667+
"factory": "",
6668+
"upgradeableComponents": [
6669+
{
6670+
"entrypoint": "0x29d2075e5151b1a6863bdc40ea86bd5e8afd1705",
6671+
"implementationReviewed": "0xf20a545013b74f7ed0239399217b130e4177e085"
6672+
},
6673+
{
6674+
"entrypoint": "0x80f00661b13cc5f6ccd3885be7b4c9c67545d585",
6675+
"implementationReviewed": "0xe3b56aad3c21531055f39e73a51e8ff29daad049"
6676+
},
6677+
{
6678+
"entrypoint": "0x8c9f39f0d08ee284a4fe0198524fe7c28630ceab",
6679+
"implementationReviewed": "0x4d6092fde125ad5cb9f2941e095040bc8dc39a95"
6680+
},
6681+
{
6682+
"entrypoint": "0x22d47686b3aec9068768f84efd8ce2637a347b0a",
6683+
"implementationReviewed": "0xf6de0bbe3b277a7c1d56139e4084e917aaaa74d2"
6684+
},
6685+
{
6686+
"entrypoint": "0x368ee51e47a594fe1e9908b48228748a30bc7ca4",
6687+
"implementationReviewed": "0xe4bfe4071d363e1d4274fb8f79cb510b75913020"
6688+
},
6689+
{
6690+
"entrypoint": "0x98dc6e90d4c2f212ed9d124ad2afba4833268633",
6691+
"implementationReviewed": "0xe94c9f9a1893f23be38a5c0394e46ac05e8a5f8c"
6692+
}
6693+
]
6694+
},
66616695
"0x9f80b425Fe4A6A31Da5f5fCDd285d951244D1ea1": {
66626696
"asset": "0x08139339dd9A480CEB84D9C7CcE48BE436dB20b3",
66636697
"name": "WrappedNeverlandsMONRateProvider.md",
@@ -6667,6 +6701,7 @@
66676701
"factory": "",
66686702
"upgradeableComponents": [
66696703
{
6704+
"entrypoint": "0x29d2075e5151b1a6863bdc40ea86bd5e8afd1705",
66706705
"entrypoint": "0x08139339dd9a480ceb84d9c7cce48be436db20b3",
66716706
"implementationReviewed": "0xf20a545013b74f7ed0239399217b130e4177e085"
66726707
},
@@ -6675,6 +6710,8 @@
66756710
"implementationReviewed": "0xe3b56aad3c21531055f39e73a51e8ff29daad049"
66766711
},
66776712
{
6713+
"entrypoint": "0x8c9f39f0d08ee284a4fe0198524fe7c28630ceab",
6714+
"implementationReviewed": "0x4d6092fde125ad5cb9f2941e095040bc8dc39a95"
66786715
"entrypoint": "0xe77456457619ad1948336fbabc3883cb965b50d1",
66796716
"implementationReviewed": "0xb12c4bdf99c4ed3b78137b921a0eae382e710ddc"
66806717
},

0 commit comments

Comments
 (0)