// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
// SPDX-License-Identifier: AGPL-3.0-onlypragmasolidity >=0.8.0;/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.abstractcontractERC20{
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/eventTransfer(addressindexedfrom, addressindexed to, uint256 amount);
eventApproval(addressindexed owner, addressindexed spender, uint256 amount);
/*//////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/stringpublic name;
stringpublic symbol;
uint8publicimmutable decimals;
/*//////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/uint256public totalSupply;
mapping(address=>uint256) public balanceOf;
mapping(address=>mapping(address=>uint256)) public allowance;
/*//////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/uint256internalimmutable INITIAL_CHAIN_ID;
bytes32internalimmutable INITIAL_DOMAIN_SEPARATOR;
mapping(address=>uint256) public nonces;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/constructor(stringmemory _name,
stringmemory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID =block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*//////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/functionapprove(address spender, uint256 amount) publicvirtualreturns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
returntrue;
}
functiontransfer(address to, uint256 amount) publicvirtualreturns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user// balances can't exceed the max uint256 value.unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
returntrue;
}
functiontransferFrom(addressfrom,
address to,
uint256 amount
) publicvirtualreturns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.if (allowed !=type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user// balances can't exceed the max uint256 value.unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
returntrue;
}
/*//////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/functionpermit(address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) publicvirtual{
require(deadline >=block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing// the owner's nonce which cannot realistically overflow.unchecked {
address recoveredAddress =ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);
require(recoveredAddress !=address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
functionDOMAIN_SEPARATOR() publicviewvirtualreturns (bytes32) {
returnblock.chainid== INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
functioncomputeDomainSeparator() internalviewvirtualreturns (bytes32) {
returnkeccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*//////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/function_mint(address to, uint256 amount) internalvirtual{
totalSupply += amount;
// Cannot overflow because the sum of all user// balances can't exceed the max uint256 value.unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function_burn(addressfrom, uint256 amount) internalvirtual{
balanceOf[from] -= amount;
// Cannot underflow because a user's balance// will never be larger than the total supply.unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}
Contract Source Code
File 4 of 18: IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.5.0;import'./pool/IUniswapV3PoolImmutables.sol';
import'./pool/IUniswapV3PoolState.sol';
import'./pool/IUniswapV3PoolDerivedState.sol';
import'./pool/IUniswapV3PoolActions.sol';
import'./pool/IUniswapV3PoolOwnerActions.sol';
import'./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 piecesinterfaceIUniswapV3PoolisIUniswapV3PoolImmutables,
IUniswapV3PoolState,
IUniswapV3PoolDerivedState,
IUniswapV3PoolActions,
IUniswapV3PoolOwnerActions,
IUniswapV3PoolEvents{
}
Contract Source Code
File 5 of 18: IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.5.0;/// @title Permissionless pool actions/// @notice Contains pool methods that can be called by anyoneinterfaceIUniswapV3PoolActions{
/// @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.96functioninitialize(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 callbackfunctionmint(address recipient,
int24 tickLower,
int24 tickUpper,
uint128 amount,
bytescalldata data
) externalreturns (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 token1functioncollect(address recipient,
int24 tickLower,
int24 tickUpper,
uint128 amount0Requested,
uint128 amount1Requested
) externalreturns (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 recipientfunctionburn(int24 tickLower,
int24 tickUpper,
uint128 amount
) externalreturns (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 positivefunctionswap(address recipient,
bool zeroForOne,
int256 amountSpecified,
uint160 sqrtPriceLimitX96,
bytescalldata data
) externalreturns (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 callbackfunctionflash(address recipient,
uint256 amount0,
uint256 amount1,
bytescalldata 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 storefunctionincreaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}
Contract Source Code
File 6 of 18: IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=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.interfaceIUniswapV3PoolDerivedState{
/// @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/// timestampfunctionobserve(uint32[] calldata secondsAgos)
externalviewreturns (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 rangefunctionsnapshotCumulativesInside(int24 tickLower, int24 tickUpper)
externalviewreturns (int56 tickCumulativeInside,
uint160 secondsPerLiquidityInsideX128,
uint32 secondsInside
);
}
Contract Source Code
File 7 of 18: IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.5.0;/// @title Events emitted by a pool/// @notice Contains all events emitted by the poolinterfaceIUniswapV3PoolEvents{
/// @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 pooleventInitialize(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 liquidityeventMint(address sender,
addressindexed owner,
int24indexed tickLower,
int24indexed 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 collectedeventCollect(addressindexed owner,
address recipient,
int24indexed tickLower,
int24indexed 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 withdrawneventBurn(addressindexed owner,
int24indexed tickLower,
int24indexed 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 swapeventSwap(addressindexed sender,
addressindexed 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 feeeventFlash(addressindexed sender,
addressindexed 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 cardinalityeventIncreaseObservationCardinalityNext(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 feeeventSetFeeProtocol(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 withdrawneventCollectProtocol(addressindexed sender, addressindexed recipient, uint128 amount0, uint128 amount1);
}
Contract Source Code
File 8 of 18: IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=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 valuesinterfaceIUniswapV3PoolImmutables{
/// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface/// @return The contract addressfunctionfactory() externalviewreturns (address);
/// @notice The first of the two tokens of the pool, sorted by address/// @return The token contract addressfunctiontoken0() externalviewreturns (address);
/// @notice The second of the two tokens of the pool, sorted by address/// @return The token contract addressfunctiontoken1() externalviewreturns (address);
/// @notice The pool's fee in hundredths of a bip, i.e. 1e-6/// @return The feefunctionfee() externalviewreturns (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 spacingfunctiontickSpacing() externalviewreturns (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 tickfunctionmaxLiquidityPerTick() externalviewreturns (uint128);
}
Contract Source Code
File 9 of 18: IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.5.0;/// @title Permissioned pool actions/// @notice Contains pool methods that may only be called by the factory ownerinterfaceIUniswapV3PoolOwnerActions{
/// @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 poolfunctionsetFeeProtocol(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 token1functioncollectProtocol(address recipient,
uint128 amount0Requested,
uint128 amount1Requested
) externalreturns (uint128 amount0, uint128 amount1);
}
Contract Source Code
File 10 of 18: IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=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 transactioninterfaceIUniswapV3PoolState{
/// @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/// 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./// observationIndex The index of the last oracle observation that was written,/// observationCardinality The current maximum number of observations stored in the pool,/// observationCardinalityNext The next maximum number of observations, to be updated when the observation./// 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 reentrancyfunctionslot0()
externalviewreturns (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 uint256functionfeeGrowthGlobal0X128() externalviewreturns (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 uint256functionfeeGrowthGlobal1X128() externalviewreturns (uint256);
/// @notice The amounts of token0 and token1 that are owed to the protocol/// @dev Protocol fees will never exceed uint128 max in either tokenfunctionprotocolFees() externalviewreturns (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 ticksfunctionliquidity() externalviewreturns (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,/// liquidityNet how much liquidity changes when the pool price crosses the tick,/// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,/// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,/// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick/// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,/// secondsOutside the seconds spent on the other side of the tick from the current tick,/// 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.functionticks(int24 tick)
externalviewreturns (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 informationfunctiontickBitmap(int16 wordPosition) externalviewreturns (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,/// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,/// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,/// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,/// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/pokefunctionpositions(bytes32 key)
externalviewreturns (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,/// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,/// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,/// Returns initialized whether the observation has been initialized and the values are safe to usefunctionobservations(uint256 index)
externalviewreturns (uint32 blockTimestamp,
int56 tickCumulative,
uint160 secondsPerLiquidityCumulativeX128,
bool initialized
);
}
Contract Source Code
File 11 of 18: IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.5.0;/// @title Callback for IUniswapV3PoolActions#swap/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interfaceinterfaceIUniswapV3SwapCallback{
/// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap./// @dev In the implementation you must pay the pool tokens owed for the swap./// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory./// amount0Delta and amount1Delta can both be 0 if no tokens were swapped./// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by/// the end of the swap. If positive, the callback must send that amount of token0 to the pool./// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by/// the end of the swap. If positive, the callback must send that amount of token1 to the pool./// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap callfunctionuniswapV3SwapCallback(int256 amount0Delta,
int256 amount1Delta,
bytescalldata data
) external;
}
Contract Source Code
File 12 of 18: IV3SwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-laterpragmasolidity >=0.7.5;pragmaabicoderv2;import'@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';
/// @title Router token swapping functionality/// @notice Functions for swapping tokens via Uniswap V3interfaceIV3SwapRouterisIUniswapV3SwapCallback{
structExactInputSingleParams {
address tokenIn;
address tokenOut;
uint24 fee;
address recipient;
uint256 amountIn;
uint256 amountOutMinimum;
uint160 sqrtPriceLimitX96;
}
/// @notice Swaps `amountIn` of one token for as much as possible of another token/// @dev Setting `amountIn` to 0 will cause the contract to look up its own balance,/// and swap the entire amount, enabling contracts to send tokens before calling this function./// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata/// @return amountOut The amount of the received tokenfunctionexactInputSingle(ExactInputSingleParams calldata params) externalpayablereturns (uint256 amountOut);
structExactInputParams {
bytes path;
address recipient;
uint256 amountIn;
uint256 amountOutMinimum;
}
/// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path/// @dev Setting `amountIn` to 0 will cause the contract to look up its own balance,/// and swap the entire amount, enabling contracts to send tokens before calling this function./// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata/// @return amountOut The amount of the received tokenfunctionexactInput(ExactInputParams calldata params) externalpayablereturns (uint256 amountOut);
structExactOutputSingleParams {
address tokenIn;
address tokenOut;
uint24 fee;
address recipient;
uint256 amountOut;
uint256 amountInMaximum;
uint160 sqrtPriceLimitX96;
}
/// @notice Swaps as little as possible of one token for `amountOut` of another token/// that may remain in the router after the swap./// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata/// @return amountIn The amount of the input tokenfunctionexactOutputSingle(ExactOutputSingleParams calldata params) externalpayablereturns (uint256 amountIn);
structExactOutputParams {
bytes path;
address recipient;
uint256 amountOut;
uint256 amountInMaximum;
}
/// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)/// that may remain in the router after the swap./// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata/// @return amountIn The amount of the input tokenfunctionexactOutput(ExactOutputParams calldata params) externalpayablereturns (uint256 amountIn);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)pragmasolidity ^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.
*/abstractcontractPausableisContext{
/**
* @dev Emitted when the pause is triggered by `account`.
*/eventPaused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/eventUnpaused(address account);
boolprivate _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.
*/modifierwhenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/modifierwhenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/functionpaused() publicviewvirtualreturns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/function_requireNotPaused() internalviewvirtual{
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/function_requirePaused() internalviewvirtual{
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/function_pause() internalvirtualwhenNotPaused{
_paused =true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/function_unpause() internalvirtualwhenPaused{
_paused =false;
emit Unpaused(_msgSender());
}
}
Contract Source Code
File 16 of 18: SafeTransferLib.sol
// SPDX-License-Identifier: AGPL-3.0-onlypragmasolidity >=0.8.0;import {ERC20} from"../tokens/ERC20.sol";
/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer./// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.librarySafeTransferLib{
/*//////////////////////////////////////////////////////////////
ETH OPERATIONS
//////////////////////////////////////////////////////////////*/functionsafeTransferETH(address to, uint256 amount) internal{
bool success;
/// @solidity memory-safe-assemblyassembly {
// Transfer the ETH and store if it succeeded or not.
success :=call(gas(), to, amount, 0, 0, 0, 0)
}
require(success, "ETH_TRANSFER_FAILED");
}
/*//////////////////////////////////////////////////////////////
ERC20 OPERATIONS
//////////////////////////////////////////////////////////////*/functionsafeTransferFrom(
ERC20 token,
addressfrom,
address to,
uint256 amount
) internal{
bool success;
/// @solidity memory-safe-assemblyassembly {
// Get a pointer to some free memory.let freeMemoryPointer :=mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument.mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success :=and(
// Set success to whether the call reverted, if not we check it either// returned exactly 1 (can't just be non-zero data), or had no return data.or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.// Counterintuitively, this call must be positioned second to the or() call in the// surrounding and() call or else returndatasize() will be zero during the computation.call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
)
}
require(success, "TRANSFER_FROM_FAILED");
}
functionsafeTransfer(
ERC20 token,
address to,
uint256 amount
) internal{
bool success;
/// @solidity memory-safe-assemblyassembly {
// Get a pointer to some free memory.let freeMemoryPointer :=mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success :=and(
// Set success to whether the call reverted, if not we check it either// returned exactly 1 (can't just be non-zero data), or had no return data.or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.// Counterintuitively, this call must be positioned second to the or() call in the// surrounding and() call or else returndatasize() will be zero during the computation.call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "TRANSFER_FAILED");
}
functionsafeApprove(
ERC20 token,
address to,
uint256 amount
) internal{
bool success;
/// @solidity memory-safe-assemblyassembly {
// Get a pointer to some free memory.let freeMemoryPointer :=mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success :=and(
// Set success to whether the call reverted, if not we check it either// returned exactly 1 (can't just be non-zero data), or had no return data.or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.// Counterintuitively, this call must be positioned second to the or() call in the// surrounding and() call or else returndatasize() will be zero during the computation.call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "APPROVE_FAILED");
}
}
Contract Source Code
File 17 of 18: Trustus.sol
// SPDX-License-Identifier: AGPL-3.0pragmasolidity ^0.8.4;/// @title Trustus/// @author zefram.eth/// @notice Trust-minimized method for accessing offchain data onchainabstractcontractTrustus{
/// -----------------------------------------------------------------------/// Structs/// -----------------------------------------------------------------------/// @param v Part of the ECDSA signature/// @param r Part of the ECDSA signature/// @param s Part of the ECDSA signature/// @param request Identifier for verifying the packet is what is desired/// , rather than a packet for some other function/contract/// @param deadline The Unix timestamp (in seconds) after which the packet/// should be rejected by the contract/// @param payload The payload of the packetstructTrustusPacket {
uint8 v;
bytes32 r;
bytes32 s;
bytes32 request;
uint256 deadline;
bytes payload;
}
/// -----------------------------------------------------------------------/// Errors/// -----------------------------------------------------------------------errorTrustus__InvalidPacket();
/// -----------------------------------------------------------------------/// Immutable parameters/// -----------------------------------------------------------------------/// @notice The chain ID used by EIP-712uint256internalimmutable INITIAL_CHAIN_ID;
/// @notice The domain separator used by EIP-712bytes32internalimmutable INITIAL_DOMAIN_SEPARATOR;
/// -----------------------------------------------------------------------/// Storage variables/// -----------------------------------------------------------------------/// @notice Records whether an address is trusted as a packet provider/// @dev provider => valuemapping(address=>bool) internal isTrusted;
/// -----------------------------------------------------------------------/// Modifiers/// -----------------------------------------------------------------------/// @notice Verifies whether a packet is valid and returns the result./// Will revert if the packet is invalid./// @dev The deadline, request, and signature are verified./// @param request The identifier for the requested payload/// @param packet The packet provided by the offchain data providermodifierverifyPacket(bytes32 request, TrustusPacket calldata packet) {
if (!_verifyPacket(request, packet)) revert Trustus__InvalidPacket();
_;
}
/// -----------------------------------------------------------------------/// Constructor/// -----------------------------------------------------------------------constructor() {
INITIAL_CHAIN_ID =block.chainid;
INITIAL_DOMAIN_SEPARATOR = _computeDomainSeparator();
}
/// -----------------------------------------------------------------------/// Packet verification/// -----------------------------------------------------------------------/// @notice Verifies whether a packet is valid and returns the result./// @dev The deadline, request, and signature are verified./// @param request The identifier for the requested payload/// @param packet The packet provided by the offchain data provider/// @return success True if the packet is valid, false otherwisefunction_verifyPacket(bytes32 request, TrustusPacket calldata packet)
internalvirtualreturns (bool success)
{
// verify deadlineif (block.timestamp> packet.deadline) returnfalse;
// verify requestif (request != packet.request) returnfalse;
// verify signatureaddress recoveredAddress =ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"VerifyPacket(bytes32 request,uint256 deadline,bytes payload)"
),
packet.request,
packet.deadline,
keccak256(packet.payload)
)
)
)
),
packet.v,
packet.r,
packet.s
);
return (recoveredAddress !=address(0)) && isTrusted[recoveredAddress];
}
/// @notice Sets the trusted status of an offchain data provider./// @param signer The data provider's ECDSA public key as an Ethereum address/// @param isTrusted_ The desired trusted status to setfunction_setIsTrusted(address signer, bool isTrusted_) internalvirtual{
isTrusted[signer] = isTrusted_;
}
/// -----------------------------------------------------------------------/// EIP-712 compliance/// -----------------------------------------------------------------------/// @notice The domain separator used by EIP-712functionDOMAIN_SEPARATOR() publicviewvirtualreturns (bytes32) {
returnblock.chainid== INITIAL_CHAIN_ID
? INITIAL_DOMAIN_SEPARATOR
: _computeDomainSeparator();
}
/// @notice Computes the domain separator used by EIP-712function_computeDomainSeparator() internalviewvirtualreturns (bytes32) {
returnkeccak256(
abi.encode(
keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
),
keccak256("Trustus"),
keccak256("1"),
block.chainid,
address(this)
)
);
}
}
Contract Source Code
File 18 of 18: UniformRandomNumber.sol
/**
Copyright 2019 PoolTogether LLC
This file is part of PoolTogether.
PoolTogether is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation under version 3 of the License.
PoolTogether is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PoolTogether. If not, see <https://www.gnu.org/licenses/>.
*///SPDX-License-Identifier: Unlicensepragmasolidity ^0.8.13;/**
* @author Brendan Asselstine
* @notice A library that uses entropy to select a random number within a bound. Compensates for modulo bias.
* @dev Thanks to https://medium.com/hownetworks/dont-waste-cycles-with-modulo-bias-35b6fdafcf94
* @dev Modified https://github.com/pooltogether/uniform-random-number/blob/master/contracts/UniformRandomNumber.sol
* @dev to work with solidity > 0.8.0 by coercing underflow: uint(-int(_upperBound))
*/libraryUniformRandomNumber{
/// @notice Select a random number without modulo bias using a random seed and upper bound/// @param _entropy The seed for randomness/// @param _upperBound The upper bound of the desired number/// @return A random number less than the _upperBoundfunctionuniform(uint256 _entropy, uint256 _upperBound) internalpurereturns (uint256) {
require(_upperBound >0, "UniformRand/min-bound");
uint256 min =uint(-int(_upperBound)) % _upperBound;
uint256 random = _entropy;
while (true) {
if (random >= min) {
break;
}
random =uint256(keccak256(abi.encodePacked(random)));
}
return random % _upperBound;
}
}