ETH Price: $3,682.76 (-2.00%)

Transaction Decoder

Block:
20511948 at Aug-12-2024 10:30:35 AM +UTC
Transaction Fee:
0.001165480903072854 ETH $4.29
Gas Used:
171,603 Gas / 6.791728018 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x5d2fcf5d...7482fE1eC
0.060800665599175764 Eth
Nonce: 85
0.05963518469610291 Eth
Nonce: 86
0.001165480903072854
(beaverbuild)
12.897298699585541054 Eth12.8975737985311103 Eth0.000275098945569246

Execution Trace

0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
  • OKX: Dex Aggregator.0a5ea466( )
    • TokenApprove.claimTokens( _token=0xD223a9E25C34bdf0339Caa62b28b1E005081E1E7, _who=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC, _dest=0x76967A96AFe8C17F15E6981cF86c773C40e52062, _amount=3471264627065952949252329 )
      • TrumpX.transferFrom( sender=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC, recipient=0x76967A96AFe8C17F15E6981cF86c773C40e52062, amount=3471264627065952949252329 ) => ( True )
      • UniswapV2Pair.STATICCALL( )
      • UniswapV2Pair.STATICCALL( )
      • TrumpX.balanceOf( account=0x76967A96AFe8C17F15E6981cF86c773C40e52062 ) => ( 3770126595181872742055708090 )
      • UniswapV2Pair.swap( amount0Out=34885356288545319, amount1Out=0, to=0xF3dE3C0d654FDa23daD170f0f320a92172509127, data=0x )
        • WETH9.transfer( dst=0xF3dE3C0d654FDa23daD170f0f320a92172509127, wad=34885356288545319 ) => ( True )
        • WETH9.balanceOf( 0x76967A96AFe8C17F15E6981cF86c773C40e52062 ) => ( 37967863845098036730 )
        • TrumpX.balanceOf( account=0x76967A96AFe8C17F15E6981cF86c773C40e52062 ) => ( 3770126595181872742055708090 )
        • WETH9.withdraw( wad=34885356288545319 )
          • ETH 0.034885356288545319 0xf3de3c0d654fda23dad170f0f320a92172509127.CALL( )
          • ETH 0.034885356288545319 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec.CALL( )
            File 1 of 4: TokenApprove
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            /**
            *Submitted for verification at BscScan.com on 2023-06-26
            */
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
            // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
            // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)
            // OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
            /**
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 2 of 4: TrumpX
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // SPDX-License-Identifier: MIT
            /**
            Twitter: https://x.com/TrumpXEth
            TG: https://t.me/TrumpX_Eth
            Web: https://trumpx.io/
            **/
            pragma solidity 0.8.23;
            abstract contract Context {
            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: 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