ETH Price: $2,541.05 (-0.50%)

Transaction Decoder

Block:
21925231 at Feb-25-2025 06:47:35 PM +UTC
Transaction Fee:
0.000162079946370199 ETH $0.41
Gas Used:
115,609 Gas / 1.401966511 Gwei

Emitted Events:

405 WETH9.Transfer( src=UniswapV3Pool, dst=[Sender] 0x6c9236e425c98a85bd909f89941e2fa3705a103e, wad=5553316546088262 )
406 OFT.Approval( owner=[Sender] 0x6c9236e425c98a85bd909f89941e2fa3705a103e, spender=Permit2, value=9683302999999998000000000 )
407 OFT.Transfer( from=[Sender] 0x6c9236e425c98a85bd909f89941e2fa3705a103e, to=UniswapV3Pool, value=47000000000000000000 )
408 UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0x6c9236e425c98a85bd909f89941e2fa3705a103e, amount0=-5553316546088262, amount1=47000000000000000000, sqrtPriceX96=7293666837872877364224926474200, liquidity=117088739392060422274, tick=90453 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.742325836041230562 Eth10.742326555272450113 Eth0.000000719231219551
0x6c9236E4...3705A103E
0.492735231634196713 Eth
Nonce: 2700
0.492573151687826514 Eth
Nonce: 2701
0.000162079946370199
0xC02aaA39...83C756Cc2
0xd6E420F6...67A8C34CD
(Uniswap V3: SETH 4)
0xE71bDfE1...c7680c0d4

Execution Trace

UniversalRouter.execute( commands=0x00, inputs=[AAAAAAAAAAAAAAAAbJI25CXJioW9kJ+JlB4vo3BaED4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKMQYr7u1wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR8PLAHaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr5xvf4d9pKE8A7hhc8NldDHaAwNQAC7jAKqo5siP+jQoOXE8n6tkIPHVswgAAAAAAAAAAAAAAAAAAAAAAAAAAAA==] )
  • UniswapV3Pool.swap( recipient=0x6c9236E425c98A85Bd909f89941E2FA3705A103E, zeroForOne=False, amountSpecified=47000000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006C9236E425C98A85BD909F89941E2FA3705A103E000000000000000000000000000000000000000000000000000000000000002BE71BDFE1DF69284F00EE185CF0D95D0C7680C0D4000BB8C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000 ) => ( amount0=-5553316546088262, amount1=47000000000000000000 )
    • WETH9.transfer( dst=0x6c9236E425c98A85Bd909f89941E2FA3705A103E, wad=5553316546088262 ) => ( True )
    • OFT.balanceOf( account=0xd6E420F6B1c4035fFD566963301b92067A8C34CD ) => ( 5787576770644946254630 )
    • UniversalRouter.uniswapV3SwapCallback( amount0Delta=-5553316546088262, amount1Delta=47000000000000000000, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006C9236E425C98A85BD909F89941E2FA3705A103E000000000000000000000000000000000000000000000000000000000000002BE71BDFE1DF69284F00EE185CF0D95D0C7680C0D4000BB8C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000 )
      • Permit2.transferFrom( from=0x6c9236E425c98A85Bd909f89941E2FA3705A103E, to=0xd6E420F6B1c4035fFD566963301b92067A8C34CD, amount=47000000000000000000, token=0xE71bDfE1Df69284f00EE185cf0d95d0c7680c0d4 )
        • OFT.transferFrom( from=0x6c9236E425c98A85Bd909f89941E2FA3705A103E, to=0xd6E420F6B1c4035fFD566963301b92067A8C34CD, amount=47000000000000000000 ) => ( True )
        • OFT.balanceOf( account=0xd6E420F6B1c4035fFD566963301b92067A8C34CD ) => ( 5834576770644946254630 )
          File 1 of 5: UniversalRouter
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: GPL-3.0-or-later
          pragma solidity ^0.8.17;
          // Command implementations
          import {Dispatcher} from './base/Dispatcher.sol';
          import {RewardsCollector} from './base/RewardsCollector.sol';
          import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
          import {Commands} from './libraries/Commands.sol';
          import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
          contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {
          modifier checkDeadline(uint256 deadline) {
          if (block.timestamp > deadline) revert TransactionDeadlinePassed();
          _;
          }
          constructor(RouterParameters memory params) RouterImmutables(params) {}
          /// @inheritdoc IUniversalRouter
          function execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 2 of 5: UniswapV3Pool
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: BUSL-1.1
          pragma solidity =0.7.6;
          import './interfaces/IUniswapV3Pool.sol';
          import './NoDelegateCall.sol';
          import './libraries/LowGasSafeMath.sol';
          import './libraries/SafeCast.sol';
          import './libraries/Tick.sol';
          import './libraries/TickBitmap.sol';
          import './libraries/Position.sol';
          import './libraries/Oracle.sol';
          import './libraries/FullMath.sol';
          import './libraries/FixedPoint128.sol';
          import './libraries/TransferHelper.sol';
          import './libraries/TickMath.sol';
          import './libraries/LiquidityMath.sol';
          import './libraries/SqrtPriceMath.sol';
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 3 of 5: WETH9
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // Copyright (C) 2015, 2016, 2017 Dapphub
          // This program is free software: you can redistribute it and/or modify
          // it under the terms of the GNU General Public License as published by
          // the Free Software Foundation, either version 3 of the License, or
          // (at your option) any later version.
          // This program is distributed in the hope that it will be useful,
          // but WITHOUT ANY WARRANTY; without even the implied warranty of
          // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
          // GNU General Public License for more details.
          // You should have received a copy of the GNU General Public License
          // along with this program. If not, see <http://www.gnu.org/licenses/>.
          pragma solidity ^0.4.18;
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 4 of 5: OFT
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: MIT
          pragma solidity ^0.8.0;
          import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
          import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
          import "./IOFT.sol";
          import "./OFTCore.sol";
          // override decimal() function is needed
          contract OFT is OFTCore, ERC20, IOFT {
          constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {}
          function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) {
          return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId);
          }
          function token() public view virtual override returns (address) {
          return address(this);
          }
          function circulatingSupply() public view virtual override returns (uint) {
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 5 of 5: Permit2
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: AGPL-3.0-only
          pragma solidity >=0.8.0;
          /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
          /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
          /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
          /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
          abstract contract ERC20 {
          /*//////////////////////////////////////////////////////////////
          EVENTS
          //////////////////////////////////////////////////////////////*/
          event Transfer(address indexed from, address indexed to, uint256 amount);
          event Approval(address indexed owner, address indexed spender, uint256 amount);
          /*//////////////////////////////////////////////////////////////
          METADATA STORAGE
          //////////////////////////////////////////////////////////////*/
          string public name;
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX