ETH Price: $2,803.05 (+4.54%)

Transaction Decoder

Block:
16708982 at Feb-26-2023 12:55:23 AM +UTC
Transaction Fee:
0.003792049149438432 ETH $10.63
Gas Used:
198,992 Gas / 19.056289446 Gwei

Emitted Events:

146 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=15000000000000000 )
147 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=15000000000000000 )
148 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=15000000000000000 )
149 WagguInu.Transfer( from=UniswapV2Pair, to=WagguInu, value=431849467046394978251678 )
150 WagguInu.Transfer( from=UniswapV2Pair, to=[Sender] 0x60685e36effb1aec74cffa9fb515ae34bdfeea4e, value=10364387209113479478040277 )
151 UniswapV2Pair.Sync( reserve0=1467816419440745151096994752, reserve1=2048226503936202033 )
152 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=15000000000000000, amount0Out=10796236676159874456291955, amount1Out=0, to=[Sender] 0x60685e36effb1aec74cffa9fb515ae34bdfeea4e )

Account State Difference:

  Address   Before After State Difference Code
0x0D262d28...67E6eB1fc
1.789620296670180801 Eth1.789719792670180801 Eth0.000099496
0x60685e36...4bDfeeA4e
0.04 Eth
Nonce: 0
0.021207950850561568 Eth
Nonce: 1
0.018792049149438432
0xC02aaA39...83C756Cc2 3,986,073.365034493928487824 Eth3,986,073.380034493928487824 Eth0.015
0xE29da478...71b5e87Bf

Execution Trace

ETH 0.015 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANUprp6GAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANUprp6GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX+n1mU7fB19ssGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAANJi0olYxTtnDLqtkZFoT2fm6x/A==], deadline=1677374699 )
  • ETH 0.015 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=15000000000000000 ) => ( True )
  • WETH9.transfer( dst=0xE29da478AD6D46E74698FFAB789c0E771b5e87Bf, wad=15000000000000000 ) => ( True )
  • WagguInu.balanceOf( account=0x60685e36EfFb1aEc74cFfA9Fb515AE34bDfeeA4e ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0xE29da478AD6D46E74698FFAB789c0E771b5e87Bf ) => ( 2048226503936202033 )
  • UniswapV2Pair.swap( amount0Out=10796236676159874456291955, amount1Out=0, to=0x60685e36EfFb1aEc74cFfA9Fb515AE34bDfeeA4e, data=0x )
    • WagguInu.transfer( recipient=0x60685e36EfFb1aEc74cFfA9Fb515AE34bDfeeA4e, amount=10796236676159874456291955 ) => ( True )
    • WagguInu.balanceOf( account=0xE29da478AD6D46E74698FFAB789c0E771b5e87Bf ) => ( 1467816419440745151096994752 )
    • WETH9.balanceOf( 0xE29da478AD6D46E74698FFAB789c0E771b5e87Bf ) => ( 2048226503936202033 )
    • WagguInu.balanceOf( account=0x60685e36EfFb1aEc74cFfA9Fb515AE34bDfeeA4e ) => ( 10364387209113479478040277 )
      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: WagguInu
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
      /*
      ✪ https://medium.com/@waggu-token/waggu-the-pawsitively-adorable-token-of-the-future-b53206ea2581
      ✪ https://www.wagguinu.com/
      ✪ https://twitter.com/WagguInu
      */
      pragma experimental ABIEncoderV2;
      ////// lib/openzeppelin-contracts/contracts/utils/Context.sol
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX