Transaction Hash:
Block:
21297718 at Nov-30-2024 03:09:47 AM +UTC
Transaction Fee:
0.000387683795711204 ETH
$1.16
Gas Used:
57,097 Gas / 6.789915332 Gwei
Emitted Events:
374 |
ENSToken.Transfer( from=[Sender] 0xa5e3f329c648b6954a1a43842d41d12d4c008e0f, to=0x9104d5B7259018dbe037AE353Da6F43a43341cdc, value=14000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.759533534700646222 Eth | 15.759585203022716314 Eth | 0.000051668322070092 | |
0xA5E3f329...D4C008e0F |
2.03062220610564062 Eth
Nonce: 16
|
2.030234522309929416 Eth
Nonce: 17
| 0.000387683795711204 | ||
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x9104d5B7259018dbe037AE353Da6F43a43341cdc, amount=14000000000000000000 ) => ( 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.