ETH Price: $2,538.47 (-8.21%)

Transaction Decoder

Block:
10908364 at Sep-21-2020 09:43:14 PM +UTC
Transaction Fee:
0.0112876 ETH $28.65
Gas Used:
112,876 Gas / 100 Gwei

Emitted Events:

10 TokensOfBabel.Transfer( from=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, to=UniswapV2Pair, value=236285213758559413756 )
11 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=1845764150391293374 )
12 UniswapV2Pair.Sync( reserve0=9498552500238023063217, reserve1=72570783610698595447 )
13 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=236285213758559413756, amount1In=0, amount0Out=0, amount1Out=1845764150391293374, to=[Receiver] UniswapV2Router02 )
14 WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=1845764150391293374 )

Account State Difference:

  Address   Before After State Difference Code
(zhizhu.top)
2,895.708112693316420086 Eth2,895.719400293316420086 Eth0.0112876
0x7777770f...EBa9209E6
0x7844c04B...7686865ff
0x9374176B...94BF06e0e
0.82809144841890295 Eth
Nonce: 13
2.662567998810196324 Eth
Nonce: 14
1.834476550391293374
0xC02aaA39...83C756Cc2 7,199,485.884799217279266694 Eth7,199,484.03903506688797332 Eth1.845764150391293374

Execution Trace

UniswapV2Router02.swapExactTokensForETH( amountIn=236285213758559413756, amountOutMin=1836581244170441168, path=[0x7777770f8A6632ff043c8833310e245EBa9209E6, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e, deadline=1600725759 ) => ( amounts=[236285213758559413756, 1845764150391293374] )
  • UniswapV2Pair.STATICCALL( )
  • TokensOfBabel.transferFrom( from=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e, to=0x7844c04B043B51dc45Bdf59ee2De53e7686865ff, value=236285213758559413756 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=1845764150391293374, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
    • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=1845764150391293374 ) => ( True )
    • TokensOfBabel.balanceOf( who=0x7844c04B043B51dc45Bdf59ee2De53e7686865ff ) => ( 9498552500238023063217 )
    • WETH9.balanceOf( 0x7844c04B043B51dc45Bdf59ee2De53e7686865ff ) => ( 72570783610698595447 )
    • WETH9.withdraw( wad=1845764150391293374 )
      • ETH 1.845764150391293374 UniswapV2Router02.CALL( )
      • ETH 1.845764150391293374 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e.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: TokensOfBabel
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity 0.6.0;
        library SafeMath {
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
        }
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
        }
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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