Transaction Hash:
Block:
22625008 at Jun-03-2025 03:25:59 PM +UTC
Transaction Fee:
0.000387673980461933 ETH
$1.47
Gas Used:
35,233 Gas / 11.003149901 Gwei
Emitted Events:
420 |
ENSToken.Transfer( from=[Sender] 0xfe9529b753b412941127fea1981e5ce0a85c101e, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=1403421110019999600000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.300847295997168993 Eth | 13.300856103428882568 Eth | 0.000008807431713575 | |
0xC1836021...2Ce7F9D72 | |||||
0xFE9529b7...0A85C101E | (Binance Dep: 0xFE9529b753b412941127Fea1981E5cE0A85C101E) |
0.013748 Eth
Nonce: 86765
|
0.013360326019538067 Eth
Nonce: 86766
| 0.000387673980461933 |
Execution Trace
ENSToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=1403421110019999600000 ) => ( 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.