ETH Price: $3,115.29 (+4.93%)

Transaction Decoder

Block:
21936683 at Feb-27-2025 09:09:59 AM +UTC
Transaction Fee:
0.000142843892658124 ETH $0.45
Gas Used:
121,996 Gas / 1.170889969 Gwei

Emitted Events:

143 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
144 Dogelon.Transfer( from=[Sender] 0xec67c9b93ce7b8ff2149fa47d19f65b36a09cf1e, to=UniswapV2Pair, value=99547921552024700956726963 )
145 Dogelon.Approval( owner=[Sender] 0xec67c9b93ce7b8ff2149fa47d19f65b36a09cf1e, spender=TokenApprove, value=0 )
146 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=6764797623568701 )
147 UniswapV2Pair.Sync( reserve0=36062528016587087078374458715742, reserve1=2458003079151804761368 )
148 UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=99547921552024700956726963, amount1In=0, amount0Out=0, amount1Out=6764797623568701, to=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127 )
149 WETH9.Withdrawal( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=6764797623568701 )
150 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 000000000000000000000000761d38e5ddf6ccf6cf7c55759d5210750b5d60f3, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000ec67c9b93ce7b8ff2149fa47d19f65b36a09cf1e, 000000000000000000000000000000000000000000525817a402098f996856b3, 0000000000000000000000000000000000000000000000000018088c2f54893d )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.028599045310120042 Eth8.028660043310120042 Eth0.000060998
0x761D38e5...50B5D60F3
0x7B736449...1bc315860
0xC02aaA39...83C756Cc2 2,922,003.933706891624488801 Eth2,922,003.9269420940009201 Eth0.006764797623568701
0xEC67c9B9...36A09cf1E
0.017418869707893869 Eth
Nonce: 6
0.024040823438804446 Eth
Nonce: 7
0.006621953730910577

Execution Trace

0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
  • OKX: Dex Aggregator.0a5ea466( )
    • TokenApprove.claimTokens( _token=0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3, _who=0xEC67c9B93cE7B8Ff2149FA47D19F65b36A09cf1E, _dest=0x7B73644935b8e68019aC6356c40661E1bc315860, _amount=99547921552024700956726963 )
      • Dogelon.transferFrom( sender=0xEC67c9B93cE7B8Ff2149FA47D19F65b36A09cf1E, recipient=0x7B73644935b8e68019aC6356c40661E1bc315860, amount=99547921552024700956726963 ) => ( True )
      • UniswapV2Pair.STATICCALL( )
      • UniswapV2Pair.STATICCALL( )
      • Dogelon.balanceOf( account=0x7B73644935b8e68019aC6356c40661E1bc315860 ) => ( 36062528016587087078374458715742 )
      • UniswapV2Pair.swap( amount0Out=0, amount1Out=6764797623568701, to=0xF3dE3C0d654FDa23daD170f0f320a92172509127, data=0x )
        • WETH9.transfer( dst=0xF3dE3C0d654FDa23daD170f0f320a92172509127, wad=6764797623568701 ) => ( True )
        • Dogelon.balanceOf( account=0x7B73644935b8e68019aC6356c40661E1bc315860 ) => ( 36062528016587087078374458715742 )
        • WETH9.balanceOf( 0x7B73644935b8e68019aC6356c40661E1bc315860 ) => ( 2458003079151804761368 )
        • WETH9.withdraw( wad=6764797623568701 )
          • ETH 0.006764797623568701 0xf3de3c0d654fda23dad170f0f320a92172509127.CALL( )
          • ETH 0.006764797623568701 0xec67c9b93ce7b8ff2149fa47d19f65b36a09cf1e.CALL( )
            File 1 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 2 of 4: Dogelon
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // File: @openzeppelin/contracts/utils/Context.sol
            // SPDX-License-Identifier: MIT
            pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and
            * paying for execution may not be the actual sender (as far as an application
            * is concerned).
            *
            * This contract is only required for intermediate, library-like contracts.
            */
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 3 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 4 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