ETH Price: $2,782.85 (+3.33%)

Transaction Decoder

Block:
17553076 at Jun-25-2023 12:55:59 AM +UTC
Transaction Fee:
0.00643536 ETH $17.91
Gas Used:
402,210 Gas / 16 Gwei

Account State Difference:

  Address   Before After State Difference Code
3.067588128950217619 Eth3.068693629030301839 Eth0.00110550008008422
0x891e7033...1339Dd14b
0.00643536 Eth
Nonce: 1
0 Eth
Nonce: 2
0.00643536

Execution Trace

GamblerShiba.transfer( recipient=0x4A41D76B0524a3989998380c033f12bfEb5f7201, amount=12582453170223158000000000000 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=54157123680000000000000000, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1687654559 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=54157123680000000000000000 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 461471309307330506229753070956 )
    • UniswapV2Pair.swap( amount0Out=0, amount1Out=2221412491510794, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
      • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=2221412491510794 ) => ( True )
      • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 461471309307330506229753070956 )
      • WETH9.balanceOf( 0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 18983321159158714073 )
      • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 2221412491510794 )
      • WETH9.withdraw( wad=2221412491510794 )
        • ETH 0.002221412491510794 UniswapV2Router02.CALL( )
        • ETH 0.002221412491510794 GamblerShiba.CALL( )
        • GamblerShiba.balanceOf( account=0x52125E82f9f52F45ad0010AC3c8a2BDd35729c02 ) => ( 969368794745261 )
        • GamblerShiba.balanceOf( account=0x054A18A2bAfDCF173FFF5Fc9d507ec757847738A ) => ( 591734218910524603112230903 )
        • GamblerShiba.balanceOf( account=0x298Dc64E3963aA9a89BEcb316CE922C032270888 ) => ( 696781329212451217245913851 )
        • GamblerShiba.balanceOf( account=0x07441Ea25a645B2C62081181e997239b23d640EA ) => ( 619473561894765757455722159 )
        • ETH 0.000296188332201436 0x52125e82f9f52f45ad0010ac3c8a2bdd35729c02.CALL( )
        • ETH 0.000222141249151077 0x054a18a2bafdcf173fff5fc9d507ec757847738a.CALL( )
        • ETH 0.000148094166100718 0x298dc64e3963aa9a89becb316ce922c032270888.CALL( )
        • ETH 0.000074047083050359 0x07441ea25a645b2c62081181e997239b23d640ea.CALL( )
        • ETH 0.001480941661007197 0xcb89c87775a2c2ea854400fc8b1f03b35b0267fa.CALL( )
        • UniswapV2Router02.STATICCALL( )
        • UniswapV2Router02.getAmountsIn( amountOut=12582453170223158000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xb892249939AdBf6D7851864CA9A5c7D2d537af97] ) => ( amounts=[533707782344746546, 12582453170223158000000000000] )
          • UniswapV2Pair.STATICCALL( )
            File 1 of 4: 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 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 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: 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