From c2b14dc503bd1741c8a6be90291c998057ff144f Mon Sep 17 00:00:00 2001 From: christopherbrumm Date: Tue, 11 Mar 2025 14:20:21 +0100 Subject: [PATCH] chore: remove empty string `ISM_CONFIG` --- .../mainnet3/warp/configGetters/getEthereumLineaTurtle.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumLineaTurtle.ts b/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumLineaTurtle.ts index ed92dc4a91..cb261af221 100644 --- a/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumLineaTurtle.ts +++ b/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumLineaTurtle.ts @@ -1,5 +1,3 @@ -import { ethers } from 'ethers'; - import { ChainMap, HypTokenRouterConfig, TokenType } from '@hyperlane-xyz/sdk'; import { @@ -12,8 +10,6 @@ const turtleOwners = { linea: '0x2e0355922EF3a5b77d29287C808aEafB4e7f25B2', }; -const ISM_CONFIG = ethers.constants.AddressZero; // Default ISM - export const getEthereumLineaTurtle = async ( routerConfig: ChainMap, ): Promise> => { @@ -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 {