Skip to content

Commit 522b7f5

Browse files
committed
feat(mbe): update recoveries to use hoodi chainid
Ticket: WP-5494
1 parent d258bc2 commit 522b7f5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/__tests__/api/master/recoveryWalletMpcV2.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ describe('MBE mpcv2 recovery', () => {
5555
nock.cleanAll();
5656
});
5757

58-
// TODO(WP-5494): Re-enable this once eth recoveries are fixed for Hoodi
59-
xit('should recover a HETH (an eth-like) wallet by calling the advanced wallet manager service', async () => {
58+
it('should recover a HETH (an eth-like) wallet by calling the advanced wallet manager service', async () => {
6059
const etherscanTxlistNock = nock('https://api.etherscan.io')
6160
.get(
6261
`/v2/api?chainid=560048&module=account&action=txlist&address=0x43442e403d64d29c4f64065d0c1a0e8edc03d6c8&apikey=etherscan-api-key`,

src/shared/recoveryUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function getReplayProtectionOptions(
6868
): ReplayProtectionOptions {
6969
return (
7070
replayProtectionOptions ?? {
71-
chain: env === 'prod' ? 1 : 17000,
71+
chain: env === 'prod' ? 1 : 560048,
7272
hardfork: 'london',
7373
}
7474
);

0 commit comments

Comments
 (0)