Skip to content

Commit c085651

Browse files
Merge pull request #492 from BitGo/COIN-1592-wrw-add-support-for-ARB
feat(wrw): add ccr support for arbeth
2 parents 79a3125 + 6337188 commit c085651

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
@@ -801,13 +801,15 @@ export const evmCCRWrongChainCoins: Record<BitgoEnv, readonly CoinMetadata[]> =
801801
allCoinMetas.opeth,
802802
allCoinMetas.bsc,
803803
allCoinMetas.baseeth,
804+
allCoinMetas.arbeth,
804805
] as const,
805806
test: [
806807
allCoinMetas.tpolygon,
807808
allCoinMetas.hteth,
808809
allCoinMetas.topeth,
809810
allCoinMetas.tbsc,
810811
allCoinMetas.tbaseeth,
812+
allCoinMetas.tarbeth,
811813
] as const,
812814
};
813815

@@ -867,6 +869,16 @@ export const evmCCRIntendedChainCoins: Record<string, readonly CoinMetadata[]> =
867869
allCoinMetas.topeth,
868870
allCoinMetas.tpolygon,
869871
] as const,
872+
arbeth: [
873+
allCoinMetas.eth,
874+
allCoinMetas.polygon,
875+
allCoinMetas.opeth,
876+
] as const,
877+
tarbeth: [
878+
allCoinMetas.hteth,
879+
allCoinMetas.tpolygon,
880+
allCoinMetas.topeth,
881+
] as const,
870882
};
871883

872884
export const broadcastTransactionCoins: Record<

0 commit comments

Comments
 (0)