Skip to content

Commit 6337188

Browse files
feat(wrw): add ccr support for arbeth
1 parent 03199b7 commit 6337188

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/containers/EvmCrossChainRecoveryWallet/EvmCrossChainRecoveryBaseForm.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ export function EvmCrossChainRecoveryBaseForm({
136136
Label="Gas Limit"
137137
name="gasLimit"
138138
Width="fill"
139-
value={gasLimit}
140139
/>
141140
</div>
142141
)}

src/helpers/config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,13 +797,15 @@ export const evmCCRWrongChainCoins: Record<BitgoEnv, readonly CoinMetadata[]> =
797797
allCoinMetas.opeth,
798798
allCoinMetas.bsc,
799799
allCoinMetas.baseeth,
800+
allCoinMetas.arbeth,
800801
] as const,
801802
test: [
802803
allCoinMetas.tpolygon,
803804
allCoinMetas.hteth,
804805
allCoinMetas.topeth,
805806
allCoinMetas.tbsc,
806807
allCoinMetas.tbaseeth,
808+
allCoinMetas.tarbeth,
807809
] as const,
808810
};
809811

@@ -857,6 +859,16 @@ export const evmCCRIntendedChainCoins: Record<string, readonly CoinMetadata[]> =
857859
tbaseeth: [
858860
allCoinMetas.hteth,
859861
] as const,
862+
arbeth: [
863+
allCoinMetas.eth,
864+
allCoinMetas.polygon,
865+
allCoinMetas.opeth,
866+
] as const,
867+
tarbeth: [
868+
allCoinMetas.hteth,
869+
allCoinMetas.tpolygon,
870+
allCoinMetas.topeth,
871+
] as const,
860872
};
861873

862874
export const broadcastTransactionCoins: Record<

0 commit comments

Comments
 (0)