diff --git a/scripts/generate-bytecode.ts b/scripts/generate-bytecode.ts index 44fc99c4a..0c524dfdb 100644 --- a/scripts/generate-bytecode.ts +++ b/scripts/generate-bytecode.ts @@ -4,6 +4,8 @@ const artifact = {}; const factory = new ethers.ContractFactory(artifact.abi, artifact.bytecode); +const config = {}; + console.log( JSON.stringify(factory.getDeployTransaction(/* Put here deployment args */)), ); diff --git a/src/dex/woo-fi-v2/woo-fi-v2-e2e.test.ts b/src/dex/woo-fi-v2/woo-fi-v2-e2e.test.ts index 36b9dff37..e66560e1d 100644 --- a/src/dex/woo-fi-v2/woo-fi-v2-e2e.test.ts +++ b/src/dex/woo-fi-v2/woo-fi-v2-e2e.test.ts @@ -28,8 +28,8 @@ function testForNetwork( SwapSide.SELL, [ ContractMethod.simpleSwap, - // ContractMethod.multiSwap, - // ContractMethod.megaSwap, + ContractMethod.multiSwap, + ContractMethod.megaSwap, ], ], ]); diff --git a/tests/tenderly-simulation.ts b/tests/tenderly-simulation.ts index f0d003027..f24bbda98 100644 --- a/tests/tenderly-simulation.ts +++ b/tests/tenderly-simulation.ts @@ -12,7 +12,7 @@ const TENDERLY_FORK_LAST_TX_ID = process.env.TENDERLY_FORK_LAST_TX_ID; export class TenderlySimulation { lastTx: string = ''; forkId: string = ''; - maxGasLimit = 8000000; + maxGasLimit = 80000000; constructor(private network: Number = 1) {} diff --git a/tests/utils-e2e.ts b/tests/utils-e2e.ts index f39bec761..1a6af6c4c 100644 --- a/tests/utils-e2e.ts +++ b/tests/utils-e2e.ts @@ -45,6 +45,7 @@ const DEPLOYER_ADDRESS: { [nid: number]: string } = { [Network.FANTOM]: '0x05182E579FDfCf69E4390c3411D8FeA1fb6467cf', [Network.AVALANCHE]: '0xD6216fC19DB775Df9774a6E33526131dA7D19a2c', [Network.OPTIMISM]: '0xf01121e808F782d7F34E857c27dA31AD1f151b39', + [Network.ARBITRUM]: '0xb38e8c17e38363af6ebdcb3dae12e0243582891d', }; const MULTISIG: { [nid: number]: string } = { @@ -54,6 +55,7 @@ const MULTISIG: { [nid: number]: string } = { [Network.FANTOM]: '0xECaB2dac955b94e49Ec09D6d68672d3B397BbdAd', [Network.AVALANCHE]: '0x1e2ECA5e812D08D2A7F8664D69035163ff5BfEC2', [Network.OPTIMISM]: '0xf01121e808F782d7F34E857c27dA31AD1f151b39', + [Network.ARBITRUM]: '0x90DfD8a6454CFE19be39EaB42ac93CD850c7f339', }; class APIParaswapSDK implements IParaSwapSDK {