ETH Price: $2,028.52 (-1.73%)

Transaction Decoder

Block:
20264382 at Jul-08-2024 09:11:59 PM +UTC
Transaction Fee:
0.00110774250512244 ETH $2.25
Gas Used:
135,972 Gas / 8.14684277 Gwei

Emitted Events:

33 WETH9.Deposit( dst=[Receiver] 0x80a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e, wad=700000000000000000 )
34 WETH9.Transfer( src=[Receiver] 0x80a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e, dst=UniswapV2Pair, wad=700000000000000000 )
35 Towelie.Transfer( from=UniswapV2Pair, to=[Sender] 0xd0f9af0ccd45ef039c90b51b06c90326e877f154, value=2919939609755391961317063 )
36 UniswapV2Pair.Sync( reserve0=15912196912092114291, reserve1=63646219107345503419132384 )
37 UniswapV2Pair.Swap( sender=[Receiver] 0x80a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e, amount0In=700000000000000000, amount1In=0, amount0Out=0, amount1Out=2919939609755391961317063, to=[Sender] 0xd0f9af0ccd45ef039c90b51b06c90326e877f154 )

Account State Difference:

  Address   Before After State Difference Code
0x90d61Ca7...20C1b2335
(beaverbuild)
9.26698237673766865 Eth9.26766223673766865 Eth0.00067986
0xC02aaA39...83C756Cc2 2,763,444.813515059560543638 Eth2,763,445.513515059560543638 Eth0.7
0xd0f9Af0c...6e877F154
0.820950232663594412 Eth
Nonce: 56
0.119842490158471972 Eth
Nonce: 57
0.70110774250512244
0xF035fee7...6B66df30D

Execution Trace

ETH 0.7 Maestro: Router 2.b6f9de95( )
  • ETH 0.7 0x46affe1b4f3fc41581fd20fbaf055daeab80a8b5.b6f9de95( )
    • ETH 0.7 WETH9.CALL( )
    • WETH9.transfer( dst=0x90d61Ca75cbe1E3a85aa083aBc5b3B420C1b2335, wad=700000000000000000 ) => ( True )
    • Towelie.balanceOf( account=0xd0f9Af0ccd45eF039C90B51b06c90326e877F154 ) => ( 0 )
    • UniswapV2Pair.STATICCALL( )
    • WETH9.balanceOf( 0x90d61Ca75cbe1E3a85aa083aBc5b3B420C1b2335 ) => ( 15912196912092114291 )
    • UniswapV2Pair.swap( amount0Out=0, amount1Out=2919939609755391961317063, to=0xd0f9Af0ccd45eF039C90B51b06c90326e877F154, data=0x )
      • Towelie.transfer( recipient=0xd0f9Af0ccd45eF039C90B51b06c90326e877F154, amount=2919939609755391961317063 ) => ( True )
      • WETH9.balanceOf( 0x90d61Ca75cbe1E3a85aa083aBc5b3B420C1b2335 ) => ( 15912196912092114291 )
      • Towelie.balanceOf( account=0x90d61Ca75cbe1E3a85aa083aBc5b3B420C1b2335 ) => ( 63646219107345503419132384 )
      • Towelie.balanceOf( account=0xd0f9Af0ccd45eF039C90B51b06c90326e877F154 ) => ( 2919939609755391961317063 )
      • Towelie.balanceOf( account=0xd0f9Af0ccd45eF039C90B51b06c90326e877F154 ) => ( 2919939609755391961317063 )
        File 1 of 3: 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 2 of 3: 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 3: Towelie
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /*
        I am your best bud, your plushy pal, and your go-to for all things cozy and high.
        Just hold on tight and enjoy the soft trip, fam.
        Website : https://towelieerc.vip
        Telegram: https://t.me/Towelie_official
        Twitter : https://x.com/Towelie_erc
        */
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.17;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX