ETH Price: $4,724.88 (+3.27%)

Transaction Decoder

Block:
19965349 at May-28-2024 02:21:59 AM +UTC
Transaction Fee:
0.002133924641021825 ETH $10.08
Gas Used:
192,965 Gas / 11.058609805 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.998503213806360963 Eth11.998522124376360963 Eth0.00001891057
0x4a2c0fCc...822e7D15F
0.089110598364724841 Eth
Nonce: 9
0.086976673723703016 Eth
Nonce: 10
0.002133924641021825

Execution Trace

ETH 0.0001 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS/9YsYyd5/fhjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADXioi9VBzErfYxW995f5Lo5bx7tQ==], deadline=2576980377 )
  • ETH 0.0001 WETH9.CALL( )
  • WETH9.transfer( dst=0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1, wad=100000000000000 ) => ( True )
  • 0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1 ) => ( 1260934841003701597 )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=62754478029465638787094, to=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F, data=0x )
    • 0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.a9059cbb( )
    • WETH9.balanceOf( 0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1 ) => ( 1260934841003701597 )
    • 0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
    • 0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
      File 1 of 3: 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 3: 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 3: 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