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

RemoveLiquidityAppliedAction

Git Source

Liquidity action representing removal of liquidity already applied to pool states, with all necessary arguments.

struct RemoveLiquidityAppliedAction {
address owner;
bytes32 hash;
uint256 lpTokenAmount;
address token0;
address token1;
uint24 fee;
SignatureTransferParams signatureTransferParams;
}

Properties

Name
Type
Description

owner

address

The account removing the liquidity

hash

bytes32

The hash of the liquidity action

lpTokenAmount

uint256

The amount of LP tokens to burn

token0

address

The address of token0 of the Turbine pool

token1

address

The address of token1 of the Turbine pool

fee

uint24

The fee of the Turbine pool

signatureTransferParams

SignatureTransferParams

The Permit2 SignatureTransfer permit and signature for the LP token

Last updated

Was this helpful?