Skip to content

Commit c24b8db

Browse files
authored
Merge pull request #5017 from BitGo/l2-chain-coinfeature
feat(statics): enable l1 finality webhook on mainnet
2 parents 2a8577d + 27f5761 commit c24b8db

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

modules/statics/src/coins.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,18 +322,21 @@ const ARBETH_FEATURES = [
322322
CoinFeature.MULTISIG_COLD,
323323
CoinFeature.EVM_WALLET,
324324
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
325+
CoinFeature.ETH_ROLLUP_CHAIN,
325326
];
326327
const OPETH_FEATURES = [
327328
...ETH_FEATURES,
328329
CoinFeature.MULTISIG_COLD,
329330
CoinFeature.EVM_WALLET,
330331
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
332+
CoinFeature.ETH_ROLLUP_CHAIN,
331333
];
332334
const ZKETH_FEATURES = [
333335
...ETH_FEATURES,
334336
CoinFeature.MULTISIG_COLD,
335337
CoinFeature.EVM_WALLET,
336338
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
339+
CoinFeature.ETH_ROLLUP_CHAIN,
337340
];
338341
const BERA_FEATURES = [
339342
...ETH_FEATURES,
@@ -1140,7 +1143,7 @@ export const coins = CoinMap.fromCoins([
11401143
18,
11411144
UnderlyingAsset.ARBETH,
11421145
BaseUnit.ETH,
1143-
[...ARBETH_FEATURES, CoinFeature.ETH_ROLLUP_CHAIN]
1146+
ARBETH_FEATURES
11441147
),
11451148
account(
11461149
'1d1cd251-88e1-4d0a-81a9-3e080de8757b',
@@ -1160,7 +1163,7 @@ export const coins = CoinMap.fromCoins([
11601163
18,
11611164
UnderlyingAsset.OPETH,
11621165
BaseUnit.ETH,
1163-
[...OPETH_FEATURES, CoinFeature.ETH_ROLLUP_CHAIN]
1166+
OPETH_FEATURES
11641167
),
11651168
account(
11661169
'53b1e350-f907-45ec-abf7-11d132547055',
@@ -1180,7 +1183,7 @@ export const coins = CoinMap.fromCoins([
11801183
18,
11811184
UnderlyingAsset.ZKETH,
11821185
BaseUnit.ETH,
1183-
[...ZKETH_FEATURES, CoinFeature.ETH_ROLLUP_CHAIN]
1186+
ZKETH_FEATURES
11841187
),
11851188
account(
11861189
'ac3c225e-55a9-4236-b907-a4cccc30a2fd',

0 commit comments

Comments
 (0)