Transaction Hash:
Block:
22652275 at Jun-07-2025 11:00:47 AM +UTC
Transaction Fee:
0.000121418681617926 ETH
$0.33
Gas Used:
40,009 Gas / 3.034784214 Gwei
Emitted Events:
555 |
ENSToken.Transfer( from=[Sender] 0xb0a27099582833c0cb8c7a0565759ff145113d64, to=0x4A4aaA0155237881FBD5C34BfaE16e985A7B068D, value=422000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.103089350021008751 Eth | 11.103169368021008751 Eth | 0.000080018 | |
0xB0A27099...145113d64 | (OKX 153) |
73,899.422562786905197468 Eth
Nonce: 2070
|
73,899.422441368223579542 Eth
Nonce: 2071
| 0.000121418681617926 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x4A4aaA0155237881FBD5C34BfaE16e985A7B068D, amount=422000000000000000000 ) => ( 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.