ETH Price: $3,746.72 (+0.66%)

Transaction Decoder

Block:
19432909 at Mar-14-2024 11:19:47 AM +UTC
Transaction Fee:
0.007288471414245728 ETH $27.31
Gas Used:
150,388 Gas / 48.464448056 Gwei

Emitted Events:

291 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=1000000000000000000 )
292 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=1000000000000000000 )
293 io2DAIToken.Transfer( from=UniswapV2Pair, to=io2DAIToken, value=16392139094267175745223 )
294 io2DAIToken.Transfer( from=UniswapV2Pair, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, value=530012497381305349095572 )
295 UniswapV2Pair.Sync( reserve0=62035135515642796511081104, reserve1=114192725647489780434 )
296 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=1000000000000000000, amount0Out=546404636475572524840795, amount1Out=0, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
252.34916266289520535 Eth252.34916281328320535 Eth0.000000150388
0x539B4DfC...1F796F432
0xa8ab8Dc3...88AC50359
5.160097545588932875 Eth
Nonce: 95
4.152809074174687147 Eth
Nonce: 96
1.007288471414245728
0xB44b653f...68E8B2A1d
0xC02aaA39...83C756Cc2 3,030,938.462521888138473198 Eth3,030,939.462521888138473198 Eth1

Execution Trace

ETH 1 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN4Lazp2QAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN4Lazp2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABs9y3+i6BdWZWvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAC0S2U/FHVp2IpoTL9lSeGWjosqHQ==], deadline=1710415247 )
  • ETH 1 WETH9.CALL( )
  • WETH9.transfer( dst=0x539B4DfCD1E4dc3153E59204004C2141F796F432, wad=1000000000000000000 ) => ( True )
  • io2DAIToken.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 531711704229785016737369 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x539B4DfCD1E4dc3153E59204004C2141F796F432 ) => ( 114192725647489780434 )
  • UniswapV2Pair.swap( amount0Out=546404636475572524840795, amount1Out=0, to=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, data=0x )
    • io2DAIToken.transfer( recipient=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, amount=546404636475572524840795 ) => ( True )
    • io2DAIToken.balanceOf( account=0x539B4DfCD1E4dc3153E59204004C2141F796F432 ) => ( 62035135515642796511081104 )
    • WETH9.balanceOf( 0x539B4DfCD1E4dc3153E59204004C2141F796F432 ) => ( 114192725647489780434 )
    • io2DAIToken.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 1061724201611090365832941 )
      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: io2DAIToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      * 2DAI.io
      * Telegram: https://t.me/Token2dAI
      * Ready to unleash your creativity with the power of AI? Let's generate the visuals of your dreams.
      * Total Supply: 1 Billion Tokens
      * Initial Max Wallet: 2% (>20000000 Tokens)
      * Set slippage to 3-4% : 1% to LP, 2% tax for Marketing & Hosting costs.
      */
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.12;
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      return msg.sender;
      }
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX