ETH Price: $2,959.07 (+0.73%)

Transaction Decoder

Block:
20556401 at Aug-18-2024 03:26:35 PM +UTC
Transaction Fee:
0.00024312761573805 ETH $0.72
Gas Used:
124,350 Gas / 1.955187903 Gwei

Emitted Events:

272 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=100000000000000 )
273 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=100000000000000 )
274 Kendu.Transfer( from=UniswapV2Pair, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937, value=84984791246063019 )
275 Kendu.Transfer( from=UniswapV2Pair, to=0x000000000000000000000000000000000000dEaD, value=0 )
276 UniswapV2Pair.Sync( reserve0=923325234480797018203, reserve1=1083300000000000000 )
277 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=100000000000000, amount0Out=84984791246063019, amount1Out=0, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937 )

Account State Difference:

  Address   Before After State Difference Code
0x07C86D36...6108Be29a
0x2CD89BAd...d2B353937
0.008349120025112464 Eth
Nonce: 19
0.008005992409374414 Eth
Nonce: 20
0.00034312761573805
(Titan Builder)
8.085051945830070102 Eth8.085108447784110102 Eth0.00005650195404
0xC02aaA39...83C756Cc2 2,874,880.288041740471029806 Eth2,874,880.288141740471029806 Eth0.0001
0xd86DC686...1d5861eE5

Execution Trace

ETH 0.0001 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAHyG024clTjFdejOlQcLH2EIvimg==], deadline=2576980377 )
  • ETH 0.0001 WETH9.CALL( )
  • WETH9.transfer( dst=0xd86DC68635F7f4f67b9Df3d3d9645d71d5861eE5, wad=100000000000000 ) => ( True )
  • Kendu.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xd86DC68635F7f4f67b9Df3d3d9645d71d5861eE5 ) => ( 1083300000000000000 )
  • UniswapV2Pair.swap( amount0Out=84984791246063019, amount1Out=0, to=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, data=0x )
    • Kendu.transfer( recipient=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, amount=84984791246063019 ) => ( True )
    • Kendu.balanceOf( account=0xd86DC68635F7f4f67b9Df3d3d9645d71d5861eE5 ) => ( 923325234480797018203 )
    • WETH9.balanceOf( 0xd86DC68635F7f4f67b9Df3d3d9645d71d5861eE5 ) => ( 1083300000000000000 )
    • Kendu.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 84984791246063019 )
      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: Kendu
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      Uniting the six native Japanese dog breeds.
      Kendu is the keeper of peace, the preserver of life, and the protector of unity.
      Dog season is approaching, will you join the pack?
      */
      //SPDX-License-Identifier:MIT
      pragma solidity ^0.8.18;
      interface IERC20 {
      function totalSupply() external view returns (uint256);
      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);
      function approve(address spender, uint256 amount) external returns (bool);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX