Transaction Hash:
Block:
22652678 at Jun-07-2025 12:21:59 PM +UTC
Transaction Fee:
0.000078343481529911 ETH
$0.28
Gas Used:
46,973 Gas / 1.667840707 Gwei
Emitted Events:
126 |
ENSToken.Approval( owner=[Sender] 0x439dc3802bc5786af4e19a51da3d163a9bfb68fb, spender=0xaaaaaaae...d26D23D4d, value=597660923697567699 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x439dC380...a9bfb68fB |
0.002272794987454921 Eth
Nonce: 3
|
0.00219445150592501 Eth
Nonce: 4
| 0.000078343481529911 | ||
0xC1836021...2Ce7F9D72 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 97.037505846635400924 Eth | 97.037529333135400924 Eth | 0.0000234865 |
Execution Trace
ENSToken.approve( spender=0xaaaaaaae92Cc1cEeF79a038017889fDd26D23D4d, amount=597660923697567699 ) => ( 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.