ETH Price: $2,573.51 (-0.08%)

Transaction Decoder

Block:
13570432 at Nov-07-2021 04:29:53 PM +UTC
Transaction Fee:
0.013594724 ETH $34.99
Gas Used:
118,835 Gas / 114.4 Gwei

Emitted Events:

146 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=30000000000000000 )
147 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=30000000000000000 )
148 StripToken.Transfer( from=UniswapV2Pair, to=[Sender] 0x303fbd955014ac180da2c8852d97a38a28d031f9, value=1593155572575156358250323 )
149 UniswapV2Pair.Sync( reserve0=78104588541180337672, reserve1=4158641451383948593655165616 )
150 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=30000000000000000, amount1In=0, amount0Out=0, amount1Out=1593155572575156358250323, to=[Sender] 0x303fbd955014ac180da2c8852d97a38a28d031f9 )

Account State Difference:

  Address   Before After State Difference Code
0x303FBd95...A28d031F9
0.05749341 Eth
Nonce: 0
0.013898686 Eth
Nonce: 1
0.043594724
(F2Pool Old)
2,718.413733702016358397 Eth2,718.413936093722076267 Eth0.00020239170571787
0xa759cA71...6B279c939
0xC02aaA39...83C756Cc2 7,391,211.575354264903164489 Eth7,391,211.605354264903164489 Eth0.03
0xE9cB6838...8e9853C02

Execution Trace

ETH 0.03 UniswapV2Router02.swapExactETHForTokens( amountOutMin=1585229425447916774378430, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xE9cB6838902CCF711f16a9EA5A1170F8e9853C02], to=0x303FBd955014aC180DA2C8852D97a38A28d031F9, deadline=1636304212 ) => ( amounts=[30000000000000000, 1593155572575156358250323] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.03 WETH9.CALL( )
  • WETH9.transfer( dst=0xa759cA7117DEae729B035beE2EDfdA46B279c939, wad=30000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=1593155572575156358250323, to=0x303FBd955014aC180DA2C8852D97a38A28d031F9, data=0x )
    • StripToken.transfer( recipient=0x303FBd955014aC180DA2C8852D97a38A28d031F9, amount=1593155572575156358250323 ) => ( True )
    • WETH9.balanceOf( 0xa759cA7117DEae729B035beE2EDfdA46B279c939 ) => ( 78104588541180337672 )
    • StripToken.balanceOf( account=0xa759cA7117DEae729B035beE2EDfdA46B279c939 ) => ( 4158641451383948593655165616 )
      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: StripToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // Sources flattened with hardhat v2.5.0 https://hardhat.org
      // File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.2.0
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
      * @dev Interface of the ERC20 standard as defined in the EIP.
      */
      interface IERC20 {
      /**
      * @dev Returns the amount of tokens in existence.
      */
      function totalSupply() external view returns (uint256);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX