ETH Price: $4,641.25 (-2.84%)

Transaction Decoder

Block:
12995815 at Aug-10-2021 06:37:24 AM +UTC
Transaction Fee:
0.0092828134062 ETH $43.08
Gas Used:
300,000 Gas / 30.942711354 Gwei

Account State Difference:

  Address   Before After State Difference Code
(2Miners: PPLNS)
2,237.907646596608637209 Eth2,237.907974366041437209 Eth0.0003277694328
0x21Dd5c13...5a9Dafbe3
(Coinsbit 2)
2.613638912532287337 Eth
Nonce: 53580
2.604356099126087337 Eth
Nonce: 53581
0.0092828134062

Execution Trace

GamblerShiba.transferFrom( sender=0xA1dD674c7aC4a824386e534DB06Cf78DC69BDE85, recipient=0x21Dd5c13925407e5bCec3f27aB11a355a9Dafbe3, amount=1244320000000000000000000000 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=28559401320000000000000000, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1628577444 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=28559401320000000000000000 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 71113802454452657680558562056 )
    • UniswapV2Pair.swap( amount0Out=0, amount1Out=47752070889344984, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
      • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=47752070889344984 ) => ( True )
      • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 71113802454452657680558562056 )
      • WETH9.balanceOf( 0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 119214039963299198429 )
      • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 47752070889344984 )
      • WETH9.withdraw( wad=47752070889344984 )
        • ETH 0.047752070889344984 UniswapV2Router02.CALL( )
        • ETH 0.047752070889344984 GamblerShiba.CALL( )
        • GamblerShiba.balanceOf( account=0x61Ec72F6c097F9c1b61b10393589A2Ca83DebC79 ) => ( 14745751012192814697610393086 )
        • GamblerShiba.balanceOf( account=0x3a0e486564aE4A598A5ED333B61cAfD72d850697 ) => ( 1023134523331193406226411309 )
        • GamblerShiba.balanceOf( account=0xEf8e9a2879f4e177f9432f57F394Ec78E050bBDd ) => ( 393318718712741126915869924 )
        • GamblerShiba.balanceOf( account=0x92DFFDA6456d055a1ddD85bC90DEB6A1138daAa2 ) => ( 6484719753152178512593569 )
        • ETH 0.006366942785245996 0x61ec72f6c097f9c1b61b10393589a2ca83debc79.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