Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SmartTradeUniV3
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SmartTradeUniV3 is IUniswapV3SwapCallback, Pausable, Ownable { uint160 internal constant MIN_SQRT_RATIO = 4295128739; uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; event SwapInfo(int256, int256); modifier NoDelegateCall() { require(tx.origin == msg.sender, "The caller is another contract"); _ ; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } struct transactionWorth { uint256 profit; uint256 transactionCost; } function masterSwap( address poolAddress, bool zeroForOne, int256 amountIn, uint160 sqrtPriceLimitX96, uint256 blockHeightRequired, int256 priceToken0Usd, int256 priceToken1Usd, uint256 ethPriceUsd, uint256 minPrUsd ) external NoDelegateCall whenNotPaused returns (int256 amount0, int256 amount1) { uint256 startGas = gasleft(); require(block.number <= blockHeightRequired, "Transaction too old"); require(amountIn > 0, "Amount to swap has to be larger than zero"); require(sqrtPriceLimitX96 > MIN_SQRT_RATIO && sqrtPriceLimitX96 < MAX_SQRT_RATIO, "SqrtPriceLimitX96 not in range"); IUniswapV3Pool pool = IUniswapV3Pool(poolAddress); (amount0, amount1) = pool.swap(msg.sender, zeroForOne, amountIn, sqrtPriceLimitX96 == 0 ? (zeroForOne ? MIN_SQRT_RATIO + 1 : MAX_SQRT_RATIO - 1) : sqrtPriceLimitX96, abi.encode(msg.sender, zeroForOne) ); transactionWorth memory isTransactionWorthIt; isTransactionWorthIt.profit = uint256(amount0 * priceToken0Usd + amount1 * priceToken1Usd); isTransactionWorthIt.transactionCost = (startGas - gasleft()) * tx.gasprice * ethPriceUsd; require(isTransactionWorthIt.profit > isTransactionWorthIt.transactionCost, "Profit less then transaction cost"); require(isTransactionWorthIt.profit > minPrUsd, "Too little profit"); emit SwapInfo(amount0, amount1); } function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external override { IUniswapV3Pool pool = IUniswapV3Pool(msg.sender); (address payer, bool zeroForOne) = abi.decode(data, (address, bool)); if(zeroForOne) { IERC20(pool.token0()).transferFrom(payer, msg.sender, uint256(amount0Delta)); } else { IERC20(pool.token1()).transferFrom(payer, msg.sender, uint256(amount1Delta)); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=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 pieces interface IUniswapV3Pool is IUniswapV3PoolImmutables, IUniswapV3PoolState, IUniswapV3PoolDerivedState, IUniswapV3PoolActions, IUniswapV3PoolOwnerActions, IUniswapV3PoolEvents { }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#swap /// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface interface IUniswapV3SwapCallback { /// @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 call function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { 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: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 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 /// 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 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 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, /// 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. 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, /// 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/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, /// 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 use function observations(uint256 index) external view returns ( uint32 blockTimestamp, int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128, bool initialized ); }
// 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 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 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 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: 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; } }
{ "optimizer": { "enabled": true, "runs": 10000 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","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":"int256","name":"","type":"int256"},{"indexed":false,"internalType":"int256","name":"","type":"int256"}],"name":"SwapInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountIn","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"uint256","name":"blockHeightRequired","type":"uint256"},{"internalType":"int256","name":"priceToken0Usd","type":"int256"},{"internalType":"int256","name":"priceToken1Usd","type":"int256"},{"internalType":"uint256","name":"ethPriceUsd","type":"uint256"},{"internalType":"uint256","name":"minPrUsd","type":"uint256"}],"name":"masterSwap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"amount0Delta","type":"int256"},{"internalType":"int256","name":"amount1Delta","type":"int256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080806040523461006d57600080546001600160a81b0319811633600881811b610100600160a81b03169290921784559291901c6001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09084a361100390816100738239f35b600080fdfe6040608081526004908136101561001557600080fd5b600091823560e01c80633f4ba83a14610bc75780635c975abb14610ba55780635f208e8d14610595578063715018a61461050d5780638456cb59146104755780638da5cb5b1461043b578063f2fde38b146103005763fa461e331461007957600080fd5b346102fc5760606003193601126102fc5760443567ffffffffffffffff8082116102f857366023830112156102f857818301359081116102f85781013660248201116102f85781849103126102f457602481013573ffffffffffffffffffffffffffffffffffffffff918282168092036102f0576044013580151581036102f0571561022a578351907f0dfe168100000000000000000000000000000000000000000000000000000000825260209384838281335afa9087821561021f576101a595879582946101f0575b5088517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909516838601908152336020820152923560408401529395869485939091849160600190565b0393165af180156101e3576101b957505051f35b816101d892903d106101dc575b6101d08183610da8565b810190610fb5565b5051f35b503d6101c6565b50505051903d90823e3d90fd5b610211919450863d8811610218575b6102098183610da8565b810190610f89565b9238610144565b503d6101ff565b8751903d90823e3d90fd5b8351907fd21220a700000000000000000000000000000000000000000000000000000000825260209384838281335afa9087821561021f576101a595879582946102d1575b5088517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90951692850192835233602084015260243560408401529395869485939091849160600190565b6102e9919450863d8811610218576102098183610da8565b923861026f565b8580fd5b8380fd5b8480fd5b8280fd5b50346102fc5760206003193601126102fc5761031a610cb6565b91835473ffffffffffffffffffffffffffffffffffffffff93848260081c1694610345338714610cde565b81169384156103b8575074ffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffff0000000000000000000000000000000000000000ff9160081b16911617845551917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08484a3f35b60849060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b50503461047157816003193601126104715773ffffffffffffffffffffffffffffffffffffffff6020925460081c169051908152f35b5080fd5b50503461047157816003193601126104715760017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083546104d03373ffffffffffffffffffffffffffffffffffffffff8360081c1614610cde565b6104dd60ff821615610d43565b161782557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25860208251338152a151f35b505034610471578160031936011261047157818054917fffffffffffffffffffffff0000000000000000000000000000000000000000ff73ffffffffffffffffffffffffffffffffffffffff8460081c169361056a338614610cde565b16825551917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b509134610ba257610120600319360112610ba2576105b1610cb6565b602491823594851515938487036102fc5760649283359073ffffffffffffffffffffffffffffffffffffffff90818316998a840361047157333203610b47576105fe60ff83541615610d43565b5a906084354311610aec576044359483861315610a6b576401000276a38d1180610a4e575b156109f2578b9c849c9a9b9c50156000146109ea5750156109d0576401000276a45b985b8851998a958c60209b338d8a01528801528d8752606087019c8d67ffffffffffffffff809982109111176109a5578d8f527f128acb08000000000000000000000000000000000000000000000000000000008e52338b8e015260848d015260a48c0152841660c48b015260a060e48b01528951610104808c01829052948d928d92909186918e908e845b82811061098157505080820161012401849052601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681010360c40192849291165af198891561097757829a839a61093f575b50508a5193848c0190811185821017610914578b528184528784019180835261075160a4358c610e18565b61075d60c4358c610e18565b908282820192831291129080158216911516176108e95785525a82039182116108be57506107989061079360e435913a90610f29565b610f29565b8091528251111561083e5735905111156107e6575050507fe0d0ef8b89043aa619742c6f6b3cfc131b4d9d8d6728fdcafe530cd1c964020c8480518581528484820152a18351928352820152f35b601190848851937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f546f6f206c6974746c652070726f6669740000000000000000000000000000006044820152fd5b6084847f7400000000000000000000000000000000000000000000000000000000000000876021878b8f51957f08c379a00000000000000000000000000000000000000000000000000000000087528601528401527f50726f666974206c657373207468656e207472616e73616374696f6e20636f736044840152820152fd5b806011887f4e487b710000000000000000000000000000000000000000000000000000000089945252fd5b868260118a7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b85836041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b91995099508a8a813d8311610970575b6109598185610da8565b810103126104715760809051990151973880610726565b503d61094f565b8b513d84823e3d90fd5b9396509350939550810161012483820151910152018d928f94928e908e89946106d1565b888660418c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b73fffd8963efd1fc6a506488495d951d5263988d25610645565b905098610647565b508787601e8860208f51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5371727450726963654c696d6974583936206e6f7420696e2072616e676500006044820152fd5b5073fffd8963efd1fc6a506488495d951d5263988d268d10610623565b8b517f08c379a00000000000000000000000000000000000000000000000000000000081526020818a01526029818901527f416d6f756e7420746f20737761702068617320746f206265206c61726765722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000818b0152608490fd5b878760138860208f51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5472616e73616374696f6e20746f6f206f6c64000000000000000000000000006044820152fd5b8686601e8760208e51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152fd5b80fd5b50503461047157816003193601126104715760ff602092541690519015158152f35b50346102fc57826003193601126102fc57825490610bff3373ffffffffffffffffffffffffffffffffffffffff8460081c1614610cde565b60ff821615610c5957507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa60208251338152a151f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610cd957565b600080fd5b15610ce557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b15610d4a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610de957604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008082138184137f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff828216868204861116610ecf57838612917f800000000000000000000000000000000000000000000000000000000000000093838786058912911616610efc57868587129405861290841616610ecf578590058412911616610ea257500290565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526011600452fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821181151516610f5a570290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b90816020910312610cd9575173ffffffffffffffffffffffffffffffffffffffff81168103610cd95790565b90816020910312610cd957518015158103610cd9579056fea2646970667358221220edfad6df3359a1a3e8f0a686cdec488cf5d28ee6e214583b8a414b04ff94cba964736f6c63430008100033
Deployed Bytecode
0x6040608081526004908136101561001557600080fd5b600091823560e01c80633f4ba83a14610bc75780635c975abb14610ba55780635f208e8d14610595578063715018a61461050d5780638456cb59146104755780638da5cb5b1461043b578063f2fde38b146103005763fa461e331461007957600080fd5b346102fc5760606003193601126102fc5760443567ffffffffffffffff8082116102f857366023830112156102f857818301359081116102f85781013660248201116102f85781849103126102f457602481013573ffffffffffffffffffffffffffffffffffffffff918282168092036102f0576044013580151581036102f0571561022a578351907f0dfe168100000000000000000000000000000000000000000000000000000000825260209384838281335afa9087821561021f576101a595879582946101f0575b5088517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909516838601908152336020820152923560408401529395869485939091849160600190565b0393165af180156101e3576101b957505051f35b816101d892903d106101dc575b6101d08183610da8565b810190610fb5565b5051f35b503d6101c6565b50505051903d90823e3d90fd5b610211919450863d8811610218575b6102098183610da8565b810190610f89565b9238610144565b503d6101ff565b8751903d90823e3d90fd5b8351907fd21220a700000000000000000000000000000000000000000000000000000000825260209384838281335afa9087821561021f576101a595879582946102d1575b5088517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90951692850192835233602084015260243560408401529395869485939091849160600190565b6102e9919450863d8811610218576102098183610da8565b923861026f565b8580fd5b8380fd5b8480fd5b8280fd5b50346102fc5760206003193601126102fc5761031a610cb6565b91835473ffffffffffffffffffffffffffffffffffffffff93848260081c1694610345338714610cde565b81169384156103b8575074ffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffff0000000000000000000000000000000000000000ff9160081b16911617845551917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08484a3f35b60849060208551917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b50503461047157816003193601126104715773ffffffffffffffffffffffffffffffffffffffff6020925460081c169051908152f35b5080fd5b50503461047157816003193601126104715760017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083546104d03373ffffffffffffffffffffffffffffffffffffffff8360081c1614610cde565b6104dd60ff821615610d43565b161782557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25860208251338152a151f35b505034610471578160031936011261047157818054917fffffffffffffffffffffff0000000000000000000000000000000000000000ff73ffffffffffffffffffffffffffffffffffffffff8460081c169361056a338614610cde565b16825551917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b509134610ba257610120600319360112610ba2576105b1610cb6565b602491823594851515938487036102fc5760649283359073ffffffffffffffffffffffffffffffffffffffff90818316998a840361047157333203610b47576105fe60ff83541615610d43565b5a906084354311610aec576044359483861315610a6b576401000276a38d1180610a4e575b156109f2578b9c849c9a9b9c50156000146109ea5750156109d0576401000276a45b985b8851998a958c60209b338d8a01528801528d8752606087019c8d67ffffffffffffffff809982109111176109a5578d8f527f128acb08000000000000000000000000000000000000000000000000000000008e52338b8e015260848d015260a48c0152841660c48b015260a060e48b01528951610104808c01829052948d928d92909186918e908e845b82811061098157505080820161012401849052601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681010360c40192849291165af198891561097757829a839a61093f575b50508a5193848c0190811185821017610914578b528184528784019180835261075160a4358c610e18565b61075d60c4358c610e18565b908282820192831291129080158216911516176108e95785525a82039182116108be57506107989061079360e435913a90610f29565b610f29565b8091528251111561083e5735905111156107e6575050507fe0d0ef8b89043aa619742c6f6b3cfc131b4d9d8d6728fdcafe530cd1c964020c8480518581528484820152a18351928352820152f35b601190848851937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f546f6f206c6974746c652070726f6669740000000000000000000000000000006044820152fd5b6084847f7400000000000000000000000000000000000000000000000000000000000000876021878b8f51957f08c379a00000000000000000000000000000000000000000000000000000000087528601528401527f50726f666974206c657373207468656e207472616e73616374696f6e20636f736044840152820152fd5b806011887f4e487b710000000000000000000000000000000000000000000000000000000089945252fd5b868260118a7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b85836041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b91995099508a8a813d8311610970575b6109598185610da8565b810103126104715760809051990151973880610726565b503d61094f565b8b513d84823e3d90fd5b9396509350939550810161012483820151910152018d928f94928e908e89946106d1565b888660418c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b73fffd8963efd1fc6a506488495d951d5263988d25610645565b905098610647565b508787601e8860208f51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5371727450726963654c696d6974583936206e6f7420696e2072616e676500006044820152fd5b5073fffd8963efd1fc6a506488495d951d5263988d268d10610623565b8b517f08c379a00000000000000000000000000000000000000000000000000000000081526020818a01526029818901527f416d6f756e7420746f20737761702068617320746f206265206c61726765722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000818b0152608490fd5b878760138860208f51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5472616e73616374696f6e20746f6f206f6c64000000000000000000000000006044820152fd5b8686601e8760208e51937f08c379a00000000000000000000000000000000000000000000000000000000085528401528201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152fd5b80fd5b50503461047157816003193601126104715760ff602092541690519015158152f35b50346102fc57826003193601126102fc57825490610bff3373ffffffffffffffffffffffffffffffffffffffff8460081c1614610cde565b60ff821615610c5957507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa60208251338152a151f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610cd957565b600080fd5b15610ce557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b15610d4a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610de957604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008082138184137f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff828216868204861116610ecf57838612917f800000000000000000000000000000000000000000000000000000000000000093838786058912911616610efc57868587129405861290841616610ecf578590058412911616610ea257500290565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526011600452fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821181151516610f5a570290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b90816020910312610cd9575173ffffffffffffffffffffffffffffffffffffffff81168103610cd95790565b90816020910312610cd957518015158103610cd9579056fea2646970667358221220edfad6df3359a1a3e8f0a686cdec488cf5d28ee6e214583b8a414b04ff94cba964736f6c63430008100033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.