Skip to content

Commit

Permalink
Update finality.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlotfi authored Sep 11, 2024
1 parent d0e4fa6 commit bb12d63
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/finality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export class ChainFinality {
private readonly finalizedBlocks: { [chainId: number]: number } = {
[CHAIN_ID_ETH]: 20,
[CHAIN_ID_BSC]: 8,
[CHAIN_ID_POLYGON]: 200,
[CHAIN_ID_POLYGON]: 80,
[CHAIN_ID_AVAX]: 2,
[CHAIN_ID_ARBITRUM]: 2,
[CHAIN_ID_OPTIMISM]: 2,
[CHAIN_ID_BASE]: 2,
[CHAIN_ID_ARBITRUM]: 1,
[CHAIN_ID_OPTIMISM]: 1,
[CHAIN_ID_BASE]: 1,
};

private readonly minSwapValueUsd = 100;
Expand All @@ -49,7 +49,7 @@ export class ChainFinality {
[CHAIN_ID_BSC]: 3,
[CHAIN_ID_POLYGON]: 2,
[CHAIN_ID_AVAX]: 2,
[CHAIN_ID_ARBITRUM]: 100,
[CHAIN_ID_ARBITRUM]: 0.3,
[CHAIN_ID_OPTIMISM]: 3,
[CHAIN_ID_BASE]: 3,
};
Expand Down

0 comments on commit bb12d63

Please sign in to comment.