Skip to content

Commit

Permalink
chore(Constants): Adjust Ethereum minDepositConfirmations (#306)
Browse files Browse the repository at this point in the history
Align with RL internal config.
  • Loading branch information
pxrl authored Sep 20, 2022
1 parent 0e2a668 commit d21edee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export const MAX_RELAYER_DEPOSIT_LOOK_BACK: { [chainId: number]: number } = {
};

// Reorgs are anticipated on Ethereum and Polygon.
// Ethereum: https://etherscan.io/blocks_forked
// Ethereum: https://etherscan.io/blocks_forked (not working since the merge)
// Polygon: https://polygonscan.com/blocks_forked
// Optimistic Rollups are currently centrally serialized and are not expected to reorg.
export const MIN_DEPOSIT_CONFIRMATIONS: { [chainId: number]: number } = {
1: 6,
1: 32,
10: 240,
137: 100,
288: 4,
Expand Down

0 comments on commit d21edee

Please sign in to comment.