Skip to content

Commit c30fad9

Browse files
authored
Add ERC-4626 Upgrade Note (#3849)
1 parent 88fa71e commit c30fad9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ ERC-721 integrators that interpret contract state from events should make sure t
8686

8787
With the new `ERC721Consecutive` extension, the internal workings of `ERC721` are slightly changed. Custom extensions to ERC721 should be reviewed to ensure they remain correct. The internal functions that should be considered are `_ownerOf` (new), `_beforeTokenTransfer`, and `_afterTokenTransfer`.
8888

89+
### ERC-4626 Upgrade Note
90+
91+
Existing `ERC4626` contracts that are upgraded to 4.8 must initialize a new variable that holds the vault token decimals. The recommended way to do this is to use a [reinitializer]:
92+
93+
[reinitializer]: https://docs.openzeppelin.com/contracts/4.x/api/proxy#Initializable-reinitializer-uint8-
94+
95+
```solidity
96+
function migrateToV48() public reinitializer(2) {
97+
__ERC4626_init(IERC20Upgradeable(asset()));
98+
}
99+
```
100+
89101
## 4.7.3
90102

91103
### Breaking changes

0 commit comments

Comments
 (0)