From b1344086fbd0a778f56080999b8f07bcf7334dd7 Mon Sep 17 00:00:00 2001 From: Le Yu <6251863+ltyu@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:58:55 -0500 Subject: [PATCH] Add ProxyAdmin blocks to base and zero --- .../warp/configGetters/getEthereumBaseBRETTWarpConfig.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumBaseBRETTWarpConfig.ts b/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumBaseBRETTWarpConfig.ts index f553e4b916..9168549aee 100644 --- a/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumBaseBRETTWarpConfig.ts +++ b/typescript/infra/config/environments/mainnet3/warp/configGetters/getEthereumBaseBRETTWarpConfig.ts @@ -21,6 +21,10 @@ export const getBaseZeronetworkBrettConfig = async ( const base: HypTokenRouterConfig = { ...routerConfig.base, owner: abacusWorksEnvOwnerConfig.base.owner, + proxyAdmin: { + owner: abacusWorksEnvOwnerConfig.base.owner, + address: '0xdD702861AB97419858ccc85eDa4765e26D955d88', + }, type: TokenType.collateral, token: tokens.base.brett, interchainSecurityModule: ISM_CONFIG, @@ -29,6 +33,10 @@ export const getBaseZeronetworkBrettConfig = async ( const zeronetwork: HypTokenRouterConfig = { ...routerConfig.zeronetwork, owner: abacusWorksEnvOwnerConfig.zeronetwork.owner, + proxyAdmin: { + owner: abacusWorksEnvOwnerConfig.zeronetwork.owner, + address: '0x4Ae15e875BDf5956D5c345A21AD83A20FD0692E6', + }, type: TokenType.synthetic, interchainSecurityModule: ISM_CONFIG, };