Skip to content

Commit f843905

Browse files
yahgwaigodzillabagzeoneth
authoredFeb 5, 2025
v2.1.2 (#292)
* set decimals in postUpgradeInit * more intentional function name * comment * call it postUpgradeInit * add zero check * Added post upgrade init sig * chore: v2.1.2 --------- Co-authored-by: Henry <[email protected]> Co-authored-by: gzeon <[email protected]>
1 parent 5c37272 commit f843905

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arbitrum/nitro-contracts",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Layer 2 precompiles and rollup for Arbitrum Nitro",
55
"author": "Offchain Labs, Inc.",
66
"license": "BUSL-1.1",

‎src/bridge/ERC20Bridge.sol

+9
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,15 @@ contract ERC20Bridge is AbsBridge, IERC20Bridge {
6262
}
6363
}
6464

65+
/// @notice When upgrading a custom fee chain from v1.x.x to v2.1.2, nativeTokenDecimals must be set to 18.
66+
/// This is because v1.x.x contracts assume 18 decimals, but the ERC20Bridge does not have the decimals set in storage.
67+
function postUpgradeInit() external onlyDelegated onlyProxyOwner {
68+
// this zero check might save you from accidentally upgrading from v2.x.x to v2.1.2
69+
// it will not save you if your native token is supposed to have 0 decimals
70+
require(nativeTokenDecimals == 0, "NONZERO_NATIVE_TOKEN_DECIMALS");
71+
nativeTokenDecimals = 18;
72+
}
73+
6574
/// @inheritdoc IERC20Bridge
6675
function enqueueDelayedMessage(
6776
uint8 kind,

‎test/signatures/ERC20Bridge

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"initialize(address,address)": "485cc955",
1414
"nativeToken()": "e1758bd8",
1515
"nativeTokenDecimals()": "ad48cb5e",
16+
"postUpgradeInit()": "95fcea78",
1617
"rollup()": "cb23bcb5",
1718
"sequencerInbox()": "ee35f327",
1819
"sequencerInboxAccs(uint256)": "16bf5579",

0 commit comments

Comments
 (0)