ETH Price: $2,547.55 (+0.73%)

Transaction Decoder

Block:
13009744 at Aug-12-2021 10:16:29 AM +UTC
Transaction Fee:
0.00427893 ETH $10.90
Gas Used:
99,510 Gas / 43 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xd12AD9B7...911639375
0.154709401465226821 Eth
Nonce: 43
0.150430471465226821 Eth
Nonce: 44
0.00427893
(Ethermine)
3,028.28412256319446374 Eth3,028.28495789473106436 Eth0.00083533153660062

Execution Trace

GamblerShiba.transfer( recipient=0xe440652543cEDB98E9EBc6DB76eDD0c60598cBd7, amount=93757035094845918519021329 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=80671883098763380028705180, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1628763389 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=80671883098763380028705180 )
      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