ETH Price: $2,761.54 (-1.06%)

Transaction Decoder

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 Code
1.895365621360419438 Eth1.895500241793419438 Eth0.000134620433
0x564cACEE...b8A79eD53
0.009866131103046525 Eth
Nonce: 2
0.009632651456935582 Eth
Nonce: 3
0.000233479646110943

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