You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function DODOV1(addresssellToken, uint256bps, addresspool, boolquoteForBase, uint256minBuyAmount) external;
180
+
function DODOV1(addresssellToken, uint256bps, addresspool, boolquoteForBase, uint256minAmountOut) external;
181
181
function DODOV2(
182
182
addressrecipient,
183
183
addresssellToken,
184
184
uint256bps,
185
185
addresspool,
186
186
boolquoteForBase,
187
-
uint256minBuyAmount
187
+
uint256minAmountOut
188
188
) external;
189
189
190
-
function VELODROME(addressrecipient, uint256bps, addresspool, uint24swapInfo, uint256minBuyAmount) external;
190
+
function VELODROME(addressrecipient, uint256bps, addresspool, uint24swapInfo, uint256minAmountOut) external;
191
191
192
192
/// @dev Trades against MaverickV2 using the contracts balance for funding
193
193
/// This action does not use the MaverickV2 callback, so it takes an arbitrary pool address to make calls against.
@@ -199,7 +199,7 @@ interface ISettlerActions {
199
199
addresspool,
200
200
booltokenAIn,
201
201
int32tickLimit,
202
-
uint256minBuyAmount
202
+
uint256minAmountOut
203
203
) external;
204
204
/// @dev Trades against MaverickV2, spending the taker's coupon inside the callback
205
205
/// This action requires the use of the MaverickV2 callback, so we take the MaverickV2 CREATE2 salt as an argument to derive the pool address from the trusted factory and inithash.
@@ -211,7 +211,7 @@ interface ISettlerActions {
211
211
booltokenAIn,
212
212
bytesmemorysig,
213
213
int32tickLimit,
214
-
uint256minBuyAmount
214
+
uint256minAmountOut
215
215
) external;
216
216
/// @dev Trades against MaverickV2, spending the taker's coupon inside the callback; metatransaction variant
217
217
function METATXN_MAVERICKV2_VIP(
@@ -220,7 +220,7 @@ interface ISettlerActions {
220
220
bytes32salt,
221
221
booltokenAIn,
222
222
int32tickLimit,
223
-
uint256minBuyAmount
223
+
uint256minAmountOut
224
224
) external;
225
225
226
226
/// @dev Trades against UniswapV2 using the contracts balance for funding
0 commit comments