ETH Price: $2,794.26 (+3.89%)

Transaction Decoder

Block:
13413494 at Oct-14-2021 01:42:33 AM +UTC
Transaction Fee:
0.0293392155288 ETH $81.98
Gas Used:
300,000 Gas / 97.797385096 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x21Dd5c13...5a9Dafbe3
(Coinsbit 2)
0.176480380734382794 Eth
Nonce: 65011
0.147141165205582794 Eth
Nonce: 65012
0.0293392155288
(BeePool)
1,416.640277788345894803 Eth1,416.642960933823894803 Eth0.002683145478

Execution Trace

GamblerShiba.transfer( recipient=0x9d1D2CEA3b91446F9C215a737E793E52a6221E1D, amount=724534543391707400000000000 )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=331263888600000000000000000, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1634175753 )
    • GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=331263888600000000000000000 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 336137399309441152057304176493 )
    • UniswapV2Pair.swap( amount0Out=0, amount1Out=25463019229815298, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
      • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=25463019229815298 ) => ( True )
      • GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 336137399309441152057304176493 )
      • WETH9.balanceOf( 0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 25889834299513920890 )
      • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 25463019229815298 )
      • WETH9.withdraw( wad=25463019229815298 )
        • ETH 0.025463019229815298 UniswapV2Router02.CALL( )
        • ETH 0.025463019229815298 GamblerShiba.CALL( )
        • GamblerShiba.balanceOf( account=0x52125E82f9f52F45ad0010AC3c8a2BDd35729c02 ) => ( 969368794745261 )
        • GamblerShiba.balanceOf( account=0xFB0A11e824C9578b6f06c07c1A3a017DEfcF64c8 ) => ( 1918193565857047187183888717 )
        • GamblerShiba.balanceOf( account=0xb0cbc6d61ce941AB328C01358e1c94B7D2983704 ) => ( 1495482830278514950642420762 )
        • GamblerShiba.balanceOf( account=0x93AeeF388e07FEb48560B2321944A8c9839d5638 ) => ( 218476521515961749997582559 )
        • ETH 0.00339506923064204 0x52125e82f9f52f45ad0010ac3c8a2bdd35729c02.CALL( )
          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