ETH Price: $3,806.73 (-0.61%)

Transaction Decoder

Block:
12007086 at Mar-09-2021 10:46:38 PM +UTC
Transaction Fee:
0.0149583192 ETH $56.94
Gas Used:
132,024 Gas / 113.3 Gwei

Emitted Events:

307 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=31215819052634652 )
308 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=31215819052634652 )
309 HOGE.Transfer( from=UniswapV2Pair, to=[Sender] 0xf57b90e7d25d1c45b2956f9ed992d9704ab2dad3, value=676200000000000 )
310 UniswapV2Pair.Sync( reserve0=321128901194649012734, reserve1=7118957148827447035 )
311 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=31215819052634652, amount1In=98241608654, amount0Out=0, amount1Out=690000000000000, to=[Sender] 0xf57b90e7d25d1c45b2956f9ed992d9704ab2dad3 )

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
90.563346263982952131 Eth90.578304583182952131 Eth0.0149583192
0x7FD1de95...9eC477960
0xC02aaA39...83C756Cc2 7,259,301.056015452519871163 Eth7,259,301.087231271572505815 Eth0.031215819052634652
0xf57B90E7...04AB2dAD3
0.052275859688777681 Eth
Nonce: 3
0.006101721436143029 Eth
Nonce: 4
0.046174138252634652
0xfAd45E47...6F1cd7607

Execution Trace

ETH 0.031662952702632493 UniswapV2Router02.swapETHForExactTokens( amountOut=690000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xfAd45E47083e4607302aa43c65fB3106F1cd7607], to=0xf57B90E7d25d1C45b2956f9ED992D9704AB2dAD3, deadline=1615331107 ) => ( amounts=[31215819052634652, 690000000000000] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.031215819052634652 WETH9.CALL( )
  • WETH9.transfer( dst=0x7FD1de95FC975fbBD8be260525758549eC477960, wad=31215819052634652 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=690000000000000, to=0xf57B90E7d25d1C45b2956f9ED992D9704AB2dAD3, data=0x )
    • HOGE.transfer( recipient=0xf57B90E7d25d1C45b2956f9ED992D9704AB2dAD3, amount=690000000000000 ) => ( True )
    • WETH9.balanceOf( 0x7FD1de95FC975fbBD8be260525758549eC477960 ) => ( 321128901194649012734 )
    • HOGE.balanceOf( account=0x7FD1de95FC975fbBD8be260525758549eC477960 ) => ( 7118957148827447035 )
    • ETH 0.000447133649997841 0xf57b90e7d25d1c45b2956f9ed992d9704ab2dad3.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: 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 3 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 4 of 4: HOGE
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      *Submitted for verification at Etherscan.io on 2021-02-07
      */
      // hoge.finance (HOGE)
      // HOGE defistify dogecoin, it’s doge but DeFi
      // HOGE is a deflationary farming meme powered currency
      // SPDX-License-Identifier: Unlicensed
      pragma solidity ^0.6.12;
      abstract contract Context {
      function _msgSender() internal view virtual returns (address payable) {
      return msg.sender;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX