Transaction Hash:
Block:
21298903 at Nov-30-2024 07:08:23 AM +UTC
Transaction Fee:
0.000389295876932859 ETH
$1.47
Gas Used:
57,109 Gas / 6.816716751 Gwei
Emitted Events:
306 |
ENSToken.Transfer( from=[Sender] 0xaaaff093bbda998bfd1026689affe711f5eeaabc, to=0x0d859DA18D7c420348913aD69C7b61a7253d92f9, value=134140000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.345588477066723518 Eth | 9.345617031566723518 Eth | 0.0000285545 | |
0xAaAff093...1f5EeaabC |
45.85311753399124677 Eth
Nonce: 1462
|
45.852728238114313911 Eth
Nonce: 1463
| 0.000389295876932859 | ||
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x0d859DA18D7c420348913aD69C7b61a7253d92f9, amount=134140000000000000000 ) => ( 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.