Skip to content

Commit

Permalink
chore: remove empty string ISM_CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbrumm committed Mar 11, 2025
1 parent 4b7bbf2 commit c2b14dc
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { ethers } from 'ethers';

import { ChainMap, HypTokenRouterConfig, TokenType } from '@hyperlane-xyz/sdk';

import {
Expand All @@ -12,8 +10,6 @@ const turtleOwners = {
linea: '0x2e0355922EF3a5b77d29287C808aEafB4e7f25B2',
};

const ISM_CONFIG = ethers.constants.AddressZero; // Default ISM

export const getEthereumLineaTurtle = async (
routerConfig: ChainMap<RouterConfigWithoutOwner>,
): Promise<ChainMap<HypTokenRouterConfig>> => {
Expand All @@ -22,14 +18,12 @@ export const getEthereumLineaTurtle = async (
owner: turtleOwners.ethereum,
type: TokenType.collateral,
token: tokens.ethereum.Turtle,
interchainSecurityModule: ISM_CONFIG,
};

const linea: HypTokenRouterConfig = {
...routerConfig.linea,
owner: turtleOwners.linea,
type: TokenType.synthetic,
interchainSecurityModule: ISM_CONFIG,
};

return {
Expand Down

0 comments on commit c2b14dc

Please sign in to comment.