Transaction Hash:
Block:
22624379 at Jun-03-2025 01:18:47 PM +UTC
Transaction Fee:
0.000326776176502022 ETH
$1.02
Gas Used:
57,109 Gas / 5.721973358 Gwei
Emitted Events:
20 |
ENSToken.Transfer( from=[Sender] 0xf5213a6a2f0890321712520b8048d9886c1a9900, to=0xAdd3c21a8bf315FA17cAa8f5D9C18a8E899D277A, value=1924340000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.915995272070752159 Eth | 12.916054893089669996 Eth | 0.000059621018917837 | |
0xC1836021...2Ce7F9D72 | |||||
0xf5213a6a...86c1A9900 |
39.852476874181034875 Eth
Nonce: 361369
|
39.852150098004532853 Eth
Nonce: 361370
| 0.000326776176502022 |
Execution Trace
ENSToken.transfer( recipient=0xAdd3c21a8bf315FA17cAa8f5D9C18a8E899D277A, amount=1924340000000000000000 ) => ( 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.