ETH Price: $2,489.37 (-10.35%)

Transaction Decoder

Block:
21017289 at Oct-21-2024 11:37:35 PM +UTC
Transaction Fee:
0.001186619228392638 ETH $2.95
Gas Used:
201,133 Gas / 5.899674486 Gwei

Emitted Events:

105 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=43311119725786143 )
106 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=43311119725786143 )
107 SkullyToken.Transfer( from=UniswapV2Pair, to=[Receiver] UniversalRouter, value=1138730634815195752 )
108 UniswapV2Pair.Sync( reserve0=33610803211040982738, reserve1=1317848146318482930 )
109 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=43311119725786143, amount0Out=1138730634815195752, amount1Out=0, to=[Receiver] UniversalRouter )
110 SkullyToken.Transfer( from=[Receiver] UniversalRouter, to=FeeCollector, value=2846826587037989 )
111 SkullyToken.Transfer( from=[Receiver] UniversalRouter, to=[Sender] 0x7d1e77766ee72262b4536cb80f0d271b09b6e6b0, value=1135883808228157763 )

Account State Difference:

  Address   Before After State Difference Code
0x3Fd6A8BD...EDF80A8C8
(Coinbase: MEV Builder)
16.377253195052836371 Eth16.377454328052836371 Eth0.000201133
0x7508B7d1...0D86f3F4a
0x7d1E7776...B09b6e6b0
0.058311119725786143 Eth
Nonce: 28
0.013813380771607362 Eth
Nonce: 29
0.044497738954178781
0xC02aaA39...83C756Cc2 3,015,479.697686883078323906 Eth3,015,479.740998002804110049 Eth0.043311119725786143

Execution Trace

ETH 0.043311119725786143 UniversalRouter.execute( commands=0x0B080604, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmd874hR0Hw==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmd874hR0HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAB1CLfRfmNnCVxRbq2fxAQQ2G8/Sg==, AAAAAAAAAAAAAAAAdQi30X5jZwlcUW6tn8QEENhvP0oAAAAAAAAAAAAAAAAAAAD+4ToQOhDVk7muBrPgXy5+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ, AAAAAAAAAAAAAAAAdQi30X5jZwlcUW6tn8QEENhvP0oAAAAAAAAAAAAAAAB9Hnd2buciYrRTbLgPDScbCbbmsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+vZJo29mOj], deadline=1729550309084 )
  • ETH 0.043311119725786143 WETH9.CALL( )
  • WETH9.transfer( dst=0x3Fd6A8BD6B351000f1781F8567a7165EDF80A8C8, wad=43311119725786143 ) => ( True )
  • SkullyToken.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x3Fd6A8BD6B351000f1781F8567a7165EDF80A8C8 ) => ( 1317848146318482930 )
  • UniswapV2Pair.swap( amount0Out=1138730634815195752, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
    • SkullyToken.transfer( recipient=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, amount=1138730634815195752 ) => ( True )
    • SkullyToken.balanceOf( account=0x3Fd6A8BD6B351000f1781F8567a7165EDF80A8C8 ) => ( 33610803211040982738 )
    • WETH9.balanceOf( 0x3Fd6A8BD6B351000f1781F8567a7165EDF80A8C8 ) => ( 1317848146318482930 )
    • SkullyToken.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1138730634815195752 )
    • SkullyToken.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1138730634815195752 )
    • SkullyToken.transfer( recipient=0x000000fee13a103A10D593b9AE06b3e05F2E7E1c, amount=2846826587037989 ) => ( True )
    • SkullyToken.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1135883808228157763 )
    • SkullyToken.transfer( recipient=0x7d1E77766EE72262b4536cb80F0D271B09b6e6b0, amount=1135883808228157763 ) => ( 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: SkullyToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /*
      https://x.com/skullyoneth
      https://t.me/skullyonerc
      https://doublemouthskully.xyz
      */
      // SPDX-License-Identifier: UNLICENSE
      pragma solidity 0.8.23;
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      return msg.sender;
      }
      }
      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