Transaction Hash:
Block:
13013322 at Aug-12-2021 11:24:19 PM +UTC
Transaction Fee:
0.010330272677088 ETH
$36.66
Gas Used:
216,000 Gas / 47.825336468 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 68.656528934145345396 Eth | 68.656928073347361396 Eth | 0.000399139202016 | |
0x898f70FA...E94b64eCF |
0.011209606872540558 Eth
Nonce: 6
|
0.000879334195452558 Eth
Nonce: 7
| 0.010330272677088 |
Execution Trace
GamblerShiba.transfer( recipient=0x4B1B63561d2465eA9394639BF57f43c47A3fa08C, amount=24763284431034699811548864 )

-
UniswapV2Router02.STATICCALL( )
UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=8702042059982235423346084, amountOutMin=0, path=[0xb892249939AdBf6D7851864CA9A5c7D2d537af97, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, deadline=1628810659 )
-
GamblerShiba.transferFrom( sender=0xb892249939AdBf6D7851864CA9A5c7D2d537af97, recipient=0x38B81D939fe237E03eCEB655c5a212c082BF09b0, amount=8702042059982235423346084 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 59711250110054916160335937743 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=20706145280141156, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
-
WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=20706145280141156 ) => ( True )
-
GamblerShiba.balanceOf( account=0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 59711250110054916160335937743 )
-
WETH9.balanceOf( 0x38B81D939fe237E03eCEB655c5a212c082BF09b0 ) => ( 142487178711650125187 )
-
-
WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 20706145280141156 )
WETH9.withdraw( wad=20706145280141156 )
- ETH 0.020706145280141156
UniswapV2Router02.CALL( )
- ETH 0.020706145280141156
- ETH 0.020706145280141156
GamblerShiba.CALL( )
-
transfer[GamblerShiba (ln:1278)]
_transfer[GamblerShiba (ln:1279)]
owner[GamblerShiba (ln:1372)]
owner[GamblerShiba (ln:1372)]
add[GamblerShiba (ln:1385)]
owner[GamblerShiba (ln:1389)]
owner[GamblerShiba (ln:1395)]
addWalletToGamblingList[GamblerShiba (ln:1396)]
balanceOf[GamblerShiba (ln:1402)]
swapTokensForEth[GamblerShiba (ln:1411)]
WETH[GamblerShiba (ln:1435)]
_approve[GamblerShiba (ln:1437)]
Approval[GamblerShiba (ln:1362)]
swapExactTokensForETHSupportingFeeOnTransferTokens[GamblerShiba (ln:1440)]
sendETHTodev[GamblerShiba (ln:1415)]
checkAndChangeGamblingWinner[GamblerShiba (ln:1451)]
div[GamblerShiba (ln:1454)]
transfer[GamblerShiba (ln:1458)]
mul[GamblerShiba (ln:1458)]
transfer[GamblerShiba (ln:1459)]
mul[GamblerShiba (ln:1459)]
transfer[GamblerShiba (ln:1460)]
mul[GamblerShiba (ln:1460)]
transfer[GamblerShiba (ln:1461)]
mul[GamblerShiba (ln:1461)]
transfer[GamblerShiba (ln:1463)]
div[GamblerShiba (ln:1463)]
mul[GamblerShiba (ln:1463)]
_tokenTransfer[GamblerShiba (ln:1428)]
removeAllFee[GamblerShiba (ln:1485)]
_transferStandard[GamblerShiba (ln:1487)]
div[GamblerShiba (ln:1494)]
mul[GamblerShiba (ln:1494)]
sub[GamblerShiba (ln:1495)]
sub[GamblerShiba (ln:1497)]
add[GamblerShiba (ln:1498)]
removeWalletFromGamblingList[GamblerShiba (ln:1501)]
Transfer[GamblerShiba (ln:1504)]
restoreAllFee[GamblerShiba (ln:1490)]
_msgSender[GamblerShiba (ln:1279)]
File 1 of 4: GamblerShiba
File 2 of 4: UniswapV2Router02
File 3 of 4: UniswapV2Pair
File 4 of 4: WETH9
12345678910111213141516// SPDX-License-Identifier: Unlicensedpragma 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.*/
File 2 of 4: UniswapV2Router02
12345678910111213141516pragma 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;
File 3 of 4: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma 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);
File 4 of 4: WETH9
12345678910111213141516// 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;