@@ -124,7 +124,7 @@ export const rebalancingChains = [
124124 'katana' ,
125125] as const satisfies DeploymentChain [ ] ;
126126
127- const awProxyAdminAddresses : Record < EvmChain , string | undefined > = {
127+ const awProxyAdminAddresses : Record < EvmChain , string > = {
128128 arbitrum : '0x33465314CbD880976B7A9f86062d615DE5E4Fa8A' ,
129129 base : '0x4e60dB3117AB7322949dC0A8E952D0cD413B1132' ,
130130 ethereum : '0x692e50577fAaBF10F824Dc8Ce581e3Af93785175' ,
@@ -137,9 +137,8 @@ const awProxyAdminAddresses: Record<EvmChain, string | undefined> = {
137137 ink : '0x3Ee33a0F98c06eE3d3E5c1717bD3AfbB0f749879' ,
138138 worldchain : '0xbcA7cc1c87E67341463f62F00Ea096564cAD13C1' ,
139139 hyperevm : '0xa5ff938C9DdC524d98ebf0297e39A6F5918Db2CD' ,
140-
141- bsc : undefined ,
142- katana : undefined ,
140+ bsc : '0x840A9f5dEF03dDffd798A5F4b405E59F8b7F6801' ,
141+ katana : '0xa8ab7DF354DD5d4bCE5856b2b4E0863A3AaeEb44' ,
143142} as const ;
144143
145144const awProxyAdminOwners : Record < EvmChain , string > = {
@@ -300,8 +299,9 @@ export const buildEclipseUSDCWarpConfig = async (
300299 return Object . fromEntries ( configs ) ;
301300} ;
302301
303- const awProxyAdmins : ChainMap < { address : string | undefined ; owner : string } > =
304- objMap ( awProxyAdminAddresses , ( chain , address ) => {
302+ const awProxyAdmins : ChainMap < { address : string ; owner : string } > = objMap (
303+ awProxyAdminAddresses ,
304+ ( chain , address ) => {
305305 const proxyAdminOwner =
306306 awProxyAdminOwners [ chain ] ?? chainOwners [ chain ] . owner ;
307307
@@ -314,7 +314,8 @@ const awProxyAdmins: ChainMap<{ address: string | undefined; owner: string }> =
314314 address : address ,
315315 owner : proxyAdminOwner ,
316316 } ;
317- } ) ;
317+ } ,
318+ ) ;
318319
319320export const getEclipseUSDCWarpConfig = async (
320321 routerConfig : ChainMap < RouterConfigWithoutOwner > ,
0 commit comments