Transaction Hash:
Block:
17334379 at May-25-2023 06:27:11 AM +UTC
Transaction Fee:
0.001806477302442552 ETH
$6.41
Gas Used:
55,698 Gas / 32.433432124 Gwei
Emitted Events:
145 |
PepeToken.Transfer( from=[Sender] 0x80d47ff4f39fbc7d1aa99980ed56af041bf9dd46, to=0x0317942495eB1D2EA563c80D9Ef9e80313281e74, value=239769290819540089325382577 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.959414952205858545 Eth | 3.959526348205858545 Eth | 0.000111396 | ||
0x69825081...3d2311933 | |||||
0x80D47fF4...41bf9DD46 |
0.004988395023093 Eth
Nonce: 6
|
0.003181917720650448 Eth
Nonce: 7
| 0.001806477302442552 |
Execution Trace
PepeToken.transfer( recipient=0x0317942495eB1D2EA563c80D9Ef9e80313281e74, amount=239769290819540089325382577 ) => ( 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;