Transaction Hash:
Block:
21298886 at Nov-30-2024 07:04:59 AM +UTC
Transaction Fee:
0.00032726055266051 ETH
$1.19
Gas Used:
40,009 Gas / 8.17967339 Gwei
Emitted Events:
342 |
ENSToken.Transfer( from=[Sender] 0x562864beba5719b84b55434e69655133658d5c06, to=0x031DDe938Dd59099A02A926483E914FE28297DA3, value=1444460000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.333751582244138558 Eth | 9.333831600244138558 Eth | 0.000080018 | |
0x562864BE...3658d5C06 |
4.449713933469800087 Eth
Nonce: 924
|
4.449386672917139577 Eth
Nonce: 925
| 0.00032726055266051 | ||
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x031DDe938Dd59099A02A926483E914FE28297DA3, amount=1444460000000000000000 ) => ( 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.