ETH Price: $4,283.78 (+1.12%)
Gas: 0.39 Gwei

Transaction Decoder

Block:
11794643 at Feb-05-2021 06:25:51 AM +UTC
Transaction Fee:
0.0226504311 ETH $97.03
Gas Used:
126,327 Gas / 179.3 Gwei

Emitted Events:

4 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=100000000000000000 )
5 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=100000000000000000 )
6 PolkastarterToken.Transfer( from=UniswapV2Pair, to=[Sender] 0xac653cc80f6606ececb49df0e42e581ed0c41a4b, value=104715157529469251280 )
7 UniswapV2Pair.Sync( reserve0=3874433839494632584181914, reserve1=3688974303501921437215 )
8 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=100000000000000000, amount0Out=104715157529469251280, amount1Out=0, to=[Sender] 0xac653cc80f6606ececb49df0e42e581ed0c41a4b )

Account State Difference:

  Address   Before After State Difference Code
(F2Pool Old)
4,840.61673664424472689 Eth4,840.63938707534472689 Eth0.0226504311
0x83e6f1E4...9Fac3D5Aa
0xaC653cc8...Ed0c41a4b
0.177074237469864685 Eth
Nonce: 29
0.054423806369864685 Eth
Nonce: 30
0.1226504311
0xC02aaA39...83C756Cc2 5,681,703.086199509470293006 Eth5,681,703.186199509470293006 Eth0.1
0xFfA98A09...8a5CD2405

Execution Trace

ETH 0.1 UniswapV2Router02.swapExactETHForTokens( amountOutMin=104194186596486817194, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa], to=0xaC653cc80f6606eCeCB49Df0E42e581Ed0c41a4b, deadline=1612507488 ) => ( amounts=[100000000000000000, 104715157529469251280] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.1 WETH9.CALL( )
  • WETH9.transfer( dst=0xFfA98A091331Df4600F87C9164cD27e8a5CD2405, wad=100000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=104715157529469251280, amount1Out=0, to=0xaC653cc80f6606eCeCB49Df0E42e581Ed0c41a4b, data=0x )
    • PolkastarterToken.transfer( _to=0xaC653cc80f6606eCeCB49Df0E42e581Ed0c41a4b, _value=104715157529469251280 ) => ( True )
    • PolkastarterToken.balanceOf( _owner=0xFfA98A091331Df4600F87C9164cD27e8a5CD2405 ) => ( 3874433839494632584181914 )
    • WETH9.balanceOf( 0xFfA98A091331Df4600F87C9164cD27e8a5CD2405 ) => ( 3688974303501921437215 )
      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: PolkastarterToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      *Submitted for verification at Etherscan.io on 2018-09-01
      */
      pragma solidity 0.5.8;
      // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
      /**
      * @title ERC20Basic
      * @dev Simpler version of ERC20 interface
      * @dev see https://github.com/ethereum/EIPs/issues/179
      */
      contract ERC20Basic {
      function totalSupply() public view returns (uint256);
      function balanceOf(address who) public view returns (uint256);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX