Transaction Hash:
Block:
22521367 at May-20-2025 03:08:59 AM +UTC
Transaction Fee:
0.000112919756225624 ETH
$0.31
Gas Used:
51,508 Gas / 2.192276078 Gwei
Emitted Events:
64 |
WOLFToken.Transfer( from=[Sender] 0x5ca71f05a649e58ed3d22a93eab0cde79e344532, to=0x73d3715b8bCD75959A5bE67d8AB9F4Eebeb27407, value=28840735343792178120974741 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.113041681689910124 Eth | 3.113105456312950512 Eth | 0.000063774623040388 | ||
0x33ABE795...590f5FdAE | |||||
0x5Ca71F05...79E344532 |
0.003775017737448543 Eth
Nonce: 61
|
0.003662097981222919 Eth
Nonce: 62
| 0.000112919756225624 |
Execution Trace
WOLFToken.transfer( to=0x73d3715b8bCD75959A5bE67d8AB9F4Eebeb27407, amount=28840735343792178120974741 ) => ( True )
transfer[ERC20 (ln:172)]
_msgSender[ERC20 (ln:173)]
_transfer[ERC20 (ln:174)]
_beforeTokenTransfer[ERC20 (ln:285)]
Transfer[ERC20 (ln:294)]
_afterTokenTransfer[ERC20 (ln:295)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_transferOwnership(_msgSender());}/**