ETH Price: $2,545.65 (+1.44%)

Transaction Decoder

Block:
16755437 at Mar-04-2023 01:41:23 PM +UTC
Transaction Fee:
0.003675949995932088 ETH $9.36
Gas Used:
144,123 Gas / 25.505644456 Gwei

Emitted Events:

355 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=60000000000000000 )
356 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=60000000000000000 )
357 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=60000000000000000 )
358 Eggs.Transfer( from=UniswapV2Pair, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=11016431603339497007503468 )
359 UniswapV2Pair.Sync( reserve0=482008344331949156571339034548, reserve1=2617399279735245835303 )
360 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=60000000000000000, amount0Out=11016431603339497007503468, amount1Out=0, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e )

Account State Difference:

  Address   Before After State Difference Code
0x2e516BA5...DE80a82e0
(Lido: Execution Layer Rewards Vault)
9.23915222563472049 Eth9.23922428713472049 Eth0.0000720615
0xC02aaA39...83C756Cc2 4,004,504.88361449394674288 Eth4,004,504.94361449394674288 Eth0.06
0xc54Ba7AA...ba6eCCD8B
0xDfBd4048...B7E09ab6e
0.206450622264134209 Eth
Nonce: 96
0.142774672268202121 Eth
Nonce: 97
0.063675949995932088

Execution Trace

ETH 0.06 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1SmunoYAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1SmunoYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkRNszEQMsk6PDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAuUWulvzt+5H+5mwnq22C96AqC4A==], deadline=1677939047 )
  • ETH 0.06 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=60000000000000000 ) => ( True )
  • WETH9.transfer( dst=0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B, wad=60000000000000000 ) => ( True )
  • Eggs.balanceOf( who=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B ) => ( 2617399279735245835303 )
  • UniswapV2Pair.swap( amount0Out=11016431603339497007503468, amount1Out=0, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, data=0x )
    • Eggs.transfer( to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, value=11016431603339497007503468 ) => ( True )
    • Eggs.balanceOf( who=0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B ) => ( 482008344331949156571339034548 )
    • WETH9.balanceOf( 0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B ) => ( 2617399279735245835303 )
    • Eggs.balanceOf( who=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e ) => ( 11016431603339497007503467 )
      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: Eggs
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
      * @dev Library for managing
      * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
      * types.
      *
      * Sets have the following properties:
      *
      * - Elements are added, removed, and checked for existence in constant time
      * (O(1)).
      * - Elements are enumerated in O(n). No guarantees are made on the ordering.
      *
      * ```
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX