ETH Price: $3,704.25 (+1.77%)

Transaction Decoder

Block:
22538969 at May-22-2025 02:20:35 PM +UTC
Transaction Fee:
0.002204951102676216 ETH $8.17
Gas Used:
147,384 Gas / 14.960586649 Gwei

Emitted Events:

59 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=69300000000000000 )
60 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=69300000000000000 )
61 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=69300000000000000 )
62 FROGETTE.Transfer( from=UniswapV2Pair, to=[Sender] 0x56e277b4b367d4907dff7ca5bb463f211a7f6948, value=265599225268397263061430813989 )
63 UniswapV2Pair.Sync( reserve0=43193743760775701974918382014386, reserve1=11305576989430616326 )
64 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=69300000000000000, amount0Out=265599225268397263061430813989, amount1Out=0, to=[Sender] 0x56e277b4b367d4907dff7ca5bb463f211a7f6948 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.675782671986185115 Eth8.677256511986185115 Eth0.00147384
0x56E277b4...11A7F6948
0.630833196941850203 Eth
Nonce: 549
0.559328245839173987 Eth
Nonce: 550
0.071504951102676216
0x5A36767A...fB1C6Dbc4
0x69fffb71...F4e3Fe11E
0xC02aaA39...83C756Cc2 2,821,123.359580726760844374 Eth2,821,123.428880726760844374 Eth0.0693

Execution Trace

ETH 0.0693 UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9jP7mu9AAA==, AAAAAAAAAAAAAAAAVuJ3tLNn1JB9/3ylu0Y/IRp/aUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9jP7mu9AAAAAAAAAAAAAAAAAAAAAAAAAAAACro7S6dvIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABp//txYt52Fk1oSk6WQdlPTj/hHg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747923745 )
  • ETH 0.0693 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=69300000000000000 ) => ( True )
  • WETH9.transfer( dst=0x5A36767Aff8132d704508eB0a89652AfB1C6Dbc4, wad=69300000000000000 ) => ( True )
  • FROGETTE.balanceOf( account=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948 ) => ( 378260108147853989777230536173 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x5A36767Aff8132d704508eB0a89652AfB1C6Dbc4 ) => ( 11305576989430616326 )
  • UniswapV2Pair.swap( amount0Out=265599225268397263061430813989, amount1Out=0, to=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948, data=0x )
    • FROGETTE.transfer( recipient=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948, amount=265599225268397263061430813989 ) => ( True )
    • FROGETTE.balanceOf( account=0x5A36767Aff8132d704508eB0a89652AfB1C6Dbc4 ) => ( 43193743760775701974918382014386 )
    • WETH9.balanceOf( 0x5A36767Aff8132d704508eB0a89652AfB1C6Dbc4 ) => ( 11305576989430616326 )
    • FROGETTE.balanceOf( account=0x56E277b4b367d4907DFF7CA5Bb463f211A7F6948 ) => ( 643859333416251252838661350162 )
    • WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
      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: FROGETTE
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /*
      * SPDX-License-Identifier: MIT
      * https://islandfrogette.com/
      * https://x.com/IslandFrogette
      * https://t.me/IslandFrogette
      */
      pragma solidity 0.8.19;
      library SafeMath {
      /**
      * @dev Returns the addition of two unsigned integers, with an overflow flag.
      *
      * _Available since v3.4._
      */
      function tryAdd(
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX