ETH Price: $2,563.42 (-6.59%)

Transaction Decoder

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 Code
0x1046bBf9...EABe94219
0.01605106523171191 Eth
Nonce: 74
0.015943997859253414 Eth
Nonce: 75
0.000107067372458496
3.569865819050771696 Eth3.569877568257800836 Eth0.00001174920702914

Execution Trace

PepeBull.transfer( recipient=0x000000000000000000000000000000000000dEaD, amount=0 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: UNLICENSE
/*
PEPEBULL - 0xBEEF69
https://x.com/Pepe0xbeef
https://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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX