Transaction Hash:
Block:
22627263 at Jun-03-2025 10:59:35 PM +UTC
Transaction Fee:
0.000180681851603905 ETH
$0.64
Gas Used:
57,121 Gas / 3.163142305 Gwei
Emitted Events:
40 |
ENSToken.Transfer( from=[Sender] 0x190da0bd82fc9b3b68f1ec97bc31fc7573f98ec9, to=0x242B078d43eeB720E101A04701f748f6780B3DEB, value=34346933770000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x190DA0Bd...573F98Ec9 |
2.772710382962052272 Eth
Nonce: 3417
|
2.772529701110448367 Eth
Nonce: 3418
| 0.000180681851603905 | ||
0xC1836021...2Ce7F9D72 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 74.568628528197271415 Eth | 74.568742770197271415 Eth | 0.000114242 |
Execution Trace
ENSToken.transfer( recipient=0x242B078d43eeB720E101A04701f748f6780B3DEB, amount=34346933770000000000 ) => ( 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.