For the complete documentation index, see llms.txt. This page is also available as Markdown.

TurbinePoolExecution

Git Source

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

Name
Type
Description

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?