ETH Price: $2,778.41 (+5.69%)

Transaction Decoder

Block:
17090883 at Apr-20-2023 11:20:47 PM +UTC
Transaction Fee:
0.007456374886334854 ETH $20.72
Gas Used:
157,046 Gas / 47.478922649 Gwei

Emitted Events:

519 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=80000000000000000 )
520 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=80000000000000000 )
521 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=80000000000000000 )
522 YAKISOBA.Transfer( from=UniswapV2Pair, to=YAKISOBA, value=2239245402838280000747913 )
523 YAKISOBA.Transfer( from=UniswapV2Pair, to=[Sender] 0xd00c474eace99950752f4ef7c8ac70b1a053a84a, value=35081511311133053345050649 )
524 UniswapV2Pair.Sync( reserve0=20685679083318584282038712945, reserve1=44288368451110221729 )
525 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=80000000000000000, amount0Out=37320756713971333345798562, amount1Out=0, to=[Sender] 0xd00c474eace99950752f4ef7c8ac70b1a053a84a )

Account State Difference:

  Address   Before After State Difference Code
0x4D9F4c34...F882CbB10
(MEV Builder: 0xBaF...e19)
10.334281417566805363 Eth10.334296179890805363 Eth0.000014762324
0xC02aaA39...83C756Cc2 3,705,351.597403907825714589 Eth3,705,351.677403907825714589 Eth0.08
0xD00c474E...1a053A84a
0.103683926657463457 Eth
Nonce: 307
0.016227551771128603 Eth
Nonce: 308
0.087456374886334854
0xdba1D347...3651Ad323

Execution Trace

ETH 0.08 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHDeTfggAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHDeTfggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzZ9d1nuv9McwoyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABNn0w0p+3owplygtp0Qyb/iCy7EA==], deadline=1682034623 )
  • ETH 0.08 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=80000000000000000 ) => ( True )
  • WETH9.transfer( dst=0xdba1D3478293e75887047bf2B05c2323651Ad323, wad=80000000000000000 ) => ( True )
  • YAKISOBA.balanceOf( account=0xD00c474EACe99950752f4eF7c8aC70B1a053A84a ) => ( 4930973650287648370705170709 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xdba1D3478293e75887047bf2B05c2323651Ad323 ) => ( 44288368451110221729 )
  • UniswapV2Pair.swap( amount0Out=37320756713971333345798562, amount1Out=0, to=0xD00c474EACe99950752f4eF7c8aC70B1a053A84a, data=0x )
    • YAKISOBA.transfer( recipient=0xD00c474EACe99950752f4eF7c8aC70B1a053A84a, amount=37320756713971333345798562 ) => ( True )
    • YAKISOBA.balanceOf( account=0xdba1D3478293e75887047bf2B05c2323651Ad323 ) => ( 20685679083318584282038712945 )
    • WETH9.balanceOf( 0xdba1D3478293e75887047bf2B05c2323651Ad323 ) => ( 44288368451110221729 )
    • YAKISOBA.balanceOf( account=0xD00c474EACe99950752f4eF7c8aC70B1a053A84a ) => ( 4966055161598781424050221358 )
      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;
      import {Dispatcher} from './base/Dispatcher.sol';
      import {RewardsCollector} from './base/RewardsCollector.sol';
      import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
      import {Constants} from './libraries/Constants.sol';
      import {Commands} from './libraries/Commands.sol';
      import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
      import {ReentrancyLock} from './base/ReentrancyLock.sol';
      contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {
      modifier checkDeadline(uint256 deadline) {
      if (block.timestamp > deadline) revert TransactionDeadlinePassed();
      _;
      }
      constructor(RouterParameters memory params) RouterImmutables(params) {}
      /// @inheritdoc IUniversalRouter
      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: YAKISOBA
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      //Official token contract for Yakisoba
      //Follow us on twitter: https://twitter.com/yakisobatoken
      //SPDX-License-Identifier: MIT
      pragma solidity ^0.8.9;
      interface ERC20 {
      function totalSupply() external view returns (uint256);
      function decimals() external view returns (uint8);
      function symbol() external view returns (string memory);
      function name() external view returns (string memory);
      function getOwner() external view returns (address);
      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);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX