Transaction Hash:
Block:
22624187 at Jun-03-2025 12:39:59 PM +UTC
Transaction Fee:
0.000070419161048213 ETH
$0.33
Gas Used:
35,221 Gas / 1.999351553 Gwei
Emitted Events:
772 |
ENSToken.Transfer( from=[Sender] 0x21971c10e4ae51701bbc2bcc1441a1daebcfb021, to=0x67be8cE27EF8158d51d8593bb5B26eAfacC955d9, value=54674835590000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x21971c10...aEbCfB021 |
0.000419638906746757 Eth
Nonce: 8
|
0.000349219745698544 Eth
Nonce: 9
| 0.000070419161048213 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.037254054431741414 Eth | 8.037254521076355359 Eth | 0.000000466644613945 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x67be8cE27EF8158d51d8593bb5B26eAfacC955d9, amount=54674835590000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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() {_setOwner(_msgSender());}/*** @dev Returns the address of the current owner.