ETH Price: $3,601.42 (+4.85%)
Gas: 4.16 Gwei

Transaction Decoder

Block:
21936958 at Feb-27-2025 10:05:11 AM +UTC
Transaction Fee:
0.000349250312042559 ETH $1.26
Gas Used:
157,909 Gas / 2.211718851 Gwei

Emitted Events:

75 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 00000000000000000000000000000000000000000000000000349990b368fac1 )
76 DestraNetwork.Transfer( from=[Sender] 0x980ea2be59e0592e3c23cda91f94049b9a2cb04f, to=UniswapV2Pair, value=10000000000000000000000 )
77 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=755887988925141144 )
78 UniswapV2Pair.Sync( reserve0=898640592489611210452, reserve1=11862876138251108673173078 )
79 UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=10000000000000000000000, amount0Out=755887988925141144, amount1Out=0, to=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127 )
80 WETH9.Withdrawal( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=755887988925141144 )
81 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 000000000000000000000000f94e7d0710709388bce3161c32b4eea56d3f91cc, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000980ea2be59e0592e3c23cda91f94049b9a2cb04f, 00000000000000000000000000000000000000000000021e19e0c9bab2400000, 0000000000000000000000000000000000000000000000000a7d741efdde1098 )

Account State Difference:

  Address   Before After State Difference Code
0x1ffEc711...2f76e6ae1
(Titan Builder)
8.37377915378298108 Eth8.37401601728298108 Eth0.0002368635
0x980EA2bE...b9a2Cb04f
9.136338082526748246 Eth
Nonce: 1574
9.891876821139846831 Eth
Nonce: 1575
0.755538738613098585
0xC02aaA39...83C756Cc2 2,923,205.415971666226570939 Eth2,923,204.660083677301429795 Eth0.755887988925141144
0xf94e7d07...56d3f91CC

Execution Trace

0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
  • OKX: Dex Aggregator.0a5ea466( )
    • TokenApprove.claimTokens( _token=0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC, _who=0x980EA2bE59E0592E3c23cdA91F94049b9a2Cb04f, _dest=0x1ffEc7119e315B15852557f654AE0052f76e6ae1, _amount=10000000000000000000000 )
      • DestraNetwork.transferFrom( sender=0x980EA2bE59E0592E3c23cdA91F94049b9a2Cb04f, recipient=0x1ffEc7119e315B15852557f654AE0052f76e6ae1, amount=10000000000000000000000 ) => ( True )
      • UniswapV2Pair.STATICCALL( )
      • UniswapV2Pair.STATICCALL( )
      • DestraNetwork.balanceOf( account=0x1ffEc7119e315B15852557f654AE0052f76e6ae1 ) => ( 11862876138251108673173078 )
      • UniswapV2Pair.swap( amount0Out=755887988925141144, amount1Out=0, to=0xF3dE3C0d654FDa23daD170f0f320a92172509127, data=0x )
        • WETH9.transfer( dst=0xF3dE3C0d654FDa23daD170f0f320a92172509127, wad=755887988925141144 ) => ( True )
        • WETH9.balanceOf( 0x1ffEc7119e315B15852557f654AE0052f76e6ae1 ) => ( 898640592489611210452 )
        • DestraNetwork.balanceOf( account=0x1ffEc7119e315B15852557f654AE0052f76e6ae1 ) => ( 11862876138251108673173078 )
        • WETH9.withdraw( wad=755887988925141144 )
          • ETH 0.755887988925141144 0xf3de3c0d654fda23dad170f0f320a92172509127.CALL( )
          • ETH 0.755887988925141144 0x980ea2be59e0592e3c23cda91f94049b9a2cb04f.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: DestraNetwork
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            /**
            Website: https://destra.network
            Telegram: https://t.me/DestraNetwork
            Twitter: https://x.com/destranetwork
            **/
            // SPDX-License-Identifier: MIT
            pragma solidity 0.8.17;
            library Address {
            function isContract(address account) internal view returns (bool) {
            return account.code.length > 0;
            }
            function sendValue(address payable recipient, uint256 amount) internal {
            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