diff --git a/src/abi/index.ts b/src/abi/index.ts index adfc9e05..6aeece7b 100644 --- a/src/abi/index.ts +++ b/src/abi/index.ts @@ -1,7 +1,6 @@ export * from './authorizer'; export * from './balancerBatchRouter'; export * from './balancerQueries'; -export * from './balancerBatchRouter'; export * from './balancerRelayer'; export * from './balancerRouter'; export * from './batchRelayerLibrary'; diff --git a/test/entities/swaps/v3/swapV3.integration.test.ts b/test/entities/swaps/v3/swapV3.integration.test.ts index c8579412..a160ba3e 100644 --- a/test/entities/swaps/v3/swapV3.integration.test.ts +++ b/test/entities/swaps/v3/swapV3.integration.test.ts @@ -991,7 +991,7 @@ describe('SwapV3', () => { swap, wethIsEth: false, outputTest: { - isExactOut: false, + testExactOutAmount: false, percentage: 0.001, }, }); @@ -1016,7 +1016,7 @@ describe('SwapV3', () => { swap, wethIsEth: false, inputTest: { - isExactIn: false, + testExactInAmount: false, percentage: 0.001, }, }); diff --git a/test/lib/utils/swapHelpers.ts b/test/lib/utils/swapHelpers.ts index ca8c2f38..25db95d1 100644 --- a/test/lib/utils/swapHelpers.ts +++ b/test/lib/utils/swapHelpers.ts @@ -43,7 +43,7 @@ export async function assertSwapExactIn({ wethIsEth, usePermit2Signatures = false, outputTest = { - isExactOut: true, + testExactOutAmount: true, percentage: 0, }, }: { @@ -55,7 +55,7 @@ export async function assertSwapExactIn({ wethIsEth: boolean; usePermit2Signatures?: boolean; outputTest?: { - isExactOut: boolean; + testExactOutAmount: boolean; percentage: number; }; }) { @@ -139,7 +139,7 @@ export async function assertSwapExactIn({ expectedTokenOutDelta = 0n; } - if (outputTest.isExactOut) + if (outputTest.testExactOutAmount) expect(balanceDeltas).to.deep.eq([ expectedEthDelta, expectedTokenInDelta, @@ -169,7 +169,7 @@ export async function assertSwapExactOut({ wethIsEth, usePermit2Signatures = false, inputTest = { - isExactIn: true, + testExactInAmount: true, percentage: 0, }, }: { @@ -181,7 +181,7 @@ export async function assertSwapExactOut({ wethIsEth: boolean; usePermit2Signatures?: boolean; inputTest?: { - isExactIn: boolean; + testExactInAmount: boolean; percentage: number; }; }) { @@ -268,7 +268,7 @@ export async function assertSwapExactOut({ expectedTokenOutDelta = 0n; } - if (inputTest.isExactIn) + if (inputTest.testExactInAmount) expect(balanceDeltas).to.deep.eq([ expectedEthDelta, expectedTokenInDelta,