ETH Price: $2,507.53 (-1.16%)

Transaction Decoder

Block:
22539405 at May-22-2025 03:47:47 PM +UTC
Transaction Fee:
0.001311286868057738 ETH $3.29
Gas Used:
187,499 Gas / 6.993567262 Gwei

Emitted Events:

130 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=53176888935849312 )
131 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=53176888935849312 )
132 Tweet.Transfer( from=UniswapV2Pair, to=[Receiver] UniversalRouter, value=190115685499085610 )
133 UniswapV2Pair.Sync( reserve0=11351723582704845059, reserve1=40515616393576741997 )
134 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=53176888935849312, amount1In=0, amount0Out=0, amount1Out=190115685499085610, to=[Receiver] UniversalRouter )
135 Tweet.Transfer( from=[Receiver] UniversalRouter, to=FeeCollector, value=475289213747714 )
136 Tweet.Transfer( from=[Receiver] UniversalRouter, to=[Sender] 0x95c256cdddaf343ce0a8931f30f4abbc7d14a64e, value=189640396285337896 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
6.899684449115149661 Eth6.900059447115149661 Eth0.000374998
0x95c256cD...c7D14a64E
0.068176888935849312 Eth
Nonce: 75
0.013688713131942262 Eth
Nonce: 76
0.05448817580390705
0xC02aaA39...83C756Cc2 2,818,501.475106255226536372 Eth2,818,501.528283144162385684 Eth0.053176888935849312
0xe6d07E1a...b698DD4FE
0xfF43A1d5...1CD569Ed0

Execution Trace

ETH 0.053176888935849312 UniversalRouter.execute( commands=0x0B080604, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOwZR0gdYA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOwZR0gdYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgEPa/7FsHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADm0H4afJ+PmCaqgub69/6raY3U/g==, AAAAAAAAAAAAAAAA5tB+Gnyfj5gmqoLm+vf+q2mN1P4AAAAAAAAAAAAAAAAAAAD+4ToQOhDVk7muBrPgXy5+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ, AAAAAAAAAAAAAAAA5tB+Gnyfj5gmqoLm+vf+q2mN1P4AAAAAAAAAAAAAAACVwlbN3a80POCokx8w9Ku8fRSmTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKeYtdprvb1], deadline=1747930648 )
  • ETH 0.053176888935849312 WETH9.CALL( )
  • WETH9.transfer( dst=0xfF43A1d58E582Fd92BCA23Ec41711531CD569Ed0, wad=53176888935849312 ) => ( True )
  • Tweet.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xfF43A1d58E582Fd92BCA23Ec41711531CD569Ed0 ) => ( 11351723582704845059 )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=190115685499085610, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
    • Tweet.transfer( recipient=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, amount=190115685499085610 ) => ( True )
    • WETH9.balanceOf( 0xfF43A1d58E582Fd92BCA23Ec41711531CD569Ed0 ) => ( 11351723582704845059 )
    • Tweet.balanceOf( account=0xfF43A1d58E582Fd92BCA23Ec41711531CD569Ed0 ) => ( 40515616393576741997 )
    • Tweet.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 190115685499085610 )
    • Tweet.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 190115685499085610 )
    • Tweet.transfer( recipient=0x000000fee13a103A10D593b9AE06b3e05F2E7E1c, amount=475289213747714 ) => ( True )
    • Tweet.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 189640396285337896 )
    • Tweet.transfer( recipient=0x95c256cDdDAF343ce0a8931F30f4abbc7D14a64E, amount=189640396285337896 ) => ( True )
      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: 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 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: Tweet
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: Unlicensed
      /**
      https://t.me/ProjectRocketERC20
      */
      pragma solidity 0.8.24;
      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);
      function approve(address spender, uint256 amount) external returns (bool);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 5 of 5: FeeCollector
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: GPL-2.0-or-later
      pragma solidity ^0.8.0;
      import {Owned} from "solmate/auth/Owned.sol";
      import {ERC20} from "solmate/tokens/ERC20.sol";
      import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";
      import {IFeeCollector} from "./interfaces/IFeeCollector.sol";
      import {IPermit2} from "./external/IPermit2.sol";
      /// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.
      contract FeeCollector is Owned, IFeeCollector {
      using SafeTransferLib for ERC20;
      address public universalRouter;
      ERC20 public immutable feeToken;
      IPermit2 public immutable permit2;
      uint256 public constant MAX_APPROVAL_AMOUNT = type(uint256).max;
      uint160 public constant MAX_PERMIT2_APPROVAL_AMOUNT = type(uint160).max;
      uint48 public constant MAX_PERMIT2_DEADLINE = type(uint48).max;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX