ETH Price: $4,677.40 (+5.91%)

Transaction Decoder

Block:
22599492 at May-31-2025 01:40:47 AM +UTC
Transaction Fee:
0.000312117287249142 ETH $1.46
Gas Used:
117,738 Gas / 2.650947759 Gwei

Emitted Events:

226 Phil.Transfer( from=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, to=UniswapV2Pair, value=897392850000000000000000 )
227 Phil.Approval( owner=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, spender=[Receiver] UniswapV2Router02, value=99999995106829050532921976815616 )
228 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=1226341888110940463 )
229 UniswapV2Pair.Sync( reserve0=251681760691144651026, reserve1=184516530763451540704767880 )
230 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=897392850000000000000000, amount0Out=1226341888110940463, amount1Out=0, to=[Receiver] UniswapV2Router02 )
231 WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=1226341888110940463 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.586875416631059762 Eth12.58699340808341534 Eth0.000117991452355578
0x5F939de0...82412459a
2.624726240785260292 Eth
Nonce: 5661
3.850756011608951613 Eth
Nonce: 5662
1.226029770823691321
0xC02aaA39...83C756Cc2 2,633,166.508073054388275886 Eth2,633,165.281731166277335423 Eth1.226341888110940463
0xc328a59E...C1af8d3b2
0xC3576f38...6a3723110

Execution Trace

UniswapV2Router02.swapExactTokensForETH( amountIn=897392850000000000000000, amountOutMin=1222663000000000000, path=[0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x5F939de0E81a199a34e50615F34cBAb82412459a, deadline=1748655763 ) => ( amounts=[897392850000000000000000, 1226341888110940463] )
  • UniswapV2Pair.STATICCALL( )
  • Phil.transferFrom( sender=0x5F939de0E81a199a34e50615F34cBAb82412459a, recipient=0xC3576f38c32E95E36BBd8d91e6CBe646a3723110, amount=897392850000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=1226341888110940463, amount1Out=0, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
    • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=1226341888110940463 ) => ( True )
    • WETH9.balanceOf( 0xC3576f38c32E95E36BBd8d91e6CBe646a3723110 ) => ( 251681760691144651026 )
    • Phil.balanceOf( account=0xC3576f38c32E95E36BBd8d91e6CBe646a3723110 ) => ( 184516530763451540704767880 )
    • WETH9.withdraw( wad=1226341888110940463 )
      • ETH 1.226341888110940463 UniswapV2Router02.CALL( )
      • ETH 1.226341888110940463 0x5f939de0e81a199a34e50615f34cbab82412459a.CALL( )
        File 1 of 4: 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

        File 2 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 3 of 4: Phil
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        /*
        Website: https://www.philtoken.com/
        Twitter: https://x.com/Philtokeneth
        Telegram: https://t.me/Philtokeneth
        █ ██ █ █
        ▓▓█▒▒▓█▓▓▒▒▓
        █▓▓▓▒░░███▓▓██
        ██▓▓▓▓▒░░▒▒▒▒▒▒▓
        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