ETH Price: $2,741.88 (+5.05%)

Transaction Decoder

Block:
16409949 at Jan-15-2023 04:54:11 AM +UTC
Transaction Fee:
0.002727072291942146 ETH $7.48
Gas Used:
162,982 Gas / 16.732352603 Gwei

Emitted Events:

17 Dave.Transfer( from=[Sender] 0xc78cf3b0b79e3f29bead762af85c9a6cd4dc772f, to=UniswapV2Pair, value=18999999999999 )
18 Dave.Approval( owner=[Sender] 0xc78cf3b0b79e3f29bead762af85c9a6cd4dc772f, spender=[Receiver] UniswapV2Router02, value=115792089237316195423570985008687907853269984665640564039457583988913129639936 )
19 WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=235427854481983997 )
20 UniswapV2Pair.Sync( reserve0=371170901586564, reserve1=4376858985985076073 )
21 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=18999999999999, amount1In=0, amount0Out=0, amount1Out=235427854481983997, to=[Receiver] UniswapV2Router02 )
22 WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=235427854481983997 )

Account State Difference:

  Address   Before After State Difference Code
(Fee Recipient: 0x003a...1a2)
75.043689234258216197 Eth75.044178180258216197 Eth0.000488946
0x7Bb502da...865DADAde
0xBcB52833...3BB55C10E
0xC02aaA39...83C756Cc2 3,793,717.001038666799784628 Eth3,793,716.765610812317800631 Eth0.235427854481983997
0xC78CF3B0...CD4dc772f
0.242390198450009388 Eth
Nonce: 24
0.475090980640051239 Eth
Nonce: 25
0.232700782190041851

Execution Trace

UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=18999999999999, amountOutMin=0, path=[0xBcB52833084B766CCaeCc78702b0d1b3BB55C10E, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xC78CF3B0b79E3F29BEad762aF85c9a6CD4dc772f, deadline=1673758560 )
  • Dave.transferFrom( sender=0xC78CF3B0b79E3F29BEad762aF85c9a6CD4dc772f, recipient=0x7Bb502da3bC45FF61f8dd1B21Ce818a865DADAde, amount=18999999999999 ) => ( True )
  • UniswapV2Pair.STATICCALL( )
  • Dave.balanceOf( account=0x7Bb502da3bC45FF61f8dd1B21Ce818a865DADAde ) => ( 371170901586564 )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=235427854481983997, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
    • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=235427854481983997 ) => ( True )
    • Dave.balanceOf( account=0x7Bb502da3bC45FF61f8dd1B21Ce818a865DADAde ) => ( 371170901586564 )
    • WETH9.balanceOf( 0x7Bb502da3bC45FF61f8dd1B21Ce818a865DADAde ) => ( 4376858985985076073 )
    • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 235427854481983997 )
    • WETH9.withdraw( wad=235427854481983997 )
      • ETH 0.235427854481983997 UniswapV2Router02.CALL( )
      • ETH 0.235427854481983997 0xc78cf3b0b79e3f29bead762af85c9a6cd4dc772f.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: Dave
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /**
        Dave ($DAVE)
        Who's the Dave? Is Dave here?
        0/0 tax
        LP locked + Renounced
        Socials soon.
        */
        // SPDX-License-Identifier: Unlicensed
        pragma solidity ^0.8.9;
        abstract contract Context {
        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