ETH Price: $2,773.89 (+6.22%)

Transaction Decoder

Block:
13409293 at Oct-13-2021 09:45:04 AM +UTC
Transaction Fee:
0.01207939208211763 ETH $33.51
Gas Used:
226,465 Gas / 53.338891582 Gwei

Emitted Events:

343 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=60000000000000000 )
344 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=60000000000000000 )
345 FLOKI.Transfer( from=UniswapV2Pair, to=[Sender] 0x2d0f1e69126862b6eab99f3341ad469d5e1efaa0, value=2663450592805318 )
346 UniswapV2Pair.Sync( reserve0=67355075023059756093, reserve1=1391805786785851794178 )
347 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=60000000000000000, amount0Out=2895054992179692, amount1Out=0, to=[Sender] 0x2d0f1e69126862b6eab99f3341ad469d5e1efaa0 )

Account State Difference:

  Address   Before After State Difference Code
0x10E4a463...844299bE6
0x2d0F1e69...D5E1EFAA0
0.167079819940556617 Eth
Nonce: 28
0.095000427858438987 Eth
Nonce: 29
0.07207939208211763
(MiningPoolHub)
2,329.122586656794271616 Eth2,329.122926354294271616 Eth0.0003396975
0x43f11c02...d43Cd066D
0xC02aaA39...83C756Cc2 7,690,700.502443979549593088 Eth7,690,700.562443979549593088 Eth0.06

Execution Trace

ETH 0.06 UniswapV2Router02.swapExactETHForTokens( amountOutMin=2513819792551902, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x43f11c02439e2736800433b4594994Bd43Cd066D], to=0x2d0F1e69126862B6EAb99f3341aD469D5E1EFAA0, deadline=1634119351 ) => ( amounts=[60000000000000000, 2895054992179692] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.06 WETH9.CALL( )
  • WETH9.transfer( dst=0x10E4a463F2aCe6E3836FE547e885993844299bE6, wad=60000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=2895054992179692, amount1Out=0, to=0x2d0F1e69126862B6EAb99f3341aD469D5E1EFAA0, data=0x )
    • FLOKI.transfer( recipient=0x2d0F1e69126862B6EAb99f3341aD469D5E1EFAA0, amount=2895054992179692 ) => ( True )
    • FLOKI.balanceOf( account=0x10E4a463F2aCe6E3836FE547e885993844299bE6 ) => ( 67355075023059756093 )
    • WETH9.balanceOf( 0x10E4a463F2aCe6E3836FE547e885993844299bE6 ) => ( 1391805786785851794178 )
      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: FLOKI
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: Unlicensed
      pragma solidity ^0.8.4;
      import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
      import '@openzeppelin/contracts/utils/math/SafeMath.sol';
      import '@openzeppelin/contracts/access/Ownable.sol';
      import '@openzeppelin/contracts/utils/Address.sol';
      import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
      import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
      import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
      contract FLOKI is Context, IERC20, Ownable {
      using SafeMath for uint256;
      using Address for address;
      address payable public marketingAddress =
      payable(0x2b9d5c7f2EAD1A221d771Fb6bb5E35Df04D60AB0); // Marketing Address
      address public immutable deadAddress =
      0x000000000000000000000000000000000000dEaD;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX