ETH Price: $4,335.26 (+2.38%)

Transaction Decoder

Block:
16987269 at Apr-06-2023 04:27:59 AM +UTC
Transaction Fee:
0.003422186473197182 ETH $14.84
Gas Used:
135,178 Gas / 25.316149619 Gwei

Emitted Events:

172 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=40000000000000000 )
173 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=40000000000000000 )
174 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=40000000000000000 )
175 Kairos.Transfer( from=UniswapV2Pair, to=[Sender] 0xaa2b4a88424dbda9b4c45995dfb47a2403ab2b5c, value=5071301241340025 )
176 UniswapV2Pair.Sync( reserve0=6942022197273112281, reserve1=54631086597351937387 )
177 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=40000000000000000, amount0Out=5071301241340025, amount1Out=0, to=[Sender] 0xaa2b4a88424dbda9b4c45995dfb47a2403ab2b5c )

Account State Difference:

  Address   Before After State Difference Code
0x3Be65bd3...2706cA000
0x4eB19B39...a6cc6Ee7a
0xAA2B4a88...403ab2B5C
0.093703579286940754 Eth
Nonce: 41
0.050281392813743572 Eth
Nonce: 42
0.043422186473197182
0xC02aaA39...83C756Cc2 3,696,450.023855943774464816 Eth3,696,450.063855943774464816 Eth0.04
(Flashbots: Builder)
1.178093511900313596 Eth1.178107029700313596 Eth0.0000135178

Execution Trace

ETH 0.04 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjhvJvwQAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjhvJvwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARfftt5uoXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAA75lvTbBrSjTOswcndgziicGygAA==], deadline=1680755375 )
  • ETH 0.04 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=40000000000000000 ) => ( True )
  • WETH9.transfer( dst=0x4eB19B39376445aaFd4896F8A752542a6cc6Ee7a, wad=40000000000000000 ) => ( True )
  • Kairos.balanceOf( account=0xAA2B4a88424dbDa9B4c45995dFb47A2403ab2B5C ) => ( 13286766412914080 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x4eB19B39376445aaFd4896F8A752542a6cc6Ee7a ) => ( 54631086597351937387 )
  • UniswapV2Pair.swap( amount0Out=5071301241340025, amount1Out=0, to=0xAA2B4a88424dbDa9B4c45995dFb47A2403ab2B5C, data=0x )
    • Kairos.transfer( recipient=0xAA2B4a88424dbDa9B4c45995dFb47A2403ab2B5C, amount=5071301241340025 ) => ( True )
    • Kairos.balanceOf( account=0x4eB19B39376445aaFd4896F8A752542a6cc6Ee7a ) => ( 6942022197273112281 )
    • WETH9.balanceOf( 0x4eB19B39376445aaFd4896F8A752542a6cc6Ee7a ) => ( 54631086597351937387 )
    • Kairos.balanceOf( account=0xAA2B4a88424dbDa9B4c45995dFb47A2403ab2B5C ) => ( 18358067654254105 )
      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: Kairos
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      pragma solidity ^0.8.0;
      /*
      Coming to kairos.money
      In ancient Greek mythology, Kairos was the god of opportunity, luck, and decisive moments. He was often depicted as a young man with a tuft of hair
          on his forehead, carrying a scale in one hand and a razor-sharp sickle in the other. One of the most famous stories about Kairos tells of a young
          man named Meleager.
      Meleager was a famous hero of ancient Greece, known for his bravery and strength in battle. One day, he was hunting in the woods when he came across
          a fierce wild boar. Meleager chased after the beast, determined to bring it down, but the boar was too quick and too strong. Meleager grew tired
          and frustrated, and just when it seemed like he would have to give up, Kairos appeared before him.
      Kairos saw that Meleager was in a moment of great opportunity, and he knew that the young hero had the potential to defeat the boar if he acted
          quickly and decisively. Kairos whispered in Meleager's ear, telling him to strike at the boar's vulnerable spot just as it turned to charge.
          Meleager heeded Kairos' advice and landed a fatal blow, felling the beast with a single stroke of his sword.
      Thanks to Kairos' intervention, Meleager became known as the greatest hunter in all of Greece, and his fame spread far and wide.
      */
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX