TurbinePoolExecution
struct TurbinePoolExecution {
address sellToken;
address buyToken;
uint256 sellAmount;
uint256 buyAmount;
uint24 poolFee;
uint256 deadline;
}Name
Type
Description
Last updated
Was this helpful?
Title: TurbinePoolExecution
Instructions on how to execute a swap on a Turbine pool. The buyToken and sellToken meaning stays the same as SmartOrderExecution.
struct TurbinePoolExecution {
address sellToken;
address buyToken;
uint256 sellAmount;
uint256 buyAmount;
uint24 poolFee;
uint256 deadline;
}Properties
sellToken
address
The token being sold by the order.
buyToken
address
The token being bought by the order.
sellAmount
uint256
The amount of sellToken being swapped.
buyAmount
uint256
The amount of buyToken being swapped.
poolFee
uint24
The fee tier of the pool.
deadline
uint256
The deadline for the swap execution.
Last updated
Was this helpful?
Was this helpful?