ETH Price: $4,265.96 (+1.94%)
Gas: 0.44 Gwei

Transaction Decoder

Block:
12971101 at Aug-06-2021 11:16:42 AM +UTC
Transaction Fee:
0.003283797 ETH $14.01
Gas Used:
99,509 Gas / 33 Gwei

Account State Difference:

  Address   Before After State Difference Code
(zhizhu.top)
353.474295840297651885 Eth353.475123317779573318 Eth0.000827477481921433
0xc005Bc17...B11C0eFAC
0.007894917387909745 Eth
Nonce: 45
0.004611120387909745 Eth
Nonce: 46
0.003283797

Execution Trace

GamblerShiba.transfer( recipient=0x4c10b4C12bb7E0Ae0A1639B44aD096B2ec868550, amount=60000100000000000000000 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=56857854145130330883445121, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1628248602 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=56857854145130330883445121 )
      File 1 of 2: GamblerShiba
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: Unlicensed
      pragma solidity ^0.6.12;
      //
      /*
      * @dev Provides information about the current execution context, including the
      * sender of the transaction and its data. While these are generally available
      * via msg.sender and msg.data, they should not be accessed in such a direct
      * manner, since when dealing with GSN meta-transactions the account sending and
      * paying for execution may not be the actual sender (as far as an application
      * is concerned).
      *
      * This contract is only required for intermediate, library-like contracts.
      */
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 2: 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