Transaction Hash:
Block:
22614067 at Jun-02-2025 02:38:11 AM +UTC
Transaction Fee:
0.000107126476055975 ETH
$0.38
Gas Used:
40,045 Gas / 2.675152355 Gwei
Emitted Events:
261 |
ENSToken.Transfer( from=[Sender] 0x6d92fcbddec7bb03f0b0b4744d2fba94489fb4df, to=0x245445940B317E509002eb682E03f4429184059d, value=12495257161159119563127 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.670257355609203954 Eth | 9.670337445609203954 Eth | 0.00008009 | |
0x6d92FCbD...4489Fb4df |
3.621569769051207702 Eth
Nonce: 2298
|
3.621462642575151727 Eth
Nonce: 2299
| 0.000107126476055975 | ||
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x245445940B317E509002eb682E03f4429184059d, amount=12495257161159119563127 ) => ( 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.