Transaction Hash:
Block:
22615151 at Jun-02-2025 06:15:47 AM +UTC
Transaction Fee:
0.000165770036931253 ETH
$0.65
Gas Used:
57,097 Gas / 2.903305549 Gwei
Emitted Events:
191 |
ENSToken.Transfer( from=[Sender] 0xf89d7b9c864f589bbf53a82105107622b35eaa40, to=0x98438c4DeAB3070388b852Adb55ee20D6435A3e2, value=6850000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.672055097517436726 Eth | 11.672169291517436726 Eth | 0.000114194 | |
0xC1836021...2Ce7F9D72 | |||||
0xf89d7b9c...2B35EaA40 | (Bybit: Hot Wallet) |
31,899.730684754970438482 Eth
Nonce: 6365277
|
31,899.730518984933507229 Eth
Nonce: 6365278
| 0.000165770036931253 |
Execution Trace
ENSToken.transfer( recipient=0x98438c4DeAB3070388b852Adb55ee20D6435A3e2, amount=6850000000000000000 ) => ( 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.