Transaction Hash:
Block:
22624356 at Jun-03-2025 01:14:11 PM +UTC
Transaction Fee:
0.000215099296798221 ETH
$0.93
Gas Used:
57,133 Gas / 3.764887137 Gwei
Emitted Events:
284 |
ENSToken.Transfer( from=[Sender] 0xfe263102682933297cb65dc813e5193249769251, to=0xd2C811d48B4cBCcF8AfE1428FBaDE11BefFB269E, value=52902037810409330933 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.06398007627610345 Eth | 3.06398396132010345 Eth | 0.000003885044 | ||
0xC1836021...2Ce7F9D72 | |||||
0xfE263102...249769251 |
6.520144119793762602 Eth
Nonce: 34728
|
6.519929020496964381 Eth
Nonce: 34729
| 0.000215099296798221 |
Execution Trace
ENSToken.transfer( recipient=0xd2C811d48B4cBCcF8AfE1428FBaDE11BefFB269E, amount=52902037810409330933 ) => ( 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.