fix(infra): Comment out pzETH/ethereum-solana warp route in check (#4477)
### Description - Comment out `pzETH/ethereum-solana` as it is causing the `check-warp-deploy` cronjob to fail as the config has not been added to registry ### Testing Manualpull/4405/merge
parent
7f099419e3
commit
95f6421cd9
@ -1,34 +0,0 @@ |
||||
import { ethers } from 'ethers'; |
||||
|
||||
import { |
||||
ChainMap, |
||||
RouterConfig, |
||||
TokenRouterConfig, |
||||
TokenType, |
||||
} from '@hyperlane-xyz/sdk'; |
||||
|
||||
import { DEPLOYER } from '../../owners.js'; |
||||
|
||||
export const getEthereumSolanaPzETHWarpConfig = async ( |
||||
routerConfig: ChainMap<RouterConfig>, |
||||
): Promise<ChainMap<TokenRouterConfig>> => { |
||||
// @ts-ignore - foreignDeployment configs don't conform to the TokenRouterConfig
|
||||
const solana: TokenRouterConfig = { |
||||
type: TokenType.synthetic, |
||||
foreignDeployment: 'GiP8GwN1GsscVJvmKSD4muDEihRzZRa9mxnS1Toi64pa', |
||||
gas: 300_000, |
||||
}; |
||||
|
||||
const ethereum: TokenRouterConfig = { |
||||
...routerConfig.ethereum, |
||||
type: TokenType.collateral, |
||||
interchainSecurityModule: ethers.constants.AddressZero, |
||||
token: '0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811', |
||||
owner: DEPLOYER, |
||||
}; |
||||
|
||||
return { |
||||
solana, |
||||
ethereum, |
||||
}; |
||||
}; |
Loading…
Reference in new issue