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

AddLiquidityAppliedAction

Git Source

------------------------- STRUCTS ------------------------- ///

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

struct AddLiquidityAppliedAction {
address owner;
bytes32 hash;
uint256 token0Amount;
uint256 token1Amount;
uint256 lpTokenAmount;
address token0;
address token1;
uint24 fee;
BatchSignatureTransferParams signatureTransferParams;
}

Properties

Name
Type
Description

owner

address

The account providing the liquidity

hash

bytes32

The hash of the liquidity action

token0Amount

uint256

The amount of token0 provided

token1Amount

uint256

The amount of token1 provided

lpTokenAmount

uint256

The amount of LP tokens to mint

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

BatchSignatureTransferParams

The Permit2 batch SignatureTransfer permit and signature for token0 and token1

Last updated

Was this helpful?