Expand description
Module containing a contract’s types and functions.
library Position {
error CannotUpdateEmptyPosition();
struct Info { uint128 liquidity; uint256 feeGrowthInside0LastX128; uint256 feeGrowthInside1LastX128; }
}
Structs§
- @notice Cannot update a position with no liquidity Custom error with signature
CannotUpdateEmptyPosition()
and selector0xaefeb924
.
Enums§
- Container for all the
Position
custom errors.