ETH Price: $3,377.55 (+9.61%)
Gas: 5.71 Gwei

Transaction Decoder

Block:
19531416 at Mar-28-2024 08:27:35 AM +UTC
Transaction Fee:
0.003989599760814504 ETH $13.48
Gas Used:
177,402 Gas / 22.489034852 Gwei

Emitted Events:

532 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=2000000000000000000 )
533 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=2000000000000000000 )
534 DeepFakeAI.Transfer( from=UniswapV2Pair, to=DeepFakeAI, value=18786352801704055700762 )
535 DeepFakeAI.Transfer( from=UniswapV2Pair, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, value=450872467240897336818301 )
536 UniswapV2Pair.Sync( reserve0=51788156847183568817475590, reserve1=221873619628642583243 )
537 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=2000000000000000000, amount0Out=469658820042601392519063, amount1Out=0, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359 )

Account State Difference:

  Address   Before After State Difference Code
0x5AEf5bba...57b87c62c
0x78359500...cA8f4d9aB
(beaverbuild)
17.016870783495001216 Eth17.016870960897001216 Eth0.000000177402
0xa8ab8Dc3...88AC50359
6.694604453079537188 Eth
Nonce: 156
4.690614853318722684 Eth
Nonce: 157
2.003989599760814504
0xC02aaA39...83C756Cc2 2,985,990.275299481343739554 Eth2,985,992.275299481343739554 Eth2

Execution Trace

ETH 2 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwW1nTsgAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwW1nTsgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfSQ8usR89vkq4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABa71u6GeahZEgFvU9ck8hVe4fGLA==], deadline=1711614623 )
  • ETH 2 WETH9.CALL( )
  • WETH9.transfer( dst=0x78359500f08157EAc9ef566040242abcA8f4d9aB, wad=2000000000000000000 ) => ( True )
  • DeepFakeAI.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 221873619628642583243 )
  • UniswapV2Pair.swap( amount0Out=469658820042601392519063, amount1Out=0, to=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, data=0x )
    • DeepFakeAI.transfer( recipient=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, amount=469658820042601392519063 ) => ( True )
    • DeepFakeAI.balanceOf( account=0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 51788156847183568817475590 )
    • WETH9.balanceOf( 0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 221873619628642583243 )
    • DeepFakeAI.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 450872467240897336818301 )
      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: DeepFakeAI
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      * Website: FakeAI.io
      * Telegram: https://t.me/FakeAI
      * Twitter: https://twitter.com/DeepFakeAI_
      */
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.12;
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      return msg.sender;
      }
      function _msgData() internal view virtual returns (bytes calldata) {
      this;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX