Transaction Hash:
Block:
22628769 at Jun-04-2025 04:02:47 AM +UTC
Transaction Fee:
0.000163585480578927 ETH
$0.59
Gas Used:
57,133 Gas / 2.863239819 Gwei
Emitted Events:
73 |
ENSToken.Transfer( from=[Sender] 0x190da0bd82fc9b3b68f1ec97bc31fc7573f98ec9, to=0x7a57B319b508b23E454E0b02ccd1b069c3f7bb32, value=229631899137999900000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x190DA0Bd...573F98Ec9 |
2.771924383823841069 Eth
Nonce: 3422
|
2.771760798343262142 Eth
Nonce: 3423
| 0.000163585480578927 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.654790136326558968 Eth | 8.654904402326558968 Eth | 0.000114266 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x7a57B319b508b23E454E0b02ccd1b069c3f7bb32, amount=229631899137999900000 ) => ( 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.