ETH Price: $2,553.43 (-3.32%)

Transaction Decoder

Block:
19605089 at Apr-07-2024 04:45:35 PM +UTC
Transaction Fee:
0.00253161001432791 ETH $6.46
Gas Used:
109,881 Gas / 23.03956111 Gwei

Emitted Events:

344 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=37300000000000000 )
345 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=37300000000000000 )
346 GagaPepe.Transfer( from=UniswapV2Pair, to=[Sender] 0x1dcfff86aaffcfeaafb0da0e6135587d4d713c27, value=15266629986059016791006926624 )
347 UniswapV2Pair.Sync( reserve0=14840643731551734227374123230941, reserve1=36187736845413275928 )
348 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=37300000000000000, amount0Out=15266629986059016791006926624, amount1Out=0, to=[Sender] 0x1dcfff86aaffcfeaafb0da0e6135587d4d713c27 )

Account State Difference:

  Address   Before After State Difference Code
0x1DcFfF86...d4d713c27
0.042202459297205975 Eth
Nonce: 1
0.002370849282878065 Eth
Nonce: 2
0.03983161001432791
0x205eca96...33B53B0C7
(Titan Builder)
11.951484166066710659 Eth11.951493470899671659 Eth0.000009304832961
0xB29Dc170...644C6dCA9
0xC02aaA39...83C756Cc2 3,016,296.526120182270064662 Eth3,016,296.563420182270064662 Eth0.0373

Execution Trace

ETH 0.0373 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhIQnAh9AAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhIQnAh9AAAAAAAAAAAAAAAAAAAAAAAAAAAAALvrqJBFHx92NvszhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACyncFwP6zSlnu4reLjkjhWRMbcqQ==], deadline=1712508923 )
  • ETH 0.0373 WETH9.CALL( )
  • WETH9.transfer( dst=0x205eca9671Aa698aA7C0D0aF1cF6a2633B53B0C7, wad=37300000000000000 ) => ( True )
  • GagaPepe.balanceOf( account=0x1DcFfF86aaFfcfEAafB0Da0e6135587d4d713c27 ) => ( 11654784995018369198543374454 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x205eca9671Aa698aA7C0D0aF1cF6a2633B53B0C7 ) => ( 36187736845413275928 )
  • UniswapV2Pair.swap( amount0Out=15266629986059016791006926624, amount1Out=0, to=0x1DcFfF86aaFfcfEAafB0Da0e6135587d4d713c27, data=0x )
    • GagaPepe.transfer( to=0x1DcFfF86aaFfcfEAafB0Da0e6135587d4d713c27, amount=15266629986059016791006926624 ) => ( True )
    • GagaPepe.balanceOf( account=0x205eca9671Aa698aA7C0D0aF1cF6a2633B53B0C7 ) => ( 14840643731551734227374123230941 )
    • WETH9.balanceOf( 0x205eca9671Aa698aA7C0D0aF1cF6a2633B53B0C7 ) => ( 36187736845413275928 )
    • GagaPepe.balanceOf( account=0x1DcFfF86aaFfcfEAafB0Da0e6135587d4d713c27 ) => ( 26921414981077385989550301078 )
      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;
      // 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 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: GagaPepe
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      // File: @openzeppelin/contracts@4.9.2/utils/Counters.sol
      // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
      pragma solidity ^0.8.0;
      /**
      * @title Counters
      * @author Matt Condon (@shrugs)
      * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
      * of elements in a mapping, issuing ERC721 ids, or counting request ids.
      *
      * Include with `using Counters for Counters.Counter;`
      */
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX