ETH Price: $2,502.80 (-1.05%)

Transaction Decoder

Block:
22544813 at May-23-2025 09:56:59 AM +UTC
Transaction Fee:
0.000201968928836868 ETH $0.51
Gas Used:
119,508 Gas / 1.690003421 Gwei

Emitted Events:

671 ERC20.Approval( owner=[Sender] 0xfc7a36aa1f0488b6b747ac3b1dde9e5668ebcc2d, spender=Permit2, value=115792089237316195423570985008687907853269984665640522807577594729095626265973 )
672 ERC20.Transfer( from=[Sender] 0xfc7a36aa1f0488b6b747ac3b1dde9e5668ebcc2d, to=UniswapV2Pair, value=21709497900854899010469925 )
673 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniversalRouter, wad=1294949000561815018 )
674 UniswapV2Pair.Sync( reserve0=5064807201805855950, reserve1=106365000167222728971573064 )
675 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=21709497900854899010469925, amount0Out=1294949000561815018, amount1Out=0, to=[Receiver] UniversalRouter )
676 WETH9.Withdrawal( src=[Receiver] UniversalRouter, wad=1294949000561815018 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.296657514388094153 Eth11.296700288357309785 Eth0.000042773969215632
0x703577DA...730f57Eb8
0xC02aaA39...83C756Cc2 2,786,106.100356025041234582 Eth2,786,104.805407024479419564 Eth1.294949000561815018
0xc51B2aE5...b8BF55Fad
0xfc7A36AA...668ebcc2d
3.261841819826505818 Eth
Nonce: 43
4.556588851459483968 Eth
Nonce: 44
1.29474703163297815

Execution Trace

UniversalRouter.execute( commands=0x080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAR9So9SEIJuPSAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAxRsq5f95rzcTQZmqjW8Fq4v1X60AAAAAAAAAAAAAAADAKqo5siP+jQoOXE8n6tkIPHVswg==, AAAAAAAAAAAAAAAA/Ho2qh8EiLa3R6w7Hd6eVmjrzC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747994513 )
  • Permit2.transferFrom( from=0xfc7A36AA1F0488b6b747AC3B1DdE9E5668ebcc2d, to=0x703577DA1B9BE085943EB312e1720A5730f57Eb8, amount=21709497900854899010469925, token=0xc51B2aE5Ff79aF37134199Aa8D6f05ab8BF55Fad )
    • ERC20.transferFrom( sender=0xfc7A36AA1F0488b6b747AC3B1DdE9E5668ebcc2d, recipient=0x703577DA1B9BE085943EB312e1720A5730f57Eb8, amount=21709497900854899010469925 ) => ( True )
    • WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
    • UniswapV2Pair.STATICCALL( )
    • ERC20.balanceOf( account=0x703577DA1B9BE085943EB312e1720A5730f57Eb8 ) => ( 106365000167222728971573064 )
    • UniswapV2Pair.swap( amount0Out=1294949000561815018, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
      • WETH9.transfer( dst=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, wad=1294949000561815018 ) => ( True )
      • WETH9.balanceOf( 0x703577DA1B9BE085943EB312e1720A5730f57Eb8 ) => ( 5064807201805855950 )
      • ERC20.balanceOf( account=0x703577DA1B9BE085943EB312e1720A5730f57Eb8 ) => ( 106365000167222728971573064 )
      • WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1294949000561815018 )
      • WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1294949000561815018 )
      • WETH9.withdraw( wad=1294949000561815018 )
        • ETH 1.294949000561815018 UniversalRouter.CALL( )
        • ETH 1.294949000561815018 0xfc7a36aa1f0488b6b747ac3b1dde9e5668ebcc2d.CALL( )
          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: ERC20
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: MIT
          pragma solidity ^0.8.24;
          abstract contract Context {
          function _msgSender() internal view virtual returns (address) {
          return msg.sender;
          }
          function _msgData() internal view virtual returns (bytes calldata) {
          return msg.data;
          }
          }
          interface IERC20Errors {
          /**
          * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 3 of 5: UniswapV2Pair
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // File: contracts/interfaces/IUniswapV2Pair.sol
          pragma solidity >=0.5.0;
          interface IUniswapV2Pair {
          event Approval(address indexed owner, address indexed spender, uint value);
          event Transfer(address indexed from, address indexed to, uint value);
          function name() external pure returns (string memory);
          function symbol() external pure returns (string memory);
          function decimals() external pure returns (uint8);
          function totalSupply() external view returns (uint);
          function balanceOf(address owner) external view returns (uint);
          function allowance(address owner, address spender) external view returns (uint);
          function approve(address spender, uint value) external returns (bool);
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 4 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 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