Transaction Hash:
Block:
20949335 at Oct-12-2024 11:50:47 AM +UTC
Transaction Fee:
0.000351449501454546 ETH
$0.89
Gas Used:
38,586 Gas / 9.108212861 Gwei
Emitted Events:
183 |
PepeToken.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=3811246935000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.028766692329264216 Eth
Nonce: 13159
|
0.02841524282780967 Eth
Nonce: 13160
| 0.000351449501454546 | |
0x25B71878...8BCC72b43
Miner
| (MEV Builder: 0x25B…b43) | 0.140800884179972616 Eth | 0.140805035775933894 Eth | 0.000004151595961278 | |
0x69825081...3d2311933 |
Execution Trace
PepeToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=3811246935000000000000000000 ) => ( 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;