Skip to content

Commit ce6d851

Browse files
committed
fix: reduce min token out to support lower prices
1 parent 07a7bf2 commit ce6d851

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bridge-clients/client/euler/euler-redemption-bridge-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ export class EulerRedemptionBridgeData implements BridgeDataFieldGetters {
99
protected constructor(protected ethersProvider: StaticJsonRpcProvider) {}
1010
minTokenOut = {
1111
0: 99n * 10n ** 16n, // ETH
12-
1: 97n * 10n ** 16n, // DAI
12+
1: 96n * 10n ** 16n, // DAI
1313
2: 99n * 10n ** 16n, // WSTETH
1414
5: 99n * 10n ** 16n, // weWETH
1515
6: 99n * 10n ** 16n, // weWSTETH
16-
7: 97n * 10n ** 16n, // weDAI
16+
7: 96n * 10n ** 16n, // weDAI
1717
};
1818
getInteractionPresentValue?(interactionNonce: number, inputValue: bigint): Promise<AssetValue[]> {
1919
throw new Error('Method not implemented.');

0 commit comments

Comments
 (0)