Transaction Hash:
Block:
22539232 at May-22-2025 03:13:11 PM +UTC
Transaction Fee:
0.000231588 ETH
$0.61
Gas Used:
38,598 Gas / 6 Gwei
Emitted Events:
437 |
PepeToken.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=438146785831279340000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.018781149896522063 Eth
Nonce: 112931
|
0.018549561896522063 Eth
Nonce: 112932
| 0.000231588 | |
0x69825081...3d2311933 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.944594084105118431 Eth | 5.944609742305693063 Eth | 0.000015658200574632 |
Execution Trace
PepeToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=438146785831279340000000000 ) => ( True )
transfer[ERC20 (ln:337)]
_transfer[ERC20 (ln:338)]
_beforeTokenTransfer[ERC20 (ln:453)]
Transfer[ERC20 (ln:462)]
_afterTokenTransfer[ERC20 (ln:464)]
_msgSender[ERC20 (ln:338)]
1234567891011121314151617181920212223242526// Sources flattened with hardhat v2.7.0 https://hardhat.org// File @openzeppelin/contracts/utils/Context.sol@v4.4.0// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)pragma solidity ^0.8.0;/*** @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 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.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;