Transaction Hash:
Block:
22605165 at May-31-2025 08:43:47 PM +UTC
Transaction Fee:
0.000094216322944034 ETH
$0.33
Gas Used:
40,009 Gas / 2.354878226 Gwei
Emitted Events:
265 |
ENSToken.Transfer( from=[Sender] 0xab782bc7d4a2b306825de5a7730034f8f63ee1bc, to=0xba13ac9a39335EBBfFBF828f0AD7a0D54af985c3, value=7756357040000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.024478994591440772 Eth | 13.024489619903078105 Eth | 0.000010625311637333 | |
0xaB782bc7...8F63ee1bC | (Bitvavo: Hot 3) |
0.403531361386083985 Eth
Nonce: 562302
|
0.403437145063139951 Eth
Nonce: 562303
| 0.000094216322944034 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0xba13ac9a39335EBBfFBF828f0AD7a0D54af985c3, amount=7756357040000000000 ) => ( 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.