ETH Price: $2,652.52 (+4.50%)

Transaction Decoder

Block:
15674551 at Oct-04-2022 11:43:47 AM +UTC
Transaction Fee:
0.0002910006 ETH $0.77
Gas Used:
49,500 Gas / 5.8788 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x1f2262aD...B61f76b39
0.029229752412 Eth
Nonce: 15
0.028938751812 Eth
Nonce: 16
0.0002910006
(Coinbase: MEV Builder)
0.095886041208759708 Eth0.095930106211175208 Eth0.0000440650024155

Execution Trace

GamblerShiba.transfer( recipient=0x562680a4dC50ed2f14d75BF31f494cfE0b8D10a1, amount=11446955038572054566814818700 )
  • UniswapV2Router02.STATICCALL( )
    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