ETH Price: $3,028.93 (+1.33%)

Transaction Decoder

Block:
22596773 at May-30-2025 04:34:11 PM +UTC
Transaction Fee:
0.00485633202737802 ETH $14.71
Gas Used:
111,508 Gas / 43.551422565 Gwei

Emitted Events:

175 PepeToken.Transfer( from=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, to=UniswapV2Pair, value=449727225330000000000000000 )
176 PepeToken.Approval( owner=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, spender=[Receiver] UniswapV2Router02, value=3622504076308810000000000000000 )
177 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=2243018496873860352 )
178 UniswapV2Pair.Sync( reserve0=1956916160626080266412582012980, reserve1=9787255332281626947088 )
179 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=449727225330000000000000000, amount1In=0, amount0Out=0, amount1Out=2243018496873860352, to=[Receiver] UniswapV2Router02 )
180 WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=2243018496873860352 )

Account State Difference:

  Address   Before After State Difference Code
10.78747728446903535 Eth10.79082252446903535 Eth0.00334524
0x5F939de0...82412459a
12.170809158221208999 Eth
Nonce: 5643
14.408971323067691331 Eth
Nonce: 5644
2.238162164846482332
0x69825081...3d2311933
0xA43fe169...6C5cCEc9f
0xC02aaA39...83C756Cc2 2,638,717.545504206589575163 Eth2,638,715.302485709715714811 Eth2.243018496873860352

Execution Trace

UniswapV2Router02.swapExactTokensForETH( amountIn=449727225330000000000000000, amountOutMin=2195640000000000000, path=[0x6982508145454Ce325dDbE47a25d4ec3d2311933, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x5F939de0E81a199a34e50615F34cBAb82412459a, deadline=1748622963 ) => ( amounts=[449727225330000000000000000, 2243018496873860352] )
  • UniswapV2Pair.STATICCALL( )
  • PepeToken.transferFrom( sender=0x5F939de0E81a199a34e50615F34cBAb82412459a, recipient=0xA43fe16908251ee70EF74718545e4FE6C5cCEc9f, amount=449727225330000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=2243018496873860352, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
    • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=2243018496873860352 ) => ( True )
    • PepeToken.balanceOf( account=0xA43fe16908251ee70EF74718545e4FE6C5cCEc9f ) => ( 1956916160626080266412582012980 )
    • WETH9.balanceOf( 0xA43fe16908251ee70EF74718545e4FE6C5cCEc9f ) => ( 9787255332281626947088 )
    • WETH9.withdraw( wad=2243018496873860352 )
      • ETH 2.243018496873860352 UniswapV2Router02.CALL( )
      • ETH 2.243018496873860352 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: PepeToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // Sources flattened with hardhat v2.7.0 https://hardhat.org
        // File @openzeppelin/contracts/utils/Context.sol@v4.4.0
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
        pragma solidity ^0.8.0;
        /**
        * @dev Provides information about the current execution context, including the
        * sender of the transaction and its data. While these are generally available
        * via msg.sender and msg.data, they should not be accessed in such a direct
        * manner, since when dealing with meta-transactions the account sending and
        * paying for execution may not be the actual sender (as far as an application
        * is concerned).
        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