Transaction Hash:
Block:
22652513 at Jun-07-2025 11:48:47 AM +UTC
Transaction Fee:
0.000087279193679297 ETH
$0.26
Gas Used:
57,097 Gas / 1.528612601 Gwei
Emitted Events:
232 |
ENSToken.Transfer( from=[Sender] 0x1579b5f6582c7a04f5ffeec683c13008c4b0a520, to=0xbF123A673c8cFee6A31f3A7Ad24259489c4261F0, value=6880000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1579B5f6...8C4b0A520 | (Bitkub: Hot Wallet 4) |
4.494807068495790744 Eth
Nonce: 75093
|
4.494719789302111447 Eth
Nonce: 75094
| 0.000087279193679297 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.553916077712373189 Eth | 11.553920588375373189 Eth | 0.000004510663 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0xbF123A673c8cFee6A31f3A7Ad24259489c4261F0, amount=6880000000000000000 ) => ( 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.