// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.15;
import { Owned } from "@solmate/auth/Owned.sol";
import { Pausable } from "@openzeppelin/contracts/security/Pausable.sol";
/// @title AccessControl
/// @notice Contain helper methods for accessibility of functions
abstract contract AccessControl is Owned, Pausable {
uint32 private _unlocked = 1;
mapping(address => bool) internal _operatorApproved;
modifier onlyOperator() {
require(_operatorApproved[msg.sender]);
_;
}
modifier nonReentrancy() {
require(_unlocked == 1);
_unlocked = 2;
_;
_unlocked = 1;
}
constructor(address _owner) Owned(_owner) { }
/// @notice Updates the status of given account as operator
/// @dev Must be called by the current governance
/// @param _operator Account to update status
function toggleOperator(address _operator) external onlyOwner {
_operatorApproved[_operator] = !_operatorApproved[_operator];
}
/// @notice Returns the status for a given operator that can execute operations
/// @param _operator Account to check status
function isOperator(address _operator) external view returns (bool) {
return _operatorApproved[_operator];
}
/// @dev Triggers stopped state.
function pause() external onlyOwner {
_pause();
}
/// @dev Returns to normal state.
function unpause() external onlyOwner {
_unpause();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
//SPDX-License-Identifier: MIT
pragma solidity =0.8.15;
import { IUniswapV3Pool } from "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
interface ICLTBase {
error NoLiquidity();
error InvalidInput();
error InvalidShare();
error InvalidCaller();
error onlyNonCompounders();
error TransactionTooAged();
error MinimumAmountsExceeded();
error OwnerCannotBeZeroAddress();
/// @param pool The Uniswap V3 pool
/// @param tickLower The lower tick of the A51's LP position
/// @param tickUpper The upper tick of the A51's LP position
struct StrategyKey {
IUniswapV3Pool pool;
int24 tickLower;
int24 tickUpper;
}
/// @param actionName Encoded name of whitelisted advance module
/// @param data input as encoded data for selected module
struct StrategyPayload {
bytes32 actionName;
bytes data;
}
/// @param mode ModuleId: one of four basic modes 1: left, 2: Right, 3: Both, 4: Static
/// @param exitStrategy Array of whitelistd ids for advance mode exit strategy selection
/// @param rebaseStrategy Array of whitelistd ids for advance mode rebase strategy selection
/// @param liquidityDistribution Array of whitelistd ids for advance mode liquidity distribution selection
struct PositionActions {
uint256 mode;
StrategyPayload[] exitStrategy;
StrategyPayload[] rebaseStrategy;
StrategyPayload[] liquidityDistribution;
}
/// @param fee0 Amount of fees0 collected by strategy
/// @param fee1 Amount of fees1 collected by strategy
/// @param balance0 Amount of token0 left in strategy that were not added in pool
/// @param balance1 Amount of token1 left in strategy that were not added in pool
/// @param totalShares Total no of shares minted for this A51's strategy
/// @param uniswapLiquidity Total no of liquidity added on AMM for this strategy
/// @param feeGrowthInside0LastX128 The fee growth of token0 collected per unit of liquidity for
/// the entire life of the A51's position
/// @param feeGrowthInside1LastX128 The fee growth of token1 collected per unit of liquidity for
/// the entire life of the A51's position
struct Account {
uint256 fee0;
uint256 fee1;
uint256 balance0;
uint256 balance1;
uint256 totalShares;
uint128 uniswapLiquidity;
uint256 feeGrowthInside0LastX128;
uint256 feeGrowthInside1LastX128;
uint256 feeGrowthOutside0LastX128;
uint256 feeGrowthOutside1LastX128;
}
/// @param key A51 position's key details
/// @param owner The address of the strategy owner
/// @param actions Ids of all modes selected by the strategist encoded together in a single hash
/// @param actionStatus The encoded data for each of the strategy to track any detail for futher actions
/// @param isCompound Bool weather the strategy has compunding activated or not
/// @param isPrivate Bool weather strategy is open for all users or not
/// @param managementFee The value of fee in percentage applied on strategy users liquidity by strategy owner
/// @param performanceFee The value of fee in percentage applied on strategy users earned fee by strategy owner
/// @param account Strategy accounts of balances and fee account details
struct StrategyData {
StrategyKey key;
address owner;
bytes actions;
bytes actionStatus;
bool isCompound;
bool isPrivate;
uint256 managementFee;
uint256 performanceFee;
Account account;
}
/// @notice Emitted when tokens are collected for a position NFT
/// @param tokenId The ID of the token for which underlying tokens were collected
/// @param recipient The address of the account that received the collected tokens
/// @param amount0Collected The amount of token0 owed to the position that was collected
/// @param amount1Collected The amount of token1 owed to the position that was collected
event Collect(uint256 tokenId, address recipient, uint256 amount0Collected, uint256 amount1Collected);
/// @notice Emitted when liquidity is minted for a given position
/// @param tokenId The ID of the token for which liquidity was increased
/// @param recipient Recipient of liquidity
/// @param liquidity The amount by which liquidity for the NFT position was increased
/// @param amount0 The amount of token0 that was paid for the increase in liquidity
/// @param amount1 The amount of token1 that was paid for the increase in liquidity
event Deposit(
uint256 indexed tokenId, address indexed recipient, uint256 liquidity, uint256 amount0, uint256 amount1
);
/// @notice Emitted when a position's liquidity is removed
/// @param tokenId The ID of the token for which liquidity was decreased
/// @param recipient Recipient of liquidity
/// @param liquidity The amount by which liquidity for the NFT position was decreased
/// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
/// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
event Withdraw(
uint256 indexed tokenId,
address indexed recipient,
uint256 liquidity,
uint256 amount0,
uint256 amount1,
uint256 fee0,
uint256 fee1
);
/// @notice Emitted when strategy is created
/// @param strategyId The strategy's key is a hash of a preimage composed by the owner & token ID
event StrategyCreated(bytes32 indexed strategyId);
/// @notice Emitted when data of strategy is updated
/// @param strategyId Hash of strategy ID
event StrategyUpdated(bytes32 indexed strategyId);
/// @notice Emitted when fee of strategy is collected
/// @param strategyId Hash of strategy ID
/// @param fee0 Amount of fees0 collected by strategy
/// @param fee1 Amount of fees1 collected by strategy
event StrategyFee(bytes32 indexed strategyId, uint256 fee0, uint256 fee1);
/// @notice Emitted when liquidity is increased for a position NFT
/// @param tokenId The ID of the token for which liquidity was increased
/// @param share The amount by which liquidity for the NFT position was increased
/// @param amount0 The amount of token0 that was paid for the increase in liquidity
/// @param amount1 The amount of token1 that was paid for the increase in liquidity
event PositionUpdated(uint256 indexed tokenId, uint256 share, uint256 amount0, uint256 amount1);
/// @notice Emitted when strategy position is updated or shifted
/// @param strategyId The strategy's key is a hash of a preimage composed by the owner & token ID
/// @param isLiquidityMinted Bool whether the new liquidity position is minted in pool or HODL in contract
/// @param zeroForOne Bool The direction of the swap, true for token0 to token1, false for token1 to token0
/// @param swapAmount The amount of the swap, which implicitly configures the swap as exact input (positive), or
/// exact output (negative)
event LiquidityShifted(bytes32 indexed strategyId, bool isLiquidityMinted, bool zeroForOne, int256 swapAmount);
/// @notice Emitted when collected fee of strategy is compounded
/// @param strategyId Hash of strategy ID
/// @param amount0 The amount of token0 that were compounded
/// @param amount1 The amount of token1 that were compounded
event FeeCompounded(bytes32 indexed strategyId, uint256 amount0, uint256 amount1);
/// @notice Creates new LP strategy on AMM
/// @dev Call this when the pool does exist and is initialized
/// List of whitelisted IDs could be fetched by the modules contract for each basic & advance mode.
/// If any ID is selected of any module it is mandatory to encode data for it then pass it to StrategyPayload.data
/// @param key The params necessary to select a position, encoded as `StrategyKey` in calldata
/// @param actions It is hash of all encoded data of whitelisted IDs which are being passed
/// @param managementFee The value of fee in percentage applied on strategy users liquidity by strategy owner
/// @param performanceFee The value of fee in percentage applied on strategy users earned fee by strategy owner
/// @param isCompound Bool weather the strategy should have compunding activated or not
/// @param isPrivate Bool weather strategy is open for all users or not
function createStrategy(
StrategyKey calldata key,
PositionActions calldata actions,
uint256 managementFee,
uint256 performanceFee,
bool isCompound,
bool isPrivate
)
external
payable;
/// @notice Returns the information about a strategy by the strategy's key
/// @param strategyId The strategy's key is a hash of a preimage composed by the owner & token ID
/// @return key A51 position's key details associated with this strategy
/// @return owner The address of the strategy owner
/// @return actions It is a hash of a preimage composed by all modes IDs selected by the strategist
/// @return actionStatus It is a hash of a additional data of strategy for further required actions
/// @return isCompound Bool weather the strategy has compunding activated or not
/// @return isPrivate Bool weather strategy is open for all users or not
/// @return managementFee The value of fee in percentage applied on strategy users liquidity by strategy owner
/// @return performanceFee The value of fee in percentage applied on strategy users earned fee by strategy owner
/// @return account Strategy values of balances and fee accounting details
function strategies(bytes32 strategyId)
external
returns (
StrategyKey memory key,
address owner,
bytes memory actions,
bytes memory actionStatus,
bool isCompound,
bool isPrivate,
uint256 managementFee,
uint256 performanceFee,
Account memory account
);
/// @notice Returns the position information associated with a given token ID.
/// @dev Throws if the token ID is not valid.
/// @param positionId The ID of the token that represents the position
/// @return strategyId strategy ID assigned to this token ID
/// @return liquidityShare Shares assigned to this token ID
/// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
/// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
/// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
/// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
function positions(uint256 positionId)
external
returns (
bytes32 strategyId,
uint256 liquidityShare,
uint256 feeGrowthInside0LastX128,
uint256 feeGrowthInside1LastX128,
uint128 tokensOwed0,
uint128 tokensOwed1
);
/// @param amount0Desired The desired amount of token0 to be spent,
/// @param amount1Desired The desired amount of token1 to be spent,
/// @param amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
/// @param amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
/// @param recipient account that should receive the shares in terms of A51's NFT
struct DepositParams {
bytes32 strategyId;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
address recipient;
}
/// @notice Creates a new position wrapped in a A51 NFT
/// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
/// @return tokenId The ID of the token that represents the minted position
/// @return liquidity The amount of liquidity for this position
/// @return amount0 The amount of token0
/// @return amount1 The amount of token1
function deposit(DepositParams calldata params)
external
payable
returns (uint256 tokenId, uint256 liquidity, uint256 amount0, uint256 amount1);
/// @param params tokenId The ID of the token for which liquidity is being increased
/// @param amount0Desired The desired amount of token0 to be spent,
/// @param amount1Desired The desired amount of token1 to be spent,
struct UpdatePositionParams {
uint256 tokenId;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
}
/// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
/// @param params The params necessary to increase a position, encoded as `UpdatePositionParams` in calldata
/// @dev This method can be used by by both compounding & non-compounding strategy positions
/// @return share The new liquidity amount as a result of the increase
/// @return amount0 The amount of token0 to acheive resulting liquidity
/// @return amount1 The amount of token1 to acheive resulting liquidity
function updatePositionLiquidity(UpdatePositionParams calldata params)
external
payable
returns (uint256 share, uint256 amount0, uint256 amount1);
/// @param params tokenId The ID of the token for which liquidity is being decreased
/// @param liquidity amount The amount by which liquidity will be decreased,
/// @param recipient Recipient of tokens
/// @param refundAsETH whether to recieve in WETH or ETH (only valid for WETH/ALT pairs)
struct WithdrawParams {
uint256 tokenId;
uint256 liquidity;
address recipient;
bool refundAsETH;
uint256 amount0Min;
uint256 amount1Min;
}
/// @notice Decreases the amount of liquidity in a position and accounts it to the position
/// @param params The params necessary to decrease a position, encoded as `WithdrawParams` in calldata
/// @return amount0 Amount of token0 sent to recipient
/// @return amount1 Amount of token1 sent to recipient
function withdraw(WithdrawParams calldata params) external returns (uint256 amount0, uint256 amount1);
/// @param recipient Recipient of tokens
/// @param params tokenId The ID of the NFT for which tokens are being collected
/// @param refundAsETH whether to recieve in WETH or ETH (only valid for WETH/ALT pairs)
struct ClaimFeesParams {
address recipient;
uint256 tokenId;
bool refundAsETH;
}
/// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
/// @dev Only non-compounding strategy users can call this
/// @param params The params necessary to collect a position uncompounded fee, encoded as `ClaimFeesParams` in
/// calldata
function claimPositionFee(ClaimFeesParams calldata params) external;
/// @param key A51 new position's key with updated ticks
/// @param strategyId Id of A51's position for which ticks are being updated
/// @param shouldMint Bool weather liquidity should be added on AMM or hold in contract
/// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
/// @param swapAmount The amount of the swap, which implicitly configures the swap as exact input (positive), or
/// exact output (negative)
/// @param moduleStatus The encoded data for each of the strategy to track any detail for futher actions
/// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
/// value after the swap. If one for zero, the price cannot be greater than this value after the swap
/// @param data Any data to be passed through to the callback
struct ShiftLiquidityParams {
StrategyKey key;
bytes32 strategyId;
bool shouldMint;
bool zeroForOne;
int256 swapAmount;
bytes moduleStatus;
uint160 sqrtPriceLimitX96;
}
/// @notice Updates the strategy's liquidity accordingly w.r.t basic or advance module when it is activated
/// @dev Only called by the whitlisted bot or owner of strategy
/// @param params The params necessary to update a position, encoded as `ShiftLiquidityParams` in calldata
function shiftLiquidity(ShiftLiquidityParams calldata params) external;
}
//SPDX-License-Identifier: MIT
pragma solidity =0.8.15;
import { IUniswapV3Pool } from "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
interface ICLTTwapQuoter {
error InvalidInput();
error MaxTwapDeviationExceeded();
/// @param twapDuration Period of time that we observe for price slippage
/// @param maxTwapDeviation Maximum deviation of time waited avarage price in ticks
struct PoolStrategy {
uint32 twapDuration;
int24 maxTwapDeviation;
}
function checkDeviation(IUniswapV3Pool pool) external;
function twapDuration() external view returns (uint32);
function getTwap(IUniswapV3Pool pool) external view returns (int24 twap);
/// @notice Returns twap duration & max twap deviation for each pool
function poolStrategy(address pool) external returns (uint32 twapDuration, int24 maxTwapDeviation);
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.15;
import "../ICLTBase.sol";
interface IRebaseStrategy {
error InvalidCaller();
error InvalidThreshold();
error InvalidModesLength();
error InvalidMode();
error InvalidStrategyId(bytes32);
error InvalidPricePreferenceDifference();
error StrategyIdsCannotBeEmpty();
error StrategyIdCannotBeZero();
error DuplicateStrategyId(bytes32);
error StrategyIdDonotExist(bytes32);
error BothTicksCannotBeZero();
error RebaseStrategyDataCannotBeZero();
error OnlyRebaseInactivityCannotBeSelected();
error RebaseInactivityCannotBeZero();
error SwapsThresholdExceeded();
/// @param strategyId The strategy's key is a hash of a preimage composed by the owner & token ID
/// @param mode ModuleId: one of four basic modes 1: left, 2: Right, 3: Both, 4: Static
/// @param actionNames to hold multiple valid modes
struct ExecutableStrategiesData {
bytes32 strategyID;
uint256 mode;
bytes32[2] actionNames;
}
function checkInputData(ICLTBase.StrategyPayload memory data) external returns (bool);
/// @param pool The Uniswap V3 pool
/// @param strategyId The strategy's key is a hash of a preimage composed by the owner & token ID
/// @param tickLower The lower tick of the A51's LP position
/// @param tickUpper The upper tick of the A51's LP position
/// @param tickLower The lower tick of the A51's LP position
/// @param shouldMint Bool weather liquidity should be added on AMM or hold in contract
/// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
/// @param swapAmount The amount of the swap, which implicitly configures the swap as exact input (positive), or
/// exact output (negative)
/// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
struct ExectuteStrategyParams {
IUniswapV3Pool pool;
bytes32 strategyID;
int24 tickLower;
int24 tickUpper;
bool shouldMint;
bool zeroForOne;
int256 swapAmount;
uint160 sqrtPriceLimitX96;
}
event Executed(ExecutableStrategiesData[] strategyIds);
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
import {IUniswapV3PoolImmutables} from './pool/IUniswapV3PoolImmutables.sol';
import {IUniswapV3PoolState} from './pool/IUniswapV3PoolState.sol';
import {IUniswapV3PoolDerivedState} from './pool/IUniswapV3PoolDerivedState.sol';
import {IUniswapV3PoolActions} from './pool/IUniswapV3PoolActions.sol';
import {IUniswapV3PoolOwnerActions} from './pool/IUniswapV3PoolOwnerActions.sol';
import {IUniswapV3PoolErrors} from './pool/IUniswapV3PoolErrors.sol';
import {IUniswapV3PoolEvents} from './pool/IUniswapV3PoolEvents.sol';
/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
IUniswapV3PoolImmutables,
IUniswapV3PoolState,
IUniswapV3PoolDerivedState,
IUniswapV3PoolActions,
IUniswapV3PoolOwnerActions,
IUniswapV3PoolErrors,
IUniswapV3PoolEvents
{
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
/// @notice Sets the initial price for the pool
/// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
/// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
function initialize(uint160 sqrtPriceX96) external;
/// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
/// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
/// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
/// on tickLower, tickUpper, the amount of liquidity, and the current price.
/// @param recipient The address for which the liquidity will be created
/// @param tickLower The lower tick of the position in which to add liquidity
/// @param tickUpper The upper tick of the position in which to add liquidity
/// @param amount The amount of liquidity to mint
/// @param data Any data that should be passed through to the callback
/// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
/// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
function mint(
address recipient,
int24 tickLower,
int24 tickUpper,
uint128 amount,
bytes calldata data
) external returns (uint256 amount0, uint256 amount1);
/// @notice Collects tokens owed to a position
/// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
/// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
/// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
/// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
/// @param recipient The address which should receive the fees collected
/// @param tickLower The lower tick of the position for which to collect fees
/// @param tickUpper The upper tick of the position for which to collect fees
/// @param amount0Requested How much token0 should be withdrawn from the fees owed
/// @param amount1Requested How much token1 should be withdrawn from the fees owed
/// @return amount0 The amount of fees collected in token0
/// @return amount1 The amount of fees collected in token1
function collect(
address recipient,
int24 tickLower,
int24 tickUpper,
uint128 amount0Requested,
uint128 amount1Requested
) external returns (uint128 amount0, uint128 amount1);
/// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
/// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
/// @dev Fees must be collected separately via a call to #collect
/// @param tickLower The lower tick of the position for which to burn liquidity
/// @param tickUpper The upper tick of the position for which to burn liquidity
/// @param amount How much liquidity to burn
/// @return amount0 The amount of token0 sent to the recipient
/// @return amount1 The amount of token1 sent to the recipient
function burn(
int24 tickLower,
int24 tickUpper,
uint128 amount
) external returns (uint256 amount0, uint256 amount1);
/// @notice Swap token0 for token1, or token1 for token0
/// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
/// @param recipient The address to receive the output of the swap
/// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
/// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
/// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
/// value after the swap. If one for zero, the price cannot be greater than this value after the swap
/// @param data Any data to be passed through to the callback
/// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
/// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
function swap(
address recipient,
bool zeroForOne,
int256 amountSpecified,
uint160 sqrtPriceLimitX96,
bytes calldata data
) external returns (int256 amount0, int256 amount1);
/// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
/// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
/// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
/// with 0 amount{0,1} and sending the donation amount(s) from the callback
/// @param recipient The address which will receive the token0 and token1 amounts
/// @param amount0 The amount of token0 to send
/// @param amount1 The amount of token1 to send
/// @param data Any data to be passed through to the callback
function flash(
address recipient,
uint256 amount0,
uint256 amount1,
bytes calldata data
) external;
/// @notice Increase the maximum number of price and liquidity observations that this pool will store
/// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
/// the input observationCardinalityNext.
/// @param observationCardinalityNext The desired minimum number of observations for the pool to store
function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
/// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
/// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
/// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
/// you must call it with secondsAgos = [3600, 0].
/// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
/// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
/// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
/// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
/// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
/// timestamp
function observe(uint32[] calldata secondsAgos)
external
view
returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);
/// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
/// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
/// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
/// snapshot is taken and the second snapshot is taken.
/// @param tickLower The lower tick of the range
/// @param tickUpper The upper tick of the range
/// @return tickCumulativeInside The snapshot of the tick accumulator for the range
/// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
/// @return secondsInside The snapshot of seconds per liquidity for the range
function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
external
view
returns (
int56 tickCumulativeInside,
uint160 secondsPerLiquidityInsideX128,
uint32 secondsInside
);
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Errors emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolErrors {
error LOK();
error TLU();
error TLM();
error TUM();
error AI();
error M0();
error M1();
error AS();
error IIA();
error L();
error F0();
error F1();
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
/// @notice Emitted exactly once by a pool when #initialize is first called on the pool
/// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
/// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
/// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
event Initialize(uint160 sqrtPriceX96, int24 tick);
/// @notice Emitted when liquidity is minted for a given position
/// @param sender The address that minted the liquidity
/// @param owner The owner of the position and recipient of any minted liquidity
/// @param tickLower The lower tick of the position
/// @param tickUpper The upper tick of the position
/// @param amount The amount of liquidity minted to the position range
/// @param amount0 How much token0 was required for the minted liquidity
/// @param amount1 How much token1 was required for the minted liquidity
event Mint(
address sender,
address indexed owner,
int24 indexed tickLower,
int24 indexed tickUpper,
uint128 amount,
uint256 amount0,
uint256 amount1
);
/// @notice Emitted when fees are collected by the owner of a position
/// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
/// @param owner The owner of the position for which fees are collected
/// @param tickLower The lower tick of the position
/// @param tickUpper The upper tick of the position
/// @param amount0 The amount of token0 fees collected
/// @param amount1 The amount of token1 fees collected
event Collect(
address indexed owner,
address recipient,
int24 indexed tickLower,
int24 indexed tickUpper,
uint128 amount0,
uint128 amount1
);
/// @notice Emitted when a position's liquidity is removed
/// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
/// @param owner The owner of the position for which liquidity is removed
/// @param tickLower The lower tick of the position
/// @param tickUpper The upper tick of the position
/// @param amount The amount of liquidity to remove
/// @param amount0 The amount of token0 withdrawn
/// @param amount1 The amount of token1 withdrawn
event Burn(
address indexed owner,
int24 indexed tickLower,
int24 indexed tickUpper,
uint128 amount,
uint256 amount0,
uint256 amount1
);
/// @notice Emitted by the pool for any swaps between token0 and token1
/// @param sender The address that initiated the swap call, and that received the callback
/// @param recipient The address that received the output of the swap
/// @param amount0 The delta of the token0 balance of the pool
/// @param amount1 The delta of the token1 balance of the pool
/// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
/// @param liquidity The liquidity of the pool after the swap
/// @param tick The log base 1.0001 of price of the pool after the swap
event Swap(
address indexed sender,
address indexed recipient,
int256 amount0,
int256 amount1,
uint160 sqrtPriceX96,
uint128 liquidity,
int24 tick
);
/// @notice Emitted by the pool for any flashes of token0/token1
/// @param sender The address that initiated the swap call, and that received the callback
/// @param recipient The address that received the tokens from flash
/// @param amount0 The amount of token0 that was flashed
/// @param amount1 The amount of token1 that was flashed
/// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
/// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
event Flash(
address indexed sender,
address indexed recipient,
uint256 amount0,
uint256 amount1,
uint256 paid0,
uint256 paid1
);
/// @notice Emitted by the pool for increases to the number of observations that can be stored
/// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
/// just before a mint/swap/burn.
/// @param observationCardinalityNextOld The previous value of the next observation cardinality
/// @param observationCardinalityNextNew The updated value of the next observation cardinality
event IncreaseObservationCardinalityNext(
uint16 observationCardinalityNextOld,
uint16 observationCardinalityNextNew
);
/// @notice Emitted when the protocol fee is changed by the pool
/// @param feeProtocol0Old The previous value of the token0 protocol fee
/// @param feeProtocol1Old The previous value of the token1 protocol fee
/// @param feeProtocol0New The updated value of the token0 protocol fee
/// @param feeProtocol1New The updated value of the token1 protocol fee
event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);
/// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
/// @param sender The address that collects the protocol fees
/// @param recipient The address that receives the collected protocol fees
/// @param amount0 The amount of token0 protocol fees that is withdrawn
/// @param amount0 The amount of token1 protocol fees that is withdrawn
event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
/// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
/// @return The contract address
function factory() external view returns (address);
/// @notice The first of the two tokens of the pool, sorted by address
/// @return The token contract address
function token0() external view returns (address);
/// @notice The second of the two tokens of the pool, sorted by address
/// @return The token contract address
function token1() external view returns (address);
/// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
/// @return The fee
function fee() external view returns (uint24);
/// @notice The pool tick spacing
/// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
/// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
/// This value is an int24 to avoid casting even though it is always positive.
/// @return The tick spacing
function tickSpacing() external view returns (int24);
/// @notice The maximum amount of position liquidity that can use any tick in the range
/// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
/// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
/// @return The max amount of liquidity per tick
function maxLiquidityPerTick() external view returns (uint128);
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
/// @notice Set the denominator of the protocol's % share of the fees
/// @param feeProtocol0 new protocol fee for token0 of the pool
/// @param feeProtocol1 new protocol fee for token1 of the pool
function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;
/// @notice Collect the protocol fee accrued to the pool
/// @param recipient The address to which collected protocol fees should be sent
/// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
/// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
/// @return amount0 The protocol fee collected in token0
/// @return amount1 The protocol fee collected in token1
function collectProtocol(
address recipient,
uint128 amount0Requested,
uint128 amount1Requested
) external returns (uint128 amount0, uint128 amount1);
}
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
/// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
/// when accessed externally.
/// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
/// @return tick The current tick of the pool, i.e. according to the last tick transition that was run.
/// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
/// boundary.
/// @return observationIndex The index of the last oracle observation that was written,
/// @return observationCardinality The current maximum number of observations stored in the pool,
/// @return observationCardinalityNext The next maximum number of observations, to be updated when the observation.
/// @return feeProtocol The protocol fee for both tokens of the pool.
/// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
/// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
/// unlocked Whether the pool is currently locked to reentrancy
function slot0()
external
view
returns (
uint160 sqrtPriceX96,
int24 tick,
uint16 observationIndex,
uint16 observationCardinality,
uint16 observationCardinalityNext,
uint8 feeProtocol,
bool unlocked
);
/// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
/// @dev This value can overflow the uint256
function feeGrowthGlobal0X128() external view returns (uint256);
/// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
/// @dev This value can overflow the uint256
function feeGrowthGlobal1X128() external view returns (uint256);
/// @notice The amounts of token0 and token1 that are owed to the protocol
/// @dev Protocol fees will never exceed uint128 max in either token
function protocolFees() external view returns (uint128 token0, uint128 token1);
/// @notice The currently in range liquidity available to the pool
/// @dev This value has no relationship to the total liquidity across all ticks
/// @return The liquidity at the current price of the pool
function liquidity() external view returns (uint128);
/// @notice Look up information about a specific tick in the pool
/// @param tick The tick to look up
/// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
/// tick upper
/// @return liquidityNet how much liquidity changes when the pool price crosses the tick,
/// @return feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
/// @return feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
/// @return tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
/// @return secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
/// @return secondsOutside the seconds spent on the other side of the tick from the current tick,
/// @return initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
/// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
/// In addition, these values are only relative and must be used only in comparison to previous snapshots for
/// a specific position.
function ticks(int24 tick)
external
view
returns (
uint128 liquidityGross,
int128 liquidityNet,
uint256 feeGrowthOutside0X128,
uint256 feeGrowthOutside1X128,
int56 tickCumulativeOutside,
uint160 secondsPerLiquidityOutsideX128,
uint32 secondsOutside,
bool initialized
);
/// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
function tickBitmap(int16 wordPosition) external view returns (uint256);
/// @notice Returns the information about a position by the position's key
/// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
/// @return liquidity The amount of liquidity in the position,
/// @return feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
/// @return feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
/// @return tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
/// @return tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
function positions(bytes32 key)
external
view
returns (
uint128 liquidity,
uint256 feeGrowthInside0LastX128,
uint256 feeGrowthInside1LastX128,
uint128 tokensOwed0,
uint128 tokensOwed1
);
/// @notice Returns data about a specific observation index
/// @param index The element of the observations array to fetch
/// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
/// ago, rather than at a specific index in the array.
/// @return blockTimestamp The timestamp of the observation,
/// @return tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
/// @return secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
/// @return initialized whether the observation has been initialized and the values are safe to use
function observations(uint256 index)
external
view
returns (
uint32 blockTimestamp,
int56 tickCumulative,
uint160 secondsPerLiquidityCumulativeX128,
bool initialized
);
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.15;
import { ICLTBase } from "../interfaces/ICLTBase.sol";
/// @title ModeTicksCalculation
/// @notice Provides functions for computing ticks for basic modes of strategy
abstract contract ModeTicksCalculation {
error LiquidityShiftNotNeeded();
/// @notice Computes new tick lower and upper for the individual strategy downside
/// @dev shift left will trail the strategy position closer to the cuurent tick, current tick will be one tick left
/// from position
/// @param key A51 strategy key details
/// @return tickLower The lower tick of the range
/// @return tickUpper The upper tick of the range
function shiftLeft(
ICLTBase.StrategyKey memory key,
int24 currentTick
)
internal
view
returns (int24 tickLower, int24 tickUpper)
{
int24 tickSpacing = key.pool.tickSpacing();
if (currentTick < key.tickLower) {
(, currentTick,,,,,) = key.pool.slot0();
currentTick = floorTick(currentTick, tickSpacing);
int24 positionWidth = getPositionWidth(currentTick, key.tickLower, key.tickUpper);
tickLower = currentTick + tickSpacing;
tickUpper = floorTick(tickLower + positionWidth, tickSpacing);
} else {
revert LiquidityShiftNotNeeded();
}
}
/// @notice Computes new tick lower and upper for the individual strategy upside
/// @dev shift right will trail the strategy position closer to the cuurent tick, current tick will be one tick
/// right from position
/// @param key A51 strategy key details
/// @return tickLower The lower tick of the range
/// @return tickUpper The upper tick of the range
function shiftRight(
ICLTBase.StrategyKey memory key,
int24 currentTick
)
internal
view
returns (int24 tickLower, int24 tickUpper)
{
int24 tickSpacing = key.pool.tickSpacing();
if (currentTick > key.tickUpper) {
(, currentTick,,,,,) = key.pool.slot0();
currentTick = floorTick(currentTick, tickSpacing);
int24 positionWidth = getPositionWidth(currentTick, key.tickLower, key.tickUpper);
tickUpper = currentTick - tickSpacing;
tickLower = floorTick(tickUpper - positionWidth, tickSpacing);
} else {
revert LiquidityShiftNotNeeded();
}
}
/// @notice Computes new tick lower and upper for the individual strategy downside or upside
/// @dev it will trail the strategy position closer to the cuurent tick
/// @param key A51 strategy key details
/// @return tickLower The lower tick of the range
/// @return tickUpper The upper tick of the range
function shiftBothSide(
ICLTBase.StrategyKey memory key,
int24 currentTick
)
internal
view
returns (int24 tickLower, int24 tickUpper)
{
if (currentTick < key.tickLower) return shiftLeft(key, currentTick);
if (currentTick > key.tickUpper) return shiftRight(key, currentTick);
revert LiquidityShiftNotNeeded();
}
/// @dev Rounds tick down towards negative infinity so that it's a multiple
/// of `tickSpacing`
/// @param tick The current tick of pool
/// @param tickSpacing The tick spacing of pool
/// @return floor value of tick
function floorTick(int24 tick, int24 tickSpacing) internal pure returns (int24) {
int24 compressed = tick / tickSpacing;
if (tick < 0 && tick % tickSpacing != 0) compressed--;
return compressed * tickSpacing;
}
/// @notice Returns the number of ticks between lower & upper tick
/// @param currentTick The current tick of pool
/// @param tickLower The lower tick of strategy
/// @param tickUpper The upper tick of strategy
/// @return width The total count of ticks
function getPositionWidth(
int24 currentTick,
int24 tickLower,
int24 tickUpper
)
internal
pure
returns (int24 width)
{
width = (currentTick - tickLower) + (tickUpper - currentTick);
}
}
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event OwnershipTransferred(address indexed user, address indexed newOwner);
/*//////////////////////////////////////////////////////////////
OWNERSHIP STORAGE
//////////////////////////////////////////////////////////////*/
address public owner;
modifier onlyOwner() virtual {
require(msg.sender == owner, "UNAUTHORIZED");
_;
}
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(address _owner) {
owner = _owner;
emit OwnershipTransferred(address(0), _owner);
}
/*//////////////////////////////////////////////////////////////
OWNERSHIP LOGIC
//////////////////////////////////////////////////////////////*/
function transferOwnership(address newOwner) public virtual onlyOwner {
owner = newOwner;
emit OwnershipTransferred(msg.sender, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.15;
import { AccessControl } from "../../base/AccessControl.sol";
import { ModeTicksCalculation } from "../../base/ModeTicksCalculation.sol";
import { ICLTBase } from "../../interfaces/ICLTBase.sol";
import { ICLTTwapQuoter } from "../../interfaces/ICLTTwapQuoter.sol";
import { IRebaseStrategy } from "../../interfaces/modules/IRebaseStrategy.sol";
/// @title A51 Finance Autonomous Liquidity Provision Rebase Module Contract
/// @author undefined_0x
/// @notice This contract is part of the A51 Finance platform, focusing on automated liquidity provision and rebalancing
/// strategies. The RebaseModule contract is responsible for validating and verifying the strategies before executing
/// them through CLTBase.
contract RebaseModule is ModeTicksCalculation, AccessControl, IRebaseStrategy {
/// @notice The address of base contract
ICLTBase public immutable cltBase;
/// @notice The address of twap qupter
ICLTTwapQuoter public twapQuoter;
/// @notice Threshold for swaps in manual override
uint256 public swapsThreshold = 5;
// 0xca2ac00817703c8a34fa4f786a4f8f1f1eb57801f5369ebb12f510342c03f53b
bytes32 public constant PRICE_PREFERENCE = keccak256("PRICE_PREFERENCE");
// 0x697d458f1054678eeb971e50a66090683c55cfb1cab904d3050bdfe6ab249893
bytes32 public constant REBASE_INACTIVITY = keccak256("REBASE_INACTIVITY");
/// @notice Constructs the RebaseModule with the provided parameters.
/// @param _governance Address of the owner.
/// @param _baseContractAddress Address of the base contract.
constructor(address _governance, address _baseContractAddress, address _twapQuoter) AccessControl(_governance) {
twapQuoter = ICLTTwapQuoter(_twapQuoter);
cltBase = ICLTBase(payable(_baseContractAddress));
}
/// @notice Executes given strategies via bot.
/// @dev Can only be called by any one.
/// @param strategyIDs Array of strategy IDs to be executed.
function executeStrategies(bytes32[] calldata strategyIDs) external nonReentrancy {
checkStrategiesArray(strategyIDs);
ExecutableStrategiesData[] memory _queue = checkAndProcessStrategies(strategyIDs);
uint256 queueLength = _queue.length;
for (uint256 i = 0; i < queueLength; i++) {
uint256 rebaseCount;
uint256 manualSwapsCount;
uint256 lastUpdateTimeStamp;
bool hasRebaseInactivity = false;
ICLTBase.ShiftLiquidityParams memory params;
(ICLTBase.StrategyKey memory key,,, bytes memory actionStatus,,,,,) =
cltBase.strategies(_queue[i].strategyID);
if (_queue[i].actionNames[0] == REBASE_INACTIVITY || _queue[i].actionNames[1] == REBASE_INACTIVITY) {
hasRebaseInactivity = true;
if (actionStatus.length > 0) {
(rebaseCount,, lastUpdateTimeStamp, manualSwapsCount) =
abi.decode(actionStatus, (uint256, bool, uint256, uint256));
}
}
params.strategyId = _queue[i].strategyID;
params.shouldMint = true;
params.swapAmount = 0;
uint256 queueActionNames = _queue[i].actionNames.length;
for (uint256 j = 0; j < queueActionNames; j++) {
if (_queue[i].actionNames[j] == bytes32(0) || _queue[i].actionNames[j] == REBASE_INACTIVITY) {
continue;
}
(int24 tickLower, int24 tickUpper) = getTicksForMode(key, _queue[i].mode);
key.tickLower = tickLower;
key.tickUpper = tickUpper;
params.key = key;
params.moduleStatus = hasRebaseInactivity
? abi.encode(uint256(++rebaseCount), false, lastUpdateTimeStamp, manualSwapsCount)
: actionStatus;
cltBase.shiftLiquidity(params);
}
}
}
/// @notice Provides functionality for executing and managing strategies manually with customizations.
/// @dev This function updates strategy parameters, checks for permissions, and triggers liquidity shifts.
function executeStrategy(ExectuteStrategyParams calldata executeParams) external nonReentrancy {
(ICLTBase.StrategyKey memory key, address strategyOwner,, bytes memory actionStatus,,,,,) =
cltBase.strategies(executeParams.strategyID);
if (strategyOwner == address(0)) revert StrategyIdDonotExist(executeParams.strategyID);
if (strategyOwner != msg.sender) revert InvalidCaller();
key.tickLower = executeParams.tickLower;
key.tickUpper = executeParams.tickUpper;
bool isExited;
uint256 rebaseCount;
uint256 manualSwapsCount;
uint256 lastUpdateTimeStamp;
if (swapsThreshold != 0 && executeParams.swapAmount > 0) {
if (actionStatus.length == 0) {
lastUpdateTimeStamp = block.timestamp;
manualSwapsCount = 1;
} else {
if (actionStatus.length == 64) {
(lastUpdateTimeStamp, manualSwapsCount) = _checkSwapsInADay(0, 0);
} else {
(,, uint256 _lastUpdateTimeStamp, uint256 _manualSwapsCount) =
abi.decode(actionStatus, (uint256, bool, uint256, uint256));
(lastUpdateTimeStamp, manualSwapsCount) = _checkSwapsInADay(_lastUpdateTimeStamp, _manualSwapsCount);
}
}
}
ICLTBase.ShiftLiquidityParams memory params;
params.key = key;
params.strategyId = executeParams.strategyID;
params.shouldMint = executeParams.shouldMint;
params.zeroForOne = executeParams.zeroForOne;
params.swapAmount = executeParams.swapAmount;
params.sqrtPriceLimitX96 = executeParams.sqrtPriceLimitX96;
isExited = !executeParams.shouldMint;
if (actionStatus.length > 0) {
if (actionStatus.length == 64) {
(rebaseCount,) = abi.decode(actionStatus, (uint256, bool));
} else {
(rebaseCount,,,) = abi.decode(actionStatus, (uint256, bool, uint256, uint256));
}
}
params.moduleStatus = abi.encode(rebaseCount, isExited, lastUpdateTimeStamp, manualSwapsCount);
cltBase.shiftLiquidity(params);
}
/// @notice Checks and updates the swap count within a single day threshold.
/// @dev This function is used to limit the number of manual swaps within a 24-hour period.
/// @param lastUpdateTimeStamp The last time the swap count was updated.
/// @param manualSwapsCount The current count of manual swaps.
/// @return uint256 The updated time stamp.
/// @return uint256 The updated swap count.
/// @custom:errors SwapsThresholdExceeded if the number of swaps exceeds the set threshold within a day.
function _checkSwapsInADay(
uint256 lastUpdateTimeStamp,
uint256 manualSwapsCount
)
internal
view
returns (uint256, uint256)
{
if (block.timestamp <= lastUpdateTimeStamp + 1 days) {
if (manualSwapsCount >= swapsThreshold) revert SwapsThresholdExceeded();
return (lastUpdateTimeStamp, manualSwapsCount += 1);
} else {
return (block.timestamp, manualSwapsCount = 1);
}
}
/// @notice Computes ticks for a given mode.
/// @dev Logic to adjust the ticks based on mode.
/// @param key Strategy key.
/// @param mode Mode to calculate ticks.
/// @return tickLower and tickUpper values.
function getTicksForMode(
ICLTBase.StrategyKey memory key,
uint256 mode
)
internal
view
returns (int24 tickLower, int24 tickUpper)
{
int24 currentTick = twapQuoter.getTwap(key.pool);
if (mode == 1) {
(tickLower, tickUpper) = shiftLeft(key, currentTick);
} else if (mode == 2) {
(tickLower, tickUpper) = shiftRight(key, currentTick);
} else if (mode == 3) {
(tickLower, tickUpper) = shiftBothSide(key, currentTick);
}
}
/// @notice Checks and processes strategies based on their validity.
/// @dev Returns an array of valid strategies.
/// @param strategyIDs Array of strategy IDs to check and process.
/// @return ExecutableStrategiesData[] array containing valid strategies.
function checkAndProcessStrategies(bytes32[] memory strategyIDs)
internal
returns (ExecutableStrategiesData[] memory)
{
ExecutableStrategiesData[] memory _queue = new ExecutableStrategiesData[](strategyIDs.length);
uint256 validEntries = 0;
uint256 strategyIdsLength = strategyIDs.length;
for (uint256 i = 0; i < strategyIdsLength; i++) {
ExecutableStrategiesData memory data = getStrategyData(strategyIDs[i]);
if (data.strategyID != bytes32(0) && data.mode != 0) {
_queue[validEntries++] = data;
}
}
return _queue;
}
// /// @notice Retrieves strategy data based on strategy ID.
/// @param strategyId The Data of the strategy to retrieve.
/// @return ExecutableStrategiesData representing the retrieved strategy.
function getStrategyData(bytes32 strategyId) internal returns (ExecutableStrategiesData memory) {
(ICLTBase.StrategyKey memory key,, bytes memory actionsData, bytes memory actionStatus,,,,,) =
cltBase.strategies(strategyId);
ICLTBase.PositionActions memory strategyActionsData = abi.decode(actionsData, (ICLTBase.PositionActions));
uint256 actionDataLength = strategyActionsData.rebaseStrategy.length;
for (uint256 i = 0; i < actionDataLength; i++) {
if (
strategyActionsData.rebaseStrategy[i].actionName == REBASE_INACTIVITY
&& !_checkRebaseInactivityStrategies(strategyActionsData.rebaseStrategy[i], actionStatus)
) {
return ExecutableStrategiesData(bytes32(0), uint256(0), [bytes32(0), bytes32(0)]);
}
}
ExecutableStrategiesData memory executableStrategiesData;
uint256 count = 0;
for (uint256 i = 0; i < actionDataLength; i++) {
ICLTBase.StrategyPayload memory rebaseAction = strategyActionsData.rebaseStrategy[i];
if (shouldAddToQueue(rebaseAction, key, strategyActionsData.mode)) {
executableStrategiesData.actionNames[count++] = rebaseAction.actionName;
}
}
if (count == 0) {
return ExecutableStrategiesData(bytes32(0), uint256(0), [bytes32(0), bytes32(0)]);
}
executableStrategiesData.mode = strategyActionsData.mode;
executableStrategiesData.strategyID = strategyId;
return executableStrategiesData;
}
/// @notice Determines if a strategy should be added to the queue.
/// @dev Checks the preference and other strategy details.
/// @param rebaseAction Data related to strategy actions.
/// @param key Strategy key.
/// @return bool indicating whether the strategy should be added to the queue.
function shouldAddToQueue(
ICLTBase.StrategyPayload memory rebaseAction,
ICLTBase.StrategyKey memory key,
uint256 mode
)
internal
view
returns (bool)
{
if (rebaseAction.actionName == PRICE_PREFERENCE) {
return _checkRebasePreferenceStrategies(key, rebaseAction.data, mode);
} else {
return true;
}
}
/// @notice Checks if rebase preference strategies are satisfied for the given key and action data.
/// @param key The strategy key to be checked.
/// @param actionsData The actions data that includes the rebase strategy data.
/// @return true if the conditions are met, false otherwise.
function _checkRebasePreferenceStrategies(
ICLTBase.StrategyKey memory key,
bytes memory actionsData,
uint256 mode
)
internal
view
returns (bool)
{
(int24 lowerPreferenceDiff, int24 upperPreferenceDiff) = abi.decode(actionsData, (int24, int24));
(int24 lowerPreferenceTick, int24 upperPreferenceTick) =
_getPreferenceTicks(key, lowerPreferenceDiff, upperPreferenceDiff);
int24 tick = twapQuoter.getTwap(key.pool);
if (mode == 2 && tick > key.tickUpper || mode == 1 && tick < key.tickLower || mode == 3) {
if (tick < lowerPreferenceTick || tick > upperPreferenceTick) {
return true;
}
}
return false;
}
/// @notice Checks if the rebase inactivity strategies are satisfied.
/// @param strategyDetail The actions data that includes the rebase strategy data.
/// @param actionStatus The status of the action.
/// @return true if the conditions are met, false otherwise.
function _checkRebaseInactivityStrategies(
ICLTBase.StrategyPayload memory strategyDetail,
bytes memory actionStatus
)
internal
pure
returns (bool)
{
uint256 preferredInActivity = abi.decode(strategyDetail.data, (uint256));
if (actionStatus.length > 0) {
(uint256 rebaseCount,) = abi.decode(actionStatus, (uint256, bool));
if (rebaseCount > 0 && preferredInActivity == rebaseCount) {
return false;
}
}
return true;
}
/// @notice Validates the given strategy payload data for rebase strategies.
/// @param actionsData The strategy payload to validate, containing action names and associated data.
/// @return True if the strategy payload data is valid, otherwise it reverts.
function checkInputData(ICLTBase.StrategyPayload memory actionsData) external pure override returns (bool) {
bool hasDiffPreference = actionsData.actionName == PRICE_PREFERENCE;
bool hasInActivity = actionsData.actionName == REBASE_INACTIVITY;
if (hasDiffPreference && isNonZero(actionsData.data)) {
(int24 lowerPreferenceDiff, int24 upperPreferenceDiff) = abi.decode(actionsData.data, (int24, int24));
if (lowerPreferenceDiff <= 0 || upperPreferenceDiff <= 0) {
revert InvalidPricePreferenceDifference();
}
return true;
}
if (hasInActivity) {
uint256 preferredInActivity = abi.decode(actionsData.data, (uint256));
if (preferredInActivity == 0) {
revert RebaseInactivityCannotBeZero();
}
return true;
}
revert RebaseStrategyDataCannotBeZero();
}
/// @notice Checks the bytes value is non zero or not.
/// @param data bytes value to be checked.
/// @return true if the value is nonzero.
function isNonZero(bytes memory data) internal pure returns (bool) {
uint256 dataLength = data.length;
for (uint256 i = 0; i < dataLength; i++) {
if (data[i] != bytes1(0)) {
return true;
}
}
return false;
}
/// @notice Checks the strategies array for validity.
/// @param data An array of strategy IDs.
/// @return true if the strategies array is valid.
function checkStrategiesArray(bytes32[] memory data) public returns (bool) {
if (data.length == 0) {
revert StrategyIdsCannotBeEmpty();
}
// check 0 strategyId
uint256 dataLength = data.length;
for (uint256 i = 0; i < dataLength; i++) {
(, address strategyOwner,,,,,,,) = cltBase.strategies(data[i]);
if (data[i] == bytes32(0) || strategyOwner == address(0)) {
revert InvalidStrategyId(data[i]);
}
// check duplicacy
for (uint256 j = i + 1; j < data.length; j++) {
if (data[i] == data[j]) {
revert DuplicateStrategyId(data[i]);
}
}
}
return true;
}
///@notice Calculates the preference ticks based on the strategy key and the given preference differences.
/// @dev This function adjusts the given tick bounds (both lower and upper) based on a preference difference. The
/// preference differences indicate by how much the ticks should be moved.
/// @param _key The strategy key.
/// @param lowerPreferenceDiff The lower preference difference.
/// @param upperPreferenceDiff The upper preference difference.
/// @return lowerPreferenceTick The calculated lower preference tick.
/// @return upperPreferenceTick The calculated upper preference tick.
function _getPreferenceTicks(
ICLTBase.StrategyKey memory _key,
int24 lowerPreferenceDiff,
int24 upperPreferenceDiff
)
internal
pure
returns (int24 lowerPreferenceTick, int24 upperPreferenceTick)
{
lowerPreferenceTick = _key.tickLower - lowerPreferenceDiff;
upperPreferenceTick = _key.tickUpper + upperPreferenceDiff;
}
function getPreferenceTicks(bytes32 strategyID)
external
returns (int24 lowerPreferenceTick, int24 upperPreferenceTick)
{
(ICLTBase.StrategyKey memory key,, bytes memory actionsData,,,,,,) = cltBase.strategies(strategyID);
(int24 lowerPreferenceDiff, int24 upperPreferenceDiff) = abi.decode(actionsData, (int24, int24));
(lowerPreferenceTick, upperPreferenceTick) = _getPreferenceTicks(key, lowerPreferenceDiff, upperPreferenceDiff);
}
/// @notice Updates the address twapQuoter.
/// @param _twapQuoter The new address of twapQuoter
function updateTwapQuoter(address _twapQuoter) external onlyOwner {
twapQuoter = ICLTTwapQuoter(_twapQuoter);
}
/// @notice Updates the swaps threshold.
/// @dev Reverts if the new threshold is less than zero.
/// @param _newThreshold The new liquidity threshold value.
function updateSwapsThreshold(uint256 _newThreshold) external onlyOperator {
if (_newThreshold < 0) {
revert InvalidThreshold();
}
swapsThreshold = _newThreshold;
}
}
{
"compilationTarget": {
"src/modules/rebasing/RebaseModule.sol": "RebaseModule"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 4000
},
"remappings": [
":@openzeppelin/=lib/openzeppelin-contracts/",
":@solmate/=lib/solmate/src/",
":@uniswap/v3-core/=lib/v3-core/",
":@uniswap/v3-periphery/=lib/v3-periphery/",
":ds-test/=lib/forge-std/lib/ds-test/src/",
":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
":forge-std/=lib/forge-std/src/",
":openzeppelin-contracts/=lib/openzeppelin-contracts/",
":openzeppelin/=lib/openzeppelin-contracts/contracts/",
":prb-test/=lib/prb-test/src/",
":solmate/=lib/solmate/src/",
":v3-core/=lib/v3-core/contracts/",
":v3-periphery/=lib/v3-periphery/contracts/"
]
}
[{"inputs":[{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_baseContractAddress","type":"address"},{"internalType":"address","name":"_twapQuoter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BothTicksCannotBeZero","type":"error"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"DuplicateStrategyId","type":"error"},{"inputs":[],"name":"InvalidCaller","type":"error"},{"inputs":[],"name":"InvalidMode","type":"error"},{"inputs":[],"name":"InvalidModesLength","type":"error"},{"inputs":[],"name":"InvalidPricePreferenceDifference","type":"error"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"InvalidStrategyId","type":"error"},{"inputs":[],"name":"InvalidThreshold","type":"error"},{"inputs":[],"name":"LiquidityShiftNotNeeded","type":"error"},{"inputs":[],"name":"OnlyRebaseInactivityCannotBeSelected","type":"error"},{"inputs":[],"name":"RebaseInactivityCannotBeZero","type":"error"},{"inputs":[],"name":"RebaseStrategyDataCannotBeZero","type":"error"},{"inputs":[],"name":"StrategyIdCannotBeZero","type":"error"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"StrategyIdDonotExist","type":"error"},{"inputs":[],"name":"StrategyIdsCannotBeEmpty","type":"error"},{"inputs":[],"name":"SwapsThresholdExceeded","type":"error"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bytes32","name":"strategyID","type":"bytes32"},{"internalType":"uint256","name":"mode","type":"uint256"},{"internalType":"bytes32[2]","name":"actionNames","type":"bytes32[2]"}],"indexed":false,"internalType":"struct IRebaseStrategy.ExecutableStrategiesData[]","name":"strategyIds","type":"tuple[]"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"PRICE_PREFERENCE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASE_INACTIVITY","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"actionName","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ICLTBase.StrategyPayload","name":"actionsData","type":"tuple"}],"name":"checkInputData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"}],"name":"checkStrategiesArray","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cltBase","outputs":[{"internalType":"contract ICLTBase","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"strategyIDs","type":"bytes32[]"}],"name":"executeStrategies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"contract IUniswapV3Pool","name":"pool","type":"address"},{"internalType":"bytes32","name":"strategyID","type":"bytes32"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"bool","name":"shouldMint","type":"bool"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"swapAmount","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"}],"internalType":"struct IRebaseStrategy.ExectuteStrategyParams","name":"executeParams","type":"tuple"}],"name":"executeStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"strategyID","type":"bytes32"}],"name":"getPreferenceTicks","outputs":[{"internalType":"int24","name":"lowerPreferenceTick","type":"int24"},{"internalType":"int24","name":"upperPreferenceTick","type":"int24"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapsThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"toggleOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twapQuoter","outputs":[{"internalType":"contract ICLTTwapQuoter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"updateSwapsThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_twapQuoter","type":"address"}],"name":"updateTwapQuoter","outputs":[],"stateMutability":"nonpayable","type":"function"}]