More Info
Private Name Tags
ContractCreator
Sponsored
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18347798 | 26 days ago | IN | 0.0000001 ETH | 0.00000018 | ||||
Set Router | 11309790 | 189 days ago | IN | 0 ETH | 0.00000004 | ||||
Set Utb | 11132355 | 193 days ago | IN | 0 ETH | 0.00000004 | ||||
Set Router | 11132351 | 193 days ago | IN | 0 ETH | 0.00000002 | ||||
Set Wrapped | 11132347 | 193 days ago | IN | 0 ETH | 0.00000004 | ||||
0x60806040 | 11132343 | 193 days ago | IN | 0 ETH | 0.00000134 |
Loading...
Loading
Contract Name:
UniSwapper
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import {UTBOwned} from "../UTBOwned.sol"; import {SwapParams} from "./SwapParams.sol"; import {SwapDirection} from "./SwapParams.sol"; import {IERC20} from "forge-std/interfaces/IERC20.sol"; import {IWETH} from "decent-bridge/src/interfaces/IWETH.sol"; import {Owned} from "solmate/auth/Owned.sol"; import {ISwapper} from "../UTB.sol"; import {IV3SwapRouter} from "@uniswap/swap-contracts/interfaces/IV3SwapRouter.sol"; contract UniSwapper is UTBOwned, ISwapper { constructor() {} uint8 public constant SWAPPER_ID = 0; address public uniswap_router; address payable public wrapped; function setRouter(address _router) public onlyAdmin { uniswap_router = _router; } function setWrapped(address payable _wrapped) public onlyAdmin { wrapped = _wrapped; } function getId() public pure returns (uint8) { return SWAPPER_ID; } function updateSwapParams( SwapParams memory newSwapParams, bytes memory payload ) external pure returns (bytes memory) { (, address receiver, address refund) = abi.decode( payload, (SwapParams, address, address) ); return abi.encode(newSwapParams, receiver, refund); } function _refundUser(address user, address token, uint amount) private { IERC20(token).transfer(user, amount); } function _sendToRecipient( address recipient, address token, uint amount ) private { if (token == address(0)) { token = wrapped; } IERC20(token).transfer(recipient, amount); } function swap( bytes memory swapPayload ) external onlyUtb returns (address tokenOut, uint256 amountOut) { (SwapParams memory swapParams, address receiver, address refund) = abi .decode(swapPayload, (SwapParams, address, address)); tokenOut = swapParams.tokenOut; if (swapParams.path.length == 0) { return swapNoPath(swapParams, receiver, refund); } if (swapParams.direction == SwapDirection.EXACT_IN) { amountOut = swapExactIn(swapParams, receiver); } else { swapExactOut(swapParams, receiver, refund); amountOut = swapParams.amountOut; } } function _receiveAndWrapIfNeeded( SwapParams memory swapParams ) private returns (SwapParams memory _swapParams) { if (swapParams.tokenIn != address(0)) { IERC20(swapParams.tokenIn).transferFrom( msg.sender, address(this), swapParams.amountIn ); return swapParams; } swapParams.tokenIn = wrapped; IWETH(wrapped).deposit{value: swapParams.amountIn}(); return swapParams; } modifier routerIsSet() { if (uniswap_router == address(0)) revert RouterNotSet(); _; } function swapNoPath( SwapParams memory swapParams, address receiver, address refund ) public payable returns (address tokenOut, uint256 amountOut) { swapParams = _receiveAndWrapIfNeeded(swapParams); if (swapParams.direction == SwapDirection.EXACT_OUT) { _refundUser( refund, swapParams.tokenIn, swapParams.amountIn - swapParams.amountOut ); } uint amt2Recipient = swapParams.direction == SwapDirection.EXACT_OUT ? swapParams.amountOut : swapParams.amountIn; _sendToRecipient(receiver, swapParams.tokenOut, amt2Recipient); return (swapParams.tokenOut, amt2Recipient); } function swapExactIn( SwapParams memory swapParams, // SwapParams is a struct address receiver ) public payable routerIsSet returns (uint256 amountOut) { swapParams = _receiveAndWrapIfNeeded(swapParams); IV3SwapRouter.ExactInputParams memory params = IV3SwapRouter .ExactInputParams({ path: swapParams.path, recipient: address(this), amountIn: swapParams.amountIn, amountOutMinimum: swapParams.amountOut }); IERC20(swapParams.tokenIn).approve(uniswap_router, swapParams.amountIn); amountOut = IV3SwapRouter(uniswap_router).exactInput(params); _sendToRecipient(receiver, swapParams.tokenOut, amountOut); } function swapExactOut( SwapParams memory swapParams, address receiver, address refundAddress ) public payable routerIsSet returns (uint256 amountIn) { swapParams = _receiveAndWrapIfNeeded(swapParams); IV3SwapRouter.ExactOutputParams memory params = IV3SwapRouter .ExactOutputParams({ path: swapParams.path, recipient: address(this), //deadline: block.timestamp, amountOut: swapParams.amountOut, amountInMaximum: swapParams.amountIn }); IERC20(swapParams.tokenIn).approve(uniswap_router, swapParams.amountIn); amountIn = IV3SwapRouter(uniswap_router).exactOutput(params); // refund sender _refundUser( refundAddress, swapParams.tokenIn, params.amountInMaximum - amountIn ); _sendToRecipient(receiver, swapParams.tokenOut, swapParams.amountOut); } receive() external payable {} fallback() external payable {} }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import {Roles} from "decent-bridge/src/utils/Roles.sol"; contract UTBOwned is Roles { address payable utb; constructor() Roles(msg.sender) {} /** * @dev Limit access to the approved UTB. */ modifier onlyUtb() { require(msg.sender == utb, "Only utb"); _; } /** * @dev Sets the approved UTB. * @param _utb The address of the UTB. */ function setUtb(address _utb) public onlyAdmin { utb = payable(_utb); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; library SwapDirection { uint8 constant EXACT_IN = 0; uint8 constant EXACT_OUT = 1; } struct SwapParams { uint256 amountIn; uint256 amountOut; address tokenIn; address tokenOut; uint8 direction; // if direction is exactAmountIn // then amount out will be the minimum amount out // if direction is exactAmountOutA // then amount in is maximum amount in bytes path; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; /// @dev Interface of the ERC20 standard as defined in the EIP. /// @dev This includes the optional name, symbol, and decimals metadata. interface IERC20 { /// @dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`). event Transfer(address indexed from, address indexed to, uint256 value); /// @dev Emitted when the allowance of a `spender` for an `owner` is set, where `value` /// is the new allowance. event Approval(address indexed owner, address indexed spender, uint256 value); /// @notice Returns the amount of tokens in existence. function totalSupply() external view returns (uint256); /// @notice Returns the amount of tokens owned by `account`. function balanceOf(address account) external view returns (uint256); /// @notice Moves `amount` tokens from the caller's account to `to`. function transfer(address to, uint256 amount) external returns (bool); /// @notice Returns the remaining number of tokens that `spender` is allowed /// to spend on behalf of `owner` function allowance(address owner, address spender) external view returns (uint256); /// @notice Sets `amount` as the allowance of `spender` over the caller's tokens. /// @dev Be aware of front-running risks: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 function approve(address spender, uint256 amount) external returns (bool); /// @notice Moves `amount` tokens from `from` to `to` using the allowance mechanism. /// `amount` is then deducted from the caller's allowance. function transferFrom(address from, address to, uint256 amount) external returns (bool); /// @notice Returns the name of the token. function name() external view returns (string memory); /// @notice Returns the symbol of the token. function symbol() external view returns (string memory); /// @notice Returns the decimals places of the token. function decimals() external view returns (uint8); }
pragma solidity ^0.8.0; import {IERC20} from "forge-std/interfaces/IERC20.sol"; interface IWETH is IERC20 { function deposit() external payable; function withdraw(uint) external; }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Simple single owner authorization mixin. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol) abstract contract Owned { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event OwnershipTransferred(address indexed user, address indexed newOwner); /*////////////////////////////////////////////////////////////// OWNERSHIP STORAGE //////////////////////////////////////////////////////////////*/ address public owner; modifier onlyOwner() virtual { require(msg.sender == owner, "UNAUTHORIZED"); _; } /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _owner) { owner = _owner; emit OwnershipTransferred(address(0), _owner); } /*////////////////////////////////////////////////////////////// OWNERSHIP LOGIC //////////////////////////////////////////////////////////////*/ function transferOwnership(address newOwner) public virtual onlyOwner { owner = newOwner; emit OwnershipTransferred(msg.sender, newOwner); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import {Roles} from "decent-bridge/src/utils/Roles.sol"; import {SwapParams} from "./swappers/SwapParams.sol"; import {IUTB} from "./interfaces/IUTB.sol"; import {IUTBExecutor} from "./interfaces/IUTBExecutor.sol"; import {IERC20} from "forge-std/interfaces/IERC20.sol"; import {IWETH} from "decent-bridge/src/interfaces/IWETH.sol"; import {IUTBFeeManager} from "./interfaces/IUTBFeeManager.sol"; import {IBridgeAdapter} from "./interfaces/IBridgeAdapter.sol"; import {ISwapper} from "./interfaces/ISwapper.sol"; import {SwapInstructions, FeeData, Fee, BridgeInstructions, SwapAndExecuteInstructions} from "./CommonTypes.sol"; contract UTB is IUTB, Roles { constructor() Roles(msg.sender) {} IUTBExecutor executor; IUTBFeeManager feeManager; IWETH wrapped; mapping(uint8 => address) public swappers; mapping(uint8 => address) public bridgeAdapters; bool isActive = true; /** * @dev only support calling swapAndExecute and bridgeAndExecute if active */ modifier isUtbActive() { if (!isActive) revert UTBPaused(); _; } /** * @dev Transfers fees from the sender to the fee recipients. * @param feeData The bridge fee in native, as well as utb fee tokens and amounts. * @param packedInfo The fees and swap instructions which were used to generate the signature. * @param signature The ECDSA signature to verify the fee structure. */ function _retrieveAndCollectFees( FeeData calldata feeData, bytes memory packedInfo, bytes calldata signature ) private returns (uint256 value) { if (address(feeManager) != address(0)) { feeManager.verifySignature(packedInfo, signature); value += feeData.bridgeFee; Fee[] memory fees = feeData.appFees; for (uint i = 0; i < fees.length; i++) { Fee memory fee = fees[i]; if (fee.token != address(0)) { IERC20(fee.token).transferFrom( msg.sender, fee.recipient, fee.amount ); } else { (bool success, ) = address(fee.recipient).call{value: fee.amount}(""); value += fee.amount; if (!success) revert ProtocolFeeCannotBeFetched(); } } } } /** * @dev Refunds leftover native to the specified refund address. * @param to The address receiving the refund. * @param leftover The amount of leftover native. */ function _refundLeftover(address to, uint256 leftover) internal { if (leftover > 0) { (bool success, ) = to.call{value: leftover}(""); require(success, "failed to refund leftover"); } } /** * @dev Sets the executor. * @param _executor The address of the executor. */ function setExecutor(address _executor) public onlyAdmin { executor = IUTBExecutor(_executor); } /** * @dev Sets the wrapped native token. * @param _wrapped The address of the wrapped token. */ function setWrapped(address _wrapped) public onlyAdmin { wrapped = IWETH(_wrapped); } /** * @dev Sets the fee manager. * @param _feeManager The address of the fee manager. */ function setFeeManager(address _feeManager) public onlyAdmin { feeManager = IUTBFeeManager(_feeManager); } /** * @dev toggles active state */ function toggleActive() public onlyAdmin { isActive = !isActive; } /** * @dev Performs a swap with the requested swapper and swap calldata. * @param swapInstructions The swapper ID and calldata to execute a swap. * @param retrieveTokenIn Flag indicating whether to transfer ERC20 for the swap. */ function performSwap( SwapInstructions memory swapInstructions, bool retrieveTokenIn ) private returns (address tokenOut, uint256 amountOut, uint256 value) { ISwapper swapper = ISwapper(swappers[swapInstructions.swapperId]); SwapParams memory swapParams = abi.decode( swapInstructions.swapPayload, (SwapParams) ); if (swapParams.tokenIn == address(0)) { if (msg.value < swapParams.amountIn) revert NotEnoughNative(); wrapped.deposit{value: swapParams.amountIn}(); value += swapParams.amountIn; swapParams.tokenIn = address(wrapped); swapInstructions.swapPayload = swapper.updateSwapParams( swapParams, swapInstructions.swapPayload ); } else if (retrieveTokenIn) { IERC20(swapParams.tokenIn).transferFrom( msg.sender, address(this), swapParams.amountIn ); } IERC20(swapParams.tokenIn).approve( address(swapper), swapParams.amountIn ); (tokenOut, amountOut) = swapper.swap(swapInstructions.swapPayload); if (tokenOut == address(0)) { wrapped.withdraw(amountOut); } } /// @inheritdoc IUTB function swapAndExecute( SwapAndExecuteInstructions calldata instructions, FeeData calldata feeData, bytes calldata signature ) public payable isUtbActive { uint256 value = _retrieveAndCollectFees(feeData, abi.encode(instructions, feeData), signature); value += _swapAndExecute( instructions.swapInstructions, instructions.target, instructions.paymentOperator, instructions.payload, instructions.refund ); _refundLeftover(instructions.refund, msg.value - value); emit Swapped(); } /** * @dev Swaps currency from the incoming to the outgoing token and executes a transaction with payment. * @param swapInstructions The swapper ID and calldata to execute a swap. * @param target The address of the target contract for the payment transaction. * @param paymentOperator The operator address for payment transfers requiring ERC20 approvals. * @param payload The calldata to execute the payment transaction. * @param refund The account receiving any refunds, typically the EOA which initiated the transaction. */ function _swapAndExecute( SwapInstructions memory swapInstructions, address target, address paymentOperator, bytes memory payload, address refund ) private returns (uint256 value) { address tokenOut; uint256 amountOut; (tokenOut, amountOut, value) = performSwap(swapInstructions, true); if (tokenOut == address(0)) { executor.execute{value: amountOut}( target, paymentOperator, payload, tokenOut, amountOut, refund ); } else { IERC20(tokenOut).approve(address(executor), amountOut); executor.execute( target, paymentOperator, payload, tokenOut, amountOut, refund ); } } /** * @dev Performs the pre bridge swap and modifies the post bridge swap to utilize the bridged amount. * @param instructions The bridge data, token swap data, and payment transaction payload. */ function swapAndModifyPostBridge( BridgeInstructions memory instructions ) private returns ( uint256 amount2Bridge, BridgeInstructions memory updatedInstructions, uint256 value ) { address tokenOut; uint256 amountOut; (tokenOut, amountOut, value) = performSwap( instructions.preBridge, true ); SwapParams memory newPostSwapParams = abi.decode( instructions.postBridge.swapPayload, (SwapParams) ); newPostSwapParams.amountIn = IBridgeAdapter( bridgeAdapters[instructions.bridgeId] ).getBridgedAmount(amountOut, tokenOut, newPostSwapParams.tokenIn, instructions.additionalArgs); updatedInstructions = instructions; updatedInstructions.postBridge.swapPayload = ISwapper(swappers[ instructions.postBridge.swapperId ]).updateSwapParams( newPostSwapParams, instructions.postBridge.swapPayload ); amount2Bridge = amountOut; } /** * @dev Checks if the bridge token is native, and approves the bridge adapter to transfer ERC20 if required. * @param instructions The bridge data, token swap data, and payment transaction payload. * @param amt2Bridge The amount of the bridge token being transferred to the bridge adapter. */ function approveAndCheckIfNative( BridgeInstructions memory instructions, uint256 amt2Bridge ) private returns (bool) { IBridgeAdapter bridgeAdapter = IBridgeAdapter(bridgeAdapters[instructions.bridgeId]); address bridgeToken = bridgeAdapter.getBridgeToken( instructions.additionalArgs ); if (bridgeToken != address(0)) { IERC20(bridgeToken).approve(address(bridgeAdapter), amt2Bridge); return false; } return true; } /// @inheritdoc IUTB function bridgeAndExecute( BridgeInstructions calldata instructions, FeeData calldata feeData, bytes calldata signature ) public payable isUtbActive returns (bytes memory) { uint256 feeValue = _retrieveAndCollectFees(feeData, abi.encode(instructions, feeData), signature); ( uint256 amt2Bridge, BridgeInstructions memory updatedInstructions, uint256 swapValue ) = swapAndModifyPostBridge(instructions); _refundLeftover(instructions.refund, msg.value - feeValue - swapValue); return callBridge(amt2Bridge, feeData.bridgeFee, updatedInstructions); } /** * @dev Calls the bridge adapter to bridge funds, and approves the bridge adapter to transfer ERC20 if required. * @param amt2Bridge The amount of the bridge token being bridged via the bridge adapter. * @param bridgeFee The fee being transferred to the bridge adapter and finally to the bridge. * @param instructions The bridge data, token swap data, and payment transaction payload. */ function callBridge( uint256 amt2Bridge, uint bridgeFee, BridgeInstructions memory instructions ) private returns (bytes memory) { bool native = approveAndCheckIfNative(instructions, amt2Bridge); emit BridgeCalled(); return IBridgeAdapter(bridgeAdapters[instructions.bridgeId]).bridge{ value: bridgeFee + (native ? amt2Bridge : 0) }( amt2Bridge, instructions.postBridge, instructions.dstChainId, instructions.target, instructions.paymentOperator, instructions.payload, instructions.additionalArgs, instructions.refund ); } /// @inheritdoc IUTB function receiveFromBridge( SwapInstructions memory postBridge, address target, address paymentOperator, bytes memory payload, address refund, uint8 bridgeId ) public payable { if (msg.sender != bridgeAdapters[bridgeId]) revert OnlyBridgeAdapter(); emit RecievedFromBridge(); _swapAndExecute(postBridge, target, paymentOperator, payload, refund); } /// @inheritdoc IUTB function registerSwapper(address swapper) public onlyAdmin { ISwapper s = ISwapper(swapper); swappers[s.getId()] = swapper; } /// @inheritdoc IUTB function registerBridge(address bridge) public onlyAdmin { IBridgeAdapter b = IBridgeAdapter(bridge); bridgeAdapters[b.getId()] = bridge; } receive() external payable {} fallback() external payable {} }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol'; /// @title Router token swapping functionality /// @notice Functions for swapping tokens via Uniswap V3 interface IV3SwapRouter is IUniswapV3SwapCallback { struct ExactInputSingleParams { 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 token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { 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 token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { 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 token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { 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 token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; abstract contract Roles is AccessControl { constructor(address admin) { _grantRole(DEFAULT_ADMIN_ROLE, admin); } modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Only admin"); _; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import {SwapInstructions, FeeData, BridgeInstructions, SwapAndExecuteInstructions} from "../CommonTypes.sol"; interface IUTB { event Swapped(); event BridgeCalled(); event RecievedFromBridge(); /// @notice Thrown when protocol fees cannot be collected error ProtocolFeeCannotBeFetched(); /// @notice Thrown when UTB is paused error UTBPaused(); /// @notice Thrown when not enough native is passed for swap error NotEnoughNative(); /// @notice Thrown when receive from bridge is not called from a bridge adapter error OnlyBridgeAdapter(); /** * @dev Swaps currency from the incoming to the outgoing token and executes a transaction with payment. * @param instructions The token swap data and payment transaction payload. * @param feeData The bridge fee in native, as well as utb fee tokens and amounts. * @param signature The ECDSA signature to verify the fee structure. */ function swapAndExecute( SwapAndExecuteInstructions memory instructions, FeeData memory feeData, bytes memory signature ) external payable; /** * @dev Bridges funds in native or ERC20 and a payment transaction payload to the destination chain * @param instructions The bridge data, token swap data, and payment transaction payload. * @param feeData The bridge fee in native, as well as utb fee tokens and amounts. * @param signature The ECDSA signature to verify the fee structure. */ function bridgeAndExecute( BridgeInstructions memory instructions, FeeData memory feeData, bytes memory signature ) external payable returns (bytes memory); /** * @dev Receives funds from the bridge adapter, executes a swap, and executes a payment transaction. * @param postBridge The swapper ID and calldata to execute a swap. * @param target The address of the target contract for the payment transaction. * @param paymentOperator The operator address for payment transfers requiring ERC20 approvals. * @param payload The calldata to execute the payment transaction. * @param refund The account receiving any refunds, typically the EOA which initiated the transaction. */ function receiveFromBridge( SwapInstructions memory postBridge, address target, address paymentOperator, bytes memory payload, address refund, uint8 bridgeId ) external payable; /** * @dev Registers and maps a bridge adapter to a bridge adapter ID. * @param bridge The address of the bridge adapter. */ function registerBridge(address bridge) external; /** * @dev Registers and maps a swapper to a swapper ID. * @param swapper The address of the swapper. */ function registerSwapper(address swapper) external; function setExecutor(address _executor) external; function setFeeManager(address _feeManager) external; function setWrapped(address _wrapped) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IUTBExecutor { /** * @dev Executes a payment transaction with native OR ERC20. * @param target The address of the target contract for the payment transaction. * @param paymentOperator The operator address for payment transfers requiring ERC20 approvals. * @param payload The calldata to execute the payment transaction. * @param token The token being transferred, zero address for native. * @param amount The amount of native or ERC20 being sent with the payment transaction. * @param refund The account receiving any refunds, typically the EOA that initiated the transaction. */ function execute( address target, address paymentOperator, bytes memory payload, address token, uint256 amount, address refund ) external payable; /** * @dev Executes a payment transaction with native AND/OR ERC20. * @param target The address of the target contract for the payment transaction. * @param paymentOperator The operator address for payment transfers requiring ERC20 approvals. * @param payload The calldata to execute the payment transaction. * @param token The token being transferred, zero address for native. * @param amount The amount of native or ERC20 being sent with the payment transaction. * @param refund The account receiving any refunds, typically the EOA that initiated the transaction. * @param extraNative Forwards additional gas or native fees required to executing the payment transaction. */ function execute( address target, address paymentOperator, bytes memory payload, address token, uint256 amount, address refund, uint256 extraNative ) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IUTBFeeManager { /// @notice Thrown if incorrect signature error WrongSig(); /// @notice Thrown if sig length != 65 error WrongSigLength(); /** * @dev Verifies packed info containing fees in either native or ERC20. * @param packedInfo The fees and swap instructions used to generate the signature. * @param signature The ECDSA signature to verify the fee structure. */ function verifySignature( bytes memory packedInfo, bytes memory signature ) external; /** * @dev Sets the signer used for fee verification. * @param _signer The address of the signer. */ function setSigner(address _signer) external; }
pragma solidity ^0.8.0; import {SwapInstructions} from "../CommonTypes.sol"; interface IBridgeAdapter { error NoDstBridge(); function getId() external returns (uint8); function getBridgeToken( bytes calldata additionalArgs ) external returns (address); function getBridgedAmount( uint256 amt2Bridge, address preBridgeToken, address postBridgeToken, bytes calldata additionalArgs ) external returns (uint256); function bridge( uint256 amt2Bridge, SwapInstructions memory postBridge, uint256 dstChainId, address target, address paymentOperator, bytes memory payload, bytes calldata additionalArgs, address refund ) external payable returns (bytes memory); }
pragma solidity ^0.8.0; import {SwapParams} from "../swappers/SwapParams.sol"; interface ISwapper { error RouterNotSet(); function getId() external returns (uint8); function swap( bytes memory swapPayload ) external returns (address tokenOut, uint256 amountOut); function updateSwapParams( SwapParams memory newSwapParams, bytes memory payload ) external returns (bytes memory); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; struct SwapInstructions { uint8 swapperId; bytes swapPayload; } struct FeeData { bytes4 appId; bytes4 affiliateId; uint bridgeFee; Fee[] appFees; } struct Fee { address recipient; address token; uint amount; } struct SwapAndExecuteInstructions { SwapInstructions swapInstructions; address target; address paymentOperator; address refund; bytes payload; } struct BridgeInstructions { SwapInstructions preBridge; SwapInstructions postBridge; uint8 bridgeId; uint256 dstChainId; address target; address paymentOperator; address refund; bytes payload; bytes additionalArgs; }
// 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 (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "forge-std/=lib/forge-std/src/", "solmate/=lib/solmate/src/", "@uniswap/v3-periphery/=lib/v3-periphery/", "@uniswap/v3-core/=lib/v3-core/", "@uniswap/swap-contracts/=lib/swap-router-contracts/contracts/", "decent-bridge/=lib/decent-bridge/", "better-deployer/=lib/decent-bridge/lib/better-deployer/src/", "forge-toolkit/=lib/forge-toolkit/src/", "openzeppelin-contracts/=lib/decent-bridge/lib/openzeppelin-contracts/contracts/", "solidity-examples/=lib/solidity-examples/contracts/", "@openzeppelin/=lib/decent-bridge/lib/openzeppelin-contracts/", "@openzeppelin/contracts/=lib/decent-bridge/lib/openzeppelin-contracts/contracts/", "LayerZero/=lib/forge-toolkit/lib/LayerZero/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/decent-bridge/lib/openzeppelin-contracts/lib/erc4626-tests/", "openzeppelin/=lib/decent-bridge/lib/openzeppelin-contracts/contracts/", "solidity-stringutils/=lib/decent-bridge/lib/solidity-stringutils/", "swap-router-contracts/=lib/swap-router-contracts/contracts/", "v3-core/=lib/v3-core/", "v3-periphery/=lib/v3-periphery/contracts/", "lib/forge-std:ds-test/=lib/decent-bridge/lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:ds-test/=lib/decent-bridge/lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:erc4626-tests/=lib/decent-bridge/lib/openzeppelin-contracts/lib/erc4626-tests/", "lib/openzeppelin-contracts:forge-std/=lib/decent-bridge/lib/openzeppelin-contracts/lib/forge-std/src/", "lib/openzeppelin-contracts:openzeppelin/=lib/decent-bridge/lib/openzeppelin-contracts/contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"RouterNotSet","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAPPER_ID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_utb","type":"address"}],"name":"setUtb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wrapped","type":"address"}],"name":"setWrapped","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"swapPayload","type":"bytes"}],"name":"swap","outputs":[{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint8","name":"direction","type":"uint8"},{"internalType":"bytes","name":"path","type":"bytes"}],"internalType":"struct SwapParams","name":"swapParams","type":"tuple"},{"internalType":"address","name":"receiver","type":"address"}],"name":"swapExactIn","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint8","name":"direction","type":"uint8"},{"internalType":"bytes","name":"path","type":"bytes"}],"internalType":"struct SwapParams","name":"swapParams","type":"tuple"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"}],"name":"swapExactOut","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint8","name":"direction","type":"uint8"},{"internalType":"bytes","name":"path","type":"bytes"}],"internalType":"struct SwapParams","name":"swapParams","type":"tuple"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"refund","type":"address"}],"name":"swapNoPath","outputs":[{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"uniswap_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint8","name":"direction","type":"uint8"},{"internalType":"bytes","name":"path","type":"bytes"}],"internalType":"struct SwapParams","name":"newSwapParams","type":"tuple"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"updateSwapParams","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"wrapped","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b503361001d600082610023565b506100c2565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166100be576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561007d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116da806100d16000396000f3fe60806040526004361061010c5760003560e01c8063627dd56a1161009a578063a61a11b911610061578063a61a11b91461031c578063b1d456bf14610331578063c0d7865514610351578063c1aa293814610371578063d547741f1461039157005b8063627dd56a1461027a57806376313f301461029a5780639052be61146102c757806391d14854146102e7578063a217fddf1461030757005b80632f2ff15d116100de5780632f2ff15d146101cd57806336568abe146101ed57806337099e541461020d57806350e70d48146102205780635d1ca6311461025857005b806301ffc9a7146101155780630abc2a841461014a5780630c68a6091461016b578063248a9ca31461019d57005b3661011357005b005b34801561012157600080fd5b50610135610130366004610f62565b6103b1565b60405190151581526020015b60405180910390f35b61015d610158366004611133565b6103e8565b604051908152602001610141565b61017e610179366004611133565b610575565b604080516001600160a01b039093168352602083019190915201610141565b3480156101a957600080fd5b5061015d6101b8366004611197565b60009081526020819052604090206001015490565b3480156101d957600080fd5b506101136101e83660046111b0565b6105f1565b3480156101f957600080fd5b506101136102083660046111b0565b61061b565b61015d61021b3660046111e0565b61069e565b34801561022c57600080fd5b50600354610240906001600160a01b031681565b6040516001600160a01b039091168152602001610141565b34801561026457600080fd5b5060005b60405160ff9091168152602001610141565b34801561028657600080fd5b5061017e610295366004611227565b610808565b3480156102a657600080fd5b506102ba6102b5366004611264565b6108d5565b6040516101419190611318565b3480156102d357600080fd5b50600254610240906001600160a01b031681565b3480156102f357600080fd5b506101356103023660046111b0565b610921565b34801561031357600080fd5b5061015d600081565b34801561032857600080fd5b50610268600081565b34801561033d57600080fd5b5061011361034c36600461132b565b61094a565b34801561035d57600080fd5b5061011361036c36600461132b565b610993565b34801561037d57600080fd5b5061011361038c36600461132b565b6109dc565b34801561039d57600080fd5b506101136103ac3660046111b0565b610a25565b60006001600160e01b03198216637965db0b60e01b14806103e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002546000906001600160a01b03166104145760405163179ce99f60e01b815260040160405180910390fd5b61041d84610a4a565b6040805160808101825260a08301518152306020808301919091528301518183015282516060820152828201516002548451935163095ea7b360e01b81526001600160a01b03918216600482015260248101949094529397509092169063095ea7b3906044016020604051808303816000875af11580156104a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c69190611348565b506002546040516304dc09a360e11b81526001600160a01b03909116906309b81346906104f79084906004016113b1565b6020604051808303816000875af1158015610516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053a91906113c4565b915061055a83866040015184846060015161055591906113f3565b610b9a565b61056d8486606001518760200151610c14565b509392505050565b60008061058185610a4a565b9450600160ff16856080015160ff16036105b2576105b28386604001518760200151886000015161055591906113f3565b608085015160009060ff166001146105cb5785516105d1565b85602001515b90506105e285876060015183610c14565b60609590950151959350505050565b60008281526020819052604090206001015461060c81610c5e565b6106168383610c6b565b505050565b6001600160a01b03811633146106905760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61069a8282610cef565b5050565b6002546000906001600160a01b03166106ca5760405163179ce99f60e01b815260040160405180910390fd5b6106d383610a4a565b6040805160808101825260a08301518152306020808301919091528351828401528301516060820152828201516002548451935163095ea7b360e01b81526001600160a01b03918216600482015260248101949094529396509092169063095ea7b3906044016020604051808303816000875af1158015610758573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077c9190611348565b5060025460405163b858183f60e01b81526001600160a01b039091169063b858183f906107ad9084906004016113b1565b6020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f091906113c4565b915061080183856060015184610c14565b5092915050565b60015460009081906001600160a01b031633146108525760405162461bcd60e51b815260206004820152600860248201526727b7363c903aba3160c11b6044820152606401610687565b60008060008580602001905181019061086b919061145b565b925092509250826060015194508260a001515160000361089c57610890838383610575565b94509450505050915091565b608083015160ff166108b9576108b2838361069e565b93506108cd565b6108c48383836103e8565b50826020015193505b505050915091565b6060600080838060200190518101906108ee919061145b565b925092505084828260405160200161090893929190611537565b6040516020818303038152906040529250505092915050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610955600033610921565b6109715760405162461bcd60e51b8152600401610687906115b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61099e600033610921565b6109ba5760405162461bcd60e51b8152600401610687906115b4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6109e7600033610921565b610a035760405162461bcd60e51b8152600401610687906115b4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082815260208190526040902060010154610a4081610c5e565b6106168383610cef565b610a986040518060c00160405280600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b03168152602001600060ff168152602001606081525090565b60408201516001600160a01b031615610b3057604082810151835191516323b872dd60e01b815233600482015230602482015260448101929092526001600160a01b0316906323b872dd906064016020604051808303816000875af1158015610b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b299190611348565b5090919050565b6003546001600160a01b0316604080840182905283518151630d0e30db60e41b8152915163d0e30db09260048082019260009290919082900301818588803b158015610b7b57600080fd5b505af1158015610b8f573d6000803e3d6000fd5b509495945050505050565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820183905283169063a9059cbb906044015b6020604051808303816000875af1158015610bea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0e9190611348565b50505050565b6001600160a01b038216610b9a5760035460405163a9059cbb60e01b81526001600160a01b038581166004830152602482018490529091169250829063a9059cbb90604401610bcb565b610c688133610d54565b50565b610c758282610921565b61069a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610cab3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610cf98282610921565b1561069a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610d5e8282610921565b61069a57610d6b81610dad565b610d76836020610dbf565b604051602001610d879291906115d8565b60408051601f198184030181529082905262461bcd60e51b825261068791600401611318565b60606103e26001600160a01b03831660145b60606000610dce83600261164d565b610dd9906002611664565b67ffffffffffffffff811115610df157610df1610f8c565b6040519080825280601f01601f191660200182016040528015610e1b576020820181803683370190505b509050600360fc1b81600081518110610e3657610e36611677565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e6557610e65611677565b60200101906001600160f81b031916908160001a9053506000610e8984600261164d565b610e94906001611664565b90505b6001811115610f0c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ec857610ec8611677565b1a60f81b828281518110610ede57610ede611677565b60200101906001600160f81b031916908160001a90535060049490941c93610f058161168d565b9050610e97565b508315610f5b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610687565b9392505050565b600060208284031215610f7457600080fd5b81356001600160e01b031981168114610f5b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715610fc557610fc5610f8c565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610ff457610ff4610f8c565b604052919050565b6001600160a01b0381168114610c6857600080fd5b60ff81168114610c6857600080fd5b600067ffffffffffffffff82111561103a5761103a610f8c565b50601f01601f191660200190565b600082601f83011261105957600080fd5b813561106c61106782611020565b610fcb565b81815284602083860101111561108157600080fd5b816020850160208301376000918101602001919091529392505050565b600060c082840312156110b057600080fd5b6110b8610fa2565b9050813581526020820135602082015260408201356110d681610ffc565b604082015260608201356110e981610ffc565b606082015260808201356110fc81611011565b608082015260a082013567ffffffffffffffff81111561111b57600080fd5b61112784828501611048565b60a08301525092915050565b60008060006060848603121561114857600080fd5b833567ffffffffffffffff81111561115f57600080fd5b61116b8682870161109e565b935050602084013561117c81610ffc565b9150604084013561118c81610ffc565b809150509250925092565b6000602082840312156111a957600080fd5b5035919050565b600080604083850312156111c357600080fd5b8235915060208301356111d581610ffc565b809150509250929050565b600080604083850312156111f357600080fd5b823567ffffffffffffffff81111561120a57600080fd5b6112168582860161109e565b92505060208301356111d581610ffc565b60006020828403121561123957600080fd5b813567ffffffffffffffff81111561125057600080fd5b61125c84828501611048565b949350505050565b6000806040838503121561127757600080fd5b823567ffffffffffffffff8082111561128f57600080fd5b61129b8683870161109e565b935060208501359150808211156112b157600080fd5b506112be85828601611048565b9150509250929050565b60005b838110156112e35781810151838201526020016112cb565b50506000910152565b600081518084526113048160208601602086016112c8565b601f01601f19169290920160200192915050565b602081526000610f5b60208301846112ec565b60006020828403121561133d57600080fd5b8135610f5b81610ffc565b60006020828403121561135a57600080fd5b81518015158114610f5b57600080fd5b600081516080845261137f60808501826112ec565b6020848101516001600160a01b0316908601526040808501519086015260609384015193909401929092525090919050565b602081526000610f5b602083018461136a565b6000602082840312156113d657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103e2576103e26113dd565b600082601f83011261141757600080fd5b815161142561106782611020565b81815284602083860101111561143a57600080fd5b61125c8260208301602087016112c8565b805161145681610ffc565b919050565b60008060006060848603121561147057600080fd5b835167ffffffffffffffff8082111561148857600080fd5b9085019060c0828803121561149c57600080fd5b6114a4610fa2565b825181526020830151602082015260408301516114c081610ffc565b604082015260608301516114d381610ffc565b606082015260808301516114e681611011565b608082015260a0830151828111156114fd57600080fd5b61150989828601611406565b60a08301525094506115209150506020850161144b565b915061152e6040850161144b565b90509250925092565b6060815283516060820152602084015160808201526000604085015160018060a01b0380821660a08501528060608801511660c085015260ff60808801511660e085015260a0870151915060c06101008501526115986101208501836112ec565b9250808616602085015280851660408501525050949350505050565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516116108160178501602088016112c8565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116418160288401602088016112c8565b01602801949350505050565b80820281158282048414176103e2576103e26113dd565b808201808211156103e2576103e26113dd565b634e487b7160e01b600052603260045260246000fd5b60008161169c5761169c6113dd565b50600019019056fea2646970667358221220e89be2e8837eff61ab14e1e87d6ab35b5362baa7950ef6a160979538057208fb64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061010c5760003560e01c8063627dd56a1161009a578063a61a11b911610061578063a61a11b91461031c578063b1d456bf14610331578063c0d7865514610351578063c1aa293814610371578063d547741f1461039157005b8063627dd56a1461027a57806376313f301461029a5780639052be61146102c757806391d14854146102e7578063a217fddf1461030757005b80632f2ff15d116100de5780632f2ff15d146101cd57806336568abe146101ed57806337099e541461020d57806350e70d48146102205780635d1ca6311461025857005b806301ffc9a7146101155780630abc2a841461014a5780630c68a6091461016b578063248a9ca31461019d57005b3661011357005b005b34801561012157600080fd5b50610135610130366004610f62565b6103b1565b60405190151581526020015b60405180910390f35b61015d610158366004611133565b6103e8565b604051908152602001610141565b61017e610179366004611133565b610575565b604080516001600160a01b039093168352602083019190915201610141565b3480156101a957600080fd5b5061015d6101b8366004611197565b60009081526020819052604090206001015490565b3480156101d957600080fd5b506101136101e83660046111b0565b6105f1565b3480156101f957600080fd5b506101136102083660046111b0565b61061b565b61015d61021b3660046111e0565b61069e565b34801561022c57600080fd5b50600354610240906001600160a01b031681565b6040516001600160a01b039091168152602001610141565b34801561026457600080fd5b5060005b60405160ff9091168152602001610141565b34801561028657600080fd5b5061017e610295366004611227565b610808565b3480156102a657600080fd5b506102ba6102b5366004611264565b6108d5565b6040516101419190611318565b3480156102d357600080fd5b50600254610240906001600160a01b031681565b3480156102f357600080fd5b506101356103023660046111b0565b610921565b34801561031357600080fd5b5061015d600081565b34801561032857600080fd5b50610268600081565b34801561033d57600080fd5b5061011361034c36600461132b565b61094a565b34801561035d57600080fd5b5061011361036c36600461132b565b610993565b34801561037d57600080fd5b5061011361038c36600461132b565b6109dc565b34801561039d57600080fd5b506101136103ac3660046111b0565b610a25565b60006001600160e01b03198216637965db0b60e01b14806103e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002546000906001600160a01b03166104145760405163179ce99f60e01b815260040160405180910390fd5b61041d84610a4a565b6040805160808101825260a08301518152306020808301919091528301518183015282516060820152828201516002548451935163095ea7b360e01b81526001600160a01b03918216600482015260248101949094529397509092169063095ea7b3906044016020604051808303816000875af11580156104a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c69190611348565b506002546040516304dc09a360e11b81526001600160a01b03909116906309b81346906104f79084906004016113b1565b6020604051808303816000875af1158015610516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053a91906113c4565b915061055a83866040015184846060015161055591906113f3565b610b9a565b61056d8486606001518760200151610c14565b509392505050565b60008061058185610a4a565b9450600160ff16856080015160ff16036105b2576105b28386604001518760200151886000015161055591906113f3565b608085015160009060ff166001146105cb5785516105d1565b85602001515b90506105e285876060015183610c14565b60609590950151959350505050565b60008281526020819052604090206001015461060c81610c5e565b6106168383610c6b565b505050565b6001600160a01b03811633146106905760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61069a8282610cef565b5050565b6002546000906001600160a01b03166106ca5760405163179ce99f60e01b815260040160405180910390fd5b6106d383610a4a565b6040805160808101825260a08301518152306020808301919091528351828401528301516060820152828201516002548451935163095ea7b360e01b81526001600160a01b03918216600482015260248101949094529396509092169063095ea7b3906044016020604051808303816000875af1158015610758573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077c9190611348565b5060025460405163b858183f60e01b81526001600160a01b039091169063b858183f906107ad9084906004016113b1565b6020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f091906113c4565b915061080183856060015184610c14565b5092915050565b60015460009081906001600160a01b031633146108525760405162461bcd60e51b815260206004820152600860248201526727b7363c903aba3160c11b6044820152606401610687565b60008060008580602001905181019061086b919061145b565b925092509250826060015194508260a001515160000361089c57610890838383610575565b94509450505050915091565b608083015160ff166108b9576108b2838361069e565b93506108cd565b6108c48383836103e8565b50826020015193505b505050915091565b6060600080838060200190518101906108ee919061145b565b925092505084828260405160200161090893929190611537565b6040516020818303038152906040529250505092915050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610955600033610921565b6109715760405162461bcd60e51b8152600401610687906115b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61099e600033610921565b6109ba5760405162461bcd60e51b8152600401610687906115b4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6109e7600033610921565b610a035760405162461bcd60e51b8152600401610687906115b4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082815260208190526040902060010154610a4081610c5e565b6106168383610cef565b610a986040518060c00160405280600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b03168152602001600060ff168152602001606081525090565b60408201516001600160a01b031615610b3057604082810151835191516323b872dd60e01b815233600482015230602482015260448101929092526001600160a01b0316906323b872dd906064016020604051808303816000875af1158015610b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b299190611348565b5090919050565b6003546001600160a01b0316604080840182905283518151630d0e30db60e41b8152915163d0e30db09260048082019260009290919082900301818588803b158015610b7b57600080fd5b505af1158015610b8f573d6000803e3d6000fd5b509495945050505050565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820183905283169063a9059cbb906044015b6020604051808303816000875af1158015610bea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0e9190611348565b50505050565b6001600160a01b038216610b9a5760035460405163a9059cbb60e01b81526001600160a01b038581166004830152602482018490529091169250829063a9059cbb90604401610bcb565b610c688133610d54565b50565b610c758282610921565b61069a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610cab3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610cf98282610921565b1561069a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610d5e8282610921565b61069a57610d6b81610dad565b610d76836020610dbf565b604051602001610d879291906115d8565b60408051601f198184030181529082905262461bcd60e51b825261068791600401611318565b60606103e26001600160a01b03831660145b60606000610dce83600261164d565b610dd9906002611664565b67ffffffffffffffff811115610df157610df1610f8c565b6040519080825280601f01601f191660200182016040528015610e1b576020820181803683370190505b509050600360fc1b81600081518110610e3657610e36611677565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e6557610e65611677565b60200101906001600160f81b031916908160001a9053506000610e8984600261164d565b610e94906001611664565b90505b6001811115610f0c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ec857610ec8611677565b1a60f81b828281518110610ede57610ede611677565b60200101906001600160f81b031916908160001a90535060049490941c93610f058161168d565b9050610e97565b508315610f5b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610687565b9392505050565b600060208284031215610f7457600080fd5b81356001600160e01b031981168114610f5b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715610fc557610fc5610f8c565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610ff457610ff4610f8c565b604052919050565b6001600160a01b0381168114610c6857600080fd5b60ff81168114610c6857600080fd5b600067ffffffffffffffff82111561103a5761103a610f8c565b50601f01601f191660200190565b600082601f83011261105957600080fd5b813561106c61106782611020565b610fcb565b81815284602083860101111561108157600080fd5b816020850160208301376000918101602001919091529392505050565b600060c082840312156110b057600080fd5b6110b8610fa2565b9050813581526020820135602082015260408201356110d681610ffc565b604082015260608201356110e981610ffc565b606082015260808201356110fc81611011565b608082015260a082013567ffffffffffffffff81111561111b57600080fd5b61112784828501611048565b60a08301525092915050565b60008060006060848603121561114857600080fd5b833567ffffffffffffffff81111561115f57600080fd5b61116b8682870161109e565b935050602084013561117c81610ffc565b9150604084013561118c81610ffc565b809150509250925092565b6000602082840312156111a957600080fd5b5035919050565b600080604083850312156111c357600080fd5b8235915060208301356111d581610ffc565b809150509250929050565b600080604083850312156111f357600080fd5b823567ffffffffffffffff81111561120a57600080fd5b6112168582860161109e565b92505060208301356111d581610ffc565b60006020828403121561123957600080fd5b813567ffffffffffffffff81111561125057600080fd5b61125c84828501611048565b949350505050565b6000806040838503121561127757600080fd5b823567ffffffffffffffff8082111561128f57600080fd5b61129b8683870161109e565b935060208501359150808211156112b157600080fd5b506112be85828601611048565b9150509250929050565b60005b838110156112e35781810151838201526020016112cb565b50506000910152565b600081518084526113048160208601602086016112c8565b601f01601f19169290920160200192915050565b602081526000610f5b60208301846112ec565b60006020828403121561133d57600080fd5b8135610f5b81610ffc565b60006020828403121561135a57600080fd5b81518015158114610f5b57600080fd5b600081516080845261137f60808501826112ec565b6020848101516001600160a01b0316908601526040808501519086015260609384015193909401929092525090919050565b602081526000610f5b602083018461136a565b6000602082840312156113d657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103e2576103e26113dd565b600082601f83011261141757600080fd5b815161142561106782611020565b81815284602083860101111561143a57600080fd5b61125c8260208301602087016112c8565b805161145681610ffc565b919050565b60008060006060848603121561147057600080fd5b835167ffffffffffffffff8082111561148857600080fd5b9085019060c0828803121561149c57600080fd5b6114a4610fa2565b825181526020830151602082015260408301516114c081610ffc565b604082015260608301516114d381610ffc565b606082015260808301516114e681611011565b608082015260a0830151828111156114fd57600080fd5b61150989828601611406565b60a08301525094506115209150506020850161144b565b915061152e6040850161144b565b90509250925092565b6060815283516060820152602084015160808201526000604085015160018060a01b0380821660a08501528060608801511660c085015260ff60808801511660e085015260a0870151915060c06101008501526115986101208501836112ec565b9250808616602085015280851660408501525050949350505050565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516116108160178501602088016112c8565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116418160288401602088016112c8565b01602801949350505050565b80820281158282048414176103e2576103e26113dd565b808201808211156103e2576103e26113dd565b634e487b7160e01b600052603260045260246000fd5b60008161169c5761169c6113dd565b50600019019056fea2646970667358221220e89be2e8837eff61ab14e1e87d6ab35b5362baa7950ef6a160979538057208fb64736f6c63430008140033
Loading...
Loading
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.