ETH Price: $2,574.46 (-2.65%)

Transaction Decoder

Block:
22543013 at May-23-2025 03:54:11 AM +UTC
Transaction Fee:
0.002152154392185336 ETH $5.54
Gas Used:
188,034 Gas / 11.445559804 Gwei

Emitted Events:

254 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=34650000000000000 )
255 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=34650000000000000 )
256 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=34650000000000000 )
257 GM.Transfer( from=UniswapV2Pair, to=[Sender] 0x56e277b4b367d4907dff7ca5bb463f211a7f6948, value=646323106713344 )
258 UniswapV2Pair.Sync( reserve0=2443489881905100161, reserve1=45067059071816012 )
259 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=34650000000000000, amount1In=0, amount0Out=0, amount1Out=646323106713344, to=[Sender] 0x56e277b4b367d4907dff7ca5bb463f211a7f6948 )

Account State Difference:

  Address   Before After State Difference Code
0x56E277b4...11A7F6948
0.731243867076069479 Eth
Nonce: 562
0.694441712683884143 Eth
Nonce: 563
0.036802154392185336
(beaverbuild)
14.76855165723603524 Eth14.77043199723603524 Eth0.00188034
0xC02aaA39...83C756Cc2 2,786,663.935875199786980647 Eth2,786,663.970525199786980647 Eth0.03465
0xDA48aFd9...F25Ac8BEa
0xF4225358...fDe97d989

Execution Trace

ETH 0.03465 UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAexn9zXegAA==, AAAAAAAAAAAAAAAAVuJ3tLNn1JB9/3ylu0Y/IRp/aUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAexn9zXegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1kMPWT8zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADaSK/ZsOmsdcAKA7fTYPg/JayL6g==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747972564 )
  • ETH 0.03465 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=34650000000000000 ) => ( True )
  • WETH9.transfer( dst=0xF422535812cb815fcB7c809042E7359fDe97d989, wad=34650000000000000 ) => ( True )
  • GM.balanceOf( account=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948 ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xF422535812cb815fcB7c809042E7359fDe97d989 ) => ( 2443489881905100161 )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=646323106713344, to=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948, data=0x )
    • GM.transfer( recipient=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948, amount=646323106713344 ) => ( True )
    • WETH9.balanceOf( 0xF422535812cb815fcB7c809042E7359fDe97d989 ) => ( 2443489881905100161 )
    • GM.balanceOf( account=0xF422535812cb815fcB7c809042E7359fDe97d989 ) => ( 45067059071816012 )
    • GM.balanceOf( account=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948 ) => ( 646323106713344 )
    • WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
      File 1 of 4: 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;
      import {Dispatcher} from './base/Dispatcher.sol';
      import {RewardsCollector} from './base/RewardsCollector.sol';
      import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
      import {Constants} from './libraries/Constants.sol';
      import {Commands} from './libraries/Commands.sol';
      import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
      import {ReentrancyLock} from './base/ReentrancyLock.sol';
      contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {
      modifier checkDeadline(uint256 deadline) {
      if (block.timestamp > deadline) revert TransactionDeadlinePassed();
      _;
      }
      constructor(RouterParameters memory params) RouterImmutables(params) {}
      /// @inheritdoc IUniversalRouter
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 4: 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 3 of 4: 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 4: GM
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: Unlicensed
      pragma solidity ^0.8.14;
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      return msg.sender;
      }
      }
      interface IERC20 {
      function totalSupply() external view returns (uint256);
      function balanceOf(address account) external view returns (uint256);
      function transfer(address recipient, uint256 amount) external returns (bool);
      function allowance(address owner, address spender) external view returns (uint256);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX