Transaction Hash:
Block:
21298905 at Nov-30-2024 07:08:47 AM +UTC
Transaction Fee:
0.000364583441548426 ETH
$1.31
Gas Used:
57,097 Gas / 6.385334458 Gwei
Emitted Events:
493 |
ENSToken.Transfer( from=[Sender] 0x10522336d85cb52628c84e06cb05f79011fef585, to=0xfd30E6849638c895cD34B7aF5215eBc40c5Ae531, value=394300000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10522336...011FEf585 |
2.122739910123291133 Eth
Nonce: 4023
|
2.122375326681742707 Eth
Nonce: 4024
| 0.000364583441548426 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.910205451850257063 Eth | 18.910211161550257063 Eth | 0.0000057097 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0xfd30E6849638c895cD34B7aF5215eBc40c5Ae531, amount=394300000000000000000 ) => ( 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.