Transaction Hash:
Block:
21297715 at Nov-30-2024 03:09:11 AM +UTC
Transaction Fee:
0.000386573968817697 ETH
$1.01
Gas Used:
39,997 Gas / 9.665074101 Gwei
Emitted Events:
48 |
ENSToken.Transfer( from=[Sender] 0xcbea7739929cc6a2b4e46a1f6d26841d8d668b9e, to=0x677Adbe3B82F0689971B7ee39C0C038C1581aAEb, value=25027600000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.296660482057048211 Eth | 7.296833785847529018 Eth | 0.000173303790480807 | |
0xC1836021...2Ce7F9D72 | |||||
0xcBEA7739...D8d668b9E | (HashKey Exchange 2) |
72.344815251391393161 Eth
Nonce: 15174
|
72.344428677422575464 Eth
Nonce: 15175
| 0.000386573968817697 |
Execution Trace
ENSToken.transfer( recipient=0x677Adbe3B82F0689971B7ee39C0C038C1581aAEb, amount=25027600000000000 ) => ( 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.