@@ -192,6 +192,19 @@ const tac = (address: string) => {
192192 } ;
193193} ;
194194
195+ const bsc = ( address : string ) => {
196+ if ( TENDERLY_NETWORK_ID === chainIds [ DeploymentNetwork . BSC ] ) {
197+ return {
198+ [ DeploymentNetwork . BSC ] : address ,
199+ [ DeploymentNetwork . Tenderly ] : address ,
200+ [ DeploymentNetwork . TenderlyTestnet ] : address
201+ } ;
202+ }
203+ return {
204+ [ DeploymentNetwork . BSC ] : address
205+ } ;
206+ } ;
207+
195208const TestNamedAccounts = {
196209 ethWhale : {
197210 ...getAddress ( mainnet , '0xDA9dfA130Df4dE4673b89022EE50ff26f6EA73Cf' ) ,
@@ -285,24 +298,28 @@ const BancorNamedAccounts = {
285298 ...getAddress ( berachain , '0x45d2e25C04F43A06f6C3e21e4f39B860D05a7aC8' ) ,
286299 ...getAddress ( coti , '0x3F086F628678cF136C4fA7d2901ff5EBE2623435' ) ,
287300 ...getAddress ( arbitrum , '0x8cE318919438982514F9f479FDfB40D32C6ab749' ) ,
288- ...getAddress ( tac , '0xBBAFF3Bf6eC4C15992c0Fb37F12491Fd62C5B496' )
301+ ...getAddress ( tac , '0xBBAFF3Bf6eC4C15992c0Fb37F12491Fd62C5B496' ) ,
302+ ...getAddress ( bsc , '0x45d2e25C04F43A06f6C3e21e4f39B860D05a7aC8' )
289303 }
290304} ;
291305
292306const VortexNamedAccounts = {
293307 targetToken : {
294308 ...getAddress ( mainnet , NATIVE_TOKEN_ADDRESS ) ,
295309 ...getAddress ( coti , '0x639aCc80569c5FC83c6FBf2319A6Cc38bBfe26d1' ) , // weth
296- ...getAddress ( tac , NATIVE_TOKEN_ADDRESS ) // tac
310+ ...getAddress ( tac , NATIVE_TOKEN_ADDRESS ) , // tac
311+ ...getAddress ( bsc , NATIVE_TOKEN_ADDRESS ) // bnb
297312 } ,
298313 finalTargetToken : {
299314 ...getAddress ( mainnet , '0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C' ) ,
300- ...getAddress ( tac , '0x61D66bC21fED820938021B06e9b2291f3FB91945' ) // weth
315+ ...getAddress ( tac , '0x61D66bC21fED820938021B06e9b2291f3FB91945' ) , // weth
316+ ...getAddress ( bsc , '0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA' ) // wormhole weth
301317 } ,
302318 transferAddress : {
303319 ...getAddress ( mainnet , '0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C' ) ,
304320 ...getAddress ( coti , ZERO_ADDRESS ) ,
305- ...getAddress ( tac , ZERO_ADDRESS )
321+ ...getAddress ( tac , ZERO_ADDRESS ) ,
322+ ...getAddress ( bsc , ZERO_ADDRESS )
306323 }
307324} ;
308325
0 commit comments