ETH Price: $2,572.22 (+1.06%)

Transaction Decoder

Block:
21931401 at Feb-26-2025 03:27:59 PM +UTC
Transaction Fee:
0.00081168555930496 ETH $2.09
Gas Used:
271,676 Gas / 2.98769696 Gwei

Emitted Events:

155 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=1000000000000000 )
156 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=1000000000000000 )
157 TRUMPINU.Transfer( from=UniswapV2Pair, to=TRUMPINU, value=906610893880149 )
158 TRUMPINU.Transfer( from=UniswapV2Pair, to=[Sender] 0xf2c1037aafeceef056edd087f86b368a522be125, value=8159498044921342 )
159 UniswapV2Pair.Sync( reserve0=90933891061198509, reserve1=11000000000000000 )
160 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=1000000000000000, amount0Out=9066108938801491, amount1Out=0, to=[Sender] 0xf2c1037aafeceef056edd087f86b368a522be125 )

Account State Difference:

  Address   Before After State Difference Code
0x7454c605...2e58e139A
(beaverbuild)
19.813500531333995501 Eth19.813835888188123825 Eth0.000335356854128324
0xA6C5f1DD...5B58B4b4d
0xC02aaA39...83C756Cc2 2,935,073.479721545104584672 Eth2,935,073.480721545104584672 Eth0.001
0xF2C1037a...a522be125
0.005006887783406 Eth
Nonce: 22
0.00319520222410104 Eth
Nonce: 23
0.00181168555930496

Execution Trace

ETH 0.001 UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA41+pMaAAA==, AAAAAAAAAAAAAAAA8sEDeq/s7vBW7dCH+Gs2ilIr4SUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA41+pMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQPaUIjDhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACmxfHdI0R6QCjBYkcx/5X1tYtLTQ==], deadline=1740585461 )
  • ETH 0.001 WETH9.CALL( )
  • WETH9.transfer( dst=0x7454c6050b699AD0d52f291473183E02e58e139A, wad=1000000000000000 ) => ( True )
  • TRUMPINU.balanceOf( account=0xF2C1037aafEcEEF056EDd087F86B368a522be125 ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x7454c6050b699AD0d52f291473183E02e58e139A ) => ( 11000000000000000 )
  • UniswapV2Pair.swap( amount0Out=9066108938801491, amount1Out=0, to=0xF2C1037aafEcEEF056EDd087F86B368a522be125, data=0x )
    • TRUMPINU.transfer( recipient=0xF2C1037aafEcEEF056EDd087F86B368a522be125, amount=9066108938801491 ) => ( True )
      • UniswapV2Router02.STATICCALL( )
      • TRUMPINU.balanceOf( account=0x7454c6050b699AD0d52f291473183E02e58e139A ) => ( 90933891061198509 )
      • WETH9.balanceOf( 0x7454c6050b699AD0d52f291473183E02e58e139A ) => ( 11000000000000000 )
      • TRUMPINU.balanceOf( account=0xF2C1037aafEcEEF056EDd087F86B368a522be125 ) => ( 8159498044921342 )
        File 1 of 5: 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 5: 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 5: 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 5: TRUMPINU
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: UNLICENSED
        pragma solidity 0.8.28;
        abstract contract Context {
        function _msgSender() internal view virtual returns (address) {
        return msg.sender;
        }
        }
        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);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 5: UniswapV2Router02
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity =0.6.6;
        interface IUniswapV2Factory {
        event PairCreated(address indexed token0, address indexed token1, address pair, uint);
        function feeTo() external view returns (address);
        function feeToSetter() external view returns (address);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
        function allPairs(uint) external view returns (address pair);
        function allPairsLength() external view returns (uint);
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function setFeeTo(address) external;
        function setFeeToSetter(address) external;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX