Transaction Hash:
Block:
20130331 at Jun-20-2024 03:42:35 AM +UTC
Transaction Fee:
0.000233479646110943 ETH
$0.64
Gas Used:
22,433 Gas / 10.407865471 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.895365621360419438 Eth | 1.895500241793419438 Eth | 0.000134620433 | ||
0x564cACEE...b8A79eD53 |
0.009866131103046525 Eth
Nonce: 2
|
0.009632651456935582 Eth
Nonce: 3
| 0.000233479646110943 |
Execution Trace
PepeBull.transfer( recipient=0x000000000000000000000000000000000000dEaD, amount=0 )
transfer[PepeBull (ln:190)]
_transfer[PepeBull (ln:191)]
owner[PepeBull (ln:222)]
owner[PepeBull (ln:222)]
div[PepeBull (ln:226)]
mul[PepeBull (ln:226)]
div[PepeBull (ln:229)]
mul[PepeBull (ln:229)]
balanceOf[PepeBull (ln:234)]
div[PepeBull (ln:235)]
mul[PepeBull (ln:235)]
div[PepeBull (ln:240)]
mul[PepeBull (ln:240)]
balanceOf[PepeBull (ln:243)]
swapTokensForEth[PepeBull (ln:249)]
WETH[PepeBull (ln:276)]
_approve[PepeBull (ln:277)]
Approval[PepeBull (ln:214)]
swapExactTokensForETHSupportingFeeOnTransferTokens[PepeBull (ln:278)]
min[PepeBull (ln:249)]
min[PepeBull (ln:249)]
sendETHToFee[PepeBull (ln:252)]
transfer[PepeBull (ln:299)]
add[PepeBull (ln:260)]
Transfer[PepeBull (ln:261)]
sub[PepeBull (ln:263)]
add[PepeBull (ln:264)]
sub[PepeBull (ln:264)]
Transfer[PepeBull (ln:265)]
sub[PepeBull (ln:265)]
_msgSender[PepeBull (ln:191)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSE/*PEPEBULL - 0xBEEF69https://x.com/Pepe0xbeefhttps://0xbeef.vip/https://t.me/Pepe0xBEEF*/pragma solidity 0.8.23;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}interface IERC20 {function totalSupply() external view returns (uint256);function balanceOf(address account) external view returns (uint256);function transfer(address recipient, uint256 amount) external returns (bool);function allowance(address owner, address spender) external view returns (uint256);function approve(address spender, uint256 amount) external returns (bool);function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);event Transfer(address indexed from, address indexed to, uint256 value);