Transaction Hash:
Block:
20269305 at Jul-09-2024 01:43:11 PM +UTC
Transaction Fee:
0.000107067372458496 ETH
$0.27
Gas Used:
22,433 Gas / 4.772762112 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1046bBf9...EABe94219 |
0.01605106523171191 Eth
Nonce: 74
|
0.015943997859253414 Eth
Nonce: 75
| 0.000107067372458496 | ||
0x1f9090aa...8e676c326
Miner
| 3.569865819050771696 Eth | 3.569877568257800836 Eth | 0.00001174920702914 |
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);