ETH Price: $3,010.77 (+1.27%)

Transaction Decoder

Block:
12990126 at Aug-09-2021 09:36:26 AM +UTC
Transaction Fee:
0.0140232174081 ETH $42.22
Gas Used:
300,000 Gas / 46.744058027 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x21Dd5c13...5a9Dafbe3
(Coinsbit 2)
3.019054251813732374 Eth
Nonce: 53355
3.005031034405632374 Eth
Nonce: 53356
0.0140232174081
(Ethermine)
1,509.815655245736843114 Eth1,509.818620293535143114 Eth0.0029650477983

Execution Trace

GamblerShiba.transferFrom( sender=0x3477720cE832D019681b8b72dF7baEad1C6b0Eca, recipient=0x21Dd5c13925407e5bCec3f27aB11a355a9Dafbe3, amount=88000000000000000000000 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=319153662646433649349510338, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1628501786 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=319153662646433649349510338 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 70765422748069362528908000694 )
    • UniswapV2Pair.swap( amount0Out=0, amount1Out=540748929554088082, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
      • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=540748929554088082 ) => ( True )
      • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 70765422748069362528908000694 )
      • WETH9.balanceOf( 0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 119717785443290730479 )
      • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 540748929554088082 )
      • WETH9.withdraw( wad=540748929554088082 )
        • ETH 0.540748929554088082 UniswapV2Router02.CALL( )
        • ETH 0.540748929554088082 GamblerShiba.CALL( )
        • GamblerShiba.balanceOf( account=0x95d43E5E43C93efc0c8858Eaaf3e21CcDe04d817 ) => ( 2238735840000000000000000000 )
        • GamblerShiba.balanceOf( account=0x9368Cf4c9DFb48cA9B60a8a978aE6703eFa40acd ) => ( 521385128000000000000000000 )
        • GamblerShiba.balanceOf( account=0x5f87432fFD0eB99c9447319a5a5AA6E72fcbe4d9 ) => ( 407691713724516541483309965 )
        • GamblerShiba.balanceOf( account=0x0840661851621257a87803F1A1C76F290fBcb565 ) => ( 211814735300000000000000000 )
        • ETH 0.072099857273878408 0x95d43e5e43c93efc0c8858eaaf3e21ccde04d817.CALL( )
          transferFrom[GamblerShiba (ln:1292)]
          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